diff --git a/awx/main/models/inventory.py b/awx/main/models/inventory.py index 8d427211..22fe0feb 100644 --- a/awx/main/models/inventory.py +++ b/awx/main/models/inventory.py @@ -1471,6 +1471,8 @@ class PluginFileInjector(object): collection = None collection_migration = '2.9' # Starting with this version, we use collections use_fqcn = False # plugin: name versus plugin: namespace.collection.name + # other plugin FQCNs the user may select via `plugin:` in source_vars in place of the default + alternate_plugins = frozenset() # TODO: delete this method and update unit tests @classmethod @@ -1486,6 +1488,27 @@ def filename(self): """ return '{0}.yml'.format(self.plugin_name) + def get_alternate_plugin(self, source_vars): + """The user-selected alternate plugin from the `plugin:` key of + source_vars, or None to use the default. Values of any other type or + FQCN are ignored (and overridden), same as before alternates existed. + """ + plugin = source_vars.get('plugin') + if isinstance(plugin, str) and plugin in self.alternate_plugins: + return plugin + return None + + def get_filename(self, inventory_update): + """Inventory filename for the plugin that will actually parse it. + The auto plugin loads whatever the file's `plugin:` key names, and that + plugin's verify_file() generally demands this exact file naming, so a + user-selected alternate plugin must also change the filename. + """ + plugin = self.get_alternate_plugin(inventory_update.source_vars_dict) + if plugin is not None: + return '{0}.yml'.format(plugin.rsplit('.', 1)[-1]) + return self.filename + def inventory_contents(self, inventory_update, private_data_dir): """Returns a string that is the content for the inventory file for the inventory plugin""" return yaml.safe_dump(self.inventory_as_dict(inventory_update, private_data_dir), default_flow_style=False, width=1000) @@ -1497,7 +1520,9 @@ def inventory_as_dict(self, inventory_update, private_data_dir): Note that a plugin value of '' should still be overridden. ''' if self.plugin_name is not None: - if hasattr(self, 'downstream_namespace') and server_product_name() != 'AWX': + if self.get_alternate_plugin(source_vars) is not None: + pass # user selected an alternate supported plugin, keep it + elif hasattr(self, 'downstream_namespace') and server_product_name() != 'AWX': source_vars['plugin'] = f'{self.downstream_namespace}.{self.downstream_collection}.{self.plugin_name}' elif self.use_fqcn: source_vars['plugin'] = f'{self.namespace}.{self.collection}.{self.plugin_name}' @@ -1599,6 +1624,9 @@ class vmware(PluginFileInjector): base_injector = 'managed' namespace = 'community' collection = 'vmware' + use_fqcn = True + # community.vmware is deprecated; users may opt into its replacement + alternate_plugins = frozenset({'vmware.vmware.vms'}) class openstack(PluginFileInjector): @@ -1679,10 +1707,10 @@ def inventory_as_dict(self, inventory_update, private_data_dir): class ascender(PluginFileInjector): plugin_name = 'controller' # TODO: relying on routing for now, update after EEs pick up revised collection base_injector = 'template' - namespace = 'awx' - collection = 'awx' - downstream_namespace = 'ansible' - downstream_collection = 'controller' + namespace = 'ctrliq' + collection = 'ascender' + # downstream_namespace = 'ansible' + # downstream_collection = 'controller' use_fqcn = True diff --git a/awx/main/tasks/jobs.py b/awx/main/tasks/jobs.py index effc3c12..49a74c82 100644 --- a/awx/main/tasks/jobs.py +++ b/awx/main/tasks/jobs.py @@ -1632,9 +1632,10 @@ def pseudo_build_inventory(self, inventory_update, private_data_dir): if injector is not None: content = injector.inventory_contents(inventory_update, private_data_dir) - # must be a statically named file - self.write_private_data_file(private_data_dir, injector.filename, content, sub_dir='inventory', file_permissions=0o700) - rel_path = os.path.join('inventory', injector.filename) + # the file must bear the exact name the selected plugin's verify_file() demands + inventory_filename = injector.get_filename(inventory_update) + self.write_private_data_file(private_data_dir, inventory_filename, content, sub_dir='inventory', file_permissions=0o700) + rel_path = os.path.join('inventory', inventory_filename) elif src == 'scm': rel_path = os.path.join('project', inventory_update.source_path) diff --git a/awx/main/tests/functional/models/test_inventory.py b/awx/main/tests/functional/models/test_inventory.py index 8728925c..04573f83 100644 --- a/awx/main/tests/functional/models/test_inventory.py +++ b/awx/main/tests/functional/models/test_inventory.py @@ -241,7 +241,7 @@ def test_plugin_filenames(self, source, filename): # ('rhv', 'ovirt.ovirt.ovirt'), ('satellite6', 'theforeman.foreman.foreman'), # ('insights', 'redhatinsights.insights.insights'), - ('ascender', 'awx.awx.controller'), + ('ascender', 'ctrliq.ascender.controller'), ('terraform', 'cloud.terraform.terraform_state'), ], ) @@ -249,6 +249,31 @@ def test_plugin_proper_names(self, source, proper_name): injector = InventorySource.injectors[source]() assert injector.get_proper_name() == proper_name + @pytest.mark.parametrize( + 'user_plugin,expected', + [ + (None, 'community.vmware.vmware_vm_inventory'), + ('community.vmware.vmware_vm_inventory', 'community.vmware.vmware_vm_inventory'), + ('vmware.vmware.vms', 'vmware.vmware.vms'), + ('evil.hacker.plugin', 'community.vmware.vmware_vm_inventory'), + ('', 'community.vmware.vmware_vm_inventory'), + (['vmware.vmware.vms'], 'community.vmware.vmware_vm_inventory'), # unhashable values must not crash + ({'name': 'vmware.vmware.vms'}, 'community.vmware.vmware_vm_inventory'), + ], + ) + def test_vmware_alternate_plugin_selection(self, user_plugin, expected): + """The vmware source lets the user pick the plugin from the deprecated + community.vmware collection or its vmware.vmware replacement via the + `plugin` key of source_vars; anything else is overridden with the default. + """ + injector = InventorySource.injectors['vmware']() + source_vars = {} if user_plugin is None else {'plugin': user_plugin} + inventory_update = mock.Mock(source_vars_dict=source_vars) + assert injector.inventory_as_dict(inventory_update, '/tmp/private_data')['plugin'] == expected + # the auto plugin hands the file to the plugin named inside it, whose + # verify_file() only accepts files named after that plugin + assert injector.get_filename(inventory_update) == '{0}.yml'.format(expected.rsplit('.', 1)[-1]) + @pytest.mark.django_db def test_custom_source_custom_credential(organization): diff --git a/awx/ui/src/locales/ar/messages.js b/awx/ui/src/locales/ar/messages.js index 22858271..0fe2ad5e 100644 --- a/awx/ui/src/locales/ar/messages.js +++ b/awx/ui/src/locales/ar/messages.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"--iDlT\":[\"حذف المشروع\"],\"-0AkQd\":[[\"forks\",\"plural\",{\"one\":[\"#\",\" تفريعة\"],\"other\":[\"#\",\" تفريعات\"]}]],\"-0B-ue\":[\"المشاريع\"],\"-5kO8P\":[\"السبت\"],\"-6EcFR\":[\"اضغط Enter للتحرير. اضغط ESC لإيقاف التحرير.\"],\"-7M7WW\":[\"انقر لتبديل القيمة الافتراضية\"],\"-7VWRl\":[\"ذاكرة الوصول العشوائي \",[\"0\"]],\"-8WGoO\":[\"معلمة الملحق مطلوبة.\"],\"-9d7Ol\":[\"النطاق الفرعي لـ Pagerduty\"],\"-9y9jy\":[\"جارٍ تشغيل فحص الصحة\"],\"-9yY_Q\":[\"فشل نسخ المخزون.\"],\"-AZQnp\":[\"SAML\"],\"-FWz2-\":[\"التمرير للسابق\"],\"-FjWgX\":[\"الخميس\"],\"-GMFSa\":[\"فشل نسخ المشروع.\"],\"-GOG9X\":[\"إخفاء الوصف\"],\"-NI2UI\":[\"قسّم العمل الذي يقوم به قالب المهمة هذا إلى العدد المحدد من شرائح المهام، حيث يقوم كل منها بتشغيل المهام نفسها على جزء من المخزون.\"],\"-NezOR\":[\"نوع بيانات الاعتماد هذا قيد الاستخدام حاليًا من قبل بعض بيانات الاعتماد ولا يمكن حذفه\"],\"-OpL2l\":[\"التنفيذ بغض النظر عن الحالة النهائية للعقدة الأصل.\"],\"-PyL32\":[\"هل أنت متأكد من أنك تريد إزالة هذه العقدة؟\"],\"-RAMET\":[\"تحرير هذا الرابط\"],\"-SAqJ3\":[\"فشل نسخ بيانات الاعتماد.\"],\"-Uepfb\":[\"تحكم\"],\"-b3ghh\":[\"تصعيد الامتيازات\"],\"-cWxFz\":[\"قم بتمكين توقيع المحتوى للتحقق من أن المحتوى ظل آمنًا عند مزامنة مشروع. إذا تم العبث بالمحتوى، فلن يتم تشغيل المهمة.\"],\"-hh3vo\":[\"تعذر تحميل آخر تحديث للمهمة\"],\"-li8PK\":[\"استخدام الاشتراك\"],\"-nb9qF\":[\"(المطالبة عند الإطلاق)\"],\"-ohrPc\":[\"بحث تلقائي\"],\"-rfqXD\":[\"الاستبيان مُفعّل\"],\"-uOi7U\":[\"انقر لتنزيل الحزمة\"],\"-vAlj5\":[\"فشل إطلاق المهمة.\"],\"-z0Ubz\":[\"حدد الأدوار المراد تطبيقها\"],\"-zW4qj\":[\"الفرع المراد سحبه. بالإضافة إلى الفروع، يمكنك إدخال العلامات وتجزئات الالتزام والمراجع العشوائية. قد لا تتوفر بعض تجزئات الالتزام والمراجع ما لم تقدم أيضًا refspec مخصصًا.\"],\"-zy2Nq\":[\"النوع\"],\"0-31GV\":[\"جارٍ الإزالة\"],\"0-yjzX\":[\"يجب مزامنة المشروع قبل أن تتوفر مراجعة.\"],\"00_HDq\":[\"نوع السياسة\"],\"00cteM\":[\"يجب ألا يتجاوز هذا الحقل \",[\"0\"],\" أحرف\"],\"01Zgfk\":[\"انتهت المهلة\"],\"02FGuS\":[\"إنشاء مجموعة جديدة\"],\"02ePaq\":[\"حدد \",[\"0\"]],\"02o5A-\":[\"إنشاء مشروع جديد\"],\"05TJDT\":[\"انقر لعرض تفاصيل المهمة\"],\"06Veq8\":[\"مزامنة المشروع\"],\"08IuMU\":[\"الكتابة فوق المتغيرات\"],\"08dX0o\":[\"Grafana\"],\"0Ca6Bi\":[[\"dateStr\"],\" بواسطة <0>\",[\"username\"],\"\"],\"0DRyjU\":[\"جارٍ تشغيل المعالِجات\"],\"0JjrTf\":[\"حدث خطأ أثناء تحليل الملف. يرجى التحقق من تنسيق الملف والمحاولة مرة أخرى.\"],\"0K8MzY\":[\"يجب ألا يتجاوز هذا الحقل \",[\"max\"],\" أحرف\"],\"0LUj25\":[\"حذف مجموعة المثيلات\"],\"0MFMD5\":[\"فشل تشغيل فحص الصحة على مثيل واحد أو أكثر.\"],\"0Ohn6b\":[\"أُطلقت بواسطة\"],\"0PUWHV\":[\"تكرار التردد\"],\"0Pz6gk\":[\"المتغيرات المستخدمة لتكوين ملحق المخزون المُنشأ. للحصول على وصف مفصل لكيفية تكوين هذا الملحق، انظر\"],\"0QsHpG\":[\"مخطط الإدخال الذي يحدد مجموعة من الحقول المرتبة لهذا النوع.\"],\"0Tddvz\":[\"عنوان URL الأساسي لخادم Grafana - سيتم\\n إضافة نقطة النهاية /api/annotations تلقائيًا إلى عنوان\\n URL الأساسي لـ Grafana.\"],\"0WL4_U\":[\"حذف جميع العقد\"],\"0WP27-\":[\"في انتظار مخرجات المهمة…\"],\"0YAsXQ\":[\"مجموعة الحاويات\"],\"0ZdD1M\":[[\"0\",\"plural\",{\"one\":[\"لا يمكنك إلغاء المهمة التالية لأنها لا تعمل:\"],\"other\":[\"لا يمكنك إلغاء المهام التالية لأنها لا تعمل:\"]}]],\"0ZqUtV\":[\"لمزيد من المعلومات، راجع\"],\"0_ru-E\":[\"نسخ المخزون\"],\"0cqIWs\":[\"كلمة مرور المصادقة الأساسية\"],\"0d48JM\":[\"اختيار متعدد (تحديد متعدد)\"],\"0eOoxo\":[\"يرجى تحديد تاريخ/وقت انتهاء يأتي بعد تاريخ/وقت البدء.\"],\"0f7U0k\":[\"الأربعاء\"],\"0gPQCa\":[\"دائمًا\"],\"0lvFRT\":[\"لا يمكنك تغيير نوع بيانات الاعتماد لأنه قد يعطل وظائف الموارد التي تستخدمها.\"],\"0pC_y6\":[\"حدث\"],\"0qOaMt\":[\"حدث خطأ ما في طلب اختبار بيانات الاعتماد والبيانات الوصفية هذه.\"],\"0rVzXl\":[\"إعدادات Google OAuth 2\"],\"0sNe72\":[\"إضافة أدوار\"],\"0tNXE8\":[\"PUT\"],\"0tfvhT\":[\"السعة المستخدمة لمجموعة المثيلات\"],\"0wlLcO\":[\"حدد عدد أيام البيانات التي يجب الاحتفاظ بها.\"],\"0zpgxV\":[\"الخيارات\"],\"0zs8j5\":[\"الحد الأقصى لعدد مرات إعادة محاولة مهمة هذه العقدة تلقائيًا بعد الفشل قبل اتباع مسارات فشلها. لا تتم إعادة محاولة المهام الملغاة أبدًا.\"],\"1-4GhF\":[\"إلغاء المزامنة\"],\"10B0do\":[\"فشل إرسال إشعار الاختبار.\"],\"1280Tg\":[\"اسم المضيف\"],\"12j25_\":[\"مفتاح GPG العام\"],\"12kemj\":[\"عنوان URL للتحكم بالمصدر\"],\"14KOyT\":[\"متغيرات المصدر\"],\"15GcuU\":[\"عرض إعدادات المصادقة المتنوعة\"],\"17TKua\":[\"مجموعة المثيلات\"],\"19zgn6\":[\"نوع المثيل\"],\"1A3EXy\":[\"توسيع\"],\"1C5cFl\":[\"التشغيل التالي\"],\"1Ey8My\":[\"عنوان IP\"],\"1F0IaT\":[\"عرض الجداول\"],\"1HMy92\":[\"JSON:\"],\"1I6UoR\":[\"طرق العرض\"],\"1L3KBl\":[\"إنشاء نوع بيانات اعتماد جديد\"],\"1LRwvx\":[\"إذا كنت تريد أن يتم تحديث مصدر المخزون عند الإطلاق، انقر على تحديث عند الإطلاق، وانتقل أيضًا إلى \"],\"1Ltnvs\":[\"إضافة عقدة\"],\"1PQRWr\":[\"وقت البدء\"],\"1QRNEs\":[\"تكرار التردد\"],\"1RYzKu\":[\"إعادة الإطلاق من العقدة الملغاة\"],\"1UJu6o\":[\"يرجى تحديد رقم يوم بين 1 و 31.\"],\"1UjRxI\":[\"مهلة ذاكرة التخزين المؤقت\"],\"1UzENP\":[\"لا\"],\"1V4Yvg\":[\"النظام المتنوع\"],\"1WlWk7\":[\"عرض تفاصيل مضيف المخزون\"],\"1WsB5U\":[\"لم نتمكن من العثور على اشتراكات مرتبطة بهذا الحساب.\"],\"1ZaQUH\":[\"اسم العائلة\"],\"1_gTC7\":[\"لا يمكنك تحديد عدة بيانات اعتماد vault بنفس معرّف vault. سيؤدي ذلك تلقائيًا إلى إلغاء تحديد الآخر الذي يحمل نفس معرّف vault.\"],\"1abtmx\":[\"ترقية المجموعات الفرعية والمضيفين\"],\"1ahgeV\":[\"Google OAuth2\"],\"1cT4RU\":[\"تحديث SCM\"],\"1fO-kL\":[\"فشل تبديل المثيل.\"],\"1hCxP5\":[\"فشل حذف مجموعة مثيلات واحدة أو أكثر.\"],\"1kwHxg\":[\"مقاييس المضيف\"],\"1n50PN\":[\"علامة تبويب JSON\"],\"1qd4yi\":[\"يجب أن تكون المتغيرات بصيغة JSON أو YAML. استخدم زر الاختيار للتبديل بينهما.\"],\"1rDBnp\":[\"اختلاف الملف\"],\"1w2SCz\":[\"اختر نوع التحكم بالمصدر\"],\"1xdJD7\":[\"ملاءمة الشاشة\"],\"1yHVE-\":[\"جارٍ الإضافة\"],\"2-iKER\":[\"عرض دفق النشاط\"],\"2B_v7Y\":[\"نسبة مثيلات السياسة\"],\"2CTKOa\":[\"العودة إلى المشاريع\"],\"2FB7vv\":[\"حدد مؤسسة قبل تحرير بيئة التنفيذ الافتراضية.\"],\"2FeJcd\":[\"تم تخطي العنصر\"],\"2H9REH\":[\"بحث تقريبي في حقل الاسم.\"],\"2JV4mx\":[\"مجموعات المثيلات التي ينتمي إليها هذا المثيل.\"],\"2KlsJC\":[\"يمكنك تطبيق عدد من المتغيرات الممكنة في\\n الرسالة. لمزيد من المعلومات، راجع\"],\"2MSEkM\":[\"فشل حذف المخزون.\"],\"2a07Yj\":[\"نسخ قالب الإشعار\"],\"2ekvhy\":[\"تردد الاستثناء\"],\"2gDkH_\":[\"يرجى إدخال عدد مرات التكرار.\"],\"2iyx-2\":[\"توثيق Ansible Controller.\"],\"2n41Wr\":[\"إضافة قالب سير العمل\"],\"2nsB1O\":[\"العودة إلى الرموز المميزة\"],\"2ocqzE\":[\"Webhooks: تمكين webhook لهذا القالب.\"],\"2ooR7j\":[\"LDAP 5\"],\"2p6eVk\":[\"نافذة البحث\"],\"2pNIxF\":[\"عقد سير العمل\"],\"2pgi-L\":[\"يشير إلى ما إذا كان المضيف متاحًا ويجب تضمينه في المهام\\n قيد التشغيل. بالنسبة للمضيفين الذين هم جزء من مخزون خارجي، قد تتم\\n إعادة تعيين ذلك بواسطة عملية مزامنة المخزون.\"],\"2qfwJn\":[\"الكتابة فوق\"],\"2r06bV\":[\"Hipchat\"],\"2rvMKg\":[\"رمز التحديث المميز\"],\"2w-INk\":[\"تفاصيل المضيف\"],\"2zs1kI\":[\"هذه القيمة لا تطابق كلمة المرور التي أدخلتها سابقًا. يرجى تأكيد كلمة المرور تلك.\"],\"3-SkJA\":[\"إلغاء ربط المجموعة من المضيف؟\"],\"3-sY1p\":[\"رقم (أرقام) SMS الوجهة\"],\"328Yxp\":[\"فرع التحكم بالمصدر\"],\"38Or-7\":[\"علامات التبويب\"],\"38VIWI\":[\"عرض تفاصيل القالب\"],\"39y5bn\":[\"الجمعة\"],\"3A9ATS\":[\"لم يتم العثور على بيئة التنفيذ.\"],\"3AOZPn\":[\"عرض وتحرير خيارات التصحيح\"],\"3FUtN9\":[\"مزامنة مصدر المخزون\"],\"3IVQDN\":[\"يستخدم هذا الجدول قواعد معقدة غير مدعومة في\\n واجهة المستخدم. يرجى استخدام API لإدارة هذا الجدول.\"],\"3JjdaA\":[\"تشغيل\"],\"3JnvxN\":[\"اختر الموارد التي ستتلقى أدوارًا جديدة. ستتمكن من تحديد الأدوار المراد تطبيقها في الخطوة التالية. لاحظ أن الموارد المختارة هنا ستتلقى جميع الأدوار المختارة في الخطوة التالية.\"],\"3JzsDb\":[\"مايو\"],\"3LoUor\":[\"قنوات الوجهة\"],\"3LqMX2\":[\"CIQ Ascender Automation Platform\"],\"3PAU4M\":[\"السنة\"],\"3PZalO\":[\"لم يتم العثور على المضيف.\"],\"3Rke7L\":[\"1 (معلومات)\"],\"3WGwSW\":[\"احذف المستودع المحلي بالكامل قبل إجراء تحديث. اعتمادًا على حجم المستودع، قد يؤدي ذلك إلى زيادة كبيرة في مقدار الوقت اللازم لإكمال التحديث.\"],\"3YSVMq\":[\"خطأ في الحذف\"],\"3aIe4Y\":[\"إنشاء مؤسسة جديدة\"],\"3b24mY\":[\"المعالج \",[\"0\"]],\"3fG1e7\":[\"الوقت المنقضي\"],\"3fMc43\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" سنة\"],\"other\":[\"#\",\" سنوات\"]}]],\"3hCQhK\":[\"ملحقات المخزون\"],\"3hvUyZ\":[\"خيار جديد\"],\"3mTiHp\":[\"فشل نسخ القالب.\"],\"3pBNb0\":[\"إعادة تحميل المخرجات\"],\"3sFvGC\":[\"تعيين المثيل مُفعّلاً أو مُعطّلاً. إذا كان مُعطّلاً، فلن يتم تعيين المهام لهذا المثيل.\"],\"3sXZ-V\":[\"وانقر على تحديث المراجعة عند الإطلاق.\"],\"3uAM50\":[\"اتفاقية ترخيص المستخدم النهائي\"],\"3wPA9L\":[\"فئة الإعداد\"],\"3y7qi5\":[\"العودة إلى بيانات الاعتماد\"],\"3yy_k-\":[\"عرض جميع الفرق.\"],\"4-RjdJ\":[[\"interval\"],\" year\"],\"40lLFI\":[\"الانتقال إلى الصفحة التالية\"],\"41KRqu\":[\"كلمات مرور بيانات الاعتماد\"],\"45BzQy\":[\"فحوصات الصحة هي مهام غير متزامنة. انظر\"],\"45cx0B\":[\"إلغاء تحرير الاشتراك\"],\"45gLaI\":[\"المطالبة ببيانات الاعتماد عند الإطلاق.\"],\"46SUtl\":[\"تحرير المجموعة\"],\"479kuh\":[\"نسخ المراجعة الكاملة إلى الحافظة.\"],\"47e97a\":[\"الحد الأقصى لإعادة المحاولات\"],\"4BITzH\":[\"خطأ:\"],\"4LzLLz\":[\"عرض جميع الإعدادات\"],\"4Q4HZp\":[\"لم يتم العثور على \",[\"pluralizedItemName\"]],\"4QXpWJ\":[\"انتهت المهلة\"],\"4QfhOe\":[\"بعض معدّلات البحث مثل not__ و __search غير مدعومة في مرشحات مضيف المخزون الذكي. أزلها لإنشاء مخزون ذكي جديد بهذا المرشح.\"],\"4S2cNE\":[\"عرض إعدادات التسجيل\"],\"4Wt2Ty\":[\"حدد العناصر من القائمة\"],\"4_ESDh\":[\"يجب أن يكون هذا الحقل تعبيرًا نمطيًا\"],\"4_xiC_\":[\"الآثار\"],\"4alXD6\":[\"الحد الأقصى لعدد المهام التي تعمل بشكل متزامن على هذه المجموعة.\\n يعني الصفر عدم فرض أي حد.\"],\"4bhLaA\":[\"حدد نوع بيانات اعتماد\"],\"4cWhxn\":[\"يتحكم فيما إذا كان هذا المثيل مُدارًا بواسطة السياسة أم لا. إذا كان مُفعّلاً، فسيكون المثيل متاحًا للتعيين التلقائي إلى مجموعات المثيلات وإلغاء التعيين منها بناءً على قواعد السياسة.\"],\"4dQFvz\":[\"منتهٍ\"],\"4g1rw0\":[\"مقدار الوقت (بالثواني) قبل أن يتوقف إشعار البريد\\n الإلكتروني عن محاولة الوصول إلى المضيف وتنتهي مهلته. يتراوح\\n من 1 إلى 120 ثانية.\"],\"4hPyPF\":[\"حفظ وخروج\"],\"4j2eOR\":[\"حدد المخزون الذي سينتمي إليه هذا المضيف.\"],\"4jnim6\":[\"حدد خدمة webhook.\"],\"4km-Vu\":[\"غير متوافق\"],\"4kw_um\":[[\"interval\"],\" minute\"],\"4lCMxZ\":[\"شرح الفشل:\"],\"4lgLew\":[\"فبراير\"],\"4mQyZf\":[\"يمكن لخدمات webhook استخدام هذا كسر مشترك.\"],\"4nLbTY\":[\"عرض جميع مهام الإدارة\"],\"4o_cFL\":[\"حذف التطبيق\"],\"4s0pSB\":[\"قدم نمط مضيف لزيادة تقييد قائمة المضيفين الذين ستتم إدارتهم أو التأثير عليهم بواسطة Playbook. يُسمح بأنماط متعددة. راجع وثائق Ansible لمزيد من المعلومات والأمثلة حول الأنماط.\"],\"4uVADI\":[\"سر العميل\"],\"4vFDZV\":[\"إنشاء قالب مهمة جديد\"],\"4vkbaA\":[\"المشروع الذي يتم من خلاله الحصول على مصدر تحديث المخزون هذا.\"],\"4yGeRr\":[\"مزامنة المخزون\"],\"4zue79\":[\"حقوق النشر\"],\"5-qYGv\":[\"تحرير المثيل\"],\"54_SyV\":[[\"0\",\"plural\",{\"one\":[\"ليس لديك إذن لإلغاء المهمة التالية:\"],\"other\":[\"ليس لديك إذن لإلغاء المهام التالية:\"]}]],\"56fd5u\":[\"هل أنت متأكد من أنك تريد إزالة جميع العقد في سير العمل هذا؟\"],\"5B77Dm\":[\"آخر مهمة\"],\"5F5F4w\":[\"موافقة سير العمل\"],\"5IhYoj\":[\"أنواع العقد\"],\"5K7kGO\":[\"التوثيق\"],\"5KMGbn\":[\"هل أنت متأكد من أنك تريد إلغاء هذه المهمة؟\"],\"5RMgCw\":[\"المضيفون\"],\"5S4tZv\":[\"لم يطابق التردد قيمة متوقعة\"],\"5Sa1Ss\":[\"البريد الإلكتروني\"],\"5TnQp6\":[\"نوع المهمة\"],\"5WFDw4\":[\"التجميع فقط حسب\"],\"5X2wog\":[\"حدثت مشكلة في تسجيل الدخول. يرجى المحاولة مرة أخرى.\"],\"5_vHPm\":[\"عرض إعدادات TACACS+\"],\"5ajaW1\":[\"التنفيذ عندما يطابق أثر العقدة الأصل الشرط.\"],\"5dJK4M\":[\"الأدوار\"],\"5eHyY-\":[\"إشعار الاختبار\"],\"5eL2KN\":[\"عنوان URL الهدف\"],\"5lqXf5\":[\"الرجوع إلى إعدادات المصنع الافتراضية.\"],\"5n_soj\":[\"المطالبة بعدد شرائح المهمة عند الإطلاق.\"],\"5p6-Mk\":[\"التصفية حسب المهام الفاشلة\"],\"5pDe2G\":[\"Remove \",[\"0\"],\" Access\"],\"5pa4JT\":[\"بدأ Playbook\"],\"5qauVA\":[\"قالب مهمة سير العمل هذا قيد الاستخدام حاليًا من قبل موارد أخرى. هل أنت متأكد من أنك تريد حذفه؟\"],\"5vA8H0\":[\"لم يطابق أي مضيف\"],\"5xzS8Q\":[\"الرمز المميز الذي يضمن أن هذا ملف مصدر\\n لملحق 'constructed'.\"],\"5y9wkB\":[\"العودة إلى الإشعارات\"],\"6-OdGi\":[\"البروتوكول\"],\"6-ptnU\":[\"خيار إلى\"],\"623gDt\":[\"فشل حذف المستخدم.\"],\"63C4Yo\":[\"مجموعة الحاويات\"],\"66Zq7T\":[\"حفظ تغييرات الرابط\"],\"66qTfS\":[\"الأسبوع الماضي\"],\"679-JR\":[\"بحث تقريبي في حقول المعرّف أو الاسم أو الوصف.\"],\"68OTAn\":[\"This intance is currently being used by other resources. Are you sure you want to delete it?\"],\"68h6WG\":[\"إطلاق مهمة الإدارة\"],\"69aXwM\":[\"إضافة مجموعة موجودة\"],\"69zuwn\":[\"Deprovisioning these instances could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"6ASSBg\":[\"LDAP 4\"],\"6BzDub\":[\"حذف مؤقت\"],\"6GBt0m\":[\"البيانات الوصفية\"],\"6HLTEb\":[\"تصفية...\"],\"6J-cs1\":[\"ثوانٍ المهلة\"],\"6KhU4s\":[\"هل أنت متأكد من أنك تريد الخروج من منشئ سير العمل دون حفظ تغييراتك؟\"],\"6LTyxl\":[\"المراجعة\"],\"6PmtyP\":[\"تبديل وسيلة الإيضاح\"],\"6RDwJM\":[\"الرموز المميزة\"],\"6UYTy8\":[\"دقيقة\"],\"6V3Ea3\":[\"تم النسخ\"],\"6WwHL3\":[\"إجمالي العقد\"],\"6XOI1I\":[\"إنشاء مخزون موحّد جديد\"],\"6XgEPi\":[\"ساعة\"],\"6YtxFj\":[\"الاسم\"],\"6Z5ACo\":[\"مفتاح تكوين المضيف\"],\"6bpC9t\":[\"عقدة فاشلة\"],\"6cylr_\":[\"Stdout\"],\"6f961q\":[\"فقط إذا كان مفقودًا\"],\"6hEnxG\":[\"تمكين تصعيد الامتيازات\"],\"6j6_0F\":[\"مورد ذو صلة\"],\"6kpN96\":[\"فشل حذف الإشعار.\"],\"6lGV3K\":[\"عرض أقل\"],\"6msU0q\":[\"فشل حذف مهمة واحدة أو أكثر.\"],\"6nsio_\":[\"تشغيل الأمر\"],\"6oNH0E\":[\"دليل تكوين الملحق.\"],\"6pMgh_\":[\"عرض إعدادات LDAP\"],\"6rSKy6\":[\"حدد مخزونات المصدر لهذا المخزون الموحّد. عند إطلاق مهمة، سيتم توجيه المضيفين إلى مجموعة مثيلات كل مخزون مصدر تلقائيًا.\"],\"6uvnKV\":[\"مفتاح خدمة/تكامل API\"],\"6vrz8I\":[\"فشل إلغاء مهمة واحدة أو أكثر.\"],\"6zGHNM\":[\"المضيفون المتبقون\"],\"74MNbw\":[\"Ctrl IQ, Inc.\"],\"764xeZ\":[\"فشل تحديث الاستبيان.\"],\"7Bj3x9\":[\"فشل\"],\"7ElOdS\":[\"معرّف لوحة المعلومات\"],\"7IUE9q\":[\"متغيرات المصدر\"],\"7JF9w9\":[\"إضافة سؤال\"],\"7L01XJ\":[\"الإجراءات\"],\"7O5TcN\":[\"ملخص الحدث غير متاح\"],\"7PzzBU\":[\"User\"],\"7UZtKb\":[\"المؤسسة التي تملك قالب مهمة سير العمل هذا.\"],\"7VETeB\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"],\"7VpPHA\":[\"تأكيد\"],\"7Xk3M1\":[\"حدد المشروع الذي يحتوي على playbook الذي تريد أن تنفذه هذه المهمة.\"],\"7ZhNzL\":[\"الانتقال إلى الصفحة الأولى\"],\"7b8TOD\":[\"التفاصيل.\"],\"7bDeKc\":[\"بيان الاشتراك\"],\"7fJwmW\":[\"قائمة العناصر المحددة.\"],\"7hS02I\":[[\"automatedInstancesCount\"],\" منذ \",[\"automatedInstancesSinceDateTime\"]],\"7icMBj\":[\"لا تتوفر بيانات مهمة\"],\"7kb4LU\":[\"تمت الموافقة\"],\"7p5kLi\":[\"لوحة المعلومات\"],\"7q256R\":[\"السماح بتجاوز الفرع\"],\"7qFdk8\":[\"تحرير بيانات الاعتماد\"],\"7sMeHQ\":[\"المفتاح\"],\"7sNhEz\":[\"اسم المستخدم\"],\"7w3QvK\":[\"نص رسالة النجاح\"],\"7wgt9A\":[\"تشغيل Playbook\"],\"7zmvk2\":[\"فشل العنصر\"],\"81eOdm\":[\"إعادة إطلاق سير العمل\"],\"82O8kJ\":[\"هذا المشروع قيد المزامنة حاليًا ولا يمكن النقر عليه حتى تكتمل عملية المزامنة\"],\"82sWFi\":[\"الإدارة\"],\"84Usx_\":[\"فشل حذف المشروع.\"],\"87a_t_\":[\"التسمية\"],\"88ip8h\":[\"الرجوع عن الكل\"],\"8BkLPF\":[\"قائمة عناوين URI المسموح بها، مفصولة بمسافات\"],\"8F8HYs\":[\"حدد اشتراك Ansible Automation Platform الخاص بك لاستخدامه.\"],\"8H3Igx\":[[\"interval\"],\" month\"],\"8Oef5v\":[\"تتضمن أمثلة عناوين URL للتحكم في مصدر GIT:\"],\"8XM8GW\":[\"فشل تعيين الأدوار بشكل صحيح\"],\"8Z236a\":[\"شعار العلامة التجارية\"],\"8ZsakT\":[\"كلمة المرور\"],\"8_wZUD\":[\"أدوار الفريق\"],\"8d57h8\":[\"عرض إعدادات النظام المتنوعة\"],\"8gCRbU\":[\"مطالبات أخرى\"],\"8gaTqG\":[\"تفاصيل النوع\"],\"8kDNpI\":[\"نتيجة العقدة الأصل مطلوبة قبل تقييم الشرط.\"],\"8l9yyw\":[\"قالب المهمة\"],\"8lEjQX\":[\"تثبيت الحزمة\"],\"8lb4Do\":[\"مسح الاشتراك\"],\"8oiwP_\":[\"تكوين الإدخال\"],\"8p_xVT\":[[\"0\",\"plural\",{\"one\":[[\"1\"]],\"other\":[[\"2\"]]}]],\"8u5g0S\":[\"حذف المخزون الذكي\"],\"8vETh9\":[\"عرض\"],\"8wxHsh\":[\"مفتاح webhook لقالب مهمة سير العمل هذا.\"],\"8yd882\":[\"فشل إلغاء ربط فريق واحد أو أكثر.\"],\"8zGO4o\":[\"الحقل يطابق التعبير النمطي المحدد.\"],\"8zoIOi\":[[\"0\",\"plural\",{\"one\":[\"نوع بيانات الاعتماد هذا قيد الاستخدام حاليًا من قبل بعض بيانات الاعتماد ولا يمكن حذفه.\"],\"other\":[\"لا يمكن حذف أنواع بيانات الاعتماد التي تستخدمها بيانات الاعتماد. هل أنت متأكد من أنك تريد الحذف على أي حال؟\"]}]],\"8zvzWO\":[\"السماح بعمليات تشغيل متزامنة لقالب مهمة سير العمل هذا.\"],\"9-wVFp\":[\"عرض تفاصيل المخزون الموحّد\"],\"91UHfE\":[\"تحديث المخزون\"],\"91lyAf\":[\"المهام المتزامنة\"],\"933cZy\":[\"إعدادات النظام المتنوعة\"],\"954HqS\":[\"متى تمت أتمتة المضيف لأول مرة\"],\"95p1BK\":[\"إنشاء مستخدم جديد\"],\"98Qtlu\":[\"في كل مرة يتم فيها تشغيل مهمة باستخدام هذا المشروع، قم بتحديث مراجعة المشروع قبل بدء المهمة.\"],\"991Df5\":[\"a new webhook key will be generated on save.\"],\"99qC6z\":[[\"interval\"],\" week\"],\"9Ah95g\":[[\"0\",\"plural\",{\"one\":[\"يُستخدم هذا المخزون حاليًا من قبل بعض القوالب. هل أنت متأكد من أنك تريد حذفه؟\"],\"other\":[\"قد يؤثر حذف هذه المخزونات على بعض القوالب التي تعتمد عليها. هل أنت متأكد من أنك تريد الحذف على أي حال؟\"]}]],\"9BTNYL\":[\"Expected at least one of client_email, project_id or private_key to be present in the file.\"],\"9BpfLa\":[\"حدد التسميات\"],\"9DOXq6\":[\"عرض جميع القوالب.\"],\"9DugxF\":[\"نوع الاشتراك\"],\"9HhFQ8\":[\"يُرجع النتائج التي لها قيم مختلفة عن هذه بالإضافة إلى الفلاتر الأخرى.\"],\"9L1ngr\":[\"إجمالي المهام\"],\"9N-4tQ\":[\"نوع بيانات الاعتماد\"],\"9NyAH9\":[\"تم التخطي\"],\"9PB0sF\":[\"IRC\"],\"9Rsklx\":[\"إزالة جميع العقد\"],\"9Tmez1\":[\"عرض تفاصيل المثيل\"],\"9UuGMQ\":[\"حذف معلّق\"],\"9V-Un3\":[\"تمكين تخزين الحقائق\"],\"9VMv7k\":[\"المخزون المُنشأ\"],\"9Wm-J4\":[\"تبديل كلمة المرور\"],\"9XA1Rs\":[\"المشروع قيد المزامنة حاليًا وستتوفر المراجعة بعد اكتمال المزامنة.\"],\"9Y3BQE\":[\"حذف المؤسسة\"],\"9YSB0Z\":[\"هذا الجدول يفتقد مخزونًا\"],\"9ZnrIx\":[\"عرض وتحرير معلومات اشتراكك\"],\"9fRa7M\":[\"حدد صفًا للإزالة\"],\"9hmrEp\":[\"إعادة الإطلاق عند\"],\"9iX1S0\":[\"سيؤدي هذا الإجراء إلى إزالة المثيل التالي وقد تحتاج إلى إعادة تشغيل حزمة التثبيت لأي مثيل كان متصلاً سابقًا بـ:\"],\"9jfn-S\":[\"غير موسّع\"],\"9l0RZY\":[\"انقر على عقدة متاحة لإنشاء رابط جديد. انقر خارج الرسم البياني للإلغاء.\"],\"9m7jms\":[\"مخزونات المصدر التي سيتم توجيه مضيفيها إلى مجموعات المثيلات الخاصة بها عند إطلاق مهمة على هذا المخزون الموحّد.\"],\"9mfJJf\":[\"قوالب المهام\"],\"9nhhVW\":[\"الصفحات\"],\"9nypdt\":[\"استعادة القيمة الأولية.\"],\"9odS2n\":[\"المضيفون الفاشلون\"],\"9og-0c\":[\"بيئة التنفيذ هذه قيد الاستخدام حاليًا من قبل موارد أخرى. هل أنت متأكد من أنك تريد حذفها؟\"],\"9rFgm2\":[\"سعة الاشتراك\"],\"9rvzNA\":[\"نافذة الربط\"],\"9td1Wl\":[\"فحص\"],\"9uI_rE\":[\"تراجع\"],\"9u_dDE\":[\"عدد المضيفين غير القابلين للوصول\"],\"9uxVdR\":[\"بيانات اعتماد التحكم بالمصدر\"],\"9wvWk3\":[\"يُنشئ إدخال المخزون المُنشأ هذا \\n مجموعة لكلتا الفئتين ويستخدم \\n الحد (نمط المضيف) لإرجاع المضيفين الموجودين فقط \\n في تقاطع هاتين المجموعتين.\"],\"A1a8Ku\":[\"خطأ في إطلاق مهمة الإدارة\"],\"A1taO8\":[\"بحث\"],\"A3o0Xd\":[\"مجموعات المثيلات التي ستعمل عليها هذه المؤسسة.\"],\"A6paZd\":[\"إضافة مخزون موحّد\"],\"A8lIi2\":[\"مزامنة للحصول على مراجعة\"],\"A9-PUr\":[\"تم إرسال طلب (طلبات) فحص الصحة. يرجى الانتظار وإعادة تحميل الصفحة.\"],\"AA2ASV\":[\"تم نسخ بيئة التنفيذ بنجاح\"],\"ADVQ46\":[\"تسجيل الدخول\"],\"ARAUFe\":[\"حذف المخزون\"],\"AV22aU\":[\"حدث خطأ ما...\"],\"AWOSPo\":[\"تكبير\"],\"Ab1y_G\":[\"إلغاء مزامنة مصدر المخزون المُنشأ\"],\"AgTBbk\":[[\"intervalValue\",\"plural\",{\"one\":[\"أسبوع\"],\"other\":[\"أسابيع\"]}]],\"AgTuXC\":[\"ليس لديك إذن لحذف \",[\"pluralizedItemName\"],\": \",[\"itemsUnableToDelete\"]],\"Ai2U7L\":[\"المضيف\"],\"Aj3on1\":[\"تمكين التسجيل الخارجي\"],\"AoCBvp\":[\"شريحة المهمة\"],\"Apl-Vf\":[\"بيان اشتراك Red Hat\"],\"Apv-R1\":[\"إذا كنت مستعدًا للترقية أو التجديد، يرجى <0>الاتصال بنا.\"],\"AqdlyH\":[\"لا يمكن تحديد قوالب المهام ذات بيانات الاعتماد التي تطالب بكلمات مرور عند إنشاء العقد أو تحريرها\"],\"ArtxnQ\":[\"Refspec التحكم بالمصدر\"],\"AsLVdj\":[\"استخدم قناة IRC واحدة أو اسم مستخدم واحد لكل سطر. رمز\\n الجنيه (#) للقنوات، ورمز At (@) للمستخدمين، غير\\n مطلوبين.\"],\"AwUsnG\":[\"المثيلات\"],\"AxC8wb\":[\"نسخ المخرجات\"],\"AxPAXW\":[\"لم يتم العثور على نتائج\"],\"Axi4f8\":[\"Dragging item \",[\"id\"],\". Item with index \",[\"oldIndex\"],\" in now \",[\"newIndex\"],\".\"],\"Azw0EZ\":[\"إنشاء مخزون ذكي جديد\"],\"B0HFJ8\":[\"فشل إلغاء ربط مضيف واحد أو أكثر.\"],\"B0P3qo\":[\"معرّف المهمة:\"],\"B0dbFG\":[\"حذف الجدول\"],\"B2Zb_F\":[\"JSON\"],\"B3ZzHO\":[\"آخر أتمتة\"],\"B4WcU9\":[\"تمت الموافقة بواسطة \",[\"0\"],\" - \",[\"1\"]],\"B7FU4J\":[\"بدأ المضيف\"],\"B8bpYS\":[\"قم بتحميل بيان اشتراك Red Hat الذي يحتوي على اشتراكك. لإنشاء بيان اشتراكك، انتقل إلى <0>تخصيصات الاشتراك على بوابة عملاء Red Hat.\"],\"BAmn8K\":[\"حدد نوع مورد\"],\"BERhj_\":[\"رسالة النجاح\"],\"BGNDgh\":[\"الاسم المستعار للعقدة\"],\"BH7upP\":[\"POST\"],\"BIJ2_m\":[\"بيئة التنفيذ التي ستُستخدم للمهام داخل هذه المؤسسة. ستُستخدم كخيار احتياطي عندما لا تكون بيئة التنفيذ قد عُيّنت صراحةً على مستوى المشروع أو قالب المهمة أو سير العمل.\"],\"BNDplB\":[\"تم نسخ القالب بنجاح\"],\"BWTzAb\":[\"يدوي\"],\"BaPk6N\":[\"المسار الأساسي المستخدم لتحديد موقع Playbooks. سيتم إدراج الأدلة الموجودة داخل هذا المسار في القائمة المنسدلة لدليل Playbook. يوفر المسار الأساسي ودليل Playbook المحدد معًا المسار الكامل المستخدم لتحديد موقع Playbooks.\"],\"BfYq0G\":[\"نوع التحكم بالمصدر\"],\"Bg7M6U\":[\"لم يتم العثور على نتيجة\"],\"Bl2Djq\":[\"عرض الرموز المميزة\"],\"Bl2eoO\":[\"مشفّر\"],\"BskWMl\":[\"غير قابل للوصول\"],\"BsrdSv\":[\"أدخل متغيرات المخزون باستخدام صيغة JSON أو YAML. استخدم زر الاختيار للتبديل بينهما. راجع توثيق Ansible Controller للحصول على مثال على الصيغة.\"],\"Bv8zdm\":[\"مخزونات الإدخال\"],\"BwJKBw\":[\"من\"],\"Bz7WRU\":[[\"0\",\"plural\",{\"one\":[\"يرجى إدخال رقم هاتف صالح.\"],\"other\":[\"يرجى إدخال أرقام هاتف صالحة.\"]}]],\"BzEFor\":[\"أو\"],\"BzbzJb\":[\"الحقائق\"],\"BzfzPK\":[\"العناصر\"],\"C-gr_n\":[\"إعدادات Azure AD\"],\"C0sUgI\":[\"إنشاء مخزون جديد\"],\"C2KEkR\":[\"كلمة مرور SSH\"],\"C3Q1LZ\":[\"عرض إعدادات OIDC\"],\"C4C-qQ\":[\"تفاصيل الجدول\"],\"C6GAUT\":[\"موسّع\"],\"C7dP40\":[\"فشل رفض \",[\"0\"],\".\"],\"C7s60U\":[\"تفاصيل Webhook\"],\"CAL6E9\":[\"الفرق\"],\"CDOlBM\":[\"معرّف المثيل\"],\"CE-M2e\":[\"معلومات\"],\"CGOseh\":[\"تفاصيل الجدول\"],\"CGZgZY\":[\"حدد صفًا لإلغاء الربط\"],\"CG_9l6\":[\"LDAP 1\"],\"CGwKKr\":[[\"0\",\"plural\",{\"one\":[\"حذف المجموعة؟\"],\"other\":[\"حذف المجموعات؟\"]}]],\"CIEoqM\":[\"اسم المثيل\"],\"CKc7jz\":[\"نافذة تفاصيل المضيف\"],\"CL7QiF\":[\"اكتب الإجابة ثم انقر على مربع الاختيار على اليمين لتحديد الإجابة\\nكافتراضية.\"],\"CLTHnk\":[\"ترتيب أسئلة الاستبيان\"],\"CMmwQ-\":[\"تاريخ بدء غير معروف\"],\"CNZ5h9\":[\"فترة الاحتفاظ بالبيانات\"],\"CS8u6E\":[\"تمكين Webhook\"],\"CSvk3a\":[\"الرقم المرتبط بـ \\\"خدمة\\n المراسلة\\\" في Twilio بالتنسيق +18005550199.\"],\"CW11B-\":[\"الحد الأدنى\"],\"CXJHPJ\":[\"تم التعديل بواسطة (اسم المستخدم)\"],\"CZDqWd\":[\"مراجعة المشروع قديمة حاليًا. يرجى التحديث لجلب أحدث مراجعة.\"],\"CZg9aH\":[\"حدد المضيفين\"],\"C_Lu89\":[\"أدخل المدخلات باستخدام صيغة JSON أو YAML. راجع توثيق Ansible Controller للحصول على مثال على الصيغة.\"],\"C_NnqT\":[\"إنشاء مضيف جديد\"],\"Cc8jO8\":[\"حدد بيانات الاعتماد التي تريد استخدامها عند الوصول إلى المضيفين البعيدين لتشغيل الأمر. اختر بيانات الاعتماد التي تحتوي على اسم المستخدم ومفتاح SSH أو كلمة المرور التي سيحتاجها Ansible لتسجيل الدخول إلى المضيفين البعيدين.\"],\"CcKMRv\":[\"قالب المهمة هذا قيد الاستخدام حاليًا من قبل موارد أخرى. هل أنت متأكد من أنك تريد حذفه؟\"],\"CczdmZ\":[\"عرض جميع بيانات الاعتماد.\"],\"CdGRti\":[\"عرض جميع قوالب الإشعارات.\"],\"Ce28nP\":[\"<0>ملاحظة: قد تتم إعادة ربط المثيلات بمجموعة المثيلات هذه إذا كانت مُدارة بواسطة <1>قواعد السياسة.\"],\"Cev3QF\":[\"دقائق المهلة\"],\"ChTa9Z\":[[\"intervalValue\",\"plural\",{\"one\":[\"ساعة\"],\"other\":[\"ساعات\"]}]],\"CoPs3y\":[\"لا يحتوي سير العمل هذا على أي عقد مُكوّنة.\"],\"CoTqdo\":[\"\\n Note that you may still see the group in the list after\\n disassociating if the host is also a member of that group’s\\n children. This list shows all groups the host is associated\\n with directly and indirectly.\\n \"],\"Coyxic\":[\"انقر على هذا الزر للتحقق من الاتصال بنظام إدارة الأسرار باستخدام بيانات الاعتماد المحددة والمدخلات المُحددة.\"],\"Cs0oSA\":[\"عرض الإعدادات\"],\"Csvbqs\":[\"اعرض وثائق ملحق المخزون المُنشأ هنا.\"],\"Cx8SDk\":[\"انتهاء صلاحية رمز التحديث\"],\"D-NlUC\":[\"النظام\"],\"D1JWCq\":[[\"interval\"],\" minutes\"],\"D4euEu\":[\"إعدادات المصادقة المتنوعة\"],\"D89zck\":[\"الأحد\"],\"DBBU2q\":[\"يجب تحديد قيمة واحدة على الأقل لهذا الحقل.\"],\"DBC3t5\":[\"الأحد\"],\"DBHTm_\":[\"أغسطس\"],\"DFNPK8\":[\"تشغيل فحص الصحة\"],\"DGZ08x\":[\"مزامنة الكل\"],\"DHf0mx\":[\"إنشاء مثيل جديد\"],\"DHrOgD\":[\"حالة تحديث المشروع\"],\"DIKUI7\":[\"الحد الأدنى للطول\"],\"DIX823\":[\"يجب أن يكون هذا الحقل رقمًا وأن تكون قيمته أقل من \",[\"max\"]],\"DJIazz\":[\"تمت الموافقة بنجاح\"],\"DNLiC8\":[\"الرجوع عن الإعدادات\"],\"DNqHaO\":[\"يعطي هذا الجدول بعض المعلمات المفيدة لملحق المخزون\\n المُنشأ. للحصول على القائمة الكاملة للمعلمات \"],\"DPfwMq\":[\"تم\"],\"DV-Xbw\":[\"اللغة المفضّلة\"],\"DVIUId\":[\"تجاوزات المطالبة\"],\"DZNGtI\":[\"نتائج سحب المشروع\"],\"D_oBkC\":[\"GitHub Team\"],\"DdlJTq\":[\"تطابق تام (البحث الافتراضي إذا لم يُحدد).\"],\"De2WsK\":[\"سيؤدي هذا الإجراء إلى إلغاء ربط جميع الأدوار لهذا المستخدم من الفرق المحددة.\"],\"DhSza7\":[\"عقدة Controller\"],\"DnkUe2\":[\"اختر خدمة Webhook\"],\"DqnAO4\":[\"أول أتمتة\"],\"Du6bPw\":[\"العنوان\"],\"Dug0C-\":[\"بعد عدد من مرات التكرار\"],\"DyYigF\":[\"إعدادات TACACS+\"],\"Dz7fsq\":[\"تكبير\"],\"E6Z4zF\":[\"تنسيق ملف غير صالح. يرجى تحميل بيان اشتراك Red Hat صالح.\"],\"E86aJB\":[\"إلغاء ربط الدور!\"],\"E9wN_Q\":[\"آخر فحص صحة\"],\"EH6-2h\":[\"عرض الطوبولوجيا\"],\"EHu0x2\":[\"جارٍ المزامنة\"],\"EIBcgD\":[\"مصدره مشروع\"],\"EIkRy0\":[\"قنوات الوجهة\"],\"EJQLCT\":[\"فشل حذف قالب مهمة سير العمل.\"],\"ENDbv1\":[\"عرض جميع المضيفين.\"],\"ENRWp9\":[\"وسوم التعليق\"],\"ENyw54\":[\"المجموعات ذات الصلة\"],\"EP-eCv\":[\"إعدادات SAML\"],\"EQ-qsg\":[\"قوالب مهام سير العمل\"],\"ES0WE_\":[\"عند انتهاء المهلة\"],\"ETUQuF\":[\"فشل حذف مخزون واحد أو أكثر.\"],\"EWL-h4\":[\"host-description-\",[\"0\"]],\"E_QGRL\":[\"مُعطّل\"],\"E_tJey\":[\"بيئة التنفيذ الافتراضية\"],\"Eb5CN1\":[[\"0\",\"plural\",{\"one\":[\"هذه المؤسسة قيد الاستخدام حاليًا من قبل موارد أخرى. هل أنت متأكد من أنك تريد حذفها؟\"],\"other\":[\"قد يؤثر حذف هذه المؤسسات على موارد أخرى تعتمد عليها. هل أنت متأكد من أنك تريد الحذف على أي حال؟\"]}]],\"EdQY6l\":[\"لا شيء\"],\"Eff_76\":[\"المنطقة الزمنية المحلية\"],\"Eg4kGP\":[\"الإجابة (الإجابات) الافتراضية\"],\"EmSrGB\":[\"قبل\"],\"EmfKjn\":[\"عرض إعدادات استكشاف الأخطاء وإصلاحها\"],\"Emna_v\":[\"تحرير المصدر\"],\"EmzUsN\":[\"عرض تفاصيل العقدة\"],\"EnC3hS\":[\"مواصفات pod مخصصة\"],\"EpH7Cd\":[\"حذف بيانات الاعتماد\"],\"Eq6_y5\":[\"this Tower documentation page\"],\"Eqp9wv\":[\"عرض أمثلة JSON في\"],\"EwxKbE\":[\"محذوف\"],\"EzwCw7\":[\"تحرير السؤال\"],\"F-0xxR\":[\"الموارد مفقودة من هذا القالب.\"],\"F-LGli\":[\"ليس لديك إذن لإلغاء ربط ما يلي: \",[\"itemsUnableToDisassociate\"]],\"F-_-es\":[\"حدد المثيلات\"],\"F0xJYs\":[\"فشل تحديث تعديل السعة.\"],\"F2l57P\":[\"الحد الأدنى لنسبة جميع المثيلات التي سيتم تعيينها\\n تلقائيًا لهذه المجموعة عند اتصال مثيلات جديدة.\"],\"FCnKmF\":[\"إنشاء رمز مستخدم مميز\"],\"FD8Y9V\":[\"انقر على أيقونة عقدة لعرض التفاصيل.\"],\"FEr96N\":[\"السمة\"],\"FFv0Vh\":[\"الأتمتة\"],\"FG2mko\":[\"حدد العناصر من القائمة\"],\"FGnH0p\":[\"سيؤدي هذا إلى إلغاء جميع العقد اللاحقة في سير العمل هذا\"],\"FMpB-A\":[\"<0>ملاحظة: قد يتم إلغاء ربط المثيلات المرتبطة يدويًا تلقائيًا من مجموعة المثيلات إذا كان المثيل مُدارًا بواسطة <1>قواعد السياسة.\"],\"FO7Rwo\":[\"إزالة الأقران؟\"],\"FQto51\":[\"توسيع جميع الصفوف\"],\"FTuS3P\":[\"قد لا يكون هذا الحقل فارغًا\"],\"FV5MUV\":[\"إذا كان المستخدمون بحاجة إلى ملاحظات حول صحة\\n مجموعاتهم المُنشأة، يُوصى بشدة\\n باستخدام strict: true في تكوين الملحق.\"],\"FXmp8Q\":[\"فشل ربط الدور\"],\"FYJRCY\":[\"فشل حذف مشروع واحد أو أكثر.\"],\"F_Nk65\":[\"تنزيل المخرجات\"],\"F_c3Jb\":[\"مواصفات Pod مخصصة لـ Kubernetes أو OpenShift.\"],\"Failed\":[\"فشل\"],\"Fanpmj\":[\"المتغيرات المطلوبة\"],\"FblMFO\":[\"حدد مقياسًا\"],\"FclH3w\":[\"تم الحفظ بنجاح!\"],\"FfGhiE\":[\"خطأ في حفظ سير العمل!\"],\"FhTYgi\":[\"فشل حذف قالب مهمة واحد أو أكثر.\"],\"FhhvWu\":[\"سيؤدي هذا إلى إلغاء جميع العقد اللاحقة في سير العمل هذا.\"],\"FiyMaa\":[\"اختر ملف .json\"],\"FjVFQ-\":[\"اختر وحدة\"],\"FjkaiT\":[\"تصغير\"],\"FkQvI0\":[\"تحرير القالب\"],\"FlvpdU\":[\"If enabled, show the changes made\\n by Ansible tasks, where supported. This is equivalent to Ansible’s\\n --diff mode.\"],\"FnSb-y\":[\"إلغاء المهمة\"],\"FnZzou\":[\"حالة المثيل\"],\"FncCci\":[\"RADIUS\"],\"Fo2bwm\":[\"الفاعل\"],\"Fo6qAq\":[\"تتضمن أمثلة عناوين URL للتحكم في مصدر Subversion:\"],\"Fp0Rk4\":[\"تسميات اختيارية تصف هذا المخزون،\\n مثل 'dev' أو 'test'. يمكن استخدام التسميات لتجميع وتصفية\\n المخزونات والمهام المكتملة.\"],\"FqW8E0\":[\"السعة المستخدمة\"],\"FsGJXJ\":[\"تنظيف\"],\"Fx2-x_\":[\"إضافة أدوار المستخدم\"],\"G-jHgL\":[\"تعيين مسار المصدر إلى\"],\"G2KpGE\":[\"تحرير المشروع\"],\"G3myU-\":[\"الثلاثاء\"],\"G768_0\":[\"مرفوض\"],\"G8jcl6\":[\"قوالب الإشعارات\"],\"G9MOps\":[\"الفرع المراد استخدامه عند مزامنة المخزون. يُستخدم افتراضي المشروع إذا كان فارغًا. مسموح به فقط إذا تم تعيين حقل allow_override للمشروع على true.\"],\"GDvlUT\":[\"الدور\"],\"GGWsTU\":[\"ملغى\"],\"GGuAXg\":[\"عرض إعدادات SAML\"],\"GHDQ7i\":[\"فشل حذف مؤسسة واحدة أو أكثر.\"],\"GJKwN0\":[\"الجداول\"],\"GLZDtF\":[\"تحذير النظام\"],\"GLwo_j\":[\"0 (تحذير)\"],\"GMaU6_\":[\"المطالبة بنوع المهمة عند الإطلاق.\"],\"GO6s6F\":[\"إعدادات المهام\"],\"GRwtth\":[\"تشغيل فحص صحة على المثيل\"],\"GSYBQc\":[\"مفتاح خدمة/تكامل API\"],\"GTOcxw\":[\"تحرير المستخدم\"],\"GU9vaV\":[\"المضيفون غير القابلين للوصول\"],\"GXiLKo\":[\"منطقة نص\"],\"GZIG7_\":[\"تم نسخ المخزون بنجاح\"],\"G_Dwo_\":[\"Choose an answer type or format you want as the prompt for the user.\\n Refer to the Ansible Controller Documentation for more additional\\n information about each option.\"],\"GaJLE6\":[\"بدأ بواسطة\"],\"Gd-B71\":[\"لم يتم العثور على نوع بيانات الاعتماد.\"],\"Ge5ecx\":[\"الحد الأقصى للمضيفين\"],\"GeIrWJ\":[\"شعار \",[\"brandName\"]],\"Gf3vm8\":[\"لكل صفحة\"],\"GiXRTS\":[\"فشل حذف رمز مستخدم مميز واحد أو أكثر.\"],\"Gix1h_\":[\"عرض جميع المهام\"],\"GkbHM9\":[\"عرض جميع المشاريع.\"],\"Gn7TK5\":[\"تبديل الأدوات\"],\"GpNoVG\":[\"يرجى إضافة جدول لملء هذه القائمة.\"],\"GpWp6E\":[\"تحديد الميزات والوظائف على مستوى النظام\"],\"GtycJ_\":[\"المهام\"],\"H0z3JJ\":[\"تُستخدم هذه الوسيطات مع الوحدة المحددة. يمكنك العثور على معلومات حول \",[\"moduleName\"],\" بالنقر فوق \"],\"H1M6a6\":[\"عرض جميع المثيلات.\"],\"H3kCln\":[\"اسم المضيف\"],\"H6jbKn\":[\"إعدادات واجهة المستخدم\"],\"H7OUPr\":[\"يوم\"],\"H7e4dl\":[\"قدّم أزواج المفتاح/القيمة باستخدام\\n YAML أو JSON.\"],\"H86f9p\":[\"طي\"],\"H9MIed\":[\"عقدة التنفيذ\"],\"HAi1aX\":[\"تحديث مفتاح webhook\"],\"HAzhV7\":[\"بيانات الاعتماد\"],\"HDULRt\":[\"المضيفون الفريدون\"],\"HGOtRu\":[\"فشل اختبار الإشعار.\"],\"HIfMSF\":[\"خيارات الاختيار المتعدد\"],\"HLAK2g\":[\"This action will cancel the following jobs:\"],\"HODq3s\":[\"فشل رفض موافقة سير عمل واحدة أو أكثر.\"],\"HQ7e8y\":[\"نسخة غير حساسة لحالة الأحرف من exact.\"],\"HQ7oEt\":[\"العودة إلى الفرق\"],\"HUx6pW\":[\"تكوين الحاقن\"],\"HajiZl\":[\"شهر\"],\"HbaQks\":[\"استخدم عنوان بريد إلكتروني واحد لكل سطر لإنشاء قائمة مستلمين لهذا النوع من الإشعارات.\"],\"HbnjOn\":[[\"interval\"],\" weeks\"],\"HcznyH\":[\"فشل مزامنة بعض أو جميع مصادر المخزون.\"],\"HdE1If\":[\"القناة\"],\"HdErwL\":[\"حدد صفًا للموافقة\"],\"Hf0QDK\":[\"تم نسخ المشروع بنجاح\"],\"Hhnh8d\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" يوم\"],\"other\":[\"#\",\" أيام\"]}]],\"HiTf1W\":[\"إلغاء الرجوع\"],\"HjxnnB\":[\"حدد وحدة\"],\"HlhZ5D\":[\"استخدام TLS\"],\"HoHveO\":[\"يُرجع النتائج التي تحقق هذا الفلتر بالإضافة إلى الفلاتر الأخرى. هذا هو نوع المجموعة الافتراضي إذا لم يتم تحديد أي شيء.\"],\"HpK_8d\":[\"إعادة تحميل\"],\"Ht1JWm\":[\"لون الإشعار\"],\"HwpTx4\":[\"تحكم في مستوى الإخراج الذي سينتجه ansible أثناء تنفيذ Playbook.\"],\"I0LRRn\":[\"تنزيل الحزمة\"],\"I7Epp-\":[\"تفاصيل الخيار\"],\"I9NouQ\":[\"لم يتم العثور على اشتراكات\"],\"ICi4pv\":[\"آخر أتمتة\"],\"ICt7Id\":[\"نوع العقدة\"],\"IEKPuq\":[\"التمرير للتالي\"],\"IGQ11b\":[\"السر المشترك مع خدمة Webhook. تستخدمه الخدمة لتوقيع طلباتها، بحيث يتمكن مستودعك فقط من تشغيل مزامنة المشروع. اكتب السر الخاص بك لإدارته كتكوين، أو اترك الحقل فارغًا ليتم إنشاء واحد عند الحفظ.\"],\"IJAVcb\":[\"العودة إلى التطبيقات\"],\"IKg_un\":[\"قنوات أو مستخدمو الوجهة\"],\"IMJYui\":[\"استخدم رقم هاتف واحد لكل سطر لتحديد مكان\\n توجيه رسائل SMS. يجب تنسيق أرقام الهواتف +11231231234. لمزيد من المعلومات انظر توثيق Twilio\"],\"IN6gbp\":[\"انقر لإعادة ترتيب أسئلة الاستبيان\"],\"IPusY8\":[\"قم بإزالة أي تعديلات محلية قبل إجراء تحديث.\"],\"ISuwrJ\":[\"تحرير بيئة التنفيذ\"],\"IV0EjT\":[\"إشعار الاختبار\"],\"IVvM2B\":[\"الخيارات المُفعّلة\"],\"IWoF_f\":[\"عرض الاستبيان\"],\"IZfe0p\":[\"فرع التحكم بالمصدر\"],\"Igz8MU\":[\"الأسبوعان الماضيان\"],\"IiR1sT\":[\"نوع العقدة\"],\"IjDwKK\":[\"نوع تسجيل الدخول\"],\"Ikhk0q\":[\"خدمة webhook لقالب مهمة سير العمل هذا.\"],\"Iqm2E5\":[\"يرجى إضافة \",[\"pluralizedItemName\"],\" لملء هذه القائمة\"],\"IrC12v\":[\"التطبيق\"],\"IrI9pg\":[\"تاريخ الانتهاء\"],\"IsJ8i6\":[\"حدد فرعًا لسير العمل. يتم تطبيق هذا الفرع على جميع عُقد قالب المهمة التي تطالب بفرع.\"],\"IspLSK\":[\"لم يتم العثور على مهمة الإدارة.\"],\"J0zi6q\":[\"تخطي الوسوم\"],\"J2HgCR\":[\"Red Hat, Inc.\"],\"J2d1y8\":[\"التصفية حسب المهام الناجحة\"],\"J4y7Uk\":[\"تم إلغاء سير العمل \"],\"J8VgfD\":[\"التحقق مما إذا كان الحقل المحدد أو الكائن ذو الصلة فارغًا (null)؛ يتوقع قيمة boolean.\"],\"JEGlfK\":[\"بدأت\"],\"JFnJqF\":[\"منقضٍ\"],\"JFphCp\":[\"3 (تصحيح)\"],\"JGvwnU\":[\"آخر استخدام\"],\"JIX50w\":[\"منع الرجوع إلى مجموعة المثيلات: إذا تم التمكين، فسيمنع قالب المهمة إضافة أي مجموعات مثيلات مخزون أو مؤسسة إلى قائمة مجموعات المثيلات المفضلة للتشغيل عليها.\"],\"JJwEMx\":[\"تم حذف المضيفين\"],\"JKZTiL\":[\"هذه هي مستويات التفصيل المدعومة للمخرجات القياسية لتشغيل الأمر.\"],\"JL3si7\":[\"جارٍ التحديث\"],\"JLjfEs\":[\"فشل حذف جدول واحد أو أكثر.\"],\"JOmgRg\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" شهر\"],\"other\":[\"#\",\" أشهر\"]}]],\"JRa4kV\":[\"قم بمزامنة المشروع عند حدوث دفع في مستودع التحكم في المصدر، بحيث تكون النسخة المحلية محدثة دائمًا دون استقصاء أو تحديث عند كل تشغيل للمهمة.\"],\"JTHoCu\":[\"تبديل التغييرات\"],\"JUwjsw\":[\"Select an activity type\"],\"JXgd33\":[\"العودة إلى لوحة المعلومات.\"],\"J_2nGO\":[\"The execution environment that will be used for jobs\\n inside of this organization. This will be used a fallback when\\n an execution environment has not been explicitly assigned at the\\n project, job template or workflow level.\"],\"J_DUZt\":[\"مجموعات المثيلات\"],\"Ja4VHl\":[[\"0\"],\" أخرى\"],\"JgP090\":[\"تتبع الوحدات الفرعية\"],\"JjcTk5\":[\"تسجيل الدخول الاجتماعي\"],\"JjfsZM\":[\"حذف موافقة سير العمل\"],\"JppQoT\":[\"تاريخ آخر إعادة حساب:\"],\"JsY1p5\":[\"مرفوض\"],\"Jvv6rS\":[\"اختيار متعدد\"],\"JwqOfG\":[\"التقييم عند\"],\"Jy9qCv\":[\"إلغاء تحرير إعادة توجيه تسجيل الدخول\"],\"K5AykR\":[\"حذف الفريق\"],\"K93j4j\":[\"اسم التسمية\"],\"KC2nS5\":[\"تم حذف المورد\"],\"KDcLJ6\":[\"YAML:\"],\"KEY0qH\":[\"نجح الاختبار\"],\"KM6m8p\":[\"Team\"],\"KNOsJ0\":[\"تسميات اختيارية تصف قالب المهمة هذا، مثل 'dev' أو 'test'. يمكن استخدام التسميات لتجميع وتصفية قوالب المهام والمهام المكتملة.\"],\"KQ9EQm\":[\"كيفية استخدام ملحق المخزون المُنشأ\"],\"KR9Aiy\":[\"This inventory is currently being used by some templates. Are you sure you want to delete it?\"],\"KRf0wm\":[\"أنواع بيانات الاعتماد\"],\"KTvwHj\":[\"مصادر إدخال بيانات الاعتماد\"],\"KVbzjm\":[\"أداة التصور\"],\"KXFYp9\":[\"الحصول على الاشتراك\"],\"KXnokb\":[\"لا يمكن إعادة تعيين بيئة تنفيذ متاحة عالميًا إلى مؤسسة محددة\"],\"KZp4lW\":[\"Lookup select\"],\"K_MYeX\":[\"عرض تفاصيل المستخدم\"],\"KeRkFA\":[\"مسح تحديد الاشتراك\"],\"KeqCdz\":[\"الأقران من عقد التحكم\"],\"Ki_j_-\":[\"اتركه فارغًا لإنشاء مفتاح webhook جديد عند الحفظ\"],\"KjBkMe\":[\"مجموعة الحاويات هذه قيد الاستخدام حاليًا من قبل موارد أخرى. هل أنت متأكد من أنك تريد حذفها؟\"],\"KjVvNP\":[\"معرّف اللوحة\"],\"KkMfgW\":[\"قوالب المهام\"],\"KkzJWF\":[\"أول أتمتة\"],\"KlQd8_\":[\"نطاق وصول الرمز المميز\"],\"KnN1Tu\":[\"ينتهي\"],\"KoCnPE\":[\"إلغاء المهمة\"],\"KopV8H\":[\"عرض المجموعات الجذرية فقط\"],\"KxIA0h\":[\"تبديل المضيف\"],\"Kz9DSl\":[\"إضافة مضيف موجود\"],\"KzQFvE\":[\"تحرير المؤسسة\"],\"L1Ob4t\":[\"علامة تبويب التفاصيل\"],\"L3ooU6\":[\"بيانات الاعتماد\"],\"L7Nz3F\":[\"مورد مفقود\"],\"L8fEEm\":[\"المجموعة\"],\"L973Qq\":[\"طلب اشتراك\"],\"LCl8Ck\":[\"إدخال بحث التاريخ\"],\"LGl_pR\":[\"عرض إعدادات المهام\"],\"LGryaQ\":[\"إنشاء بيانات اعتماد جديدة\"],\"LQ29yc\":[\"بدء مزامنة مصدر المخزون\"],\"LQRys9\":[\"ستتعقب الوحدات الفرعية أحدث التزام على فرع master الخاص بها (أو فرع آخر محدد في .gitmodules). إذا لا، فسيتم الاحتفاظ بالوحدات الفرعية عند المراجعة المحددة بواسطة المشروع الرئيسي. هذا يعادل تحديد العلامة --remote لـ git submodule update.\"],\"LQTgjH\":[\"لم يتم العثور على المشروع.\"],\"LRePxk\":[\"الحد الأدنى لعدد المثيلات التي سيتم تعيينها تلقائيًا لهذه المجموعة عند اتصال مثيلات جديدة.\"],\"LSUePQ\":[\"إطلاق | \",[\"0\"]],\"LULLsO\":[\"عرض جميع المؤسسات.\"],\"LV5a9V\":[\"الأقران\"],\"LVecP9\":[\"أدوار المستخدم\"],\"LYAQ1X\":[\"تمكين المهام المتزامنة\"],\"LZr1lR\":[\"لم يتم العثور على مجموعة المثيلات.\"],\"Lc0RHh\":[\"تبديل الجدول\"],\"LgD0Cy\":[\"اسم التطبيق\"],\"LhMjLm\":[\"الوقت\"],\"Ll7Jei\":[\"LDAP3\"],\"LnYbGj\":[\"تحرير الاستبيان\"],\"Lnnjmk\":[\"<0><1/> يمكن العثور على معاينة تقنية لواجهة مستخدم \",[\"brandName\"],\" الجديدة <2>هنا.\"],\"Lqygiq\":[\"استدعاءات التوفير\"],\"LtBtED\":[\"تبديل نجاح الإشعار\"],\"LuXP9q\":[\"الوصول\"],\"LwHwt1\":[\"اشتراك \",[\"brandName\"]],\"Lwovp8\":[\"إذا تم التمكين، فسيُسمح بالتشغيل المتزامن لقالب المهمة هذا.\"],\"M0okDw\":[\"تعيين التفضيلات لجمع البيانات والشعارات وتسجيلات الدخول\"],\"M73whl\":[\"السياق\"],\"MA-mp9\":[\"مرشح Ref لـ Webhook\"],\"MA7cMf\":[\"جدول معلمات المخزون المُنشأ\"],\"MAI_nw\":[\"يرجى تجربة بحث آخر باستخدام المرشح أعلاه\"],\"MAV-SQ\":[\"لم يتم العثور على بيانات الاعتماد.\"],\"MApRef\":[\"هل أنت متأكد من أنك تريد تحرير عنوان URL لتجاوز إعادة توجيه تسجيل الدخول؟ قد يؤثر ذلك على قدرة المستخدمين على تسجيل الدخول إلى النظام بمجرد تعطيل المصادقة المحلية أيضًا.\"],\"MD0-Al\":[\"جلستك على وشك الانتهاء\"],\"MDQLec\":[\"التحكم في مستوى المخرجات التي سينتجها Ansible لمهام تحديث مصدر المخزون.\"],\"MGpavd\":[\"بحث تلقائي للمفتاح\"],\"MHM-bv\":[\"هدف رابط غير صالح. تعذر الربط بالعقد الفرعية أو السلفية. دورات الرسم البياني غير مدعومة.\"],\"MHbbol\":[\" تقطيع المهمة\"],\"MKEPCY\":[\"متابعة\"],\"MP1v-1\":[\"وسيلة الإيضاح\"],\"MP8dU9\":[\"موقع الصورة الكامل، بما في ذلك سجل الحاويات واسم الصورة ووسم الإصدار.\"],\"MQPvAa\":[\"المطالبة بالتسميات عند الإطلاق.\"],\"MQoyj6\":[\"قالب مهمة سير العمل\"],\"MTLPCv\":[\"التنفيذ عندما تؤدي العقدة الأصل إلى حالة فشل.\"],\"MVw5um\":[\"2 (أكثر تفصيلاً)\"],\"MZU5bt\":[\"فشل حذف مجموعة واحدة أو أكثر.\"],\"M_gXds\":[\"Note: This instance may be re-associated with this instance group if it is managed by \"],\"MdhgLT\":[\"كلمة مرور خادم IRC\"],\"MfCEiB\":[\"بيانات اعتماد Galaxy\"],\"MfQHgE\":[\"أيام للاحتفاظ\"],\"Mfk6hJ\":[\"فشل حذف قالب واحد أو أكثر.\"],\"Mhn5m4\":[\"بيانات اعتماد السجل\"],\"Mn45Gz\":[\"العودة إلى مجموعات المثيلات\"],\"MnbH31\":[\"صفحة\"],\"MofjBu\":[\"بيئة التنفيذ التي سيتم استخدامها للمهام التي تستخدم هذا المشروع. سيتم استخدامها كحل بديل عندما لا يتم تعيين بيئة تنفيذ بشكل صريح على مستوى قالب المهمة أو سير العمل.\"],\"MpLngK\":[\"نقطة نهاية Webhook لهذا المشروع. أضفها إلى تكوين Webhook للمستودع لجعل عمليات الدفع تؤدي إلى تشغيل مزامنة المشروع.\"],\"MpZRQy\":[\"Git\"],\"MuhG5I\":[[\"0\",\"plural\",{\"one\":[\"لا يمكن حذف هذه الموافقة بسبب أذونات غير كافية أو حالة مهمة معلّقة\"],\"other\":[\"لا يمكن حذف هذه الموافقات بسبب أذونات غير كافية أو حالة مهمة معلّقة\"]}]],\"MwCc2O\":[\"بيانات اعتماد webhook لقالب مهمة سير العمل هذا.\"],\"Mwf3Mw\":[\"قم بملء المضيفين لهذا المخزون باستخدام مرشح\\n بحث. مثال: ansible_facts__ansible_distribution:\\\"RedHat\\\".\\n راجع التوثيق لمزيد من الصيغ\\n والأمثلة. راجع توثيق Ansible Controller لمزيد من الصيغ\\n والأمثلة.\"],\"MzcRa_\":[\"المستخدم و Automation Analytics\"],\"Mzqo60\":[\"القيمة المراد مقارنة الأثر بها. يتم تفسيرها كـ JSON عند الإمكان (مثل true، 3)، وإلا فكسلسلة نصية عادية.\"],\"N1U4ZG\":[\"امتثال الاشتراك\"],\"N36GRB\":[\"يجب أن يكون هذا الحقل رقمًا وأن تكون قيمته أكبر من \",[\"min\"]],\"N40H-G\":[\"الكل\"],\"N5vmCy\":[\"المخزون المُنشأ\"],\"N6GBcC\":[\"تأكيد الحذف\"],\"N7wOty\":[\"حدد Playbook المراد تنفيذه بواسطة هذه المهمة.\"],\"NAKA53\":[\"فشل المضيف\"],\"NBONaK\":[\"جمع الحقائق\"],\"NCVKhy\":[\"المهام الأخيرة\"],\"NDQvUO\":[\"المطالبة بالوسوم عند الإطلاق.\"],\"NIuIk1\":[\"غير محدود\"],\"NLKsgx\":[\"قائمة \",[\"pluralizedItemName\"]],\"NO1ZxL\":[\"اسم التطبيق\"],\"NPfgIB\":[\"ثانية\"],\"NQHZnb\":[\"Integer\"],\"NRn4V6\":[[\"interval\"],\" months\"],\"NUNUrW\":[\"وسوم التعليق (اختياري)\"],\"NW-xDQ\":[\"سيؤدي هذا إلى إرجاع جميع قيم التكوين في هذه الصفحة إلى\\n إعدادات المصنع الافتراضية. هل أنت متأكد من أنك تريد المتابعة؟\"],\"NX18CF\":[\"في أو بعد\"],\"NYxilo\":[\"الحد الأقصى للمهام المتزامنة\"],\"Na9fIV\":[\"لم يتم العثور على عناصر.\"],\"NcVaYu\":[\"وقت الانتهاء\"],\"NeA1eI\":[\"التحريك لليمين\"],\"Never\":[\"أبدًا\"],\"NgD4On\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"سيؤدي هذا الإجراء إلى إلغاء المهمة التالية:\"],\"other\":[\"سيؤدي هذا الإجراء إلى إلغاء المهام التالية:\"]}]],\"NjnDuY\":[\"Dragging started for item id: \",[\"newId\"],\".\"],\"NjqMGF\":[\"نوع المورد\"],\"NnH3pK\":[\"اختبار\"],\"No Jobs\":[\"لا توجد مهام\"],\"NpJHAp\":[\"لا يمكن تحديد قوالب المهام ذات المخزون أو المشروع المفقود عند إنشاء العقد أو تحريرها. حدد قالبًا آخر أو أصلح الحقول المفقودة للمتابعة.\"],\"NqIlWb\":[\"آخر تشغيل\"],\"NrGRF4\":[\"نافذة تحديد الاشتراك\"],\"NsXTPu\":[\"لإنشاء مخزون ذكي باستخدام حقائق ansible، انتقل إلى شاشة المخزون الذكي.\"],\"NtD3hJ\":[\"المفاتيح ذات الصلة\"],\"Nu4DdT\":[\"مزامنة\"],\"Nu4oKW\":[\"الوصف\"],\"Nu7VHX\":[\"اختر الأدوار المراد تطبيقها على الموارد المحددة. لاحظ أن جميع الأدوار المحددة ستُطبق على جميع الموارد المحددة.\"],\"O-OYOe\":[\"تحرير الفريق\"],\"O06Rp6\":[\"واجهة المستخدم\"],\"O1Aswy\":[\"لا تنتهي صلاحيته أبدًا\"],\"O28qFz\":[\"عرض المهمة \",[\"0\"]],\"O2EuOK\":[\"تسجيل الدخول باستخدام SAML \",[\"samlIDP\"]],\"O2UpM1\":[\"تصفح\"],\"O3oNi5\":[\"البريد الإلكتروني\"],\"O4ilec\":[\"نسخة غير حساسة لحالة الأحرف من regex.\"],\"O5pAaX\":[\"حدد مثيلاً ومقياسًا لعرض الرسم البياني\"],\"O78b13\":[\"التطبيق الذي ينتمي إليه هذا الرمز المميز، أو اترك هذا الحقل فارغًا لإنشاء رمز وصول شخصي.\"],\"O8_96D\":[\"منفذ المستمع\"],\"O9VQlh\":[\"حدد التردد\"],\"OA8xiA\":[\"التحريك لليسار\"],\"OA99Nq\":[\"متى تمت أتمتة المضيف آخر مرة\"],\"OC4Tzv\":[\"هنا\"],\"OGoqLy\":[\"# sources with sync failures.\"],\"OHGMM6\":[\"تاريخ/وقت البدء\"],\"OIv5hN\":[\"جارٍ إعادة التوجيه إلى تفاصيل الاشتراك\"],\"OJ9bHy\":[\"فشل إلغاء ربط مجموعة واحدة أو أكثر.\"],\"OOq_rD\":[\"تشغيل Playbook\"],\"OPTWH4\":[\"تمكين التحقق من شهادة HTTPS\"],\"ORxrw7\":[\"الأيام المتبقية\"],\"OSH8xi\":[\"Hop\"],\"OcRJRt\":[\"تأكيد إلغاء المهمة\"],\"Oe_VOY\":[\"فشل إزالة مثيل واحد أو أكثر.\"],\"OgB1k4\":[\"الوسائط\"],\"OiCz65\":[\"عنوان URL لـ Grafana\"],\"Oiqdmc\":[\"تسجيل الدخول باستخدام GitHub Organizations\"],\"Oj2Ix6\":[\"مقدار الوقت (بالثواني) للتشغيل قبل إلغاء المهمة. القيمة الافتراضية هي 0 لعدم وجود مهلة للمهمة.\"],\"OjwX8k\":[\"معلومات الرمز المميز\"],\"OlpaBt\":[\"المهام المتزامنة: إذا تم التمكين، فسيُسمح بالتشغيل المتزامن لقالب المهمة هذا.\"],\"OmbooC\":[\"بدأت المهمة\"],\"OogRLI\":[\"لم يتم العثور على المخزون الموحّد.\"],\"OqE3G-\":[\"بحث تام في حقل المعرّف.\"],\"Osn70z\":[\"تصحيح\"],\"OvBnOM\":[\"العودة إلى الإعدادات\"],\"OyGPiW\":[\"إعدادات الاشتراك\"],\"OzssJK\":[\"تشغيل الأمر\"],\"P3spiP\":[\"العودة إلى القوالب\"],\"P7d85D\":[\"إزالة وصول الفريق\"],\"P8fBlG\":[\"المصادقة\"],\"PByO0X\":[\"الأصوات\"],\"PCEmEr\":[\"رموز المستخدم المميزة\"],\"PJ1B0S\":[[\"0\",\"plural\",{\"one\":[\"هذا المشروع قيد الاستخدام حاليًا من قبل موارد أخرى. هل أنت متأكد من أنك تريد حذفه؟\"],\"other\":[\"قد يؤثر حذف هذه المشاريع على موارد أخرى تعتمد عليها. هل أنت متأكد من أنك تريد الحذف على أي حال؟\"]}]],\"PJf54Q\":[\"العودة إلى المصادر\"],\"PKTjJ3\":[[\"0\",\"selectordinal\",{\"3\":[\"ثالث \",[\"weekday\"],\" من \",[\"month\"]],\"4\":[\"رابع \",[\"weekday\"],\" من \",[\"month\"]],\"5\":[\"خامس \",[\"weekday\"],\" من \",[\"month\"]],\"one\":[\"أول \",[\"weekday\"],\" من \",[\"month\"]],\"two\":[\"ثاني \",[\"weekday\"],\" من \",[\"month\"]]}]],\"PLzYyl\":[\"تفاصيل استثناء التردد\"],\"PMk2Wg\":[\"فشل إلغاء التوفير\"],\"POKy-m\":[\"نسخ بيئة التنفيذ\"],\"PPsHsC\":[\"إرجاع الكل إلى الافتراضي\"],\"PQPOpT\":[\"ملف المخزون\"],\"PRuZiQ\":[\"تحديث للحصول على مراجعة\"],\"PUnovD\":[\"Amazon EC2\"],\"PVCOQE\":[\"تمت إزالة القرين. يرجى التأكد من تشغيل حزمة التثبيت لـ \",[\"0\"],\" مرة أخرى لرؤية التغييرات سارية المفعول.\"],\"PWwwY2\":[\"إلغاء الربط\"],\"PYPqaM\":[\"معرّف اللوحة (اختياري)\"],\"PZBWpL\":[\"Switch to light mode\"],\"P_s0vy\":[\"تعذر البحث عن نوع بيانات الاعتماد لخدمة webhook هذه، لذا فإن حقل بيانات اعتماد webhook غير متاح.\"],\"PaTL2O\":[\"قائمة المستلمين\"],\"PhufXn\":[\"أصل شريحة المهمة\"],\"Pi5vnX\":[\"فشل مزامنة مصدر المخزون المُنشأ\"],\"PiK6Ld\":[\"السبت\"],\"PiRb8z\":[\"أحدث مزامنة\"],\"PjkoCm\":[\"هل أنت متأكد من أنك تريد إزالة العقدة أدناه:\"],\"PkVlOm\":[\"حدد رؤوس HTTP بتنسيق JSON. راجع\\n توثيق Ansible Controller للحصول على مثال على الصيغة.\"],\"Po1btV\":[\"التنقل العام\"],\"Po7y5X\":[\"فشل نسخ بيئة التنفيذ\"],\"PvgcEq\":[\"Draggable list to reorder and remove selected items.\"],\"PwAMWD\":[\"طي جميع أحداث المهمة\"],\"PyV1wC\":[\"منع الرجوع إلى مجموعة المثيلات\"],\"Q3P_4s\":[\"المهمة\"],\"Q4hWRC\":[\"Workflow Jobs (\",[\"total\"],\")\"],\"Q5ZW8j\":[\"جدول الاشتراكات\"],\"QF_MpS\":[\"\\n لاحظ أنه يمكن إلغاء ربط المضيفين الموجودين\\n مباشرة في هذه المجموعة فقط. يجب إلغاء ربط المضيفين في المجموعات الفرعية\\n مباشرة من مستوى المجموعة الفرعية التي ينتمون إليها.\\n \"],\"QFdBqu\":[\"Mattermost\"],\"QGbLBK\":[\"معرّف المهمة\"],\"QHF6CU\":[\"التشغيلات\"],\"QIOH6p\":[\"بدأ بواسطة (اسم المستخدم)\"],\"QIpNLR\":[\"لا توجد إخفاقات مزامنة مخزون.\"],\"QIq3_3\":[\"ملاحظة: الترتيب الذي يتم به تحديد هذه يحدد أسبقية التنفيذ. حدد أكثر من واحد لتمكين السحب.\"],\"QJbMvX\":[\"بيانات الاعتماد التي تتطلب كلمات مرور عند التشغيل غير مسموح بها. يرجى إزالة أو استبدال بيانات الاعتماد التالية بأخرى من النوع نفسه للمتابعة: \",[\"0\"]],\"QJowYS\":[\"تأكيد الحذف\"],\"QKUQw1\":[\"إنشاء مضيف جديد\"],\"QKbQTN\":[\"محدد نوع دفق النشاط\"],\"QOF7Jg\":[\"فشل الموافقة على \",[\"0\"],\".\"],\"QPRWww\":[\"نوع التشغيل\"],\"QR908H\":[\"اسم الإعداد\"],\"QT1rDU\":[\"GitHub Enterprise\"],\"QTwM6Y\":[\"المشروع الذي يحتوي على Playbook الذي ستنفذه هذه المهمة.\"],\"QYKS3D\":[\"المهام الأخيرة\"],\"QamIPZ\":[\"يرجى النقر على زر البدء للبدء.\"],\"Qay_5h\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"Qd2E32\":[\"استرجاع الحالة المُفعّلة من dict متغيرات المضيف المحدد. يمكن تحديد المتغير المُفعّل باستخدام تدوين النقطة، مثل: 'foo.bar'\"],\"Qf36YE\":[\"التفصيل\"],\"QgnNyZ\":[\"خطأ في المزامنة\"],\"Qhb8lT\":[\"إنشاء تطبيق جديد\"],\"QmvYrA\":[\"وصف اختياري لقالب مهمة سير العمل.\"],\"QnJn75\":[\"آخر تشغيل\"],\"Qv59HG\":[\"حدد نوع بيانات الاعتماد\"],\"Qv91_c\":[\"LDAP 2\"],\"QyjCeq\":[\"السعة\"],\"R-uZ8Y\":[\"تسجيل الدخول باستخدام SAML\"],\"R633QG\":[\"العودة إلى موافقات سير العمل\"],\"R7s3iG\":[\"العودة إلى\"],\"R9Khdg\":[\"تلقائي\"],\"R9sZsA\":[\"حذف جميع المجموعات والمضيفين\"],\"RBDHUE\":[\"المطالبة ببيئة التنفيذ عند الإطلاق.\"],\"RI8cIw\":[\"الحد الأقصى لعدد المضيفين المسموح بإدارتهم بواسطة\\n هذه المؤسسة. القيمة الافتراضية هي 0 مما يعني عدم وجود حد.\\n راجع توثيق Ansible لمزيد من التفاصيل.\"],\"RIcSTA\":[\"ينتهي في\"],\"RIeAlp\":[\"في كل مرة تعمل فيها مهمة باستخدام هذا المخزون، قم بتحديث المخزون من المصدر المحدد قبل تنفيذ مهام المهمة.\"],\"RK1gDV\":[\"تسجيل الدخول باستخدام Azure AD\"],\"RMdd1C\":[\"لا شيء (تشغيل مرة واحدة)\"],\"RO9G1f\":[\"يجب أن يكون هذا الحقل أكبر من 0\"],\"RPnV2o\":[\"لم ينتج مرشح البحث أي نتائج…\"],\"RThfvh\":[\"إلغاء ربط الفريق (الفرق) ذي الصلة؟\"],\"R_mzhp\":[\"فشل رمز المستخدم المميز.\"],\"RbIaa9\":[\"لم يتم العثور على الرمز المميز.\"],\"RdLvW9\":[\"إعادة إطلاق المهام\"],\"Rguqao\":[\"حدد صفًا للحذف\"],\"RhOukN\":[[\"interval\"],\" hour\"],\"RiQMUh\":[\"قيد التشغيل\"],\"RjIKOw\":[\"تعذر تغيير المخزون على مضيف\"],\"RjkhdY\":[\"الحقل يبدأ بالقيمة.\"],\"RkXlPZ\":[\"GitHub\"],\"RlsPz7\":[\"هل أنت متأكد من أنك تريد إزالة هذا الرابط؟\"],\"Rm1iI_\":[\"المطالبة بالمتغيرات عند الإطلاق.\"],\"Roaswv\":[\"User Guide\"],\"RpKSl3\":[\"تم نسخ بيانات الاعتماد بنجاح\"],\"RsZ4BA\":[\"التمرير للأخير\"],\"RtKKbA\":[\"الأخير\"],\"Ru59oZ\":[\"تمكين webhook لهذا القالب.\"],\"RuEWFx\":[\"في التاريخ\"],\"RuiOO0\":[\"فشل حذف تطبيق واحد أو أكثر.\"],\"Rw1xwN\":[\"جارٍ تحميل المحتوى\"],\"RxzN1M\":[\"مُفعّل\"],\"RyPas1\":[\"Cancel selected jobs\"],\"S0kLOH\":[\"المعرّف\"],\"S2nsEw\":[\"مقارنة أكبر من.\"],\"S5gO6Y\":[\"قم بتمرير متغيرات سطر أوامر إضافية إلى سير العمل.\"],\"S6zj7M\":[\"بالنسبة لقوالب المهام، حدد run لتنفيذ Playbook. حدد check للتحقق فقط من بناء جملة Playbook واختبار إعداد البيئة والإبلاغ عن المشكلات دون تنفيذ Playbook.\"],\"S7kN8O\":[\"فشل حذف مستخدم واحد أو أكثر.\"],\"S7tNdv\":[\"عند النجاح\"],\"S8FW2i\":[\"ملف المخزون المراد مزامنته بواسطة هذا المصدر. يمكنك التحديد من القائمة المنسدلة أو إدخال ملف داخل الإدخال.\"],\"SA-KXq\":[\"التحريك للأعلى\"],\"SAw-Ux\":[\"هل أنت متأكد من أنك تريد إزالة وصول \",[\"0\"],\" من \",[\"username\"],\"؟\"],\"SBfnbf\":[\"عرض جميع بيئات التنفيذ\"],\"SC1Cur\":[\"حالة غير معروفة\"],\"SDND4q\":[\"غير مُكوّن\"],\"SIJDi3\":[\"تعديل السعة\"],\"SJjggI\":[\"خيارات التحديث\"],\"SJmHMo\":[\"الوثائق.\"],\"SLm_0U\":[\"منفذ خادم IRC\"],\"SODyJ3\":[\"المضيف غير المتزامن جيد\"],\"SRiPhD\":[\"إلغاء إزالة العقدة\"],\"SV5nA1\":[\"تحتوي بعض الخطوات السابقة على أخطاء\"],\"SVG6MY\":[\"إرجاع الحقل إلى القيمة المحفوظة سابقًا\"],\"SYbJcn\":[\"تحرير قالب الإشعار\"],\"SZvybZ\":[\"LDAP Default\"],\"SZw9tS\":[\"عرض التفاصيل\"],\"SbRHme\":[\"منطقة نص\"],\"Se_E0z\":[\"مهمة سير العمل\"],\"Sgr5NW\":[\"حدد مثيلاً لتشغيل فحص صحة.\"],\"Sh2XTJ\":[\"نوع الإشعار\"],\"SiexHs\":[\"لوحة المعلومات (كل النشاط)\"],\"Sja7f-\":[\"كم مرة تم حذف المضيف\"],\"Sjoj4f\":[\"اسم بيانات الاعتماد\"],\"SlfejT\":[\"خطأ\"],\"SoREmD\":[\"التطبيقات والرموز المميزة\"],\"SqA8uD\":[\"تشغيلات المهمة\"],\"SqLEdN\":[\"فشل حذف المخزون الذكي.\"],\"SqYo9m\":[\"العودة إلى المثيلات\"],\"Ssdrw4\":[\"مهمل\"],\"Successful\":[\"ناجح\"],\"SvPvEX\":[\"نص رسالة الموافقة على سير العمل\"],\"Svkela\":[\"الانتقال إلى الصفحة السابقة\"],\"SwJLlZ\":[\"نص رسالة رفض سير العمل\"],\"SxGqey\":[\"إعدادات OIDC العامة\"],\"Sxm8rQ\":[\"المستخدمون\"],\"SzFxHC\":[\"إعدادات LDAP\"],\"SzQMpA\":[\"التفريعات\"],\"T2M20E\":[\"The\"],\"T2mGOG\":[\"docs.ansible.com\"],\"T2x15z\":[\"فشل تبديل الإشعار.\"],\"T4a4A4\":[\"مفتاح Webhook\"],\"T7yEGN\":[\"نوع المنح الذي يجب على المستخدم استخدامه للحصول على الرموز المميزة لهذا التطبيق\"],\"T91vKp\":[\"تشغيل\"],\"T9hZ3D\":[\"GitHub Enterprise Team\"],\"TAnffV\":[\"تحرير هذه العقدة\"],\"TBH48u\":[\"فشل حذف الفريق.\"],\"TC32CH\":[\"أيام البيانات المراد الاحتفاظ بها\"],\"TD1APv\":[\"الحصول على الاشتراكات\"],\"TJVvMD\":[\"نوع البحث ذي الصلة\"],\"TLomdD\":[[\"sessionCountdown\",\"plural\",{\"one\":[\"سيتم تسجيل خروجك خلال \",\"#\",\" ثانية بسبب عدم النشاط\"],\"other\":[\"سيتم تسجيل خروجك خلال \",\"#\",\" ثانية بسبب عدم النشاط\"]}]],\"TMJ39S\":[\"إلغاء ربط الدور\"],\"TMLAx2\":[\"مطلوب\"],\"TO3h59\":[\"ملء الحقل من نظام إدارة أسرار خارجي\"],\"TO4OtU\":[\"بيانات اعتماد Insights\"],\"TOjYb_\":[\"عرض تفاصيل مضيف المخزون المُنشأ\"],\"TP9_K5\":[\"الرمز المميز\"],\"TRDppN\":[\"Webhook\"],\"TTMvf7\":[\"نوع المجموعة\"],\"TU6IDa\":[\"نوع المستخدم\"],\"TXKmNM\":[\"يجب تحديد مخزون\"],\"TZEuIE\":[\"العودة إلى أنواع بيانات الاعتماد\"],\"T_87By\":[\"المعلمة\"],\"Ta0ts5\":[\"عرض التغييرات\"],\"TcnG-2\":[\"إنشاء بيئة تنفيذ جديدة\"],\"TgSxH9\":[\"عنوان URL لاستدعاء التوفير\"],\"TkiN8D\":[\"تفاصيل المستخدم\"],\"Tmh24b\":[\"إذا تم التمكين، فسيمنع قالب المهمة إضافة أي مجموعات مثيلات مخزون أو مؤسسة إلى قائمة مجموعات المثيلات المفضلة للتشغيل عليها. ملاحظة: إذا كان هذا الإعداد ممكّنًا وقدمت قائمة فارغة، فسيتم تطبيق مجموعات المثيلات العامة.\"],\"Tmuvry\":[\"بحث تلقائي لتعيين النوع\"],\"ToOoEw\":[\"نسخ بيانات الاعتماد\"],\"Tof7pX\":[\"المهام\"],\"Tq71UT\":[\"يوم عمل\"],\"Tx3NMN\":[\"عبارة مرور المفتاح الخاص\"],\"TxKKED\":[\"عرض تفاصيل المخزون المُنشأ\"],\"TyaPAx\":[\"مسؤول النظام\"],\"Tz0i8g\":[\"الإعدادات\"],\"U-nEJl\":[\"عرض إعدادات GitHub\"],\"U011Uh\":[\"آخر ظهور\"],\"U7rA2a\":[\"عند عدم التحديد، سيتم إجراء دمج، يجمع بين المتغيرات المحلية وتلك الموجودة في المصدر الخارجي.\"],\"UDf-wR\":[\"الاشتراكات المستهلكة\"],\"UEaj7U\":[\"إخفاقات مزامنة المخزون\"],\"UJpDop\":[\"Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"UJsNNk\":[\"مراجعة التحكم بالمصدر\"],\"UPasE4\":[\"Azure AD Default\"],\"UPmrRI\":[\"نسخة غير حساسة لحالة الأحرف من endswith.\"],\"URmyfc\":[\"التفاصيل\"],\"UX2wV1\":[[\"0\",\"plural\",{\"one\":[\"بيانات الاعتماد هذه قيد الاستخدام حاليًا من قبل موارد أخرى. هل أنت متأكد من أنك تريد حذفها؟\"],\"other\":[\"قد يؤثر حذف بيانات الاعتماد هذه على موارد أخرى تعتمد عليها. هل أنت متأكد من أنك تريد الحذف على أي حال؟\"]}]],\"UXBCwc\":[\"اسم العائلة\"],\"UY6iPZ\":[\"إذا كان مُفعّلاً، فستقترن عقد التحكم بهذا المثيل تلقائيًا. إذا كان مُعطّلاً، فسيتصل المثيل بالأقران المرتبطين فقط.\"],\"UYD5ld\":[\"وانقر على تحديث المراجعة عند الإطلاق\"],\"UYUgdb\":[\"الترتيب\"],\"U_JUCL\":[\"Red Hat Insights\"],\"Ua-Kc6\":[\"www.json.org\"],\"UbOul8\":[\"هل أنت متأكد من أنك تريد حذف:\"],\"UbRKMZ\":[\"معلّق\"],\"UbqhuT\":[\"فشل استرجاع كائن مورد العقدة الكامل.\"],\"Uc_tSU\":[\"تبديل الأدوات\"],\"UgFDh3\":[\"هذا المخزون قيد الاستخدام حاليًا من قبل موارد أخرى. هل أنت متأكد من أنك تريد حذفه؟\"],\"UirGxE\":[\"الأخطاء\"],\"UlykKR\":[\"الثالث\"],\"Uo1S9q\":[\"تسجيل الدخول باستخدام Azure AD Tenant\"],\"UueF8b\":[\"بيئة التنفيذ مفقودة أو محذوفة.\"],\"UvGjRK\":[\"إذا تم التمكين، فقم بتشغيل playbook هذا كمسؤول.\"],\"UwJJCk\":[\"إعادة إطلاق المضيفين الفاشلين\"],\"UxKoFf\":[\"التنقل\"],\"V-7saq\":[\"حذف \",[\"pluralizedItemName\"],\"؟\"],\"V-rJKF\":[\"Seconds\"],\"V0Xv3_\":[[\"intervalValue\",\"plural\",{\"one\":[\"يوم\"],\"other\":[\"أيام\"]}]],\"V0fM4k\":[\"تحليلات المستخدم\"],\"V1EGGU\":[\"الاسم الأول\"],\"V2-omF\":[[\"0\",\"plural\",{\"one\":[\"سيكون المخزون في حالة معلقة حتى تتم معالجة الحذف النهائي.\"],\"other\":[\"ستكون المخزونات في حالة معلقة حتى تتم معالجة الحذف النهائي.\"]}]],\"V2RwJr\":[\"عناوين المستمع\"],\"V2q9w9\":[\"If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode.\"],\"V3z83V\":[\"LDAP 3\"],\"V4WsyL\":[\"إضافة رابط\"],\"V5RUpn\":[\"قائمة المستلمين\"],\"V7qsYh\":[\"ملاحظة: يحدد ترتيب بيانات الاعتماد هذه الأسبقية لمزامنة المحتوى والبحث عنه. حدد أكثر من واحد لتمكين السحب.\"],\"V9xR6T\":[\"توسيع القسم\"],\"VAI2fh\":[\"إنشاء مجموعة حاويات جديدة\"],\"VAcXNz\":[\"الأربعاء\"],\"VEj6_Y\":[\"موافقات سير العمل\"],\"VFvVc6\":[\"تحرير التفاصيل\"],\"VJUm9p\":[\"الصفحة الحالية\"],\"VK2gzi\":[\"عدد العمليات المتوازية أو المتزامنة المراد استخدامها أثناء تنفيذ Playbook. القيمة الفارغة، أو القيمة الأقل من 1، ستستخدم الإعداد الافتراضي لـ Ansible وهو عادةً 5. يمكن الكتابة فوق العدد الافتراضي للتفريعات بإجراء تغيير على\"],\"VL2WkJ\":[\"آخر \",[\"dayOfWeek\"]],\"VLdRt2\":[\"بدء مزامنة المصدر\"],\"VNUs2y\":[\"الحد الأقصى للتفريعات\"],\"VSJ6r5\":[\"الجدول نشط\"],\"VSim_H\":[\"حذف مصدر المخزون\"],\"VTDO7X\":[\"نافذة تفاصيل الحدث\"],\"VU3Nrn\":[\"مفقود\"],\"VWL2DK\":[\"GitHub Organization\"],\"VXFjd8\":[\"المقاييس\"],\"VZfXhQ\":[\"عقدة Hop\"],\"VdcFUD\":[\"اتفاقية ترخيص المستخدم النهائي\"],\"ViDr6F\":[\"إضافة مجموعة جديدة\"],\"VmClsw\":[\"تم حذف المورد المرتبط بهذه العقدة.\"],\"VmvLj9\":[\"اضبط على Public أو Confidential اعتمادًا على مدى أمان جهاز العميل.\"],\"Vqd-tq\":[\"تأكيد إرجاع الكل\"],\"Vqgeac\":[\"Press space or enter to begin dragging,\\n and use the arrow keys to navigate up or down.\\n Press enter to confirm the drag, or any other key to\\n cancel the drag operation.\"],\"Vvbbn2\":[\"فشل حذف الدور.\"],\"Vw8l6h\":[\"حدث خطأ\"],\"VzE_M-\":[\"تبديل فشل الإشعار\"],\"W-O1E9\":[\"نسخ المشروع\"],\"W1iIqa\":[\"عرض مجموعات المخزون\"],\"W3TNvn\":[\"العودة إلى المستخدمين\"],\"W3pOzF\":[\"السماح بتغيير فرع التحكم في المصدر أو المراجعة في قالب مهمة يستخدم هذا المشروع.\"],\"W6uTJi\":[\"فشل الحصول على المثيل.\"],\"W7DGsV\":[\"أُطلقت بواسطة (اسم المستخدم)\"],\"W9XAF4\":[\"يوم من أيام الأسبوع\"],\"W9uQXX\":[\"مطالبة\"],\"WAjFYI\":[\"تاريخ البدء\"],\"WD8djW\":[\"تأكيد إزالة الرابط\"],\"WL91Ms\":[\"Delete Groups?\"],\"WPM2RV\":[\"نوع الإجابة\"],\"WQJduu\":[\"تحديد المفتاح\"],\"WTN9YX\":[\"رمز الحساب المميز\"],\"WTV15I\":[\"تحرير عنوان URL لتجاوز إعادة توجيه تسجيل الدخول\"],\"WVzGc2\":[\"الاشتراك\"],\"WX9-kf\":[\"اسم IRC المستعار\"],\"Wc6m4J\":[\"refspec المراد جلبه (يتم تمريره إلى وحدة git الخاصة بـ Ansible). تتيح هذه المعلمة الوصول إلى المراجع عبر حقل الفرع غير المتوفرة بطريقة أخرى.\"],\"Wdl2f2\":[\"يجب أن يحتوي هذا الحقل على \",[\"0\"],\" أحرف على الأقل\"],\"WgsBEi\":[\"أدخل مرشح بحث واحدًا على الأقل لإنشاء مخزون ذكي جديد\"],\"WhSFGl\":[\"التصفية حسب \",[\"name\"]],\"Wi1pUG\":[[\"numJobsToCancel\",\"plural\",{\"one\":[[\"0\"]],\"other\":[[\"1\"]]}]],\"Wk1rOS\":[\"ملاءمة الرسم البياني لحجم الشاشة المتاح\"],\"Wm7XbF\":[\"فشل حذف بيانات اعتماد واحدة أو أكثر.\"],\"WqaDMq\":[\"الحقل يحتوي على القيمة.\"],\"Wy25yg\":[\"Twilio\"],\"X03-eC\":[\"يرجى إدخال قيمة.\"],\"X5V9DW\":[\"انقر على زر التحرير أدناه لإعادة تكوين العقدة.\"],\"X6d3Zy\":[\"فشل حذف المؤسسة.\"],\"X97mbf\":[\"اختر نوع مهمة\"],\"XA12d8\":[\"قائمة اختيارية بأسماء المضيفين مفصولة بفواصل لتضمينها في كل شريحة مهمة، بالإضافة إلى مضيفي الشريحة نفسها. مفيدة عندما يستهدف play مضيفًا منسقًا، مثل localhost، تعتمد عليه جميع الشرائح. تتم مطابقة الأسماء تمامًا مع مضيفي المخزون؛ المجموعات والأنماط غير مدعومة. تقوم المضيفات المثبتة بتشغيل plays الخاصة بها مرة واحدة لكل شريحة.\"],\"XBROpk\":[\"قدّم نمط مضيف لتقييد قائمة المضيفين الذين سيتم إدارتهم أو التأثير عليهم بواسطة سير العمل بشكل أكبر.\"],\"XCCkju\":[\"تحرير العقدة\"],\"XFRygA\":[\"تتضمن أمثلة عناوين URL للتحكم في مصدر الأرشيف البعيد:\"],\"XHxwBV\":[\"يجب أن يحتوي نطاق التاريخ المحدد على تكرار جدول واحد على الأقل.\"],\"XILg0L\":[\"عنوان بريد إلكتروني غير صالح\"],\"XJOV1Y\":[\"النشاط\"],\"XKp83s\":[\"لا يمكن نسخ المخزونات التي لها مصادر\"],\"XLMJ7O\":[\"السحابة\"],\"XLpxoj\":[\"خيارات البريد الإلكتروني\"],\"XM-gTv\":[\"راجع وثائق Ansible للحصول على تفاصيل حول ملف التكوين.\"],\"XOD7tz\":[\"عرض التغييرات\"],\"XOaZX3\":[\"ترقيم الصفحات\"],\"XP6TQ-\":[\"إذا تم تحديده، فسيتم عرض هذا الحقل على العقدة بدلاً من اسم المورد عند عرض سير العمل\"],\"XREJvl\":[\"المتغيرات المستخدمة لتكوين مصدر المخزون. للحصول على وصف مفصل لكيفية تكوين هذا الملحق، انظر\"],\"XViLWZ\":[\"عند الفشل\"],\"XWDz5f\":[\"تحديد مفتاح بسيط\"],\"X_5TsL\":[\"تبديل الاستبيان\"],\"XaxYwV\":[\"القيم المطلوبة\"],\"XbIM8f\":[\"إجمالي مصادر المخزون\"],\"XdyHT-\":[\"المضيفون المستوردون\"],\"XfmfOA\":[\"التشغيل كل\"],\"Xg3aVa\":[\"استخدام SSL\"],\"XgTa_2\":[\"The inventory will be in a pending status until the final delete is processed.\"],\"XilEsm\":[\"مجموعة المثيلات\"],\"Xm7ruy\":[\"5 (تصحيح WinRM)\"],\"XmJfZT\":[\"الاسم\"],\"XmVvzl\":[\"حدد الأدوار المراد تطبيقها\"],\"XnxCSh\":[\"الخطأ القياسي\"],\"XozZ38\":[\"فشل حذف مصدر مخزون واحد أو أكثر.\"],\"Xq9A0U\":[\"مشروع غير معروف\"],\"Xt4N6V\":[\"مطالبة | \",[\"0\"]],\"XtpZSU\":[\"جميع أنواع المهام\"],\"Xx-ftH\":[\"لقد قمت بالأتمتة على عدد من المضيفين أكثر مما يسمح به اشتراكك.\"],\"XyTWuQ\":[\"يرجى الانتظار حتى يتم ملء عرض الطوبولوجيا...\"],\"XyW2nH\":[[\"0\",\"plural\",{\"one\":[\"هل أنت متأكد من أنك تريد حذف المجموعة أدناه؟\"],\"other\":[\"هل أنت متأكد من أنك تريد حذف المجموعات أدناه؟\"]}]],\"XzD7xj\":[\"حدد العناصر\"],\"Y1YKad\":[\"تحرير التفاصيل\"],\"Y296GK\":[\"فشل حذف الدور\"],\"Y2ml-n\":[\"تمت الموافقة - \",[\"0\"],\". راجع دفق النشاط لمزيد من المعلومات.\"],\"Y5VrmH\":[\"غير مُكوّن لمزامنة المخزون.\"],\"Y5vgVF\":[\"تم الرفض بنجاح\"],\"Y5xJ7I\":[\"اسم Playbook\"],\"Y60pX3\":[\"إضافة مخزون مُنشأ\"],\"YA4I45\":[\"حدد وحدة\"],\"YFmVSY\":[\"إلغاء الربط؟\"],\"YJddb4\":[\"نوع المثيل\"],\"YLMfol\":[\"اختر نوع المورد الذي سيتلقى أدوارًا جديدة. على سبيل المثال، إذا كنت ترغب في إضافة أدوار جديدة إلى مجموعة من المستخدمين، يرجى اختيار المستخدمين والنقر على التالي. ستتمكن من تحديد الموارد المحددة في الخطوة التالية.\"],\"YM06Nm\":[\"تحرير نوع بيانات الاعتماد\"],\"YMLB2b\":[\"ما إذا كانت عقدة الموافقة تتم الموافقة عليها أو رفضها تلقائيًا عند انتهاء المهلة.\"],\"YMpSlP\":[\"الوقت بالثواني لاعتبار مزامنة المخزون حالية. أثناء تشغيل المهام والاستدعاءات، سيقوم نظام المهام بتقييم الطابع الزمني لأحدث مزامنة. إذا كان أقدم من مهلة ذاكرة التخزين المؤقت، فلا يُعتبر حاليًا، وسيتم إجراء مزامنة مخزون جديدة.\"],\"YOOdGq\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" دقيقة\"],\"other\":[\"#\",\" دقائق\"]}]],\"YOh7Aw\":[\"Workflow Job \",[\"currentPosition\"],\"/\",[\"total\"]],\"YP5KRj\":[\"سيتم إنشاء عنوان url جديد لـ webhook عند الحفظ.\"],\"YPDLLX\":[\"العودة إلى بيئات التنفيذ\"],\"YQqM-5\":[\"صورة الحاوية المراد استخدامها للتنفيذ.\"],\"Yd45Xn\":[\"المضيفون حسب نوع المعالج\"],\"Yfw7TK\":[\"انتهت مهلة الإشعار\"],\"YgqgXs\":[[\"intervalValue\",\"plural\",{\"one\":[\"دقيقة\"],\"other\":[\"دقائق\"]}]],\"YiQ03p\":[\"فشل حذف الجدول.\"],\"YiUAZm\":[\"<0>ملاحظة: قد تتم إعادة ربط هذا المثيل بمجموعة المثيلات هذه إذا كان مُدارًا بواسطة <1>قواعد النهج.\"],\"YlGAPh\":[\"المضيفون المثبتون لشريحة المهمة\"],\"Ym7-mu\":[\"قناة Slack واحدة لكل سطر. رمز الجنيه (#)\\n مطلوب للقنوات. للرد على رسالة معينة أو بدء سلسلة رسائل لها، أضف معرّف الرسالة الأصلية إلى القناة حيث يكون معرّف الرسالة الأصلية 16 رقمًا. يجب إدراج نقطة (.) يدويًا بعد الرقم العاشر. مثال:#destination-channel, 1231257890.006423. انظر Slack\"],\"YmEWZH\":[\"إطلاق القالب\"],\"YmjTf2\":[\"فشل التوفير\"],\"YoXjSs\":[\"المطالبة بالمخزون عند الإطلاق.\"],\"Yq4Eaf\":[\"معلومات حالة المضيف لهذه المهمة غير متاحة.\"],\"YsN-3o\":[\"عرض تفاصيل مصدر المخزون\"],\"Yt-rBv\":[\"هذا المشروع قيد الاستخدام حاليًا من قبل موارد أخرى. هل أنت متأكد من أنك تريد حذفه؟\"],\"YuC9dj\":[\"ربط\"],\"YxDLmM\":[\"معرّف نظام Insights\"],\"Z17FAa\":[\"مخزون غير معروف\"],\"Z1Vtl5\":[\"فشل إلغاء مزامنة المشروع\"],\"Z25_RC\":[\"حدد الإدخال\"],\"Z2hVSb\":[\"هجين\"],\"Z40J8D\":[\"تمكّن إنشاء عنوان URL لاستدعاء التزويد. باستخدام عنوان URL، يمكن للمضيف الاتصال بـ \",[\"brandName\"],\" وطلب تحديث التكوين باستخدام قالب المهمة هذا.\"],\"Z5HWHd\":[\"تشغيل\"],\"Z7ZXbT\":[\"الموافقة\"],\"Z88yEl\":[\"مقارنة أكبر من أو يساوي.\"],\"Z9EFpE\":[\"لوحة معلومات Automation Analytics\"],\"ZAWGCX\":[[\"0\"],\" ثانية\"],\"ZEP8tT\":[\"إطلاق\"],\"ZGDCzb\":[\"لم يتم العثور على المثيل.\"],\"ZJjKDg\":[\"العقد المُدارة\"],\"ZKKnVf\":[\"إنشاء قالب سير عمل جديد\"],\"ZL3d6Z\":[\"عنوان خادم IRC\"],\"ZO4CYH\":[\"المهام قيد التشغيل\"],\"ZOLfb2\":[\"يجب ألا يكون هذا الحقل فارغًا.\"],\"ZWhZbs\":[\"تأكيد إزالة العقدة\"],\"ZajTWA\":[\"رقم هاتف المصدر\"],\"Zf6u-6\":[\"الشرح\"],\"ZfrRb0\":[\"يرجى تحديد مخزون أو تحديد خيار المطالبة عند الإطلاق\"],\"ZhUwVw\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" أسبوع\"],\"other\":[\"#\",\" أسابيع\"]}]],\"ZhxwOq\":[\"نص رسالة الخطأ\"],\"Zikd-1\":[\"عدد المضيفين الذين قمت بالأتمتة عليهم أقل من عدد اشتراكك.\"],\"ZjC8QM\":[\"فشل حذف المضيف.\"],\"ZjvPb1\":[\"تم الإنشاء بواسطة (اسم المستخدم)\"],\"Zkh5np\":[\"يتم تحديث الأقران على \",[\"0\"],\". يرجى التأكد من تشغيل حزمة التثبيت لـ \",[\"1\"],\" مرة أخرى لرؤية التغييرات سارية المفعول.\"],\"ZpdX6R\":[\"خطأ في حذف الرموز المميزة\"],\"ZrsGjm\":[\"المخزون\"],\"ZumtuZ\":[\"نسخ القالب\"],\"ZvVF4C\":[\"حذف سؤال الاستبيان\"],\"ZwCTcT\":[\"علامة تبويب قائمة المهام الأخيرة\"],\"ZwujDQ\":[\"العام الماضي\"],\"_-NKbo\":[\"فشل تبديل الجدول.\"],\"_2LfCe\":[\"لإعادة ترتيب أسئلة الاستبيان، اسحبها وأفلتها في الموقع المطلوب.\"],\"_4gGIX\":[\"نسخ إلى الحافظة\"],\"_5REdR\":[\"حدد مخزونات الإدخال لملحق المخزون المُنشأ.\"],\"_Fg1cM\":[\"نص رسالة انتهاء مهلة سير العمل\"],\"_ITcnz\":[\"يوم\"],\"_Ia62Q\":[\"أمثلة المخزون المُنشأ\"],\"_JN1gB\":[\"عدد المهام\"],\"_K2CvV\":[\"قالب\"],\"_LQZpR\":[[\"intervalValue\",\"plural\",{\"one\":[\"سنة\"],\"other\":[\"سنوات\"]}]],\"_LVfwJ\":[\"خطأ في مزامنة مصدر المخزون المُنشأ\"],\"_M4FeF\":[\"حدد بيئة التنفيذ التي تريد تشغيل هذا الأمر داخلها.\"],\"_MdgrM\":[\"أضف عقدة جديدة بين هاتين العقدتين\"],\"_PRaan\":[\"فشل حذف قالب إشعار واحد أو أكثر.\"],\"_Pz_QH\":[\"مُدار بواسطة السياسة\"],\"_W3ZAw\":[[\"selectedItemsCount\",\"plural\",{\"one\":[\"انقر لتشغيل فحص صحة على المثيل المحدد.\"],\"other\":[\"انقر لتشغيل فحص صحة على المثيلات المحددة.\"]}]],\"_WBq2_\":[\"مرفوض - \",[\"0\"],\". راجع دفق النشاط لمزيد من المعلومات.\"],\"_Yq4TU\":[\"الحد الأقصى لعدد التفريعات المسموح بها عبر جميع المهام التي تعمل بشكل متزامن على هذه المجموعة.\\n يعني الصفر عدم فرض أي حد.\"],\"_ZBhqw\":[\"فشل إلغاء مزامنة مصدر المخزون\"],\"_bAUGi\":[\"اختر طريقة HTTP\"],\"_bE0AS\":[\"حدد مثيلاً\"],\"_cV6Mf\":[\"تصفح…\"],\"_cq4Aa\":[\"لم يتم العثور على موافقة سير العمل.\"],\"_ereyb\":[\"TACACS+\"],\"_gCD76\":[\"تحرير مجموعة المثيلات\"],\"_ismew\":[\"مفتاح الأثر\"],\"_kYJq6\":[\"أيام البيانات المراد الاحتفاظ بها\"],\"_khNCh\":[\"يجب استبدال بيانات الاعتماد الافتراضية لقالب المهمة بأخرى من النوع نفسه. يرجى تحديد بيانات اعتماد للأنواع التالية للمتابعة: \",[\"0\"]],\"_oeZtS\":[\"استقصاء المضيف\"],\"_rCRcH\":[\"توثيق البحث المتقدم\"],\"_vI8Rx\":[\"Delete Group?\"],\"a02Xjc\":[\"عنوان خادم IRC\"],\"a3AD0M\":[\"تأكيد تحرير إعادة توجيه تسجيل الدخول\"],\"a5zD9f\":[\"التغييرات\"],\"a6E-_p\":[\"نسخة غير حساسة لحالة الأحرف من contains\"],\"a8AgQY\":[\"عرض تفاصيل المضيف\"],\"a8nooQ\":[\"الرابع\"],\"a9BTUD\":[\"يوم عطلة نهاية الأسبوع\"],\"aBgwis\":[\"النطاق\"],\"aLlb3-\":[\"boolean\"],\"aNxqSL\":[\"حذف بيئة التنفيذ\"],\"aQ4XJX\":[\"تمكين تتبع نظام السجل للحقائق بشكل فردي\"],\"aSuBiU\":[\"Microsoft Azure Resource Manager\"],\"aTK0Fh\":[\"في الأيام\"],\"aUNPq3\":[\"عقدة التنفيذ\"],\"aVoVcG\":[\"تحديد متعدد\"],\"aXBrSq\":[\"Red Hat Virtualization\"],\"a_vlog\":[\"إزالة شريحة \",[\"0\"]],\"adPhRK\":[\"المخزون الذي ينتمي إليه هذا المضيف.\"],\"adjqlB\":[[\"0\"],\" (محذوف)\"],\"aht2s_\":[\"لون الإشعار\"],\"aiejXq\":[\"إضافة نوع مورد\"],\"ajDpGH\":[\"الحالة:\"],\"anfIXl\":[\"تفاصيل المستخدم\"],\"aqqAbL\":[\"إذا كان مُفعّلاً، فسيمنع المخزون إضافة أي مجموعات مثيلات مؤسسة إلى قائمة مجموعات المثيلات المفضلة لتشغيل قوالب المهام المرتبطة عليها. ملاحظة: إذا كان هذا الإعداد مُفعّلاً وقدمت قائمة فارغة، فسيتم تطبيق مجموعات المثيلات العامة.\"],\"ar5AA2\":[\"لمزيد من المعلومات.\"],\"ataY5Z\":[\"خطأ في حذف المهمة\"],\"ax6e8j\":[\"يرجى تحديد مؤسسة قبل تحرير مرشح المضيف\"],\"az8lvo\":[\"إيقاف\"],\"b1CAkh\":[\"مهام الإدارة\"],\"b2Z0Zq\":[\"إلغاء تغييرات الرابط\"],\"b433OF\":[\"تحرير المجموعة\"],\"b4SLah\":[\"انظر الأخطاء على اليسار\"],\"b9Y4up\":[\"معرّف العميل\"],\"bDa_hW\":[\"حدد مجموعات المثيلات التي يجب أن تعمل عليها مزامنة مصدر المخزون هذا. إذا لم يتم التعيين، تعمل المزامنة على مجموعات المثيلات الخاصة بالمخزون أو مؤسسته.\"],\"bE4zYn\":[\"حدد المنفذ الذي سيستمع عليه Receptor للاتصالات الواردة، مثل 27199.\"],\"bHXYoC\":[\"طريقة HTTP\"],\"bKR18T\":[\"بيان الاشتراك هو تصدير لاشتراك Red Hat. لإنشاء بيان اشتراك، انتقل إلى <0>access.redhat.com. لمزيد من المعلومات، راجع <1>دليل المستخدم.\"],\"bLt_0J\":[\"سير العمل\"],\"bPq357\":[\"القيمة المُفعّلة\"],\"bQZByw\":[\"استخدم علامة تعليق واحدة لكل سطر، بدون فواصل.\"],\"bTu5jX\":[\"اسم المستخدم / كلمة المرور\"],\"bWr6j5\":[\"يجب أن يحتوي هذا الحقل على \",[\"min\"],\" أحرف على الأقل\"],\"bY8C86\":[\"عرض جميع المستخدمين.\"],\"bYXbel\":[\"مفتاح webhook لقالب مهمة سير العمل\"],\"baP8gx\":[\"4 (تصحيح الاتصال)\"],\"baqrhc\":[\"رؤوس HTTP\"],\"bbJ-VR\":[\"تصغير\"],\"bcyJXs\":[\"العنصر جيد\"],\"bd1Kuw\":[\"عنوان URL للأيقونة\"],\"bf7UKi\":[\"تحديث مهلة ذاكرة التخزين المؤقت\"],\"bfgr_e\":[\"سؤال\"],\"bgjTnp\":[\"0 (عادي)\"],\"bgq1rW\":[\"زر إرسال البحث\"],\"bhxnLH\":[\"ليس لديك إذن لحذف المجموعات التالية: \",[\"itemsUnableToDelete\"]],\"bkPO0d\":[\"نوع الإشعار\"],\"bpECfE\":[\"إلغاء إزالة الرابط\"],\"bpnj1H\":[\"حدث خطأ أثناء تحميل هذا المحتوى. يرجى إعادة تحميل الصفحة.\"],\"bwRvnp\":[\"إجراء\"],\"bx2rrL\":[\"المخزون الذكي\"],\"bxaVlf\":[\"إنشاء نوع بيانات اعتماد جديد\"],\"byXCTu\":[\"مرات التكرار\"],\"bznJUg\":[\"حدد المخزون الذي يحتوي على المضيفين الذين تريد أن يديرهم سير العمل هذا.\"],\"bzv8Dv\":[\"خطأ في الإزالة\"],\"c-xCSz\":[\"صحيح\"],\"c0n4p3\":[\"تخزين الحقائق\"],\"c1Rsz1\":[\"عرض تفاصيل موافقة سير العمل\"],\"c3XJ18\":[\"مساعدة\"],\"c4kHK7\":[\"إغلاق نافذة الاشتراك\"],\"c6IFRs\":[\"ملف JSON لحساب الخدمة\"],\"c6u6gk\":[\"حدد مجموعات المثيلات التي ستعمل عليها هذه المؤسسة.\"],\"c7-Adk\":[\"فشل مزامنة مصدر المخزون.\"],\"c8HyJq\":[\"حدد مجموعات المثيلات التي سيعمل عليها هذا المخزون.\"],\"c8sV0t\":[\"هذه الميزة مهملة وستتم إزالتها في إصدار مستقبلي.\"],\"c9V3Yo\":[\"فشل المضيف\"],\"c9iw51\":[\"المهام قيد التشغيل\"],\"c9pF61\":[\"معرّف العميل\"],\"cFC8w7\":[\"مصدر المخزون هذا قيد الاستخدام حاليًا من قبل موارد أخرى تعتمد عليه. هل أنت متأكد من أنك تريد حذفه؟\"],\"cFCKYZ\":[\"رفض\"],\"cFOXv9\":[\"OIDC عام\"],\"cGRiaP\":[\"تفاصيل الحدث\"],\"cIdUma\":[\"\\n لا توجد أدلة playbook متاحة في \",[\"project_base_dir\"],\".\\n إما أن هذا الدليل فارغ، أو أن جميع المحتويات مُعيّنة بالفعل\\n لمشاريع أخرى. أنشئ دليلاً جديدًا هناك وتأكد\\n من أن ملفات playbook يمكن قراءتها بواسطة مستخدم النظام \\\"awx\\\"،\\n أو اجعل \",[\"brandName\"],\" يسترجع ملفات playbook الخاصة بك مباشرة من\\n التحكم بالمصدر باستخدام خيار نوع التحكم بالمصدر أعلاه.\"],\"cNsIJf\":[\"تم التغيير\"],\"cPTnDL\":[\"مزامنة المشروع\"],\"cQIQa2\":[\"حدد المجموعات\"],\"cQlPDN\":[\"قراءة\"],\"cUKLzq\":[\"تحرير الترتيب\"],\"cYir0h\":[\"حدد الخيار (الخيارات)\"],\"c_PGsA\":[\"تفاصيل مهمة سير العمل\"],\"cbSPfq\":[\"تم اتخاذ إجراء بشأن سير العمل هذا بالفعل\"],\"ccA_Bz\":[\"التنسيق المقترح لأسماء المتغيرات هو أحرف صغيرة\\n ومفصولة بشرطة سفلية (على سبيل المثال، foo_bar، user_id، host_name،\\n إلخ). أسماء المتغيرات التي تحتوي على مسافات غير مسموح بها.\"],\"cdm6_X\":[\"السعة المستخدمة\"],\"chbm2W\":[\"مرشحات المثيل\"],\"ci3mwY\":[\"يجب ألا يكون هذا الحقل فارغًا\"],\"cit9TY\":[\"اسم الأثر الذي تنتجه العقدة الأصل عبر set_stats. يتم اتباع الرابط فقط عندما تطابق المهمة الأصل النتيجة المختارة ويكون الشرط صحيحًا. المفتاح المفقود لا يطابق أبدًا.\"],\"cj1KTQ\":[\"عرض جميع المخزونات.\"],\"cjJXKx\":[\"فشل المضيف غير المتزامن\"],\"ckH3fT\":[\"جاهز\"],\"ckdiAB\":[\"حذف الإشعار\"],\"cmWTxn\":[\"مقارنة أقل من أو يساوي.\"],\"cnGeoo\":[\"حذف\"],\"cnnWD0\":[\"By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>\",[\"0\"],\". Uncheck the following boxes to disable this feature.\"],\"ct_Puj\":[\"سيتم استرجاع هذا الحقل من نظام إدارة أسرار خارجي باستخدام بيانات الاعتماد المُحددة.\"],\"cucDBz\":[\"قالب السياق\"],\"cucG_7\":[\"لا يوجد YAML متاح\"],\"cxjfgY\":[\"لا يمكن تشغيل فحص الصحة على عقد hop.\"],\"cy3yJa\":[\"تم التأسيس\"],\"d-F6q9\":[\"تم الإنشاء\"],\"d-zGjA\":[\"سيؤدي هذا الإجراء إلى حذف ما يلي:\"],\"d1BVnY\":[\"A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>\",[\"0\"],\".\"],\"d5zxa4\":[\"محلي\"],\"d6in1T\":[\"حدد المخزون الذي يحتوي على المضيفين الذين تريد أن تديرهم هذه المهمة.\"],\"d73flf\":[\"نافذة التنبيه\"],\"d75lEw\":[\"تعيين النوع\"],\"d7VUIS\":[\"إزالة العقدة \",[\"nodeName\"]],\"d8B-tr\":[\"علامة تبويب الرسم البياني لحالة المهمة\"],\"dAZObA\":[\"عناوين URI لإعادة التوجيه\"],\"dBNZkl\":[\"عرض تفاصيل مضيف المخزون الذكي\"],\"dCcO-F\":[\"فشل استرجاع التكوين.\"],\"dELxuP\":[\"لم يتم العثور على المخزون.\"],\"dEgA5A\":[\"إلغاء\"],\"dH6aQY\":[\"Azure AD Tenant\"],\"dIb9tv\":[\"عرض جميع التطبيقات.\"],\"dJcvVX\":[\"مرشح المضيف الذكي\"],\"dNAHKF\":[\"تقطيع المهمة\"],\"dOjocz\":[\"تحديد التقارب\"],\"dPGRd8\":[\"إذا تم التمكين، فسيتم عرض التغييرات التي أجرتها مهام Ansible، حيثما كان ذلك مدعومًا. هذا يعادل وضع --diff في Ansible.\"],\"dPY1x1\":[\"لمزيد من المعلومات.\"],\"dQFAgv\":[\"يحتاج هذا المشروع إلى التحديث\"],\"dQjRO3\":[\"بدء عملية المزامنة\"],\"dbWo0h\":[\"تسجيل الدخول باستخدام Google\"],\"dcGoCm\":[\"ملف المخزون\"],\"ddIcfH\":[\"الانتقال إلى الصفحة الأخيرة\"],\"dfWFox\":[\"عدد المضيفين\"],\"dk7qNl\":[\"عقدة التحكم\"],\"dkGxGj\":[\"Subversion\"],\"dlHFy7\":[\"فشل حذف بيئة تنفيذ واحدة أو أكثر\"],\"dnCwNB\":[\"تم النسخ إلى الحافظة بنجاح!\"],\"dov9kY\":[\"يجب أن يكون هذا الحقل رقمًا وأن تكون قيمته بين \",[\"0\"],\" و\",[\"1\"]],\"dqxQzB\":[\"dictionary\"],\"dzQfDY\":[\"أكتوبر\"],\"e0NrBM\":[\"المشروع\"],\"e3pQqT\":[\"اختر نوع إشعار\"],\"e4GHWP\":[\"سحب\"],\"e5CMOi\":[\"متغيرات البيئة أو المتغيرات الإضافية التي تحدد القيم التي يمكن لنوع بيانات الاعتماد حقنها.\"],\"e5VbKq\":[\"قوالب مهام سير العمل\"],\"e6BtDv\":[\"<0>\",[\"0\"],\"<1>\",[\"1\"],\"\"],\"e70-_3\":[\"تبديل وسيلة الإيضاح\"],\"e8GyQg\":[\"المقياس\"],\"e8U63Z\":[\"قم بمزامنة المشروع فقط عندما يطابق الـ ref المدفوع هذا النمط، على سبيل المثال refs/heads/main أو refs/heads/release-*. اتركه فارغًا للمزامنة عند أي حدث دفع أو وسم.\"],\"e91aLH\":[\"عرض جميع أنواع بيانات الاعتماد\"],\"e9k5zp\":[\"يرجى إضافة جدول لملء هذه القائمة. يمكن إضافة الجداول إلى قالب أو مشروع أو مصدر مخزون.\"],\"eAR1n4\":[\"بحث تلقائي لنوع البحث ذي الصلة\"],\"eD_0Fo\":[\"فشل حذف فريق واحد أو أكثر.\"],\"eDjsWq\":[\"إنشاء قالب إشعار جديد\"],\"eGkahQ\":[\"حذف قالب المهمة\"],\"eHx-29\":[\"تفاصيل المصدر\"],\"ePK91l\":[\"تحرير\"],\"ePS9As\":[\"إعدادات RADIUS\"],\"eQkgKV\":[\"مُثبّت\"],\"eRV9Z3\":[\"لم يتم تحديد مهلة\"],\"eRlz2Q\":[\"رقم (أرقام) SMS الوجهة\"],\"eSXF_i\":[\"فشل حذف التطبيق.\"],\"eTsJYJ\":[\"الوصف\"],\"eVJ2lo\":[\"Float\"],\"eXOp7I\":[\"ليس لديك إذن لإزالة المثيلات: \",[\"itemsUnableToremove\"]],\"eXWuGz\":[\"علامة تبويب قائمة القوالب الأخيرة\"],\"eYJ4TK\":[\"لم يتم العثور على المخزون المُنشأ.\"],\"eeke40\":[\"Automation Analytics\"],\"ekUnNJ\":[\"حدد الوسوم\"],\"el9nUc\":[\"الجدول غير نشط\"],\"emqNXf\":[\"فحص Playbook\"],\"eqiT7d\":[\"يحدد الدور الذي سيلعبه هذا المثيل ضمن طوبولوجيا الشبكة. الافتراضي هو \\\"execution\\\".\"],\"espHeZ\":[\"منع الرجوع إلى مجموعة المثيلات: إذا كان مُفعّلاً، فسيمنع المخزون إضافة أي مجموعات مثيلات مؤسسة إلى قائمة مجموعات المثيلات المفضلة لتشغيل قوالب المهام المرتبطة عليها.\"],\"etQEqZ\":[\"ستؤدي إزالة هذا الرابط إلى جعل بقية الفرع يتيمًا وستتسبب في تنفيذه فورًا عند الإطلاق.\"],\"ewSXyG\":[\"حذف \",[\"pluralizedItemName\"],\" بشكل مؤقت؟\"],\"f-fQK9\":[\"مفتاح Grafana API\"],\"f2o-xB\":[\"تأكيد الإلغاء\"],\"f6Hub0\":[\"فرز\"],\"f9yJNM\":[\"يساوي\"],\"fCZSgU\":[\"عرض جميع مجموعات المثيلات\"],\"fDzxi_\":[\"الخروج دون حفظ\"],\"fE2kOY\":[\"تحديد عامل التاريخ\"],\"fGEOCn\":[\"حالة المهمة\"],\"fGLpQj\":[\"فرع/وسم/التزام التحكم بالمصدر\"],\"fGQ9Ug\":[\"حدد بيانات الاعتماد للوصول إلى العُقد التي سيتم تشغيل هذه المهمة عليها. يمكنك تحديد بيانات اعتماد واحدة فقط من كل نوع. بالنسبة لبيانات اعتماد الأجهزة (SSH)، فإن تحديد “المطالبة عند التشغيل” دون تحديد بيانات اعتماد سيتطلب منك تحديد بيانات اعتماد جهاز في وقت التشغيل. إذا حددت بيانات اعتماد وحددت “المطالبة عند التشغيل”، تصبح بيانات الاعتماد المحددة هي القيم الافتراضية التي يمكن تحديثها في وقت التشغيل.\"],\"fJ9xam\":[\"تمكين المثيل\"],\"fKew5B\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"إلغاء المهمة\"],\"other\":[\"إلغاء المهام\"]}]],\"fL7WXr\":[\"التطبيقات\"],\"fMUEsk\":[\"اليوم \",[\"0\"]],\"fMulwN\":[\"تحديث مراجعة المشروع\"],\"fOAyP5\":[\"إدخال نص البحث\"],\"fODqV4\":[\"لم يتم العثور على تلك القيمة. يرجى إدخال أو تحديد قيمة صالحة.\"],\"fQCM-p\":[\"عرض تفاصيل المؤسسة\"],\"fQGOXc\":[\"خطأ!\"],\"fR8DDt\":[\"تأكيد إزالة جميع العقد\"],\"fVjyJ4\":[\"تأكيد إلغاء الربط\"],\"f_Xpp2\":[\"سيؤدي هذا الإجراء إلى إلغاء ربط ما يلي:\"],\"fcTDCh\":[\"قدّم بيانات اعتماد Red Hat أو Red Hat Satellite الخاصة بك\\n أدناه ويمكنك الاختيار من قائمة الاشتراكات المتاحة لديك.\\n سيتم تخزين بيانات الاعتماد التي تستخدمها للاستخدام المستقبلي في\\n استرجاع اشتراكات التجديد أو الموسّعة.\"],\"ff_JYN\":[\"التصفية حسب اسم المجموعة المتداخلة\"],\"fgrmWn\":[\"المطالبة بوضع الفرق عند الإطلاق.\"],\"fhFmMp\":[\"معرّف العميل\"],\"fjX9i5\":[\"لم يتم العثور على المخزون الذكي.\"],\"fk1WEw\":[\"مشفّر\"],\"fld-O4\":[\"جميع المهام\"],\"fnbZWe\":[\"اختياريًا، حدد بيانات الاعتماد المراد استخدامها لإرسال تحديثات الحالة مرة أخرى إلى خدمة webhook.\"],\"foItBN\":[\"يوم عطلة نهاية الأسبوع\"],\"fp4RS1\":[\"content-loading-in-progress\"],\"fpMgHS\":[\"الاثنين\"],\"fqSfXY\":[\"استبدال\"],\"fqmP_m\":[\"المضيف غير قابل للوصول\"],\"fthJP1\":[\"يمكن لخدمات webhook تشغيل المهام باستخدام قالب مهمة سير العمل هذا عن طريق إجراء طلب POST إلى عنوان URL هذا.\"],\"fwX7gC\":[\"VMware vCenter\"],\"g4o5Lr\":[\"مفصّل\"],\"g6ekO4\":[\"فشل تبديل المضيف.\"],\"g7CZ-8\":[\"تسجيل الدخول باستخدام GitHub Enterprise Organizations\"],\"g9d3sF\":[\"نص رسالة البدء\"],\"gALXcv\":[\"حذف هذه العقدة\"],\"gBnBJa\":[\"مهمة سير العمل المصدر\"],\"gDx5MG\":[\"تحرير الرابط\"],\"gIGcbR\":[\"الحد الأقصى لعدد المهام التي تعمل بشكل متزامن على هذه المجموعة. يعني الصفر عدم فرض أي حد.\"],\"gJccsJ\":[\"رسالة الموافقة على سير العمل\"],\"gK06zh\":[\"إضافة قالب مهمة\"],\"gM3pS9\":[\"بيئات التنفيذ\"],\"gN3aF4\":[\"LDAP5\"],\"gSVH9P\":[\"مزامنة جميع المصادر\"],\"gUaMtt\":[\"عند انتهاء المهلة\"],\"gVYePj\":[\"إنشاء فريق جديد\"],\"gWlcwd\":[\"حالة آخر مهمة\"],\"gYWK-5\":[\"عرض إعدادات واجهة المستخدم\"],\"gZXc5U\":[\"عدد المستخدمين المميزين الذين يجب أن يوافقوا قبل أن يستمر سير العمل. الرفض الواحد يرفض العقدة دائمًا.\"],\"gZaMqy\":[\"تسجيل الدخول باستخدام GitHub Teams\"],\"gZkstf\":[\"إذا تم التمكين، فسيؤدي ذلك إلى تخزين الحقائق المجمعة بحيث يمكن عرضها على مستوى المضيف. يتم الاحتفاظ بالحقائق وحقنها في ذاكرة التخزين المؤقت للحقائق في وقت التشغيل.\"],\"gcFnpl\":[\"حالة المهمة\"],\"geTfDb\":[\"عرض تفاصيل المهمة\"],\"ged_ZE\":[\"المؤسسة\"],\"gezukD\":[\"حدد مهمة لإلغائها\"],\"gfyddN\":[\"تحميل ملف .zip\"],\"gh06VD\":[\"المخرجات\"],\"ghJsq8\":[\"التمرير للأول\"],\"gmB6oO\":[\"الجدول\"],\"gmBQqV\":[\"تحديث المشروع\"],\"gnveFZ\":[\"علامة تبويب الخطأ القياسي\"],\"goVc-x\":[\"تحرير تكوين ملحق بيانات الاعتماد\"],\"go_DGX\":[\"إضافة أدوار الفريق\"],\"gpKdxJ\":[\"حدد سؤالاً لحذفه\"],\"gpmbqk\":[\"المتغيرات\"],\"gpnvle\":[\"خطأ في الحذف\"],\"gsj32g\":[\"إلغاء مزامنة المشروع\"],\"gtB4z-\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" ساعة\"],\"other\":[\"#\",\" ساعات\"]}]],\"gwKtbI\":[\"في التوثيق و\"],\"h25sKn\":[\"إدارة الاشتراك\"],\"h51QFW\":[\"YAML\"],\"h8DugX\":[\"التسميات\"],\"hAjDQy\":[\"حدد الحالة\"],\"hBHRCF\":[\"الحد الأدنى لعدد المثيلات التي سيتم تعيينها\\n تلقائيًا لهذه المجموعة عند اتصال مثيلات جديدة.\"],\"hEBjSg\":[\"Red Hat Satellite 6\"],\"hEnNCI\":[\"أزل البحث الحالي المتعلق بحقائق ansible لتمكين بحث آخر باستخدام هذا المفتاح.\"],\"hG89Ed\":[\"الصورة\"],\"hHKoQD\":[\"حدد عناوين الأقران\"],\"hLDu5N\":[\"تحرير التطبيق\"],\"hNudM0\":[\"تعيين قيمة لهذا الحقل\"],\"hPa_zN\":[\"المؤسسة (الاسم)\"],\"hQ0dMQ\":[\"إضافة مضيف جديد\"],\"hQRttt\":[\"إرسال\"],\"hVPa4O\":[\"حدد خيارًا\"],\"hX8KyU\":[\"فشلت هذه المهمة وليس لها مخرجات.\"],\"hXDKWN\":[\"تفاصيل التردد\"],\"hXzOVo\":[\"التالي\"],\"hYH0cE\":[\"هل أنت متأكد من أنك تريد إرسال طلب إلغاء هذه المهمة؟\"],\"hYgDIe\":[\"إنشاء\"],\"hZ6znB\":[\"المنفذ\"],\"hZke6f\":[\"هل أنت متأكد من أنك تريد تعطيل المصادقة المحلية؟ قد يؤثر ذلك على قدرة المستخدمين على تسجيل الدخول وقدرة مسؤول النظام على التراجع عن هذا التغيير.\"],\"hc_ufD\":[\"وسوم المهمة\"],\"hdyeZ0\":[\"حذف المهمة\"],\"he3ygx\":[\"نسخ\"],\"heqHpI\":[\"المسار الأساسي للمشروع\"],\"hg6l4j\":[\"مارس\"],\"hgJ0FN\":[\"قم بإجراء بحث لتحديد مرشح مضيف\"],\"hgr8eo\":[\"العناصر\"],\"hgvbYY\":[\"سبتمبر\"],\"hhzh14\":[\"لم نتمكن من العثور على تراخيص مرتبطة بهذا الحساب.\"],\"hi1n6B\":[\"تحديث الإعدادات المتعلقة بالمهام ضمن \",[\"brandName\"]],\"hiDMCa\":[\"التوفير\"],\"hjsbgA\":[\"متغيرات إضافية\"],\"hjwN_s\":[\"اسم المورد\"],\"hlbQEq\":[\"بيانات اعتماد التحقق من توقيع المحتوى\"],\"hmEecN\":[\"مهمة الإدارة\"],\"hmjNLv\":[\"السمة المفضّلة\"],\"hty0d5\":[\"الاثنين\"],\"hvs-Js\":[\"معلومات التطبيق\"],\"i0VMLn\":[\"رسالة رفض سير العمل\"],\"i2izXk\":[\"الجدول يفتقد rrule\"],\"i4_LY_\":[\"كتابة\"],\"i9sC0B\":[\"إضافة أذونات الفريق\"],\"iASwqf\":[\"This action will cancel the following job:\"],\"iCFhEl\":[\"رقم هاتف المصدر\"],\"iDNBZe\":[\"الإشعارات\"],\"iDWfOR\":[\"فشل الموافقة على موافقة سير عمل واحدة أو أكثر.\"],\"iDjyID\":[\"عرض تفاصيل بيانات الاعتماد\"],\"iE1s1P\":[\"إطلاق سير العمل\"],\"iEUzMn\":[\"النظام\"],\"iH8pgl\":[\"رجوع\"],\"iI4bLJ\":[\"آخر تسجيل دخول\"],\"iIVceM\":[\"خطأ في النسخ\"],\"iJWOeZ\":[\"لا يوجد JSON متاح\"],\"iJiCFw\":[\"تفاصيل المجموعة\"],\"iLO3nG\":[\"عدد التشغيلات\"],\"iMaC2H\":[\"مجموعات المثيلات\"],\"iPp22p\":[\"يستخدم هذا الجدول قواعد معقدة غير مدعومة في\\n واجهة المستخدم. يرجى استخدام API لإدارة هذا الجدول.\"],\"iQdYL_\":[\"إضافة مخزون ذكي\"],\"iRWxmA\":[\"تعطيل التحقق من SSL\"],\"iTylMl\":[\"القوالب\"],\"iWKCzl\":[\"حدد من قائمة الأدلة الموجودة في المسار الأساسي للمشروع. يوفر المسار الأساسي ودليل Playbook معًا المسار الكامل المستخدم لتحديد موقع Playbooks.\"],\"iXmHtI\":[\"حدد نوع المهمة\"],\"iZBwau\":[\"تحتوي هذه الخطوة على أخطاء\"],\"i_CDGy\":[\"السماح بتجاوز الفرع\"],\"i_Kv21\":[\"إنشاء مصدر جديد\"],\"ifckL-\":[\"تحديد الصف\"],\"ifdViT\":[\"عرض تفاصيل المخزون\"],\"ig0q8s\":[\"يتم تطبيق هذا المخزون على جميع عقد سير العمل ضمن سير العمل هذا (\",[\"0\"],\") التي تطالب بمخزون.\"],\"inP0J5\":[\"تفاصيل الاشتراك\"],\"isRobC\":[\"جديد\"],\"itlxml\":[\"مهمة الإدارة\"],\"ittbfT\":[\"يتطلب البحث بواسطة ansible_facts صيغة خاصة. راجع\"],\"itu2NQ\":[\"أنواع حالة الرابط\"],\"j1a5f1\":[\"تحرير المضيف\"],\"j6gqC6\":[\"الفرع المراد استخدامه في تشغيل المهمة. يتم استخدام القيمة الافتراضية للمشروع إذا كان فارغًا. مسموح به فقط إذا تم تعيين حقل allow_override الخاص بالمشروع على true.\"],\"j7zAEo\":[\"حالات سير العمل\"],\"j8QfHv\":[\"تحرير المضيف\"],\"jAxdt7\":[\"إلغاء الحذف\"],\"jBGh4u\":[\"تعريف مخزون المجموعات المتداخلة:\"],\"jCVu9g\":[\"Cancel selected job\"],\"jEJtMA\":[\"موافقات سير العمل المعلّقة\"],\"jEw0Mr\":[\"يرجى إدخال عنوان URL صالح\"],\"jFaaUJ\":[\"أساسي\"],\"jGUu_G\":[\"الموافقات المطلوبة\"],\"jIaeJK\":[\"الاستبيان\"],\"jJdwCB\":[\"الرجوع\"],\"jKibyt\":[\"إعادة تعيين التكبير\"],\"jMyq_x\":[\"Workflow Job 1/\",[\"0\"]],\"jaUa4e\":[\"تُستخدم هذه البيانات لتحسين\\n الإصدارات المستقبلية من برنامج Tower وللمساعدة في\\n تبسيط تجربة العملاء ونجاحهم.\"],\"jc86YO\":[\"المطالبة بالحد عند الإطلاق.\"],\"ji-8F7\":[\"بيانات الاعتماد هذه قيد الاستخدام حاليًا من قبل موارد أخرى. هل أنت متأكد من أنك تريد حذفها؟\"],\"jiE6Vn\":[\"المؤسسات\"],\"jifz9m\":[\"لا شيء (تشغيل مرة واحدة)\"],\"jkQOCm\":[\"إضافة استثناءات\"],\"jljuYN\":[\"الخدمة التي سيتم قبول طلبات Webhook منها.\"],\"jluR-N\":[\"تحذير: \",[\"selectedValue\"],\" هو رابط إلى \",[\"0\"],\" وسيتم حفظه على هذا النحو.\"],\"joAQQS\":[\"The inventories will be in a pending status until the final delete is processed.\"],\"jqVo_k\":[\"هنا.\"],\"jqzUyM\":[\"غير متاح\"],\"jrkyDn\":[\"بدأ التشغيل\"],\"jrsFB3\":[\"علامة تبويب المخرجات\"],\"jsz-PY\":[\"تاريخ انتهاء غير معروف\"],\"jwmkq1\":[\"بيانات اعتماد الجهاز\"],\"jzD-D6\":[\"تكون علامات التخطي مفيدة عندما يكون لديك Playbook كبير وتريد تخطي أجزاء معينة من play أو مهمة. استخدم الفواصل لفصل علامات متعددة. راجع الوثائق للحصول على تفاصيل حول استخدام العلامات.\"],\"k020kO\":[\"دفق النشاط\"],\"k2dzu3\":[\"ينتهي في UTC\"],\"k30JvV\":[\"الفئة المحددة\"],\"k5nHqi\":[\"بيئة التنفيذ التي سيتم استخدامها عند تشغيل قالب المهمة هذا. يمكن تجاوز بيئة التنفيذ التي تم حلها عن طريق تعيين بيئة مختلفة بشكل صريح لقالب المهمة هذا.\"],\"kALwhk\":[\"seconds\"],\"kDWprA\":[\"تُستخدم هذه الوسائط مع الوحدة المحددة.\"],\"kEhyki\":[\"الحقل ينتهي بالقيمة.\"],\"kLja4m\":[\"بدأ بواسطة\"],\"kLk5bG\":[\"رسالة البدء\"],\"kNUkGV\":[\"نوع البحث\"],\"kNfXib\":[\"اسم الوحدة\"],\"kODvZJ\":[\"الاسم الأول\"],\"kOVkPY\":[\"تبديل المثيل\"],\"kP-3Hw\":[\"العودة إلى المخزونات\"],\"kQerRU\":[\"يجب ألا يحتوي هذا الحقل على مسافات\"],\"kX-GZH\":[\"إعادة إطلاق المهمة\"],\"kXzl6Z\":[\"متغيرات المصدر\"],\"kYDvK4\":[\"بما في ذلك الملف\"],\"kah1PX\":[\"عرض أمثلة YAML في\"],\"kaux7o\":[\"الكتابة فوق المجموعات والمضيفين المحليين من مصدر المخزون البعيد\"],\"kgtWJ0\":[\"حدد مجموعات المثيلات التي سيتم تشغيل قالب المهمة هذا عليها.\"],\"kiMHN-\":[\"مدقق النظام\"],\"kjrq_8\":[\"مزيد من المعلومات\"],\"kkDQ8m\":[\"الخميس\"],\"kkc8HD\":[\"تمكين تسجيل الدخول المبسّط لتطبيقات \",[\"brandName\"],\" الخاصة بك\"],\"kpRn7y\":[\"حذف الأسئلة\"],\"kpnWnY\":[\"بعد كل تحديث للمشروع تتغير فيه مراجعة SCM، قم بتحديث المخزون من المصدر المحدد قبل تنفيذ مهام المهمة. هذا مخصص للمحتوى الثابت، مثل تنسيق ملف .ini لمخزون Ansible.\"],\"ks-HYT\":[\"إضافة أذونات المستخدم\"],\"ks71ra\":[\"الاستثناءات\"],\"kt8V8M\":[\"حدد فرعًا لسير العمل.\"],\"ktPOqw\":[\"راجع\"],\"kuIbuV\":[\"لا يمكن تشغيل فحوصات الصحة إلا على عقد التنفيذ.\"],\"ku__5b\":[\"الثاني\"],\"kyAi7k\":[\"المثيل\"],\"kyHUFI\":[\"كلمة مرور Vault | \",[\"credId\"]],\"kyfr2I\":[\"في حالة تحديده، ستتم إزالة أي مضيفين ومجموعات كانوا موجودين سابقًا في المصدر الخارجي ولكن تمت إزالتهم الآن من المخزون. سيتم ترقية المضيفين والمجموعات التي لم تكن مُدارة بواسطة مصدر المخزون إلى المجموعة التالية التي تم إنشاؤها يدويًا أو إذا لم تكن هناك مجموعة تم إنشاؤها يدويًا لترقيتهم إليها، فسيتم تركهم في المجموعة الافتراضية \\\"all\\\" للمخزون.\"],\"kz7G1W\":[\"هل أنت متأكد من أنك تريد إزالة وصول \",[\"0\"],\" من \",[\"1\"],\"؟ سيؤثر ذلك على جميع أعضاء الفريق.\"],\"l4MzBY\":[[\"update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" ثانية\"],\"other\":[\"#\",\" ثوانٍ\"]}]],\"l4k9lc\":[\"العقدة الأولى\"],\"l5XUoS\":[\"بيانات اعتماد Webhook\"],\"l75CjT\":[\"نعم\"],\"l9ZmWD\":[[\"scm_update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" ثانية\"],\"other\":[\"#\",\" ثوانٍ\"]}]],\"lCF0wC\":[\"تحديث\"],\"lJFsGr\":[\"إنشاء مجموعة مثيلات جديدة\"],\"lKxoCA\":[\"توسيع أحداث المهمة\"],\"lM9cbX\":[\"لاحظ أنك قد لا تزال ترى المجموعة في القائمة بعد إلغاء الربط إذا كان المضيف عضوًا أيضًا في العناصر الفرعية لتلك المجموعة. تعرض هذه القائمة جميع المجموعات التي يرتبط بها المضيف بشكل مباشر وغير مباشر.\"],\"lURfHJ\":[\"طي القسم\"],\"lWkKSO\":[\"دقيقة\"],\"lWmv3p\":[\"مصادر المخزون\"],\"lYDyXS\":[\"المخزون الذكي\"],\"l_jRvf\":[\"اكتمل Playbook\"],\"lfoFSg\":[\"حذف المضيف\"],\"lgm7y2\":[\"تحرير\"],\"lgphOX\":[\"القيمة المتوقعة\"],\"lhgU4l\":[\"لم يتم العثور على القالب.\"],\"lhkaAC\":[\"تجريبي\"],\"ljGeYw\":[\"مستخدم عادي\"],\"lk5WJ7\":[\"host-name-\",[\"0\"]],\"lkgIYt\":[\"Pagerduty\"],\"lo-rJO\":[\"التحريك للأسفل\"],\"ltvmAF\":[\"لم يتم العثور على التطبيق.\"],\"lu2qW5\":[\"أي\"],\"lucaxq\":[\"لا يمكن تمكين مجمّع السجلات دون توفير مضيف مجمّع التسجيل ونوع مجمّع التسجيل.\"],\"luxcrf\":[\"مزيد من المعلومات حول \",[\"label\"]],\"lyjq5X\":[\"Slack\"],\"m-eV2_\":[\"لم يتم العثور على مجموعة الحاويات.\"],\"m16xKo\":[\"إضافة\"],\"m1tKEz\":[\"يتمتع مسؤولو النظام بوصول غير مقيد إلى جميع الموارد.\"],\"m2ErDa\":[\"فشل\"],\"m3k6kn\":[\"فشل إلغاء مزامنة مصدر المخزون المُنشأ\"],\"m5MOUX\":[\"العودة إلى المضيفين\"],\"mGJIOu\":[\"يُنشئ إدخال المخزون المُنشأ هذا\\n مجموعة لكلتا الفئتين ويستخدم\\n الحد (نمط المضيف) لإرجاع المضيفين الموجودين فقط\\n في تقاطع هاتين المجموعتين.\"],\"mNBZ1R\":[\"ملاحظة: يفترض هذا الحقل أن اسم الجهاز البعيد هو “origin”.\"],\"mOFgdC\":[\"الحد الأقصى\"],\"mPiYpP\":[\"أنواع حالة العقدة\"],\"mSv_7k\":[\"السنوات الثلاث الماضية\"],\"mXRKES\":[\"LDAP4\"],\"mXfNlE\":[\"هذا الجدول يفتقد قيم الاستبيان المطلوبة\"],\"mYGY3B\":[\"التاريخ\"],\"mZiQNk\":[\"تصعيد الامتيازات: إذا تم التمكين، فقم بتشغيل playbook هذا كمسؤول.\"],\"m_tELA\":[\"إلغاء الإزالة\"],\"ma7cO9\":[\"فشل حذف المجموعة \",[\"0\"],\".\"],\"mahPLs\":[\"كلمة مرور تصعيد الامتيازات\"],\"mcGG2z\":[[\"minutes\"],\" دقيقة \",[\"seconds\"],\" ثانية\"],\"mdNruY\":[\"رمز API المميز\"],\"mgJ1oe\":[\"تأكيد الحذف\"],\"mgjN5u\":[\"إلغاء ربط المثيل من مجموعة المثيلات؟\"],\"mhg7Av\":[\"تشغيل أمر مؤقت\"],\"mi9ffh\":[\"تفاصيل المضيف\"],\"mk4anB\":[\"افتراضي المتصفح\"],\"mlDUq3\":[\"تم التعديل بواسطة (اسم المستخدم)\"],\"mnm1rs\":[\"GitHub Default\"],\"moZ0VP\":[\"حالة المزامنة\"],\"momgZ_\":[\"اسم قالب مهمة سير العمل.\"],\"mqAOoN\":[\"اختر دليل Playbook\"],\"n-37ya\":[\"تأكيد تعطيل التفويض المحلي\"],\"n-LISx\":[\"حدث خطأ أثناء حفظ سير العمل.\"],\"n-ZioH\":[\"خطأ في جلب المشروع المُحدّث\"],\"n-qmM7\":[\"حدد مفتاح حساب خدمة بتنسيق JSON لملء الحقول التالية تلقائيًا.\"],\"n12Go4\":[\"فشل تحميل المجموعات ذات الصلة.\"],\"n60kiJ\":[\"* سيتم استرجاع هذا الحقل من نظام إدارة أسرار خارجي باستخدام بيانات الاعتماد المُحددة.\"],\"n6mYYY\":[\"رسالة انتهاء مهلة سير العمل\"],\"n9Idrk\":[\"(مقتصر على أول 10)\"],\"n9lz4A\":[\"المهام الفاشلة\"],\"nBAIS_\":[\"عرض تفاصيل الحدث\"],\"nC35Na\":[\"Are you sure you want delete the group below?\"],\"nCU-1E\":[\"يُمكّن من إنشاء عنوان URL\\n لاستدعاء التوفير. باستخدام عنوان URL يمكن للمضيف الاتصال بـ \",[\"brandName\"],\"\\n وطلب تحديث تكوين باستخدام قالب المهمة\\n هذا\"],\"nCY9IL\":[\"تم تخطي المضيف\"],\"nDjIzD\":[\"عرض تفاصيل المشروع\"],\"nGbNEN\":[\"الوقت بالثواني لاعتبار المشروع حاليًا. أثناء عمليات تشغيل المهام والاستدعاءات، سيقوم نظام المهام بتقييم الطابع الزمني لآخر تحديث للمشروع. إذا كان أقدم من مهلة ذاكرة التخزين المؤقت، فلا يُعتبر حاليًا، وسيتم إجراء تحديث جديد للمشروع.\"],\"nI54lc\":[\"حذف المشروع قبل المزامنة\"],\"nJPBvA\":[\"ملف أو دليل أو نص برمجي\"],\"nJTOTZ\":[\"بيئة التنفيذ التي ستُستخدم للمهام داخل هذه المؤسسة. سيتم استخدام هذا كخيار احتياطي عندما لم يتم تعيين بيئة تنفيذ صراحةً على مستوى المشروع أو قالب المهمة أو سير العمل.\"],\"nLGsp4\":[\"تمكين استبيان لقالب مهمة سير العمل هذا.\"],\"nMiE53\":[\"المتغير المُفعّل\"],\"nOhz3x\":[\"تسجيل الخروج\"],\"nPH1Cr\":[\"قد تكون بيئات التنفيذ هذه قيد الاستخدام من قبل موارد أخرى تعتمد عليها. هل أنت متأكد من أنك تريد حذفها على أي حال؟\"],\"nQOwDS\":[[\"0\",\"selectordinal\",{\"3\":[\"ثالث \",[\"dayOfWeek\"]],\"4\":[\"رابع \",[\"dayOfWeek\"]],\"5\":[\"خامس \",[\"dayOfWeek\"]],\"one\":[\"أول \",[\"dayOfWeek\"]],\"two\":[\"ثاني \",[\"dayOfWeek\"]]}]],\"nRXCOn\":[\"عدد المضيفين الفاشلين\"],\"nSTT11\":[\"إعادة الإطلاق من:\"],\"nTENWI\":[\"العودة إلى إدارة الاشتراك.\"],\"nU16mp\":[\"مهلة ذاكرة التخزين المؤقت\"],\"nZPX7r\":[\"تحذير: تغييرات غير محفوظة\"],\"nZW6P0\":[\"المنطقة الزمنية المحلية\"],\"nZYB4j\":[\"لا توجد حالة متاحة\"],\"nZYxse\":[\"إلغاء ربط المضيف من المجموعة؟\"],\"n_qDNz\":[\"Switch to dark mode\"],\"naCW6Z\":[\"أبريل\"],\"ncxIQL\":[\"فشل إلغاء ربط مثيل واحد أو أكثر.\"],\"neiOWk\":[\"عرض توثيق المخزون المُنشأ هنا\"],\"nfnm9D\":[\"اسم المؤسسة\"],\"ng00aZ\":[\"مرشح المضيف\"],\"nhxAdQ\":[\"كلمة مفتاحية\"],\"nlsWzF\":[\"يرجى إضافة أسئلة الاستبيان.\"],\"nnY7VU\":[\"النطاق الفرعي لـ Pagerduty\"],\"noGZlf\":[\"مهلة ذاكرة التخزين المؤقت (ثوانٍ)\"],\"npGo-z\":[\"تسجيل الدخول باستخدام \",[\"label\"]],\"nuh_Wq\":[\"عنوان URL لـ Webhook\"],\"nvUq8j\":[\"1 (مفصّل)\"],\"nzozOC\":[\"حذف المستخدم\"],\"nzr1qE\":[\"تم رفض تحميل الملف. يرجى تحديد ملف .json واحد.\"],\"o-JPE2\":[\"لم يتم العثور على أسئلة استبيان.\"],\"o0RwAq\":[\"تسجيل الدخول باستخدام GitHub Enterprise\"],\"o0x5-R\":[\"حدد قيمة لهذا الحقل\"],\"o4NRE0\":[\"إدخال قيمة البحث المتقدم\"],\"o5J6dR\":[\"حدد الشروط التي يجب بموجبها تنفيذ هذه العقدة\"],\"o9R2tO\":[\"اتصال SSL\"],\"oABS9f\":[\"قدّم قيمة لهذا الحقل أو حدد خيار المطالبة عند الإطلاق.\"],\"oB5EwG\":[\"نظام إدارة الأسرار الخارجي\"],\"oBmCtD\":[\"Are you sure you want delete the groups below?\"],\"oC5JSb\":[\"فشل جلب بيانات المشروع المُحدّثة.\"],\"oCKCYp\":[\"تم إرسال الإشعار بنجاح\"],\"oEijQ7\":[\"نسخة غير حساسة لحالة الأحرف من startswith.\"],\"oFtmtl\":[\"Select the inventory containing the hosts\\n you want this job to manage.\"],\"oGKq12\":[\"إنشاء مجموعتين، الاقتصار على التقاطع\"],\"oH1Qle\":[\"عنوان URL لـ webhook لقالب مهمة سير العمل هذا.\"],\"oHOOxn\":[\"بشكل افتراضي، نقوم بجمع وإرسال بيانات التحليلات حول استخدام الخدمة إلى Red Hat. هناك فئتان من البيانات التي تجمعها الخدمة. لمزيد من المعلومات، راجع <0>صفحة وثائق Tower هذه. قم بإلغاء تحديد المربعات التالية لتعطيل هذه الميزة.\"],\"oII7vS\":[\"إعدادات GitHub\"],\"oKMFX4\":[\"لم يتم التحديث أبدًا\"],\"oKbBFU\":[\"# source with sync failures.\"],\"oNOjE7\":[\"تاريخ/وقت الانتهاء\"],\"oNZQUQ\":[\"بيانات اعتماد للمصادقة مع Kubernetes أو OpenShift\"],\"oQqtoP\":[\"العودة إلى مهام الإدارة\"],\"oRt7Uv\":[[\"interval\"],\" years\"],\"oTDA5P\":[[\"0\",\"plural\",{\"one\":[\"يتم استخدام هذا المثيل حاليًا بواسطة موارد أخرى. هل أنت متأكد من أنك تريد حذفه؟\"],\"other\":[\"قد يؤثر إلغاء توفير هذه المثيلات على موارد أخرى تعتمد عليها. هل أنت متأكد من أنك تريد الحذف على أي حال؟\"]}]],\"oWvSIB\":[\"بريد المرسل الإلكتروني\"],\"oX_mCH\":[\"خطأ في مزامنة المشروع\"],\"oZvDsd\":[[\"interval\"],\" hours\"],\"ocUvR-\":[\"خطأ\"],\"ofO19Q\":[\"تسجيل الدخول باستخدام GitHub Enterprise Teams\"],\"ofcQVG\":[\"نافذة التغييرات غير المحفوظة\"],\"olEUh2\":[\"ناجح\"],\"opS--k\":[\"العودة إلى مجموعات المثيلات\"],\"orh4t6\":[\"المضيف جيد\"],\"osCeRO\":[\"عرض إعدادات Azure AD\"],\"ot7qsv\":[\"مسح جميع المرشحات\"],\"ovBPCi\":[\"افتراضي\"],\"owBGkJ\":[\"لم تطابق النهاية قيمة متوقعة (\",[\"0\"],\")\"],\"owQ8JH\":[\"إضافة مجموعة مثيلات\"],\"ozbhWy\":[\"خطأ في الحذف\"],\"p-nfFx\":[\"اسحب ملفًا هنا أو تصفح للتحميل\"],\"p-ngUo\":[\"إلغاء المتابعة\"],\"p-pp9U\":[\"string\"],\"p2LEhJ\":[\"رمز وصول شخصي\"],\"p2_GCq\":[\"تأكيد كلمة المرور\"],\"p3PM8G\":[\"إعادة الإطلاق من العقدة الأولى\"],\"p6-JME\":[\"الأول يجلب جميع المراجع. الثاني يجلب طلب سحب Github رقم 62، وفي هذا المثال يجب أن يكون الفرع “pull/62/head”.\"],\"pAtylB\":[\"غير موجود\"],\"pCCQER\":[\"متاح عالميًا\"],\"pH8j40\":[\"المضيفون النشطون المحذوفون سابقًا\"],\"pHyx6k\":[\"اختيار متعدد (تحديد واحد)\"],\"pKQcta\":[\"تخصيص مواصفات pod\"],\"pOJNDA\":[\"الأمر\"],\"pOd3wA\":[\"اضغط 'Enter' لإضافة المزيد من خيارات الإجابة. خيار إجابة\\nواحد لكل سطر.\"],\"pOhwkU\":[\"سيؤدي هذا الإجراء إلى إلغاء ربط الدور التالي من \",[\"0\"],\":\"],\"pRZ6hs\":[\"التشغيل عند\"],\"pSypIG\":[\"عرض الوصف\"],\"pYENvg\":[\"نوع منح التفويض\"],\"pZJ0-s\":[\"الحد الأقصى لعدد التفريعات المسموح بها عبر جميع المهام التي تعمل بشكل متزامن على هذه المجموعة. يعني الصفر عدم فرض أي حد.\"],\"pa1SrG\":[[\"interval\"],\" days\"],\"peCAyQ\":[\"عرض إعدادات RADIUS\"],\"pfw0Wr\":[\"الكل\"],\"pguZh2\":[\"أنشئ متغيرات من تعبيرات jinja2. يمكن أن يكون هذا مفيدًا\\n إذا كانت المجموعات المُنشأة التي تحددها لا تحتوي على المضيفين\\n المتوقعين. يمكن استخدام هذا لإضافة hostvars من التعبيرات حتى\\n تعرف ما هي القيم الناتجة عن تلك التعبيرات.\"],\"phTgAm\":[\"من الصعب تقديم مواصفات\\n للمخزون لحقائق Ansible، لأنه لملء\\n حقائق النظام تحتاج إلى تشغيل playbook مقابل\\n المخزون الذي يحتوي على `gather_facts: true`. ستختلف\\n الحقائق الفعلية من نظام إلى آخر.\"],\"pkY73W\":[\"Rocket.Chat\"],\"pn7Xy3\":[\"انظر Django\"],\"poMgBa\":[\"المطالبة بفرع SCM عند الإطلاق.\"],\"ppcQy0\":[\"تعيين التكبير إلى 100% وتوسيط الرسم البياني\"],\"prydaE\":[\"إخفاقات مزامنة المشروع\"],\"pw2VDK\":[\"آخر \",[\"weekday\"],\" من \",[\"month\"]],\"q-Uk_P\":[\"فشل حذف نوع بيانات اعتماد واحد أو أكثر.\"],\"q45OlW\":[\"المناطق\"],\"q5tQBE\":[\"تعيين النوع مُعطّل لعمليات البحث التقريبية في حقل البحث ذي الصلة\"],\"q67y3T\":[\"لم يتم العثور على قالب الإشعار.\"],\"qAlZNb\":[\"لا يمكنك اتخاذ إجراء بشأن موافقات سير العمل التالية: \",[\"itemsUnableToDeny\"]],\"qCUUnr\":[\"لا يوجد مضيفون متبقون\"],\"qChjCy\":[\"أول تشغيل\"],\"qD-pvR\":[\"معرّف لوحة المعلومات (اختياري)\"],\"qEMgTP\":[\"خطأ في مزامنة مصدر المخزون\"],\"qJK-de\":[\"تسجيل الدخول باستخدام OIDC\"],\"qS0GhO\":[\"بيئة التنفيذ مفقودة\"],\"qSSVmd\":[\"قنوات أو مستخدمو الوجهة\"],\"qSSg1L\":[\"الربط بعقدة متاحة\"],\"qWD0iN\":[\"تُستخدم هذه البيانات لتحسين\\n الإصدارات المستقبلية من البرنامج ولتوفير\\n Automation Analytics.\"],\"qXRYa2\":[\"تتبع أحدث التزام للوحدات الفرعية على الفرع\"],\"qYkrfg\":[\"تفاصيل استدعاء التوفير\"],\"qZ2MTC\":[\"هذه هي الوحدات التي يدعم \",[\"brandName\"],\" تشغيل الأوامر عليها.\"],\"qgjtIt\":[\"التقارب\"],\"qlhQw_\":[\"مزامنة المخزون\"],\"qliDbL\":[\"أرشيف بعيد\"],\"qlwLcm\":[\"استكشاف الأخطاء وإصلاحها\"],\"qmBmJJ\":[\"هذه هي المرة الوحيدة التي سيتم فيها عرض سر العميل.\"],\"qmYgP7\":[\"تمت الموافقة\"],\"qqeAJM\":[\"أبدًا\"],\"qtFFSS\":[\"تحديث المراجعة عند الإطلاق\"],\"qtaMu8\":[\"المخزون (الاسم)\"],\"qvCD_i\":[\"تتضمن الأمثلة:\"],\"qwaCoN\":[\"تحديث التحكم بالمصدر\"],\"qxZ5RX\":[\"المضيفون\"],\"qznBkw\":[\"نافذة رابط سير العمل\"],\"r6Aglb\":[\"أدخل الحاقنات باستخدام صيغة JSON أو YAML. راجع توثيق Ansible Controller للحصول على مثال على الصيغة.\"],\"r6y-jM\":[\"تحذير\"],\"r6zgGo\":[\"ديسمبر\"],\"r8ojWq\":[\"تأكيد الإزالة\"],\"r8oq0Y\":[\"آخر 24 ساعة\"],\"rBdPPP\":[\"فشل حذف \",[\"name\"],\".\"],\"rE95l8\":[\"نوع العميل\"],\"rG3WVm\":[\"تحديد\"],\"rHK_Sg\":[\"يجب استبدال البيئة الافتراضية المخصصة \",[\"virtualEnvironment\"],\" ببيئة تنفيذ. لمزيد من المعلومات حول الترحيل إلى بيئات التنفيذ انظر <0>التوثيق.\"],\"rK7UBZ\":[\"إعادة إطلاق جميع المضيفين\"],\"rKS_55\":[\"تخزين الحقائق: إذا تم التمكين، فسيؤدي ذلك إلى تخزين الحقائق المجمعة بحيث يمكن عرضها على مستوى المضيف. يتم الاحتفاظ بالحقائق وحقنها في ذاكرة التخزين المؤقت للحقائق في وقت التشغيل.\"],\"rKTFNB\":[\"حذف نوع بيانات الاعتماد\"],\"rLznGJ\":[\"قالب Jinja2 يتم عرضه مع آثار set_stats الأولية عند إنشاء الموافقة. استخدم هذا لإظهار السياق ذي الصلة للموافِق من خطوات المهمة السابقة. تأتي المتغيرات المتاحة من بيانات set_stats للعقد الأصلية.\"],\"rMrKOB\":[\"فشل مزامنة المشروع.\"],\"rOZRCa\":[\"رابط سير العمل\"],\"rSYkIY\":[\"يجب أن يكون هذا الحقل رقمًا\"],\"rXhu41\":[\"2 (تصحيح)\"],\"rYHzDr\":[\"العناصر لكل صفحة\"],\"r_IfWZ\":[\"تحرير المخزون\"],\"rdUucN\":[\"معاينة\"],\"rfYaVc\":[\"اسم متغير الإجابة\"],\"rfpIXM\":[\"المطالبة بمجموعات المثيلات عند الإطلاق.\"],\"rfx2oA\":[\"نص رسالة سير العمل المعلّق\"],\"riBcU5\":[\"اسم IRC المستعار\"],\"rjVfy3\":[\"توثيق سير العمل\"],\"rjyWPb\":[\"يناير\"],\"rmb2GE\":[\"رفض بواسطة \",[\"0\"],\" - \",[\"1\"]],\"rmt9Tu\":[\"إجمالي المضيفين\"],\"ruhGSG\":[\"إلغاء مزامنة مصدر المخزون\"],\"rvia3m\":[\"المصادقة المتنوعة\"],\"rw1pRJ\":[\"تنزيل الحزمة\"],\"rwWNpy\":[\"المخزونات\"],\"s-MGs7\":[\"الموارد\"],\"s2xYUy\":[\"الكتابة فوق المتغيرات المحلية من مصدر المخزون البعيد\"],\"s3KtlK\":[\"لا يحتوي هذا الجدول على أي تكرارات بسبب الاستثناءات المحددة.\"],\"s4Qnj2\":[\"بيئة التنفيذ\"],\"s4fge-\":[\"الشهر الماضي\"],\"s5aIEB\":[\"حذف قالب مهمة سير العمل\"],\"s5mACA\":[\"تفاصيل المثيل\"],\"s5r5nt\":[[\"0\",\"plural\",{\"one\":[\"تُستخدم مجموعة المثيلات هذه حاليًا من قبل موارد أخرى. هل أنت متأكد من أنك تريد حذفها؟\"],\"other\":[\"قد يؤثر حذف مجموعات المثيلات هذه على موارد أخرى تعتمد عليها. هل أنت متأكد من أنك تريد الحذف على أي حال؟\"]}]],\"s6F6Ks\":[\"لم يتم العثور على مخرجات لهذه المهمة.\"],\"s70SJY\":[\"إعدادات التسجيل\"],\"s8hQty\":[\"عرض جميع المهام.\"],\"s9EKbs\":[\"تعطيل التحقق من SSL\"],\"sAz1tZ\":[\"تأكيد إلغاء الربط\"],\"sBJ5MF\":[\"المصادر\"],\"sCEb_0\":[\"عرض جميع مضيفي المخزون.\"],\"sGodAp\":[\"تجاوز مواصفات Pod\"],\"sMDRa_\":[\"العودة إلى المجموعات\"],\"sOMf4x\":[\"القوالب الأخيرة\"],\"sSFxX6\":[\"تحديث المراجعة عند إطلاق المهمة\"],\"sTkKoT\":[\"حدد صفًا للرفض\"],\"sUyFTB\":[\"جارٍ إعادة التوجيه إلى لوحة المعلومات\"],\"sV3kNp\":[\"مجموعة المثيلات هذه قيد الاستخدام حاليًا من قبل موارد أخرى. هل أنت متأكد من أنك تريد حذفها؟\"],\"sVh4-e\":[\"حذف هذا الرابط\"],\"sW5OjU\":[\"مطلوب\"],\"sZif4m\":[\"إلغاء ربط المجموعة (المجموعات) ذات الصلة؟\"],\"s_XkZs\":[\"بدء\"],\"s_r4Az\":[\"يجب أن يكون هذا الحقل عددًا صحيحًا\"],\"sesAIn\":[\"استخدم رسائل مخصصة لتغيير محتوى\\n الإشعارات المُرسلة عند بدء مهمة أو نجاحها أو فشلها. استخدم\\n الأقواس المعقوفة للوصول إلى معلومات حول المهمة:\"],\"sgRZMG\":[\"عقدة هجينة\"],\"siJgSI\":[\"لم يتم العثور على المستخدم.\"],\"sjMCOP\":[\"آخر تعديل\"],\"sjVfrA\":[\"الأمر\"],\"smFRaX\":[\"تم إطلاق مهمة بالفعل\"],\"sqMsvU\":[[\"0\",\"plural\",{\"one\":[\"#\",\" مصدر به فشل في المزامنة.\"],\"other\":[\"#\",\" مصادر بها فشل في المزامنة.\"]}]],\"sr4LMa\":[\"مصدر المخزون\"],\"svR3aM\":[\"OpenStack\"],\"svy2x9\":[\"يُرجع النتائج التي تحقق هذا الفلتر أو أي فلاتر أخرى.\"],\"sxkWRg\":[\"متقدم\"],\"syupn5\":[\"صورة العلامة التجارية\"],\"syyeb9\":[\"الأول\"],\"t-R8-P\":[\"التنفيذ\"],\"t2q1xO\":[\"تحرير الجدول\"],\"t4v_7X\":[\"حدد نوع عقدة\"],\"t9QlBd\":[\"نوفمبر\"],\"tRm9qR\":[\"تكون العلامات مفيدة عندما يكون لديك Playbook كبير وتريد تشغيل جزء معين من play أو مهمة. استخدم الفواصل لفصل علامات متعددة. راجع الوثائق للحصول على تفاصيل حول استخدام العلامات.\"],\"tVEot_\":[[\"0\",\"plural\",{\"one\":[\"هذا القالب قيد الاستخدام حاليًا من قبل بعض عقد سير العمل. هل أنت متأكد من أنك تريد حذفه؟\"],\"other\":[\"قد يؤثر حذف هذه القوالب على بعض عقد سير العمل التي تعتمد عليها. هل أنت متأكد من أنك تريد الحذف على أي حال؟\"]}]],\"tXkhj_\":[\"بدء\"],\"t_YqKh\":[\"إزالة\"],\"tbSVlt\":[\"إزالة وصول المستخدم\"],\"tfDRzk\":[\"حفظ\"],\"tfh2eq\":[\"انقر لإنشاء رابط جديد لهذه العقدة.\"],\"tgPwON\":[\"العامل\"],\"tgSBSE\":[\"إزالة الرابط\"],\"tgWuMB\":[\"تم التعديل\"],\"thJljW\":[\"تحذير: \"],\"toJdZA\":[\"Reorder\"],\"tpCmSt\":[\"policy rules.\"],\"tqlcfo\":[\"إلغاء التوفير\"],\"trjiIV\":[\"فشل ربط القرين.\"],\"tst44n\":[\"الأحداث\"],\"twE5a9\":[\"فشل حذف بيانات الاعتماد.\"],\"txNbrI\":[\"فرع التحكم بالمصدر\"],\"ty2DZX\":[\"هذه المؤسسة قيد الاستخدام حاليًا من قبل موارد أخرى. هل أنت متأكد من أنك تريد حذفها؟\"],\"tzgOKK\":[\"تم اتخاذ إجراء بشأن هذا بالفعل\"],\"u-sh8m\":[\"/ (جذر المشروع)\"],\"u4ex5r\":[\"يوليو\"],\"u4n8Fm\":[\"فشل إزالة الأقران.\"],\"u4x6Jy\":[\"العودة إلى المهام\"],\"u5AJST\":[\"عدد العمليات المتوازية أو المتزامنة المراد استخدامها أثناء تنفيذ playbook. لن يؤدي عدم إدخال أي قيمة إلى استخدام القيمة الافتراضية من ملف تكوين ansible. يمكنك العثور على مزيد من المعلومات\"],\"u7f6WK\":[\"عرض جميع موافقات سير العمل.\"],\"u84wS1\":[\"خطأ في إلغاء المهمة\"],\"uAQUqI\":[\"الحالة\"],\"uAhZbx\":[\"مصادر المخزون التي بها إخفاقات\"],\"uCjD1h\":[\"انتهت جلستك. يرجى تسجيل الدخول للمتابعة من حيث توقفت.\"],\"uImfEm\":[\"رسالة سير العمل المعلّق\"],\"uJz8NJ\":[\"البحث مُعطّل أثناء تشغيل المهمة\"],\"uPRp5U\":[\"إلغاء البحث\"],\"uTDtiS\":[\"الخامس\"],\"uUehLT\":[\"في انتظار\"],\"uVu1Yt\":[\"تحديد تعيين النوع\"],\"uYtvvN\":[\"حدد مشروعًا قبل تحرير بيئة التنفيذ.\"],\"ucSTeu\":[\"تم الإنشاء بواسطة (اسم المستخدم)\"],\"ucgZ0o\":[\"المؤسسة\"],\"ugZpot\":[\"اختبار بيانات الاعتماد الخارجية\"],\"ulRNXw\":[\"Dragging cancelled. List is unchanged.\"],\"upC07l\":[\"Survey Disabled\"],\"uuPCEU\":[\"If you want the Inventory Source to update on launch , click on Update on Launch, and also go to \"],\"uyJsf6\":[\"حول\"],\"uzTiFQ\":[\"العودة إلى الجداول\"],\"v-CZEv\":[\"المطالبة عند الإطلاق\"],\"v-EbDj\":[\"إعدادات استكشاف الأخطاء وإصلاحها\"],\"v-M-LP\":[\"إطلاق القالب\"],\"v0urVb\":[\"إذا لم يكن لديك اشتراك، يمكنك زيارة\\n Red Hat للحصول على اشتراك تجريبي.\"],\"v1kQyJ\":[\"Webhooks\"],\"v2dMHj\":[\"إعادة الإطلاق باستخدام معلمات المضيف\"],\"v2gmVS\":[\"سيؤدي هذا الإجراء إلى الحذف المؤقت لما يلي:\"],\"v45yUL\":[\"إلغاء الربط\"],\"v7vAuj\":[\"إجمالي المهام\"],\"vCS_TJ\":[\"فشل حذف مصدر المخزون \",[\"name\"],\".\"],\"vEr6TL\":[\"تُستخدم هذه الوسائط مع الوحدة المحددة. يمكنك العثور على معلومات حول \",[\"0\"],\" بالنقر \"],\"vF82C6\":[\"التنفيذ عندما تؤدي العقدة الأصل إلى حالة ناجحة.\"],\"vFKI2e\":[\"قواعد الجدول\"],\"vFVhzc\":[\"اجتماعي\"],\"vGVmd5\":[\"يتم تجاهل هذا الحقل ما لم يتم تعيين متغير مُفعّل. إذا كان المتغير المُفعّل يطابق هذه القيمة، فسيتم تمكين المضيف عند الاستيراد.\"],\"vGjmyl\":[\"محذوف\"],\"vHAaZi\":[\"تخطي كل\"],\"vIb3RK\":[\"إنشاء جدول جديد\"],\"vKRQJB\":[\"حقل لتمرير مواصفات Pod مخصصة لـ Kubernetes أو OpenShift.\"],\"vLyv1R\":[\"إخفاء\"],\"vPrMqH\":[\"المراجعة #\"],\"vQHUI6\":[\"في حالة التحديد، ستتم إزالة جميع المتغيرات للمجموعات الفرعية والمضيفين واستبدالها بتلك الموجودة في المصدر الخارجي.\"],\"vTL8gi\":[\"وقت الانتهاء\"],\"vUOn9d\":[\"رجوع\"],\"vYFWsi\":[\"حدد الفرق\"],\"vYuE8q\":[\"الوقت المنقضي لتشغيل المهمة\"],\"vZbIkJ\":[\"GitLab\"],\"vcH-SH\":[\"Bitbucket Data Center\"],\"ve_jRy\":[\"عند الشرط\"],\"vgwVkd\":[\"UTC\"],\"vlHGDw\":[\"قم بتمرير متغيرات سطر أوامر إضافية إلى Playbook. هذه هي معلمة سطر الأوامر -e أو --extra-vars لـ ansible-playbook. قدم أزواج المفتاح/القيمة باستخدام YAML أو JSON. راجع الوثائق للحصول على مثال على بناء الجملة.\"],\"voRH7M\":[\"أمثلة:\"],\"vq1XXv\":[\"إنشاء مخزون ذكي جديد بالمرشح المطبق\"],\"vq2WxD\":[\"الثلاثاء\"],\"vq9gg6\":[\"لا يمكنك اتخاذ إجراء بشأن موافقات سير العمل التالية: \",[\"itemsUnableToApprove\"]],\"vqAmQC\":[\"الوحدة\"],\"vvY8pz\":[\"المطالبة بالوسوم المتخطاة عند الإطلاق.\"],\"vye-ip\":[\"المطالبة بالمهلة عند الإطلاق.\"],\"vzsN_5\":[[\"interval\"],\" day\"],\"w07pgp\":[\"المطالبة بالتفصيل عند الإطلاق.\"],\"w0kTk8\":[\"إعادة الإطلاق من العقدة الفاشلة\"],\"w14eW4\":[\"عرض جميع الرموز المميزة.\"],\"w1RiT6\":[[\"0\",\"plural\",{\"one\":[\"يُستخدم مصدر المخزون هذا حاليًا من قبل موارد أخرى تعتمد عليه. هل أنت متأكد من أنك تريد حذفه؟\"],\"other\":[\"قد يؤثر حذف مصادر المخزون هذه على موارد أخرى تعتمد عليها. هل أنت متأكد من أنك تريد حذفها على أي حال؟\"]}]],\"w2VTLB\":[\"مقارنة أقل من.\"],\"w3EE8S\":[\"المضيفون المُؤتمتون\"],\"w4j7js\":[\"عرض تفاصيل الفريق\"],\"w6zx64\":[\"استخدام افتراضي المتصفح\"],\"wCnaTT\":[\"استبدال الحقل بقيمة جديدة\"],\"wF-BAU\":[\"إضافة مخزون\"],\"wFnb77\":[\"معرّف المخزون\"],\"wKEfMu\":[\"اكتملت معالجة الأحداث.\"],\"wO29qX\":[\"لم يتم العثور على المؤسسة.\"],\"wW08QA\":[\"لا يساوي\"],\"wX6sAX\":[\"السنتان الماضيتان\"],\"wXAVe-\":[\"وسائط الوحدة\"],\"wXB7k5\":[\"حدد لون إشعار. الألوان المقبولة هي رمز لون\\n سداسي عشري (مثال: #3af أو #789abc).\"],\"waFx9W\":[\"مُدار\"],\"wdxz7K\":[\"المصدر\"],\"wgNoIs\":[\"تحديد الكل\"],\"wkgHlv\":[\"إضافة عقدة جديدة\"],\"wlQNTg\":[\"الأعضاء\"],\"wnizTi\":[\"حدد اشتراكًا\"],\"wpT1VN\":[\"الشرط\"],\"wpt6vB\":[\"LDAP2\"],\"wqXiR2\":[\"قم بتمرير تغييرات سطر أوامر إضافية. هناك معلمتان لسطر أوامر ansible: \"],\"wsggVq\":[\"عند عدم التحديد، ستبقى المضيفون والمجموعات الفرعية المحلية غير الموجودة في المصدر الخارجي دون تغيير بواسطة عملية تحديث المخزون.\"],\"x-a4Mr\":[\"بيانات اعتماد Webhook\"],\"x02hbg\":[\"استدعاءات التزويد: تمكّن إنشاء عنوان URL لاستدعاء التزويد. باستخدام عنوان URL، يمكن للمضيف الاتصال بـ Ansible AWX وطلب تحديث التكوين باستخدام قالب المهمة هذا.\"],\"x4Xp3c\":[\"تم التحديث\"],\"x5DnMs\":[\"آخر تعديل\"],\"x6_dAC\":[\"المخزون الموحّد\"],\"x6oT_o\":[\"المضيفون المتاحون\"],\"x7PDL5\":[\"التسجيل\"],\"x8uKc7\":[\"حالة المثيل\"],\"x9WS62\":[\"إلغاء \",[\"0\"]],\"xAYSEs\":[\"وقت البدء\"],\"xAqth4\":[\"عرض إعدادات Google OAuth 2.0\"],\"xC9EVu\":[\"عقدة ملغاة\"],\"xCJdfg\":[\"مسح\"],\"xDr_ct\":[\"النهاية\"],\"xESTou\":[\"فشل حذف المهمة.\"],\"xF5tnT\":[\"كلمة مرور Vault\"],\"xGQZwx\":[\"إضافة مجموعة حاويات\"],\"xGVfLh\":[\"متابعة\"],\"xHZS6u\":[\"المهام الناجحة\"],\"xHokxV\":[[\"0\",\"plural\",{\"one\":[\"لا يمكن حذف المهمة المحددة بسبب إذن غير كافٍ أو حالة مهمة قيد التشغيل\"],\"other\":[\"لا يمكن حذف المهام المحددة بسبب أذونات غير كافية أو حالة مهمة قيد التشغيل\"]}]],\"xHt036\":[\"رمز الوصول الشخصي\"],\"xKQRBr\":[\"الحد الأقصى للطول\"],\"xM01Pk\":[\"الإجابة الافتراضية\"],\"xONDaO\":[\"Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?\"],\"xOl1yT\":[\"بحث تام في حقل الاسم.\"],\"xPO5w7\":[\"تسجيل الدخول باستخدام GitHub\"],\"xPpkbX\":[\"Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway\"],\"xPxMOJ\":[\"تنسيق وقت غير صالح\"],\"xQioPk\":[\"الشروط المسبقة لتشغيل هذه العقدة عند وجود عدة عقد أصلية. راجع\"],\"xSytdh\":[\"انتهى:\"],\"xUhTCP\":[\"اختر مصدرًا\"],\"xVhQZV\":[\"الجمعة\"],\"xY9DEq\":[\"النمط المستخدم لاستهداف المضيفين في المخزون. سيؤدي ترك الحقل فارغًا، و all، و * جميعها إلى استهداف جميع المضيفين في المخزون. يمكنك العثور على مزيد من المعلومات حول أنماط مضيف Ansible\"],\"xY9s5E\":[\"المهلة\"],\"x_Ej3K\":[\"اختر نوع أو تنسيق الإجابة الذي تريده كمطالبة للمستخدم.\\n راجع وثائق Ascender للحصول على معلومات إضافية حول كل خيار.\"],\"x_ugm_\":[\"إجمالي المجموعات\"],\"xa7N9Z\":[\"تحرير عنوان URL لتجاوز إعادة توجيه تسجيل الدخول\"],\"xcaG5l\":[\"تحرير سير العمل\"],\"xd2LI3\":[\"تنتهي الصلاحية في \",[\"0\"]],\"xdA_-p\":[\"الأدوات\"],\"xe5RvT\":[\"علامة تبويب YAML\"],\"xefC7k\":[\"منفذ خادم IRC\"],\"xeiujy\":[\"نص\"],\"xg771-\":[\"LDAP1\"],\"xhj1Rt\":[\"تعذر العثور على الصفحة التي طلبتها.\"],\"xi4nE2\":[\"رسالة الخطأ\"],\"xnSIXG\":[\"فشل حذف مضيف واحد أو أكثر.\"],\"xoCdYY\":[\"التحقق مما إذا كانت قيمة الحقل المحدد موجودة في القائمة المقدمة؛ يتوقع قائمة عناصر مفصولة بفواصل.\"],\"xoXoBo\":[\"خطأ في الحذف\"],\"xrG8k4\":[\"Google Compute Engine\"],\"xtRU96\":[\"GitHub Enterprise Organization\"],\"xuYTJb\":[\"فشل حذف قالب المهمة.\"],\"xw06rt\":[\"الإعداد يطابق إعداد المصنع الافتراضي.\"],\"xxTtJH\":[\"تعبير نمطي حيث سيتم استيراد أسماء المضيفين المطابقة فقط. يتم تطبيق المرشح كخطوة معالجة لاحقة بعد تطبيق أي مرشحات ملحق مخزون.\"],\"y11WBZ\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"إلغاء المهمة المحددة\"],\"other\":[\"إلغاء المهام المحددة\"]}]],\"y8ibKI\":[\"إزالة المثيلات\"],\"yCCaoF\":[\"فشل تحديث المثيل.\"],\"yDeNnS\":[\"إنشاء مخزون مُنشأ جديد\"],\"yDifzB\":[\"تأكيد التحديد\"],\"yGS9cI\":[\"سليم\"],\"yGUKlf\":[\"مهام الإدارة\"],\"yGfW7Y\":[\"قم بتغيير PROJECTS_ROOT عند نشر \",[\"brandName\"],\" لتغيير هذا الموقع.\"],\"yMIahh\":[\"مرحبًا بك في Red Hat Ansible Automation Platform!\\n يرجى إكمال الخطوات أدناه لتفعيل اشتراكك.\"],\"yMYuDg\":[\"إصدار Automation controller\"],\"yMfU4O\":[\"البريد الإلكتروني للمرسل\"],\"yNcGa2\":[\"انتهاء صلاحية رمز الوصول\"],\"yOXgbH\":[\"ملاحظة: عند استخدام بروتوكول SSH لـ GitHub أو Bitbucket، أدخل مفتاح SSH فقط، ولا تُدخل اسم مستخدم (بخلاف git). بالإضافة إلى ذلك، لا يدعم GitHub وBitbucket مصادقة كلمة المرور عند استخدام SSH. لا يستخدم بروتوكول GIT للقراءة فقط (git://) معلومات اسم المستخدم أو كلمة المرور.\"],\"yQE2r9\":[\"جارٍ التحميل\"],\"yRiHPB\":[\"يرجى تشغيل مهمة لملء هذه القائمة.\"],\"yRkqG9\":[\"الحد\"],\"yRsSBw\":[\"الموافقات\"],\"yUlffE\":[\"إعادة الإطلاق\"],\"yVgnJA\":[\"الحد الأقصى لعدد المضيفين المسموح بإدارتهم بواسطة هذه المؤسسة.\\n القيمة الافتراضية هي 0 مما يعني عدم وجود حد. راجع توثيق Ansible\\n لمزيد من التفاصيل.\"],\"yX3qAQ\":[\"عُقد قالب مهمة سير العمل\"],\"yaG1CX\":[\"LDAP\"],\"yaX9sM\":[\"قالب سير العمل\"],\"yb_fjw\":[\"الموافقة\"],\"ydoZpB\":[\"لم يتم العثور على الفريق.\"],\"ydw9CW\":[\"المضيفون الفاشلون\"],\"yfG3F2\":[\"المفاتيح المباشرة\"],\"yjwMJ8\":[\"كم مرة تمت أتمتة المضيف\"],\"yjyGja\":[\"توسيع الإدخال\"],\"ylXj1N\":[\"محدد\"],\"yq6OqI\":[\"هذه هي المرة الوحيدة التي سيتم فيها عرض قيمة الرمز المميز وقيمة رمز التحديث المرتبط.\"],\"yqiwAW\":[\"إلغاء سير العمل\"],\"yrUyDQ\":[\"يحدد مرحلة دورة الحياة الحالية لهذا المثيل. الافتراضي هو \\\"installed\\\".\"],\"yrwl2P\":[\"متوافق\"],\"yuXsFE\":[\"فشل حذف موافقة سير عمل واحدة أو أكثر.\"],\"yuvDX_\":[[\"intervalValue\",\"plural\",{\"one\":[\"شهر\"],\"other\":[\"أشهر\"]}]],\"ywSBEn\":[\"خطأ في ربط الدور\"],\"yxDqcD\":[\"انتهاء صلاحية رمز التفويض\"],\"yy1cWw\":[\"تخصيص الرسائل…\"],\"yz7wBu\":[\"إغلاق\"],\"yzQhLU\":[\"الحد الأدنى لمثيلات السياسة\"],\"yzdDia\":[\"حذف الاستبيان\"],\"z-BNGk\":[\"حذف رمز المستخدم المميز\"],\"z0DcIS\":[\"مشفّر\"],\"z3XA1I\":[\"إعادة محاولة المضيف\"],\"z409y8\":[\"خدمة Webhook\"],\"z7NLxJ\":[\"إذا كنت تريد فقط إزالة الوصول لهذا المستخدم المعين، يرجى إزالته من الفريق.\"],\"z8mwbl\":[\"الحد الأدنى لنسبة جميع المثيلات التي سيتم تعيينها تلقائيًا لهذه المجموعة عند اتصال مثيلات جديدة.\"],\"zBO1TV\":[[\"numOccurrences\",\"plural\",{\"one\":[\"بعد \",\"#\",\" تكرار\"],\"other\":[\"بعد \",\"#\",\" تكرارات\"]}]],\"zHcXAG\":[\"اترك هذا الحقل فارغًا لجعل بيئة التنفيذ متاحة عالميًا.\"],\"zICM7E\":[\"تجاهل التغييرات المحلية قبل المزامنة\"],\"zJY4Uj\":[\"Playbook\"],\"zKJMiH\":[\"دليل Playbook\"],\"zK_63z\":[\"اسم مستخدم أو كلمة مرور غير صالحة. يرجى المحاولة مرة أخرى.\"],\"zLsDix\":[\"مستخدم ldap\"],\"zMKkOk\":[\"العودة إلى المؤسسات\"],\"zN0nhk\":[\"قدّم بيانات اعتماد Red Hat أو Red Hat Satellite الخاصة بك لتمكين Automation Analytics.\"],\"zQRgi-\":[\"تبديل بدء الإشعار\"],\"zTediT\":[\"يجب أن يكون هذا الحقل رقمًا وأن تكون قيمته بين \",[\"min\"],\" و\",[\"max\"]],\"zUIPys\":[\"إضافة المضيفين إلى المجموعة بناءً على شروط Jinja2.\"],\"z_PZxu\":[\"فشل حذف موافقة سير العمل.\"],\"zbLCH1\":[\"نوع المخزون\"],\"zcQj5X\":[\"أولاً، حدد مفتاحًا\"],\"zdl7YZ\":[\"حدد مسار المصدر\"],\"zeEQd_\":[\"يونيو\"],\"zf7FzC\":[\"بيانات اعتماد للمصادقة مع Kubernetes أو OpenShift. يجب أن تكون من نوع \\\"Kubernetes/OpenShift API Bearer Token\\\". إذا تُركت فارغة، فسيتم استخدام حساب خدمة Pod الأساسي.\"],\"zfZydd\":[\"نافذة معاينة الاستبيان\"],\"zfsBaJ\":[\"تعرف على المزيد حول Automation Analytics\"],\"zgInnV\":[\"نافذة عرض عقدة سير العمل\"],\"zga9sT\":[\"موافق\"],\"zhPLvU\":[\"فشل الربط.\"],\"zhrjek\":[\"المجموعات\"],\"zi_YNm\":[\"فشل إلغاء \",[\"0\"]],\"zmu4-P\":[\"معرّف الحساب SID\"],\"znG7ed\":[\"حدد playbook\"],\"znTz5r\":[\"لم يتم العثور على الجدول.\"],\"znuW_M\":[\"إذا كانت نعم، اجعل الإدخالات غير الصالحة خطأً فادحًا، وإلا تخطَّ\\n وتابع.\"],\"zq0gmb\":[\"حدد الفترة\"],\"ztOzCj\":[\"التحديث عند الإطلاق\"],\"ztw2L3\":[\"يجب أن تكون هناك قيمة في إدخال واحد على الأقل\"],\"zvfXp0\":[\"تبديل موافقات الإشعار\"],\"zx4BuL\":[\"أسبوع\"],\"zzDlyQ\":[\"نجاح\"],\"{count, plural, one {# fork} other {# forks}}\":[[\"count\",\"plural\",{\"one\":[\"#\",\" fork\"],\"other\":[\"#\",\" forks\"]}]]}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"--iDlT\":[\"حذف المشروع\"],\"-0AkQd\":[[\"forks\",\"plural\",{\"one\":[\"#\",\" تفريعة\"],\"other\":[\"#\",\" تفريعات\"]}]],\"-0B-ue\":[\"المشاريع\"],\"-5kO8P\":[\"السبت\"],\"-6EcFR\":[\"اضغط Enter للتحرير. اضغط ESC لإيقاف التحرير.\"],\"-7M7WW\":[\"انقر لتبديل القيمة الافتراضية\"],\"-7VWRl\":[\"ذاكرة الوصول العشوائي \",[\"0\"]],\"-8WGoO\":[\"معلمة الملحق مطلوبة.\"],\"-9d7Ol\":[\"النطاق الفرعي لـ Pagerduty\"],\"-9y9jy\":[\"جارٍ تشغيل فحص الصحة\"],\"-9yY_Q\":[\"فشل نسخ المخزون.\"],\"-AZQnp\":[\"SAML\"],\"-FWz2-\":[\"التمرير للسابق\"],\"-FjWgX\":[\"الخميس\"],\"-GMFSa\":[\"فشل نسخ المشروع.\"],\"-GOG9X\":[\"إخفاء الوصف\"],\"-NI2UI\":[\"قسّم العمل الذي يقوم به قالب المهمة هذا إلى العدد المحدد من شرائح المهام، حيث يقوم كل منها بتشغيل المهام نفسها على جزء من المخزون.\"],\"-NezOR\":[\"نوع بيانات الاعتماد هذا قيد الاستخدام حاليًا من قبل بعض بيانات الاعتماد ولا يمكن حذفه\"],\"-OpL2l\":[\"التنفيذ بغض النظر عن الحالة النهائية للعقدة الأصل.\"],\"-PyL32\":[\"هل أنت متأكد من أنك تريد إزالة هذه العقدة؟\"],\"-RAMET\":[\"تحرير هذا الرابط\"],\"-SAqJ3\":[\"فشل نسخ بيانات الاعتماد.\"],\"-Uepfb\":[\"تحكم\"],\"-b3ghh\":[\"تصعيد الامتيازات\"],\"-cWxFz\":[\"قم بتمكين توقيع المحتوى للتحقق من أن المحتوى ظل آمنًا عند مزامنة مشروع. إذا تم العبث بالمحتوى، فلن يتم تشغيل المهمة.\"],\"-hh3vo\":[\"تعذر تحميل آخر تحديث للمهمة\"],\"-li8PK\":[\"استخدام الاشتراك\"],\"-nb9qF\":[\"(المطالبة عند الإطلاق)\"],\"-ohrPc\":[\"بحث تلقائي\"],\"-rfqXD\":[\"الاستبيان مُفعّل\"],\"-uOi7U\":[\"انقر لتنزيل الحزمة\"],\"-vAlj5\":[\"فشل إطلاق المهمة.\"],\"-z0Ubz\":[\"حدد الأدوار المراد تطبيقها\"],\"-zW4qj\":[\"الفرع المراد سحبه. بالإضافة إلى الفروع، يمكنك إدخال العلامات وتجزئات الالتزام والمراجع العشوائية. قد لا تتوفر بعض تجزئات الالتزام والمراجع ما لم تقدم أيضًا refspec مخصصًا.\"],\"-zy2Nq\":[\"النوع\"],\"0-31GV\":[\"جارٍ الإزالة\"],\"0-yjzX\":[\"يجب مزامنة المشروع قبل أن تتوفر مراجعة.\"],\"00_HDq\":[\"نوع السياسة\"],\"00cteM\":[\"يجب ألا يتجاوز هذا الحقل \",[\"0\"],\" أحرف\"],\"01Zgfk\":[\"انتهت المهلة\"],\"02FGuS\":[\"إنشاء مجموعة جديدة\"],\"02ePaq\":[\"حدد \",[\"0\"]],\"02o5A-\":[\"إنشاء مشروع جديد\"],\"05TJDT\":[\"انقر لعرض تفاصيل المهمة\"],\"06Veq8\":[\"مزامنة المشروع\"],\"08IuMU\":[\"الكتابة فوق المتغيرات\"],\"08dX0o\":[\"Grafana\"],\"0Ca6Bi\":[[\"dateStr\"],\" بواسطة <0>\",[\"username\"],\"\"],\"0DRyjU\":[\"جارٍ تشغيل المعالِجات\"],\"0JjrTf\":[\"حدث خطأ أثناء تحليل الملف. يرجى التحقق من تنسيق الملف والمحاولة مرة أخرى.\"],\"0K8MzY\":[\"يجب ألا يتجاوز هذا الحقل \",[\"max\"],\" أحرف\"],\"0LUj25\":[\"حذف مجموعة المثيلات\"],\"0MFMD5\":[\"فشل تشغيل فحص الصحة على مثيل واحد أو أكثر.\"],\"0Ohn6b\":[\"أُطلقت بواسطة\"],\"0PUWHV\":[\"تكرار التردد\"],\"0Pz6gk\":[\"المتغيرات المستخدمة لتكوين ملحق المخزون المُنشأ. للحصول على وصف مفصل لكيفية تكوين هذا الملحق، انظر\"],\"0QsHpG\":[\"مخطط الإدخال الذي يحدد مجموعة من الحقول المرتبة لهذا النوع.\"],\"0Tddvz\":[\"عنوان URL الأساسي لخادم Grafana - سيتم\\n إضافة نقطة النهاية /api/annotations تلقائيًا إلى عنوان\\n URL الأساسي لـ Grafana.\"],\"0WL4_U\":[\"حذف جميع العقد\"],\"0WP27-\":[\"في انتظار مخرجات المهمة…\"],\"0YAsXQ\":[\"مجموعة الحاويات\"],\"0ZdD1M\":[[\"0\",\"plural\",{\"one\":[\"لا يمكنك إلغاء المهمة التالية لأنها لا تعمل:\"],\"other\":[\"لا يمكنك إلغاء المهام التالية لأنها لا تعمل:\"]}]],\"0ZqUtV\":[\"لمزيد من المعلومات، راجع\"],\"0_ru-E\":[\"نسخ المخزون\"],\"0cqIWs\":[\"كلمة مرور المصادقة الأساسية\"],\"0d48JM\":[\"اختيار متعدد (تحديد متعدد)\"],\"0eOoxo\":[\"يرجى تحديد تاريخ/وقت انتهاء يأتي بعد تاريخ/وقت البدء.\"],\"0f7U0k\":[\"الأربعاء\"],\"0gPQCa\":[\"دائمًا\"],\"0lvFRT\":[\"لا يمكنك تغيير نوع بيانات الاعتماد لأنه قد يعطل وظائف الموارد التي تستخدمها.\"],\"0pC_y6\":[\"حدث\"],\"0qOaMt\":[\"حدث خطأ ما في طلب اختبار بيانات الاعتماد والبيانات الوصفية هذه.\"],\"0rVzXl\":[\"إعدادات Google OAuth 2\"],\"0sNe72\":[\"إضافة أدوار\"],\"0tNXE8\":[\"PUT\"],\"0tfvhT\":[\"السعة المستخدمة لمجموعة المثيلات\"],\"0wlLcO\":[\"حدد عدد أيام البيانات التي يجب الاحتفاظ بها.\"],\"0zpgxV\":[\"الخيارات\"],\"0zs8j5\":[\"الحد الأقصى لعدد مرات إعادة محاولة مهمة هذه العقدة تلقائيًا بعد الفشل قبل اتباع مسارات فشلها. لا تتم إعادة محاولة المهام الملغاة أبدًا.\"],\"1-4GhF\":[\"إلغاء المزامنة\"],\"10B0do\":[\"فشل إرسال إشعار الاختبار.\"],\"1280Tg\":[\"اسم المضيف\"],\"12j25_\":[\"مفتاح GPG العام\"],\"12kemj\":[\"عنوان URL للتحكم بالمصدر\"],\"14KOyT\":[\"متغيرات المصدر\"],\"15GcuU\":[\"عرض إعدادات المصادقة المتنوعة\"],\"17TKua\":[\"مجموعة المثيلات\"],\"19zgn6\":[\"نوع المثيل\"],\"1A3EXy\":[\"توسيع\"],\"1C5cFl\":[\"التشغيل التالي\"],\"1Ey8My\":[\"عنوان IP\"],\"1F0IaT\":[\"عرض الجداول\"],\"1HMy92\":[\"JSON:\"],\"1I6UoR\":[\"طرق العرض\"],\"1L3KBl\":[\"إنشاء نوع بيانات اعتماد جديد\"],\"1LRwvx\":[\"إذا كنت تريد أن يتم تحديث مصدر المخزون عند الإطلاق، انقر على تحديث عند الإطلاق، وانتقل أيضًا إلى \"],\"1Ltnvs\":[\"إضافة عقدة\"],\"1PQRWr\":[\"وقت البدء\"],\"1QRNEs\":[\"تكرار التردد\"],\"1RYzKu\":[\"إعادة الإطلاق من العقدة الملغاة\"],\"1UJu6o\":[\"يرجى تحديد رقم يوم بين 1 و 31.\"],\"1UjRxI\":[\"مهلة ذاكرة التخزين المؤقت\"],\"1UzENP\":[\"لا\"],\"1V4Yvg\":[\"النظام المتنوع\"],\"1WlWk7\":[\"عرض تفاصيل مضيف المخزون\"],\"1WsB5U\":[\"لم نتمكن من العثور على اشتراكات مرتبطة بهذا الحساب.\"],\"1ZaQUH\":[\"اسم العائلة\"],\"1_gTC7\":[\"لا يمكنك تحديد عدة بيانات اعتماد vault بنفس معرّف vault. سيؤدي ذلك تلقائيًا إلى إلغاء تحديد الآخر الذي يحمل نفس معرّف vault.\"],\"1abtmx\":[\"ترقية المجموعات الفرعية والمضيفين\"],\"1ahgeV\":[\"Google OAuth2\"],\"1cT4RU\":[\"تحديث SCM\"],\"1fO-kL\":[\"فشل تبديل المثيل.\"],\"1hCxP5\":[\"فشل حذف مجموعة مثيلات واحدة أو أكثر.\"],\"1kwHxg\":[\"مقاييس المضيف\"],\"1n50PN\":[\"علامة تبويب JSON\"],\"1qd4yi\":[\"يجب أن تكون المتغيرات بصيغة JSON أو YAML. استخدم زر الاختيار للتبديل بينهما.\"],\"1rDBnp\":[\"اختلاف الملف\"],\"1w2SCz\":[\"اختر نوع التحكم بالمصدر\"],\"1xdJD7\":[\"ملاءمة الشاشة\"],\"1yHVE-\":[\"جارٍ الإضافة\"],\"2-iKER\":[\"عرض دفق النشاط\"],\"2B_v7Y\":[\"نسبة مثيلات السياسة\"],\"2CTKOa\":[\"العودة إلى المشاريع\"],\"2FB7vv\":[\"حدد مؤسسة قبل تحرير بيئة التنفيذ الافتراضية.\"],\"2FeJcd\":[\"تم تخطي العنصر\"],\"2H9REH\":[\"بحث تقريبي في حقل الاسم.\"],\"2JV4mx\":[\"مجموعات المثيلات التي ينتمي إليها هذا المثيل.\"],\"2KlsJC\":[\"يمكنك تطبيق عدد من المتغيرات الممكنة في\\n الرسالة. لمزيد من المعلومات، راجع\"],\"2MSEkM\":[\"فشل حذف المخزون.\"],\"2a07Yj\":[\"نسخ قالب الإشعار\"],\"2ekvhy\":[\"تردد الاستثناء\"],\"2gDkH_\":[\"يرجى إدخال عدد مرات التكرار.\"],\"2iyx-2\":[\"توثيق Ansible Controller.\"],\"2n41Wr\":[\"إضافة قالب سير العمل\"],\"2nsB1O\":[\"العودة إلى الرموز المميزة\"],\"2ocqzE\":[\"Webhooks: تمكين webhook لهذا القالب.\"],\"2ooR7j\":[\"LDAP 5\"],\"2p6eVk\":[\"نافذة البحث\"],\"2pNIxF\":[\"عقد سير العمل\"],\"2pgi-L\":[\"يشير إلى ما إذا كان المضيف متاحًا ويجب تضمينه في المهام\\n قيد التشغيل. بالنسبة للمضيفين الذين هم جزء من مخزون خارجي، قد تتم\\n إعادة تعيين ذلك بواسطة عملية مزامنة المخزون.\"],\"2qfwJn\":[\"الكتابة فوق\"],\"2r06bV\":[\"Hipchat\"],\"2rvMKg\":[\"رمز التحديث المميز\"],\"2w-INk\":[\"تفاصيل المضيف\"],\"2zs1kI\":[\"هذه القيمة لا تطابق كلمة المرور التي أدخلتها سابقًا. يرجى تأكيد كلمة المرور تلك.\"],\"3-SkJA\":[\"إلغاء ربط المجموعة من المضيف؟\"],\"3-sY1p\":[\"رقم (أرقام) SMS الوجهة\"],\"328Yxp\":[\"فرع التحكم بالمصدر\"],\"38Or-7\":[\"علامات التبويب\"],\"38VIWI\":[\"عرض تفاصيل القالب\"],\"39y5bn\":[\"الجمعة\"],\"3A9ATS\":[\"لم يتم العثور على بيئة التنفيذ.\"],\"3AOZPn\":[\"عرض وتحرير خيارات التصحيح\"],\"3FUtN9\":[\"مزامنة مصدر المخزون\"],\"3IVQDN\":[\"يستخدم هذا الجدول قواعد معقدة غير مدعومة في\\n واجهة المستخدم. يرجى استخدام API لإدارة هذا الجدول.\"],\"3JjdaA\":[\"تشغيل\"],\"3JnvxN\":[\"اختر الموارد التي ستتلقى أدوارًا جديدة. ستتمكن من تحديد الأدوار المراد تطبيقها في الخطوة التالية. لاحظ أن الموارد المختارة هنا ستتلقى جميع الأدوار المختارة في الخطوة التالية.\"],\"3JzsDb\":[\"مايو\"],\"3LoUor\":[\"قنوات الوجهة\"],\"3LqMX2\":[\"CIQ Ascender Automation Platform\"],\"3PAU4M\":[\"السنة\"],\"3PZalO\":[\"لم يتم العثور على المضيف.\"],\"3Rke7L\":[\"1 (معلومات)\"],\"3WGwSW\":[\"احذف المستودع المحلي بالكامل قبل إجراء تحديث. اعتمادًا على حجم المستودع، قد يؤدي ذلك إلى زيادة كبيرة في مقدار الوقت اللازم لإكمال التحديث.\"],\"3YSVMq\":[\"خطأ في الحذف\"],\"3aIe4Y\":[\"إنشاء مؤسسة جديدة\"],\"3b24mY\":[\"المعالج \",[\"0\"]],\"3fG1e7\":[\"الوقت المنقضي\"],\"3fMc43\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" سنة\"],\"other\":[\"#\",\" سنوات\"]}]],\"3hCQhK\":[\"ملحقات المخزون\"],\"3hvUyZ\":[\"خيار جديد\"],\"3mTiHp\":[\"فشل نسخ القالب.\"],\"3pBNb0\":[\"إعادة تحميل المخرجات\"],\"3sFvGC\":[\"تعيين المثيل مُفعّلاً أو مُعطّلاً. إذا كان مُعطّلاً، فلن يتم تعيين المهام لهذا المثيل.\"],\"3sXZ-V\":[\"وانقر على تحديث المراجعة عند الإطلاق.\"],\"3uAM50\":[\"اتفاقية ترخيص المستخدم النهائي\"],\"3wPA9L\":[\"فئة الإعداد\"],\"3y7qi5\":[\"العودة إلى بيانات الاعتماد\"],\"3yy_k-\":[\"عرض جميع الفرق.\"],\"4-RjdJ\":[[\"interval\"],\" year\"],\"40lLFI\":[\"الانتقال إلى الصفحة التالية\"],\"41KRqu\":[\"كلمات مرور بيانات الاعتماد\"],\"45BzQy\":[\"فحوصات الصحة هي مهام غير متزامنة. انظر\"],\"45cx0B\":[\"إلغاء تحرير الاشتراك\"],\"45gLaI\":[\"المطالبة ببيانات الاعتماد عند الإطلاق.\"],\"46SUtl\":[\"تحرير المجموعة\"],\"479kuh\":[\"نسخ المراجعة الكاملة إلى الحافظة.\"],\"47e97a\":[\"الحد الأقصى لإعادة المحاولات\"],\"4BITzH\":[\"خطأ:\"],\"4LzLLz\":[\"عرض جميع الإعدادات\"],\"4Q4HZp\":[\"لم يتم العثور على \",[\"pluralizedItemName\"]],\"4QXpWJ\":[\"انتهت المهلة\"],\"4QfhOe\":[\"بعض معدّلات البحث مثل not__ و __search غير مدعومة في مرشحات مضيف المخزون الذكي. أزلها لإنشاء مخزون ذكي جديد بهذا المرشح.\"],\"4S2cNE\":[\"عرض إعدادات التسجيل\"],\"4Wt2Ty\":[\"حدد العناصر من القائمة\"],\"4_ESDh\":[\"يجب أن يكون هذا الحقل تعبيرًا نمطيًا\"],\"4_xiC_\":[\"الآثار\"],\"4alXD6\":[\"الحد الأقصى لعدد المهام التي تعمل بشكل متزامن على هذه المجموعة.\\n يعني الصفر عدم فرض أي حد.\"],\"4bhLaA\":[\"حدد نوع بيانات اعتماد\"],\"4cWhxn\":[\"يتحكم فيما إذا كان هذا المثيل مُدارًا بواسطة السياسة أم لا. إذا كان مُفعّلاً، فسيكون المثيل متاحًا للتعيين التلقائي إلى مجموعات المثيلات وإلغاء التعيين منها بناءً على قواعد السياسة.\"],\"4dQFvz\":[\"منتهٍ\"],\"4g1rw0\":[\"مقدار الوقت (بالثواني) قبل أن يتوقف إشعار البريد\\n الإلكتروني عن محاولة الوصول إلى المضيف وتنتهي مهلته. يتراوح\\n من 1 إلى 120 ثانية.\"],\"4hPyPF\":[\"حفظ وخروج\"],\"4j2eOR\":[\"حدد المخزون الذي سينتمي إليه هذا المضيف.\"],\"4jnim6\":[\"حدد خدمة webhook.\"],\"4km-Vu\":[\"غير متوافق\"],\"4kw_um\":[[\"interval\"],\" minute\"],\"4lCMxZ\":[\"شرح الفشل:\"],\"4lgLew\":[\"فبراير\"],\"4mQyZf\":[\"يمكن لخدمات webhook استخدام هذا كسر مشترك.\"],\"4nLbTY\":[\"عرض جميع مهام الإدارة\"],\"4o_cFL\":[\"حذف التطبيق\"],\"4s0pSB\":[\"قدم نمط مضيف لزيادة تقييد قائمة المضيفين الذين ستتم إدارتهم أو التأثير عليهم بواسطة Playbook. يُسمح بأنماط متعددة. راجع وثائق Ansible لمزيد من المعلومات والأمثلة حول الأنماط.\"],\"4uVADI\":[\"سر العميل\"],\"4vFDZV\":[\"إنشاء قالب مهمة جديد\"],\"4vkbaA\":[\"المشروع الذي يتم من خلاله الحصول على مصدر تحديث المخزون هذا.\"],\"4yGeRr\":[\"مزامنة المخزون\"],\"4zue79\":[\"حقوق النشر\"],\"5-qYGv\":[\"تحرير المثيل\"],\"54_SyV\":[[\"0\",\"plural\",{\"one\":[\"ليس لديك إذن لإلغاء المهمة التالية:\"],\"other\":[\"ليس لديك إذن لإلغاء المهام التالية:\"]}]],\"56fd5u\":[\"هل أنت متأكد من أنك تريد إزالة جميع العقد في سير العمل هذا؟\"],\"5B77Dm\":[\"آخر مهمة\"],\"5F5F4w\":[\"موافقة سير العمل\"],\"5IhYoj\":[\"أنواع العقد\"],\"5K7kGO\":[\"التوثيق\"],\"5KMGbn\":[\"هل أنت متأكد من أنك تريد إلغاء هذه المهمة؟\"],\"5RMgCw\":[\"المضيفون\"],\"5S4tZv\":[\"لم يطابق التردد قيمة متوقعة\"],\"5Sa1Ss\":[\"البريد الإلكتروني\"],\"5TnQp6\":[\"نوع المهمة\"],\"5WFDw4\":[\"التجميع فقط حسب\"],\"5X2wog\":[\"حدثت مشكلة في تسجيل الدخول. يرجى المحاولة مرة أخرى.\"],\"5_vHPm\":[\"عرض إعدادات TACACS+\"],\"5ajaW1\":[\"التنفيذ عندما يطابق أثر العقدة الأصل الشرط.\"],\"5dJK4M\":[\"الأدوار\"],\"5eHyY-\":[\"إشعار الاختبار\"],\"5eL2KN\":[\"عنوان URL الهدف\"],\"5lqXf5\":[\"الرجوع إلى إعدادات المصنع الافتراضية.\"],\"5n_soj\":[\"المطالبة بعدد شرائح المهمة عند الإطلاق.\"],\"5p6-Mk\":[\"التصفية حسب المهام الفاشلة\"],\"5pDe2G\":[\"Remove \",[\"0\"],\" Access\"],\"5pa4JT\":[\"بدأ Playbook\"],\"5qauVA\":[\"قالب مهمة سير العمل هذا قيد الاستخدام حاليًا من قبل موارد أخرى. هل أنت متأكد من أنك تريد حذفه؟\"],\"5vA8H0\":[\"لم يطابق أي مضيف\"],\"5xzS8Q\":[\"الرمز المميز الذي يضمن أن هذا ملف مصدر\\n لملحق 'constructed'.\"],\"5y9wkB\":[\"العودة إلى الإشعارات\"],\"6-OdGi\":[\"البروتوكول\"],\"6-ptnU\":[\"خيار إلى\"],\"623gDt\":[\"فشل حذف المستخدم.\"],\"63C4Yo\":[\"مجموعة الحاويات\"],\"66Zq7T\":[\"حفظ تغييرات الرابط\"],\"66qTfS\":[\"الأسبوع الماضي\"],\"679-JR\":[\"بحث تقريبي في حقول المعرّف أو الاسم أو الوصف.\"],\"68OTAn\":[\"This intance is currently being used by other resources. Are you sure you want to delete it?\"],\"68h6WG\":[\"إطلاق مهمة الإدارة\"],\"69aXwM\":[\"إضافة مجموعة موجودة\"],\"69zuwn\":[\"Deprovisioning these instances could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"6ASSBg\":[\"LDAP 4\"],\"6BzDub\":[\"حذف مؤقت\"],\"6GBt0m\":[\"البيانات الوصفية\"],\"6HLTEb\":[\"تصفية...\"],\"6J-cs1\":[\"ثوانٍ المهلة\"],\"6KhU4s\":[\"هل أنت متأكد من أنك تريد الخروج من منشئ سير العمل دون حفظ تغييراتك؟\"],\"6LTyxl\":[\"المراجعة\"],\"6PmtyP\":[\"تبديل وسيلة الإيضاح\"],\"6RDwJM\":[\"الرموز المميزة\"],\"6UYTy8\":[\"دقيقة\"],\"6V3Ea3\":[\"تم النسخ\"],\"6WwHL3\":[\"إجمالي العقد\"],\"6XOI1I\":[\"إنشاء مخزون موحّد جديد\"],\"6XgEPi\":[\"ساعة\"],\"6YtxFj\":[\"الاسم\"],\"6Z5ACo\":[\"مفتاح تكوين المضيف\"],\"6bpC9t\":[\"عقدة فاشلة\"],\"6cylr_\":[\"Stdout\"],\"6f961q\":[\"فقط إذا كان مفقودًا\"],\"6hEnxG\":[\"تمكين تصعيد الامتيازات\"],\"6j6_0F\":[\"مورد ذو صلة\"],\"6kpN96\":[\"فشل حذف الإشعار.\"],\"6lGV3K\":[\"عرض أقل\"],\"6msU0q\":[\"فشل حذف مهمة واحدة أو أكثر.\"],\"6nsio_\":[\"تشغيل الأمر\"],\"6oNH0E\":[\"دليل تكوين الملحق.\"],\"6pMgh_\":[\"عرض إعدادات LDAP\"],\"6rSKy6\":[\"حدد مخزونات المصدر لهذا المخزون الموحّد. عند إطلاق مهمة، سيتم توجيه المضيفين إلى مجموعة مثيلات كل مخزون مصدر تلقائيًا.\"],\"6uvnKV\":[\"مفتاح خدمة/تكامل API\"],\"6vrz8I\":[\"فشل إلغاء مهمة واحدة أو أكثر.\"],\"6zGHNM\":[\"المضيفون المتبقون\"],\"74MNbw\":[\"Ctrl IQ, Inc.\"],\"764xeZ\":[\"فشل تحديث الاستبيان.\"],\"7Bj3x9\":[\"فشل\"],\"7ElOdS\":[\"معرّف لوحة المعلومات\"],\"7IUE9q\":[\"متغيرات المصدر\"],\"7JF9w9\":[\"إضافة سؤال\"],\"7L01XJ\":[\"الإجراءات\"],\"7O5TcN\":[\"ملخص الحدث غير متاح\"],\"7PzzBU\":[\"User\"],\"7UZtKb\":[\"المؤسسة التي تملك قالب مهمة سير العمل هذا.\"],\"7VETeB\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"],\"7VpPHA\":[\"تأكيد\"],\"7Xk3M1\":[\"حدد المشروع الذي يحتوي على playbook الذي تريد أن تنفذه هذه المهمة.\"],\"7ZhNzL\":[\"الانتقال إلى الصفحة الأولى\"],\"7b8TOD\":[\"التفاصيل.\"],\"7bDeKc\":[\"بيان الاشتراك\"],\"7fJwmW\":[\"قائمة العناصر المحددة.\"],\"7hS02I\":[[\"automatedInstancesCount\"],\" منذ \",[\"automatedInstancesSinceDateTime\"]],\"7icMBj\":[\"لا تتوفر بيانات مهمة\"],\"7kb4LU\":[\"تمت الموافقة\"],\"7p5kLi\":[\"لوحة المعلومات\"],\"7q256R\":[\"السماح بتجاوز الفرع\"],\"7qFdk8\":[\"تحرير بيانات الاعتماد\"],\"7sMeHQ\":[\"المفتاح\"],\"7sNhEz\":[\"اسم المستخدم\"],\"7w3QvK\":[\"نص رسالة النجاح\"],\"7wgt9A\":[\"تشغيل Playbook\"],\"7zmvk2\":[\"فشل العنصر\"],\"81eOdm\":[\"إعادة إطلاق سير العمل\"],\"82O8kJ\":[\"هذا المشروع قيد المزامنة حاليًا ولا يمكن النقر عليه حتى تكتمل عملية المزامنة\"],\"82sWFi\":[\"الإدارة\"],\"84Usx_\":[\"فشل حذف المشروع.\"],\"87a_t_\":[\"التسمية\"],\"88ip8h\":[\"الرجوع عن الكل\"],\"8BkLPF\":[\"قائمة عناوين URI المسموح بها، مفصولة بمسافات\"],\"8F8HYs\":[\"حدد اشتراك Ansible Automation Platform الخاص بك لاستخدامه.\"],\"8H3Igx\":[[\"interval\"],\" month\"],\"8Oef5v\":[\"تتضمن أمثلة عناوين URL للتحكم في مصدر GIT:\"],\"8XM8GW\":[\"فشل تعيين الأدوار بشكل صحيح\"],\"8Z236a\":[\"شعار العلامة التجارية\"],\"8ZsakT\":[\"كلمة المرور\"],\"8_wZUD\":[\"أدوار الفريق\"],\"8d57h8\":[\"عرض إعدادات النظام المتنوعة\"],\"8gCRbU\":[\"مطالبات أخرى\"],\"8gaTqG\":[\"تفاصيل النوع\"],\"8kDNpI\":[\"نتيجة العقدة الأصل مطلوبة قبل تقييم الشرط.\"],\"8l9yyw\":[\"قالب المهمة\"],\"8lEjQX\":[\"تثبيت الحزمة\"],\"8lb4Do\":[\"مسح الاشتراك\"],\"8oiwP_\":[\"تكوين الإدخال\"],\"8p_xVT\":[[\"0\",\"plural\",{\"one\":[[\"1\"]],\"other\":[[\"2\"]]}]],\"8u5g0S\":[\"حذف المخزون الذكي\"],\"8vETh9\":[\"عرض\"],\"8wxHsh\":[\"مفتاح webhook لقالب مهمة سير العمل هذا.\"],\"8yd882\":[\"فشل إلغاء ربط فريق واحد أو أكثر.\"],\"8zGO4o\":[\"الحقل يطابق التعبير النمطي المحدد.\"],\"8zoIOi\":[[\"0\",\"plural\",{\"one\":[\"نوع بيانات الاعتماد هذا قيد الاستخدام حاليًا من قبل بعض بيانات الاعتماد ولا يمكن حذفه.\"],\"other\":[\"لا يمكن حذف أنواع بيانات الاعتماد التي تستخدمها بيانات الاعتماد. هل أنت متأكد من أنك تريد الحذف على أي حال؟\"]}]],\"8zvzWO\":[\"السماح بعمليات تشغيل متزامنة لقالب مهمة سير العمل هذا.\"],\"9-wVFp\":[\"عرض تفاصيل المخزون الموحّد\"],\"91UHfE\":[\"تحديث المخزون\"],\"91lyAf\":[\"المهام المتزامنة\"],\"933cZy\":[\"إعدادات النظام المتنوعة\"],\"954HqS\":[\"متى تمت أتمتة المضيف لأول مرة\"],\"95p1BK\":[\"إنشاء مستخدم جديد\"],\"98Qtlu\":[\"في كل مرة يتم فيها تشغيل مهمة باستخدام هذا المشروع، قم بتحديث مراجعة المشروع قبل بدء المهمة.\"],\"991Df5\":[\"a new webhook key will be generated on save.\"],\"99qC6z\":[[\"interval\"],\" week\"],\"9Ah95g\":[[\"0\",\"plural\",{\"one\":[\"يُستخدم هذا المخزون حاليًا من قبل بعض القوالب. هل أنت متأكد من أنك تريد حذفه؟\"],\"other\":[\"قد يؤثر حذف هذه المخزونات على بعض القوالب التي تعتمد عليها. هل أنت متأكد من أنك تريد الحذف على أي حال؟\"]}]],\"9BTNYL\":[\"Expected at least one of client_email, project_id or private_key to be present in the file.\"],\"9BpfLa\":[\"حدد التسميات\"],\"9DOXq6\":[\"عرض جميع القوالب.\"],\"9DugxF\":[\"نوع الاشتراك\"],\"9HhFQ8\":[\"يُرجع النتائج التي لها قيم مختلفة عن هذه بالإضافة إلى الفلاتر الأخرى.\"],\"9L1ngr\":[\"إجمالي المهام\"],\"9N-4tQ\":[\"نوع بيانات الاعتماد\"],\"9NyAH9\":[\"تم التخطي\"],\"9PB0sF\":[\"IRC\"],\"9Rsklx\":[\"إزالة جميع العقد\"],\"9Tmez1\":[\"عرض تفاصيل المثيل\"],\"9UuGMQ\":[\"حذف معلّق\"],\"9V-Un3\":[\"تمكين تخزين الحقائق\"],\"9VMv7k\":[\"المخزون المُنشأ\"],\"9Wm-J4\":[\"تبديل كلمة المرور\"],\"9XA1Rs\":[\"المشروع قيد المزامنة حاليًا وستتوفر المراجعة بعد اكتمال المزامنة.\"],\"9Y3BQE\":[\"حذف المؤسسة\"],\"9YSB0Z\":[\"هذا الجدول يفتقد مخزونًا\"],\"9ZnrIx\":[\"عرض وتحرير معلومات اشتراكك\"],\"9fRa7M\":[\"حدد صفًا للإزالة\"],\"9hmrEp\":[\"إعادة الإطلاق عند\"],\"9iX1S0\":[\"سيؤدي هذا الإجراء إلى إزالة المثيل التالي وقد تحتاج إلى إعادة تشغيل حزمة التثبيت لأي مثيل كان متصلاً سابقًا بـ:\"],\"9jfn-S\":[\"غير موسّع\"],\"9l0RZY\":[\"انقر على عقدة متاحة لإنشاء رابط جديد. انقر خارج الرسم البياني للإلغاء.\"],\"9m7jms\":[\"مخزونات المصدر التي سيتم توجيه مضيفيها إلى مجموعات المثيلات الخاصة بها عند إطلاق مهمة على هذا المخزون الموحّد.\"],\"9mfJJf\":[\"قوالب المهام\"],\"9nhhVW\":[\"الصفحات\"],\"9nypdt\":[\"استعادة القيمة الأولية.\"],\"9odS2n\":[\"المضيفون الفاشلون\"],\"9og-0c\":[\"بيئة التنفيذ هذه قيد الاستخدام حاليًا من قبل موارد أخرى. هل أنت متأكد من أنك تريد حذفها؟\"],\"9rFgm2\":[\"سعة الاشتراك\"],\"9rvzNA\":[\"نافذة الربط\"],\"9td1Wl\":[\"فحص\"],\"9uI_rE\":[\"تراجع\"],\"9u_dDE\":[\"عدد المضيفين غير القابلين للوصول\"],\"9uxVdR\":[\"بيانات اعتماد التحكم بالمصدر\"],\"9wvWk3\":[\"يُنشئ إدخال المخزون المُنشأ هذا \\n مجموعة لكلتا الفئتين ويستخدم \\n الحد (نمط المضيف) لإرجاع المضيفين الموجودين فقط \\n في تقاطع هاتين المجموعتين.\"],\"A1a8Ku\":[\"خطأ في إطلاق مهمة الإدارة\"],\"A1taO8\":[\"بحث\"],\"A3o0Xd\":[\"مجموعات المثيلات التي ستعمل عليها هذه المؤسسة.\"],\"A6paZd\":[\"إضافة مخزون موحّد\"],\"A8lIi2\":[\"مزامنة للحصول على مراجعة\"],\"A9-PUr\":[\"تم إرسال طلب (طلبات) فحص الصحة. يرجى الانتظار وإعادة تحميل الصفحة.\"],\"AA2ASV\":[\"تم نسخ بيئة التنفيذ بنجاح\"],\"ADVQ46\":[\"تسجيل الدخول\"],\"ARAUFe\":[\"حذف المخزون\"],\"AV22aU\":[\"حدث خطأ ما...\"],\"AWOSPo\":[\"تكبير\"],\"Ab1y_G\":[\"إلغاء مزامنة مصدر المخزون المُنشأ\"],\"AgTBbk\":[[\"intervalValue\",\"plural\",{\"one\":[\"أسبوع\"],\"other\":[\"أسابيع\"]}]],\"AgTuXC\":[\"ليس لديك إذن لحذف \",[\"pluralizedItemName\"],\": \",[\"itemsUnableToDelete\"]],\"Ai2U7L\":[\"المضيف\"],\"Aj3on1\":[\"تمكين التسجيل الخارجي\"],\"AoCBvp\":[\"شريحة المهمة\"],\"Apl-Vf\":[\"بيان اشتراك Red Hat\"],\"Apv-R1\":[\"إذا كنت مستعدًا للترقية أو التجديد، يرجى <0>الاتصال بنا.\"],\"AqdlyH\":[\"لا يمكن تحديد قوالب المهام ذات بيانات الاعتماد التي تطالب بكلمات مرور عند إنشاء العقد أو تحريرها\"],\"ArtxnQ\":[\"Refspec التحكم بالمصدر\"],\"AsLVdj\":[\"استخدم قناة IRC واحدة أو اسم مستخدم واحد لكل سطر. رمز\\n الجنيه (#) للقنوات، ورمز At (@) للمستخدمين، غير\\n مطلوبين.\"],\"AwUsnG\":[\"المثيلات\"],\"AxC8wb\":[\"نسخ المخرجات\"],\"AxPAXW\":[\"لم يتم العثور على نتائج\"],\"Axi4f8\":[\"Dragging item \",[\"id\"],\". Item with index \",[\"oldIndex\"],\" in now \",[\"newIndex\"],\".\"],\"Azw0EZ\":[\"إنشاء مخزون ذكي جديد\"],\"B0HFJ8\":[\"فشل إلغاء ربط مضيف واحد أو أكثر.\"],\"B0P3qo\":[\"معرّف المهمة:\"],\"B0dbFG\":[\"حذف الجدول\"],\"B2Zb_F\":[\"JSON\"],\"B3ZzHO\":[\"آخر أتمتة\"],\"B4WcU9\":[\"تمت الموافقة بواسطة \",[\"0\"],\" - \",[\"1\"]],\"B7FU4J\":[\"بدأ المضيف\"],\"B8bpYS\":[\"قم بتحميل بيان اشتراك Red Hat الذي يحتوي على اشتراكك. لإنشاء بيان اشتراكك، انتقل إلى <0>تخصيصات الاشتراك على بوابة عملاء Red Hat.\"],\"BAmn8K\":[\"حدد نوع مورد\"],\"BERhj_\":[\"رسالة النجاح\"],\"BGNDgh\":[\"الاسم المستعار للعقدة\"],\"BH7upP\":[\"POST\"],\"BIJ2_m\":[\"بيئة التنفيذ التي ستُستخدم للمهام داخل هذه المؤسسة. ستُستخدم كخيار احتياطي عندما لا تكون بيئة التنفيذ قد عُيّنت صراحةً على مستوى المشروع أو قالب المهمة أو سير العمل.\"],\"BNDplB\":[\"تم نسخ القالب بنجاح\"],\"BWTzAb\":[\"يدوي\"],\"BaPk6N\":[\"المسار الأساسي المستخدم لتحديد موقع Playbooks. سيتم إدراج الأدلة الموجودة داخل هذا المسار في القائمة المنسدلة لدليل Playbook. يوفر المسار الأساسي ودليل Playbook المحدد معًا المسار الكامل المستخدم لتحديد موقع Playbooks.\"],\"BfYq0G\":[\"نوع التحكم بالمصدر\"],\"Bg7M6U\":[\"لم يتم العثور على نتيجة\"],\"Bl2Djq\":[\"عرض الرموز المميزة\"],\"Bl2eoO\":[\"مشفّر\"],\"BskWMl\":[\"غير قابل للوصول\"],\"BsrdSv\":[\"أدخل متغيرات المخزون باستخدام صيغة JSON أو YAML. استخدم زر الاختيار للتبديل بينهما. راجع توثيق Ansible Controller للحصول على مثال على الصيغة.\"],\"Bv8zdm\":[\"مخزونات الإدخال\"],\"BwJKBw\":[\"من\"],\"Bz7WRU\":[[\"0\",\"plural\",{\"one\":[\"يرجى إدخال رقم هاتف صالح.\"],\"other\":[\"يرجى إدخال أرقام هاتف صالحة.\"]}]],\"BzEFor\":[\"أو\"],\"BzbzJb\":[\"الحقائق\"],\"BzfzPK\":[\"العناصر\"],\"C-gr_n\":[\"إعدادات Azure AD\"],\"C0sUgI\":[\"إنشاء مخزون جديد\"],\"C2KEkR\":[\"كلمة مرور SSH\"],\"C3Q1LZ\":[\"عرض إعدادات OIDC\"],\"C4C-qQ\":[\"تفاصيل الجدول\"],\"C6GAUT\":[\"موسّع\"],\"C7dP40\":[\"فشل رفض \",[\"0\"],\".\"],\"C7s60U\":[\"تفاصيل Webhook\"],\"CAL6E9\":[\"الفرق\"],\"CDOlBM\":[\"معرّف المثيل\"],\"CE-M2e\":[\"معلومات\"],\"CGOseh\":[\"تفاصيل الجدول\"],\"CGZgZY\":[\"حدد صفًا لإلغاء الربط\"],\"CG_9l6\":[\"LDAP 1\"],\"CGwKKr\":[[\"0\",\"plural\",{\"one\":[\"حذف المجموعة؟\"],\"other\":[\"حذف المجموعات؟\"]}]],\"CIEoqM\":[\"اسم المثيل\"],\"CKc7jz\":[\"نافذة تفاصيل المضيف\"],\"CL7QiF\":[\"اكتب الإجابة ثم انقر على مربع الاختيار على اليمين لتحديد الإجابة\\nكافتراضية.\"],\"CLTHnk\":[\"ترتيب أسئلة الاستبيان\"],\"CMmwQ-\":[\"تاريخ بدء غير معروف\"],\"CNZ5h9\":[\"فترة الاحتفاظ بالبيانات\"],\"CS8u6E\":[\"تمكين Webhook\"],\"CSvk3a\":[\"الرقم المرتبط بـ \\\"خدمة\\n المراسلة\\\" في Twilio بالتنسيق +18005550199.\"],\"CW11B-\":[\"الحد الأدنى\"],\"CXJHPJ\":[\"تم التعديل بواسطة (اسم المستخدم)\"],\"CZDqWd\":[\"مراجعة المشروع قديمة حاليًا. يرجى التحديث لجلب أحدث مراجعة.\"],\"CZg9aH\":[\"حدد المضيفين\"],\"C_Lu89\":[\"أدخل المدخلات باستخدام صيغة JSON أو YAML. راجع توثيق Ansible Controller للحصول على مثال على الصيغة.\"],\"C_NnqT\":[\"إنشاء مضيف جديد\"],\"Cc8jO8\":[\"حدد بيانات الاعتماد التي تريد استخدامها عند الوصول إلى المضيفين البعيدين لتشغيل الأمر. اختر بيانات الاعتماد التي تحتوي على اسم المستخدم ومفتاح SSH أو كلمة المرور التي سيحتاجها Ansible لتسجيل الدخول إلى المضيفين البعيدين.\"],\"CcKMRv\":[\"قالب المهمة هذا قيد الاستخدام حاليًا من قبل موارد أخرى. هل أنت متأكد من أنك تريد حذفه؟\"],\"CczdmZ\":[\"عرض جميع بيانات الاعتماد.\"],\"CdGRti\":[\"عرض جميع قوالب الإشعارات.\"],\"Ce28nP\":[\"<0>ملاحظة: قد تتم إعادة ربط المثيلات بمجموعة المثيلات هذه إذا كانت مُدارة بواسطة <1>قواعد السياسة.\"],\"Cev3QF\":[\"دقائق المهلة\"],\"ChTa9Z\":[[\"intervalValue\",\"plural\",{\"one\":[\"ساعة\"],\"other\":[\"ساعات\"]}]],\"CoPs3y\":[\"لا يحتوي سير العمل هذا على أي عقد مُكوّنة.\"],\"CoTqdo\":[\"\\n Note that you may still see the group in the list after\\n disassociating if the host is also a member of that group’s\\n children. This list shows all groups the host is associated\\n with directly and indirectly.\\n \"],\"Coyxic\":[\"انقر على هذا الزر للتحقق من الاتصال بنظام إدارة الأسرار باستخدام بيانات الاعتماد المحددة والمدخلات المُحددة.\"],\"Cs0oSA\":[\"عرض الإعدادات\"],\"Csvbqs\":[\"اعرض وثائق ملحق المخزون المُنشأ هنا.\"],\"Cx8SDk\":[\"انتهاء صلاحية رمز التحديث\"],\"D-NlUC\":[\"النظام\"],\"D1JWCq\":[[\"interval\"],\" minutes\"],\"D4euEu\":[\"إعدادات المصادقة المتنوعة\"],\"D89zck\":[\"الأحد\"],\"DBBU2q\":[\"يجب تحديد قيمة واحدة على الأقل لهذا الحقل.\"],\"DBC3t5\":[\"الأحد\"],\"DBHTm_\":[\"أغسطس\"],\"DFNPK8\":[\"تشغيل فحص الصحة\"],\"DGZ08x\":[\"مزامنة الكل\"],\"DHf0mx\":[\"إنشاء مثيل جديد\"],\"DHrOgD\":[\"حالة تحديث المشروع\"],\"DIKUI7\":[\"الحد الأدنى للطول\"],\"DIX823\":[\"يجب أن يكون هذا الحقل رقمًا وأن تكون قيمته أقل من \",[\"max\"]],\"DJIazz\":[\"تمت الموافقة بنجاح\"],\"DNLiC8\":[\"الرجوع عن الإعدادات\"],\"DNqHaO\":[\"يعطي هذا الجدول بعض المعلمات المفيدة لملحق المخزون\\n المُنشأ. للحصول على القائمة الكاملة للمعلمات \"],\"DPfwMq\":[\"تم\"],\"DV-Xbw\":[\"اللغة المفضّلة\"],\"DVIUId\":[\"تجاوزات المطالبة\"],\"DZNGtI\":[\"نتائج سحب المشروع\"],\"D_oBkC\":[\"GitHub Team\"],\"DdlJTq\":[\"تطابق تام (البحث الافتراضي إذا لم يُحدد).\"],\"De2WsK\":[\"سيؤدي هذا الإجراء إلى إلغاء ربط جميع الأدوار لهذا المستخدم من الفرق المحددة.\"],\"DhSza7\":[\"عقدة Controller\"],\"DnkUe2\":[\"اختر خدمة Webhook\"],\"DqnAO4\":[\"أول أتمتة\"],\"Du6bPw\":[\"العنوان\"],\"Dug0C-\":[\"بعد عدد من مرات التكرار\"],\"DyYigF\":[\"إعدادات TACACS+\"],\"Dz7fsq\":[\"تكبير\"],\"E6Z4zF\":[\"تنسيق ملف غير صالح. يرجى تحميل بيان اشتراك Red Hat صالح.\"],\"E86aJB\":[\"إلغاء ربط الدور!\"],\"E9wN_Q\":[\"آخر فحص صحة\"],\"EH6-2h\":[\"عرض الطوبولوجيا\"],\"EHu0x2\":[\"جارٍ المزامنة\"],\"EIBcgD\":[\"مصدره مشروع\"],\"EIkRy0\":[\"قنوات الوجهة\"],\"EJQLCT\":[\"فشل حذف قالب مهمة سير العمل.\"],\"ENDbv1\":[\"عرض جميع المضيفين.\"],\"ENRWp9\":[\"وسوم التعليق\"],\"ENyw54\":[\"المجموعات ذات الصلة\"],\"EP-eCv\":[\"إعدادات SAML\"],\"EQ-qsg\":[\"قوالب مهام سير العمل\"],\"ES0WE_\":[\"عند انتهاء المهلة\"],\"ETUQuF\":[\"فشل حذف مخزون واحد أو أكثر.\"],\"EWL-h4\":[\"host-description-\",[\"0\"]],\"E_QGRL\":[\"مُعطّل\"],\"E_tJey\":[\"بيئة التنفيذ الافتراضية\"],\"Eb5CN1\":[[\"0\",\"plural\",{\"one\":[\"هذه المؤسسة قيد الاستخدام حاليًا من قبل موارد أخرى. هل أنت متأكد من أنك تريد حذفها؟\"],\"other\":[\"قد يؤثر حذف هذه المؤسسات على موارد أخرى تعتمد عليها. هل أنت متأكد من أنك تريد الحذف على أي حال؟\"]}]],\"EdQY6l\":[\"لا شيء\"],\"Eff_76\":[\"المنطقة الزمنية المحلية\"],\"Eg4kGP\":[\"الإجابة (الإجابات) الافتراضية\"],\"EmSrGB\":[\"قبل\"],\"EmfKjn\":[\"عرض إعدادات استكشاف الأخطاء وإصلاحها\"],\"Emna_v\":[\"تحرير المصدر\"],\"EmzUsN\":[\"عرض تفاصيل العقدة\"],\"EnC3hS\":[\"مواصفات pod مخصصة\"],\"EpH7Cd\":[\"حذف بيانات الاعتماد\"],\"Eq6_y5\":[\"this Tower documentation page\"],\"Eqp9wv\":[\"عرض أمثلة JSON في\"],\"EwxKbE\":[\"محذوف\"],\"EzwCw7\":[\"تحرير السؤال\"],\"F-0xxR\":[\"الموارد مفقودة من هذا القالب.\"],\"F-LGli\":[\"ليس لديك إذن لإلغاء ربط ما يلي: \",[\"itemsUnableToDisassociate\"]],\"F-_-es\":[\"حدد المثيلات\"],\"F0xJYs\":[\"فشل تحديث تعديل السعة.\"],\"F2l57P\":[\"الحد الأدنى لنسبة جميع المثيلات التي سيتم تعيينها\\n تلقائيًا لهذه المجموعة عند اتصال مثيلات جديدة.\"],\"FCnKmF\":[\"إنشاء رمز مستخدم مميز\"],\"FD8Y9V\":[\"انقر على أيقونة عقدة لعرض التفاصيل.\"],\"FEr96N\":[\"السمة\"],\"FFv0Vh\":[\"الأتمتة\"],\"FG2mko\":[\"حدد العناصر من القائمة\"],\"FGnH0p\":[\"سيؤدي هذا إلى إلغاء جميع العقد اللاحقة في سير العمل هذا\"],\"FMpB-A\":[\"<0>ملاحظة: قد يتم إلغاء ربط المثيلات المرتبطة يدويًا تلقائيًا من مجموعة المثيلات إذا كان المثيل مُدارًا بواسطة <1>قواعد السياسة.\"],\"FO7Rwo\":[\"إزالة الأقران؟\"],\"FQto51\":[\"توسيع جميع الصفوف\"],\"FTuS3P\":[\"قد لا يكون هذا الحقل فارغًا\"],\"FV5MUV\":[\"إذا كان المستخدمون بحاجة إلى ملاحظات حول صحة\\n مجموعاتهم المُنشأة، يُوصى بشدة\\n باستخدام strict: true في تكوين الملحق.\"],\"FXmp8Q\":[\"فشل ربط الدور\"],\"FYJRCY\":[\"فشل حذف مشروع واحد أو أكثر.\"],\"F_Nk65\":[\"تنزيل المخرجات\"],\"F_c3Jb\":[\"مواصفات Pod مخصصة لـ Kubernetes أو OpenShift.\"],\"Failed\":[\"فشل\"],\"Fanpmj\":[\"المتغيرات المطلوبة\"],\"FblMFO\":[\"حدد مقياسًا\"],\"FclH3w\":[\"تم الحفظ بنجاح!\"],\"FfGhiE\":[\"خطأ في حفظ سير العمل!\"],\"FhTYgi\":[\"فشل حذف قالب مهمة واحد أو أكثر.\"],\"FhhvWu\":[\"سيؤدي هذا إلى إلغاء جميع العقد اللاحقة في سير العمل هذا.\"],\"FiyMaa\":[\"اختر ملف .json\"],\"FjVFQ-\":[\"اختر وحدة\"],\"FjkaiT\":[\"تصغير\"],\"FkQvI0\":[\"تحرير القالب\"],\"FlvpdU\":[\"If enabled, show the changes made\\n by Ansible tasks, where supported. This is equivalent to Ansible’s\\n --diff mode.\"],\"FnSb-y\":[\"إلغاء المهمة\"],\"FnZzou\":[\"حالة المثيل\"],\"FncCci\":[\"RADIUS\"],\"Fo2bwm\":[\"الفاعل\"],\"Fo6qAq\":[\"تتضمن أمثلة عناوين URL للتحكم في مصدر Subversion:\"],\"Fp0Rk4\":[\"تسميات اختيارية تصف هذا المخزون،\\n مثل 'dev' أو 'test'. يمكن استخدام التسميات لتجميع وتصفية\\n المخزونات والمهام المكتملة.\"],\"FqW8E0\":[\"السعة المستخدمة\"],\"FsGJXJ\":[\"تنظيف\"],\"Fx2-x_\":[\"إضافة أدوار المستخدم\"],\"G-jHgL\":[\"تعيين مسار المصدر إلى\"],\"G2KpGE\":[\"تحرير المشروع\"],\"G3myU-\":[\"الثلاثاء\"],\"G768_0\":[\"مرفوض\"],\"G8jcl6\":[\"قوالب الإشعارات\"],\"G9MOps\":[\"الفرع المراد استخدامه عند مزامنة المخزون. يُستخدم افتراضي المشروع إذا كان فارغًا. مسموح به فقط إذا تم تعيين حقل allow_override للمشروع على true.\"],\"GDvlUT\":[\"الدور\"],\"GGWsTU\":[\"ملغى\"],\"GGuAXg\":[\"عرض إعدادات SAML\"],\"GHDQ7i\":[\"فشل حذف مؤسسة واحدة أو أكثر.\"],\"GJKwN0\":[\"الجداول\"],\"GLZDtF\":[\"تحذير النظام\"],\"GLwo_j\":[\"0 (تحذير)\"],\"GMaU6_\":[\"المطالبة بنوع المهمة عند الإطلاق.\"],\"GO6s6F\":[\"إعدادات المهام\"],\"GRwtth\":[\"تشغيل فحص صحة على المثيل\"],\"GSYBQc\":[\"مفتاح خدمة/تكامل API\"],\"GTOcxw\":[\"تحرير المستخدم\"],\"GU9vaV\":[\"المضيفون غير القابلين للوصول\"],\"GXiLKo\":[\"منطقة نص\"],\"GZIG7_\":[\"تم نسخ المخزون بنجاح\"],\"G_Dwo_\":[\"Choose an answer type or format you want as the prompt for the user.\\n Refer to the Ansible Controller Documentation for more additional\\n information about each option.\"],\"GaJLE6\":[\"بدأ بواسطة\"],\"Gd-B71\":[\"لم يتم العثور على نوع بيانات الاعتماد.\"],\"Ge5ecx\":[\"الحد الأقصى للمضيفين\"],\"GeIrWJ\":[\"شعار \",[\"brandName\"]],\"Gf3vm8\":[\"لكل صفحة\"],\"GiXRTS\":[\"فشل حذف رمز مستخدم مميز واحد أو أكثر.\"],\"Gix1h_\":[\"عرض جميع المهام\"],\"GkbHM9\":[\"عرض جميع المشاريع.\"],\"Gn7TK5\":[\"تبديل الأدوات\"],\"GpNoVG\":[\"يرجى إضافة جدول لملء هذه القائمة.\"],\"GpWp6E\":[\"تحديد الميزات والوظائف على مستوى النظام\"],\"GtycJ_\":[\"المهام\"],\"H0z3JJ\":[\"تُستخدم هذه الوسيطات مع الوحدة المحددة. يمكنك العثور على معلومات حول \",[\"moduleName\"],\" بالنقر فوق \"],\"H1M6a6\":[\"عرض جميع المثيلات.\"],\"H3kCln\":[\"اسم المضيف\"],\"H6jbKn\":[\"إعدادات واجهة المستخدم\"],\"H7OUPr\":[\"يوم\"],\"H7e4dl\":[\"قدّم أزواج المفتاح/القيمة باستخدام\\n YAML أو JSON.\"],\"H86f9p\":[\"طي\"],\"H9MIed\":[\"عقدة التنفيذ\"],\"HAi1aX\":[\"تحديث مفتاح webhook\"],\"HAzhV7\":[\"بيانات الاعتماد\"],\"HDULRt\":[\"المضيفون الفريدون\"],\"HGOtRu\":[\"فشل اختبار الإشعار.\"],\"HIfMSF\":[\"خيارات الاختيار المتعدد\"],\"HLAK2g\":[\"This action will cancel the following jobs:\"],\"HODq3s\":[\"فشل رفض موافقة سير عمل واحدة أو أكثر.\"],\"HQ7e8y\":[\"نسخة غير حساسة لحالة الأحرف من exact.\"],\"HQ7oEt\":[\"العودة إلى الفرق\"],\"HUx6pW\":[\"تكوين الحاقن\"],\"HajiZl\":[\"شهر\"],\"HbaQks\":[\"استخدم عنوان بريد إلكتروني واحد لكل سطر لإنشاء قائمة مستلمين لهذا النوع من الإشعارات.\"],\"HbnjOn\":[[\"interval\"],\" weeks\"],\"HcznyH\":[\"فشل مزامنة بعض أو جميع مصادر المخزون.\"],\"HdE1If\":[\"القناة\"],\"HdErwL\":[\"حدد صفًا للموافقة\"],\"Hf0QDK\":[\"تم نسخ المشروع بنجاح\"],\"Hhnh8d\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" يوم\"],\"other\":[\"#\",\" أيام\"]}]],\"HiTf1W\":[\"إلغاء الرجوع\"],\"HjxnnB\":[\"حدد وحدة\"],\"HlhZ5D\":[\"استخدام TLS\"],\"HoHveO\":[\"يُرجع النتائج التي تحقق هذا الفلتر بالإضافة إلى الفلاتر الأخرى. هذا هو نوع المجموعة الافتراضي إذا لم يتم تحديد أي شيء.\"],\"HpK_8d\":[\"إعادة تحميل\"],\"Ht1JWm\":[\"لون الإشعار\"],\"HwpTx4\":[\"تحكم في مستوى الإخراج الذي سينتجه ansible أثناء تنفيذ Playbook.\"],\"I0LRRn\":[\"تنزيل الحزمة\"],\"I7Epp-\":[\"تفاصيل الخيار\"],\"I9NouQ\":[\"لم يتم العثور على اشتراكات\"],\"ICi4pv\":[\"آخر أتمتة\"],\"ICt7Id\":[\"نوع العقدة\"],\"IEKPuq\":[\"التمرير للتالي\"],\"IGQ11b\":[\"السر المشترك مع خدمة Webhook. تستخدمه الخدمة لتوقيع طلباتها، بحيث يتمكن مستودعك فقط من تشغيل مزامنة المشروع. اكتب السر الخاص بك لإدارته كتكوين، أو اترك الحقل فارغًا ليتم إنشاء واحد عند الحفظ.\"],\"IJAVcb\":[\"العودة إلى التطبيقات\"],\"IKg_un\":[\"قنوات أو مستخدمو الوجهة\"],\"IMJYui\":[\"استخدم رقم هاتف واحد لكل سطر لتحديد مكان\\n توجيه رسائل SMS. يجب تنسيق أرقام الهواتف +11231231234. لمزيد من المعلومات انظر توثيق Twilio\"],\"IN6gbp\":[\"انقر لإعادة ترتيب أسئلة الاستبيان\"],\"IPusY8\":[\"قم بإزالة أي تعديلات محلية قبل إجراء تحديث.\"],\"ISuwrJ\":[\"تحرير بيئة التنفيذ\"],\"IV0EjT\":[\"إشعار الاختبار\"],\"IVvM2B\":[\"الخيارات المُفعّلة\"],\"IWoF_f\":[\"عرض الاستبيان\"],\"IZfe0p\":[\"فرع التحكم بالمصدر\"],\"Igz8MU\":[\"الأسبوعان الماضيان\"],\"IiR1sT\":[\"نوع العقدة\"],\"IjDwKK\":[\"نوع تسجيل الدخول\"],\"Ikhk0q\":[\"خدمة webhook لقالب مهمة سير العمل هذا.\"],\"Iqm2E5\":[\"يرجى إضافة \",[\"pluralizedItemName\"],\" لملء هذه القائمة\"],\"IrC12v\":[\"التطبيق\"],\"IrI9pg\":[\"تاريخ الانتهاء\"],\"IsJ8i6\":[\"حدد فرعًا لسير العمل. يتم تطبيق هذا الفرع على جميع عُقد قالب المهمة التي تطالب بفرع.\"],\"IspLSK\":[\"لم يتم العثور على مهمة الإدارة.\"],\"J0zi6q\":[\"تخطي الوسوم\"],\"J2HgCR\":[\"Red Hat, Inc.\"],\"J2d1y8\":[\"التصفية حسب المهام الناجحة\"],\"J4y7Uk\":[\"تم إلغاء سير العمل \"],\"J8VgfD\":[\"التحقق مما إذا كان الحقل المحدد أو الكائن ذو الصلة فارغًا (null)؛ يتوقع قيمة boolean.\"],\"JEGlfK\":[\"بدأت\"],\"JFnJqF\":[\"منقضٍ\"],\"JFphCp\":[\"3 (تصحيح)\"],\"JGvwnU\":[\"آخر استخدام\"],\"JIX50w\":[\"منع الرجوع إلى مجموعة المثيلات: إذا تم التمكين، فسيمنع قالب المهمة إضافة أي مجموعات مثيلات مخزون أو مؤسسة إلى قائمة مجموعات المثيلات المفضلة للتشغيل عليها.\"],\"JJwEMx\":[\"تم حذف المضيفين\"],\"JKZTiL\":[\"هذه هي مستويات التفصيل المدعومة للمخرجات القياسية لتشغيل الأمر.\"],\"JL3si7\":[\"جارٍ التحديث\"],\"JLjfEs\":[\"فشل حذف جدول واحد أو أكثر.\"],\"JOmgRg\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" شهر\"],\"other\":[\"#\",\" أشهر\"]}]],\"JRa4kV\":[\"قم بمزامنة المشروع عند حدوث دفع في مستودع التحكم في المصدر، بحيث تكون النسخة المحلية محدثة دائمًا دون استقصاء أو تحديث عند كل تشغيل للمهمة.\"],\"JTHoCu\":[\"تبديل التغييرات\"],\"JUwjsw\":[\"Select an activity type\"],\"JXgd33\":[\"العودة إلى لوحة المعلومات.\"],\"J_2nGO\":[\"The execution environment that will be used for jobs\\n inside of this organization. This will be used a fallback when\\n an execution environment has not been explicitly assigned at the\\n project, job template or workflow level.\"],\"J_DUZt\":[\"مجموعات المثيلات\"],\"Ja4VHl\":[[\"0\"],\" أخرى\"],\"JgP090\":[\"تتبع الوحدات الفرعية\"],\"JjcTk5\":[\"تسجيل الدخول الاجتماعي\"],\"JjfsZM\":[\"حذف موافقة سير العمل\"],\"JppQoT\":[\"تاريخ آخر إعادة حساب:\"],\"JsY1p5\":[\"مرفوض\"],\"Jvv6rS\":[\"اختيار متعدد\"],\"JwqOfG\":[\"التقييم عند\"],\"Jy9qCv\":[\"إلغاء تحرير إعادة توجيه تسجيل الدخول\"],\"K5AykR\":[\"حذف الفريق\"],\"K93j4j\":[\"اسم التسمية\"],\"KC2nS5\":[\"تم حذف المورد\"],\"KDcLJ6\":[\"YAML:\"],\"KEY0qH\":[\"نجح الاختبار\"],\"KM6m8p\":[\"Team\"],\"KNOsJ0\":[\"تسميات اختيارية تصف قالب المهمة هذا، مثل 'dev' أو 'test'. يمكن استخدام التسميات لتجميع وتصفية قوالب المهام والمهام المكتملة.\"],\"KQ9EQm\":[\"كيفية استخدام ملحق المخزون المُنشأ\"],\"KR9Aiy\":[\"This inventory is currently being used by some templates. Are you sure you want to delete it?\"],\"KRf0wm\":[\"أنواع بيانات الاعتماد\"],\"KTvwHj\":[\"مصادر إدخال بيانات الاعتماد\"],\"KVbzjm\":[\"أداة التصور\"],\"KXFYp9\":[\"الحصول على الاشتراك\"],\"KXnokb\":[\"لا يمكن إعادة تعيين بيئة تنفيذ متاحة عالميًا إلى مؤسسة محددة\"],\"KZp4lW\":[\"Lookup select\"],\"K_MYeX\":[\"عرض تفاصيل المستخدم\"],\"KeRkFA\":[\"مسح تحديد الاشتراك\"],\"KeqCdz\":[\"الأقران من عقد التحكم\"],\"Ki_j_-\":[\"اتركه فارغًا لإنشاء مفتاح webhook جديد عند الحفظ\"],\"KjBkMe\":[\"مجموعة الحاويات هذه قيد الاستخدام حاليًا من قبل موارد أخرى. هل أنت متأكد من أنك تريد حذفها؟\"],\"KjVvNP\":[\"معرّف اللوحة\"],\"KkMfgW\":[\"قوالب المهام\"],\"KkzJWF\":[\"أول أتمتة\"],\"KlQd8_\":[\"نطاق وصول الرمز المميز\"],\"KnN1Tu\":[\"ينتهي\"],\"KoCnPE\":[\"إلغاء المهمة\"],\"KopV8H\":[\"عرض المجموعات الجذرية فقط\"],\"KxIA0h\":[\"تبديل المضيف\"],\"Kz9DSl\":[\"إضافة مضيف موجود\"],\"KzQFvE\":[\"تحرير المؤسسة\"],\"L1Ob4t\":[\"علامة تبويب التفاصيل\"],\"L3ooU6\":[\"بيانات الاعتماد\"],\"L7Nz3F\":[\"مورد مفقود\"],\"L8fEEm\":[\"المجموعة\"],\"L973Qq\":[\"طلب اشتراك\"],\"LCl8Ck\":[\"إدخال بحث التاريخ\"],\"LGl_pR\":[\"عرض إعدادات المهام\"],\"LGryaQ\":[\"إنشاء بيانات اعتماد جديدة\"],\"LQ29yc\":[\"بدء مزامنة مصدر المخزون\"],\"LQRys9\":[\"ستتعقب الوحدات الفرعية أحدث التزام على فرع master الخاص بها (أو فرع آخر محدد في .gitmodules). إذا لا، فسيتم الاحتفاظ بالوحدات الفرعية عند المراجعة المحددة بواسطة المشروع الرئيسي. هذا يعادل تحديد العلامة --remote لـ git submodule update.\"],\"LQTgjH\":[\"لم يتم العثور على المشروع.\"],\"LRePxk\":[\"الحد الأدنى لعدد المثيلات التي سيتم تعيينها تلقائيًا لهذه المجموعة عند اتصال مثيلات جديدة.\"],\"LSUePQ\":[\"إطلاق | \",[\"0\"]],\"LULLsO\":[\"عرض جميع المؤسسات.\"],\"LV5a9V\":[\"الأقران\"],\"LVecP9\":[\"أدوار المستخدم\"],\"LYAQ1X\":[\"تمكين المهام المتزامنة\"],\"LZr1lR\":[\"لم يتم العثور على مجموعة المثيلات.\"],\"Lc0RHh\":[\"تبديل الجدول\"],\"LgD0Cy\":[\"اسم التطبيق\"],\"LhMjLm\":[\"الوقت\"],\"Ll7Jei\":[\"LDAP3\"],\"LnYbGj\":[\"تحرير الاستبيان\"],\"Lnnjmk\":[\"<0><1/> يمكن العثور على معاينة تقنية لواجهة مستخدم \",[\"brandName\"],\" الجديدة <2>هنا.\"],\"Lqygiq\":[\"استدعاءات التوفير\"],\"LtBtED\":[\"تبديل نجاح الإشعار\"],\"LuXP9q\":[\"الوصول\"],\"LwHwt1\":[\"اشتراك \",[\"brandName\"]],\"Lwovp8\":[\"إذا تم التمكين، فسيُسمح بالتشغيل المتزامن لقالب المهمة هذا.\"],\"M0okDw\":[\"تعيين التفضيلات لجمع البيانات والشعارات وتسجيلات الدخول\"],\"M73whl\":[\"السياق\"],\"MA-mp9\":[\"مرشح Ref لـ Webhook\"],\"MA7cMf\":[\"جدول معلمات المخزون المُنشأ\"],\"MAI_nw\":[\"يرجى تجربة بحث آخر باستخدام المرشح أعلاه\"],\"MAV-SQ\":[\"لم يتم العثور على بيانات الاعتماد.\"],\"MApRef\":[\"هل أنت متأكد من أنك تريد تحرير عنوان URL لتجاوز إعادة توجيه تسجيل الدخول؟ قد يؤثر ذلك على قدرة المستخدمين على تسجيل الدخول إلى النظام بمجرد تعطيل المصادقة المحلية أيضًا.\"],\"MD0-Al\":[\"جلستك على وشك الانتهاء\"],\"MDQLec\":[\"التحكم في مستوى المخرجات التي سينتجها Ansible لمهام تحديث مصدر المخزون.\"],\"MGpavd\":[\"بحث تلقائي للمفتاح\"],\"MHM-bv\":[\"هدف رابط غير صالح. تعذر الربط بالعقد الفرعية أو السلفية. دورات الرسم البياني غير مدعومة.\"],\"MHbbol\":[\" تقطيع المهمة\"],\"MKEPCY\":[\"متابعة\"],\"MP1v-1\":[\"وسيلة الإيضاح\"],\"MP8dU9\":[\"موقع الصورة الكامل، بما في ذلك سجل الحاويات واسم الصورة ووسم الإصدار.\"],\"MQPvAa\":[\"المطالبة بالتسميات عند الإطلاق.\"],\"MQoyj6\":[\"قالب مهمة سير العمل\"],\"MTLPCv\":[\"التنفيذ عندما تؤدي العقدة الأصل إلى حالة فشل.\"],\"MVw5um\":[\"2 (أكثر تفصيلاً)\"],\"MZU5bt\":[\"فشل حذف مجموعة واحدة أو أكثر.\"],\"M_gXds\":[\"Note: This instance may be re-associated with this instance group if it is managed by \"],\"MdhgLT\":[\"كلمة مرور خادم IRC\"],\"MfCEiB\":[\"بيانات اعتماد Galaxy\"],\"MfQHgE\":[\"أيام للاحتفاظ\"],\"Mfk6hJ\":[\"فشل حذف قالب واحد أو أكثر.\"],\"Mhn5m4\":[\"بيانات اعتماد السجل\"],\"Mn45Gz\":[\"العودة إلى مجموعات المثيلات\"],\"MnbH31\":[\"صفحة\"],\"MofjBu\":[\"بيئة التنفيذ التي سيتم استخدامها للمهام التي تستخدم هذا المشروع. سيتم استخدامها كحل بديل عندما لا يتم تعيين بيئة تنفيذ بشكل صريح على مستوى قالب المهمة أو سير العمل.\"],\"MpLngK\":[\"نقطة نهاية Webhook لهذا المشروع. أضفها إلى تكوين Webhook للمستودع لجعل عمليات الدفع تؤدي إلى تشغيل مزامنة المشروع.\"],\"MpZRQy\":[\"Git\"],\"MuhG5I\":[[\"0\",\"plural\",{\"one\":[\"لا يمكن حذف هذه الموافقة بسبب أذونات غير كافية أو حالة مهمة معلّقة\"],\"other\":[\"لا يمكن حذف هذه الموافقات بسبب أذونات غير كافية أو حالة مهمة معلّقة\"]}]],\"MwCc2O\":[\"بيانات اعتماد webhook لقالب مهمة سير العمل هذا.\"],\"Mwf3Mw\":[\"قم بملء المضيفين لهذا المخزون باستخدام مرشح\\n بحث. مثال: ansible_facts__ansible_distribution:\\\"RedHat\\\".\\n راجع التوثيق لمزيد من الصيغ\\n والأمثلة. راجع توثيق Ansible Controller لمزيد من الصيغ\\n والأمثلة.\"],\"MzcRa_\":[\"المستخدم و Automation Analytics\"],\"Mzqo60\":[\"القيمة المراد مقارنة الأثر بها. يتم تفسيرها كـ JSON عند الإمكان (مثل true، 3)، وإلا فكسلسلة نصية عادية.\"],\"N1U4ZG\":[\"امتثال الاشتراك\"],\"N36GRB\":[\"يجب أن يكون هذا الحقل رقمًا وأن تكون قيمته أكبر من \",[\"min\"]],\"N40H-G\":[\"الكل\"],\"N5vmCy\":[\"المخزون المُنشأ\"],\"N6GBcC\":[\"تأكيد الحذف\"],\"N7wOty\":[\"حدد Playbook المراد تنفيذه بواسطة هذه المهمة.\"],\"NAKA53\":[\"فشل المضيف\"],\"NBONaK\":[\"جمع الحقائق\"],\"NCVKhy\":[\"المهام الأخيرة\"],\"NDQvUO\":[\"المطالبة بالوسوم عند الإطلاق.\"],\"NIuIk1\":[\"غير محدود\"],\"NLKsgx\":[\"قائمة \",[\"pluralizedItemName\"]],\"NO1ZxL\":[\"اسم التطبيق\"],\"NPfgIB\":[\"ثانية\"],\"NQHZnb\":[\"Integer\"],\"NRn4V6\":[[\"interval\"],\" months\"],\"NUNUrW\":[\"وسوم التعليق (اختياري)\"],\"NW-xDQ\":[\"سيؤدي هذا إلى إرجاع جميع قيم التكوين في هذه الصفحة إلى\\n إعدادات المصنع الافتراضية. هل أنت متأكد من أنك تريد المتابعة؟\"],\"NX18CF\":[\"في أو بعد\"],\"NYxilo\":[\"الحد الأقصى للمهام المتزامنة\"],\"Na9fIV\":[\"لم يتم العثور على عناصر.\"],\"NcVaYu\":[\"وقت الانتهاء\"],\"NeA1eI\":[\"التحريك لليمين\"],\"Never\":[\"أبدًا\"],\"NgD4On\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"سيؤدي هذا الإجراء إلى إلغاء المهمة التالية:\"],\"other\":[\"سيؤدي هذا الإجراء إلى إلغاء المهام التالية:\"]}]],\"NjnDuY\":[\"Dragging started for item id: \",[\"newId\"],\".\"],\"NjqMGF\":[\"نوع المورد\"],\"NnH3pK\":[\"اختبار\"],\"No Jobs\":[\"لا توجد مهام\"],\"NpJHAp\":[\"لا يمكن تحديد قوالب المهام ذات المخزون أو المشروع المفقود عند إنشاء العقد أو تحريرها. حدد قالبًا آخر أو أصلح الحقول المفقودة للمتابعة.\"],\"NqIlWb\":[\"آخر تشغيل\"],\"NrGRF4\":[\"نافذة تحديد الاشتراك\"],\"NsXTPu\":[\"لإنشاء مخزون ذكي باستخدام حقائق ansible، انتقل إلى شاشة المخزون الذكي.\"],\"NtD3hJ\":[\"المفاتيح ذات الصلة\"],\"Nu4DdT\":[\"مزامنة\"],\"Nu4oKW\":[\"الوصف\"],\"Nu7VHX\":[\"اختر الأدوار المراد تطبيقها على الموارد المحددة. لاحظ أن جميع الأدوار المحددة ستُطبق على جميع الموارد المحددة.\"],\"O-OYOe\":[\"تحرير الفريق\"],\"O06Rp6\":[\"واجهة المستخدم\"],\"O1Aswy\":[\"لا تنتهي صلاحيته أبدًا\"],\"O28qFz\":[\"عرض المهمة \",[\"0\"]],\"O2EuOK\":[\"تسجيل الدخول باستخدام SAML \",[\"samlIDP\"]],\"O2UpM1\":[\"تصفح\"],\"O3oNi5\":[\"البريد الإلكتروني\"],\"O4ilec\":[\"نسخة غير حساسة لحالة الأحرف من regex.\"],\"O5pAaX\":[\"حدد مثيلاً ومقياسًا لعرض الرسم البياني\"],\"O78b13\":[\"التطبيق الذي ينتمي إليه هذا الرمز المميز، أو اترك هذا الحقل فارغًا لإنشاء رمز وصول شخصي.\"],\"O8_96D\":[\"منفذ المستمع\"],\"O9VQlh\":[\"حدد التردد\"],\"OA8xiA\":[\"التحريك لليسار\"],\"OA99Nq\":[\"متى تمت أتمتة المضيف آخر مرة\"],\"OC4Tzv\":[\"هنا\"],\"OGoqLy\":[\"# sources with sync failures.\"],\"OHGMM6\":[\"تاريخ/وقت البدء\"],\"OIv5hN\":[\"جارٍ إعادة التوجيه إلى تفاصيل الاشتراك\"],\"OJ9bHy\":[\"فشل إلغاء ربط مجموعة واحدة أو أكثر.\"],\"OOq_rD\":[\"تشغيل Playbook\"],\"OPTWH4\":[\"تمكين التحقق من شهادة HTTPS\"],\"ORxrw7\":[\"الأيام المتبقية\"],\"OSH8xi\":[\"Hop\"],\"OcRJRt\":[\"تأكيد إلغاء المهمة\"],\"Oe_VOY\":[\"فشل إزالة مثيل واحد أو أكثر.\"],\"OgB1k4\":[\"الوسائط\"],\"OiCz65\":[\"عنوان URL لـ Grafana\"],\"Oiqdmc\":[\"تسجيل الدخول باستخدام GitHub Organizations\"],\"Oj2Ix6\":[\"مقدار الوقت (بالثواني) للتشغيل قبل إلغاء المهمة. القيمة الافتراضية هي 0 لعدم وجود مهلة للمهمة.\"],\"OjwX8k\":[\"معلومات الرمز المميز\"],\"OlpaBt\":[\"المهام المتزامنة: إذا تم التمكين، فسيُسمح بالتشغيل المتزامن لقالب المهمة هذا.\"],\"OmbooC\":[\"بدأت المهمة\"],\"OogRLI\":[\"لم يتم العثور على المخزون الموحّد.\"],\"OqE3G-\":[\"بحث تام في حقل المعرّف.\"],\"Osn70z\":[\"تصحيح\"],\"OvBnOM\":[\"العودة إلى الإعدادات\"],\"OyGPiW\":[\"إعدادات الاشتراك\"],\"OzssJK\":[\"تشغيل الأمر\"],\"P3spiP\":[\"العودة إلى القوالب\"],\"P7d85D\":[\"إزالة وصول الفريق\"],\"P8fBlG\":[\"المصادقة\"],\"PByO0X\":[\"الأصوات\"],\"PCEmEr\":[\"رموز المستخدم المميزة\"],\"PJ1B0S\":[[\"0\",\"plural\",{\"one\":[\"هذا المشروع قيد الاستخدام حاليًا من قبل موارد أخرى. هل أنت متأكد من أنك تريد حذفه؟\"],\"other\":[\"قد يؤثر حذف هذه المشاريع على موارد أخرى تعتمد عليها. هل أنت متأكد من أنك تريد الحذف على أي حال؟\"]}]],\"PJf54Q\":[\"العودة إلى المصادر\"],\"PKTjJ3\":[[\"0\",\"selectordinal\",{\"3\":[\"ثالث \",[\"weekday\"],\" من \",[\"month\"]],\"4\":[\"رابع \",[\"weekday\"],\" من \",[\"month\"]],\"5\":[\"خامس \",[\"weekday\"],\" من \",[\"month\"]],\"one\":[\"أول \",[\"weekday\"],\" من \",[\"month\"]],\"two\":[\"ثاني \",[\"weekday\"],\" من \",[\"month\"]]}]],\"PLzYyl\":[\"تفاصيل استثناء التردد\"],\"PMk2Wg\":[\"فشل إلغاء التوفير\"],\"POKy-m\":[\"نسخ بيئة التنفيذ\"],\"PPsHsC\":[\"إرجاع الكل إلى الافتراضي\"],\"PQPOpT\":[\"ملف المخزون\"],\"PRuZiQ\":[\"تحديث للحصول على مراجعة\"],\"PUnovD\":[\"Amazon EC2\"],\"PVCOQE\":[\"تمت إزالة القرين. يرجى التأكد من تشغيل حزمة التثبيت لـ \",[\"0\"],\" مرة أخرى لرؤية التغييرات سارية المفعول.\"],\"PWwwY2\":[\"إلغاء الربط\"],\"PYPqaM\":[\"معرّف اللوحة (اختياري)\"],\"PZBWpL\":[\"Switch to light mode\"],\"P_s0vy\":[\"تعذر البحث عن نوع بيانات الاعتماد لخدمة webhook هذه، لذا فإن حقل بيانات اعتماد webhook غير متاح.\"],\"PaTL2O\":[\"قائمة المستلمين\"],\"PhufXn\":[\"أصل شريحة المهمة\"],\"Pi5vnX\":[\"فشل مزامنة مصدر المخزون المُنشأ\"],\"PiK6Ld\":[\"السبت\"],\"PiRb8z\":[\"أحدث مزامنة\"],\"PjkoCm\":[\"هل أنت متأكد من أنك تريد إزالة العقدة أدناه:\"],\"PkVlOm\":[\"حدد رؤوس HTTP بتنسيق JSON. راجع\\n توثيق Ansible Controller للحصول على مثال على الصيغة.\"],\"Po1btV\":[\"التنقل العام\"],\"Po7y5X\":[\"فشل نسخ بيئة التنفيذ\"],\"PvgcEq\":[\"Draggable list to reorder and remove selected items.\"],\"PwAMWD\":[\"طي جميع أحداث المهمة\"],\"PyV1wC\":[\"منع الرجوع إلى مجموعة المثيلات\"],\"Q3P_4s\":[\"المهمة\"],\"Q4hWRC\":[\"مهام سير العمل (\",[\"total\"],\")\"],\"Q5ZW8j\":[\"جدول الاشتراكات\"],\"QF_MpS\":[\"\\n لاحظ أنه يمكن إلغاء ربط المضيفين الموجودين\\n مباشرة في هذه المجموعة فقط. يجب إلغاء ربط المضيفين في المجموعات الفرعية\\n مباشرة من مستوى المجموعة الفرعية التي ينتمون إليها.\\n \"],\"QFdBqu\":[\"Mattermost\"],\"QGbLBK\":[\"معرّف المهمة\"],\"QHF6CU\":[\"التشغيلات\"],\"QIOH6p\":[\"بدأ بواسطة (اسم المستخدم)\"],\"QIpNLR\":[\"لا توجد إخفاقات مزامنة مخزون.\"],\"QIq3_3\":[\"ملاحظة: الترتيب الذي يتم به تحديد هذه يحدد أسبقية التنفيذ. حدد أكثر من واحد لتمكين السحب.\"],\"QJbMvX\":[\"بيانات الاعتماد التي تتطلب كلمات مرور عند التشغيل غير مسموح بها. يرجى إزالة أو استبدال بيانات الاعتماد التالية بأخرى من النوع نفسه للمتابعة: \",[\"0\"]],\"QJowYS\":[\"تأكيد الحذف\"],\"QKUQw1\":[\"إنشاء مضيف جديد\"],\"QKbQTN\":[\"محدد نوع دفق النشاط\"],\"QOF7Jg\":[\"فشل الموافقة على \",[\"0\"],\".\"],\"QPRWww\":[\"نوع التشغيل\"],\"QR908H\":[\"اسم الإعداد\"],\"QT1rDU\":[\"GitHub Enterprise\"],\"QTwM6Y\":[\"المشروع الذي يحتوي على Playbook الذي ستنفذه هذه المهمة.\"],\"QYKS3D\":[\"المهام الأخيرة\"],\"QamIPZ\":[\"يرجى النقر على زر البدء للبدء.\"],\"Qay_5h\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"Qd2E32\":[\"استرجاع الحالة المُفعّلة من dict متغيرات المضيف المحدد. يمكن تحديد المتغير المُفعّل باستخدام تدوين النقطة، مثل: 'foo.bar'\"],\"Qf36YE\":[\"التفصيل\"],\"QgnNyZ\":[\"خطأ في المزامنة\"],\"Qhb8lT\":[\"إنشاء تطبيق جديد\"],\"QmvYrA\":[\"وصف اختياري لقالب مهمة سير العمل.\"],\"QnJn75\":[\"آخر تشغيل\"],\"Qv59HG\":[\"حدد نوع بيانات الاعتماد\"],\"Qv91_c\":[\"LDAP 2\"],\"QyjCeq\":[\"السعة\"],\"R-uZ8Y\":[\"تسجيل الدخول باستخدام SAML\"],\"R633QG\":[\"العودة إلى موافقات سير العمل\"],\"R6Gueb\":[\"تبديل تغيير الإشعار\"],\"R7s3iG\":[\"العودة إلى\"],\"R9Khdg\":[\"تلقائي\"],\"R9sZsA\":[\"حذف جميع المجموعات والمضيفين\"],\"RBDHUE\":[\"المطالبة ببيئة التنفيذ عند الإطلاق.\"],\"RI8cIw\":[\"الحد الأقصى لعدد المضيفين المسموح بإدارتهم بواسطة\\n هذه المؤسسة. القيمة الافتراضية هي 0 مما يعني عدم وجود حد.\\n راجع توثيق Ansible لمزيد من التفاصيل.\"],\"RIcSTA\":[\"ينتهي في\"],\"RIeAlp\":[\"في كل مرة تعمل فيها مهمة باستخدام هذا المخزون، قم بتحديث المخزون من المصدر المحدد قبل تنفيذ مهام المهمة.\"],\"RK1gDV\":[\"تسجيل الدخول باستخدام Azure AD\"],\"RMdd1C\":[\"لا شيء (تشغيل مرة واحدة)\"],\"RO9G1f\":[\"يجب أن يكون هذا الحقل أكبر من 0\"],\"RPnV2o\":[\"لم ينتج مرشح البحث أي نتائج…\"],\"RThfvh\":[\"إلغاء ربط الفريق (الفرق) ذي الصلة؟\"],\"R_mzhp\":[\"فشل رمز المستخدم المميز.\"],\"RbIaa9\":[\"لم يتم العثور على الرمز المميز.\"],\"RdLvW9\":[\"إعادة إطلاق المهام\"],\"Rguqao\":[\"حدد صفًا للحذف\"],\"RhOukN\":[[\"interval\"],\" hour\"],\"RiQMUh\":[\"قيد التشغيل\"],\"RjIKOw\":[\"تعذر تغيير المخزون على مضيف\"],\"RjkhdY\":[\"الحقل يبدأ بالقيمة.\"],\"RkXlPZ\":[\"GitHub\"],\"RlsPz7\":[\"هل أنت متأكد من أنك تريد إزالة هذا الرابط؟\"],\"Rm1iI_\":[\"المطالبة بالمتغيرات عند الإطلاق.\"],\"Roaswv\":[\"User Guide\"],\"RpKSl3\":[\"تم نسخ بيانات الاعتماد بنجاح\"],\"RsZ4BA\":[\"التمرير للأخير\"],\"RtKKbA\":[\"الأخير\"],\"Ru59oZ\":[\"تمكين webhook لهذا القالب.\"],\"RuEWFx\":[\"في التاريخ\"],\"RuiOO0\":[\"فشل حذف تطبيق واحد أو أكثر.\"],\"Rw1xwN\":[\"جارٍ تحميل المحتوى\"],\"RxzN1M\":[\"مُفعّل\"],\"RyPas1\":[\"Cancel selected jobs\"],\"S0kLOH\":[\"المعرّف\"],\"S2nsEw\":[\"مقارنة أكبر من.\"],\"S5gO6Y\":[\"قم بتمرير متغيرات سطر أوامر إضافية إلى سير العمل.\"],\"S6zj7M\":[\"بالنسبة لقوالب المهام، حدد run لتنفيذ Playbook. حدد check للتحقق فقط من بناء جملة Playbook واختبار إعداد البيئة والإبلاغ عن المشكلات دون تنفيذ Playbook.\"],\"S7kN8O\":[\"فشل حذف مستخدم واحد أو أكثر.\"],\"S7tNdv\":[\"عند النجاح\"],\"S8FW2i\":[\"ملف المخزون المراد مزامنته بواسطة هذا المصدر. يمكنك التحديد من القائمة المنسدلة أو إدخال ملف داخل الإدخال.\"],\"SA-KXq\":[\"التحريك للأعلى\"],\"SAw-Ux\":[\"هل أنت متأكد من أنك تريد إزالة وصول \",[\"0\"],\" من \",[\"username\"],\"؟\"],\"SBfnbf\":[\"عرض جميع بيئات التنفيذ\"],\"SC1Cur\":[\"حالة غير معروفة\"],\"SDND4q\":[\"غير مُكوّن\"],\"SIJDi3\":[\"تعديل السعة\"],\"SJjggI\":[\"خيارات التحديث\"],\"SJmHMo\":[\"الوثائق.\"],\"SLm_0U\":[\"منفذ خادم IRC\"],\"SODyJ3\":[\"المضيف غير المتزامن جيد\"],\"SRiPhD\":[\"إلغاء إزالة العقدة\"],\"SV5nA1\":[\"تحتوي بعض الخطوات السابقة على أخطاء\"],\"SVG6MY\":[\"إرجاع الحقل إلى القيمة المحفوظة سابقًا\"],\"SYbJcn\":[\"تحرير قالب الإشعار\"],\"SZvybZ\":[\"LDAP Default\"],\"SZw9tS\":[\"عرض التفاصيل\"],\"SbRHme\":[\"منطقة نص\"],\"Se_E0z\":[\"مهمة سير العمل\"],\"Sgr5NW\":[\"حدد مثيلاً لتشغيل فحص صحة.\"],\"Sh2XTJ\":[\"نوع الإشعار\"],\"SiexHs\":[\"لوحة المعلومات (كل النشاط)\"],\"Sja7f-\":[\"كم مرة تم حذف المضيف\"],\"Sjoj4f\":[\"اسم بيانات الاعتماد\"],\"SlfejT\":[\"خطأ\"],\"SoREmD\":[\"التطبيقات والرموز المميزة\"],\"SqA8uD\":[\"تشغيلات المهمة\"],\"SqLEdN\":[\"فشل حذف المخزون الذكي.\"],\"SqYo9m\":[\"العودة إلى المثيلات\"],\"Ssdrw4\":[\"مهمل\"],\"Successful\":[\"ناجح\"],\"SvPvEX\":[\"نص رسالة الموافقة على سير العمل\"],\"Svkela\":[\"الانتقال إلى الصفحة السابقة\"],\"SwJLlZ\":[\"نص رسالة رفض سير العمل\"],\"SxGqey\":[\"إعدادات OIDC العامة\"],\"Sxm8rQ\":[\"المستخدمون\"],\"SzFxHC\":[\"إعدادات LDAP\"],\"SzQMpA\":[\"التفريعات\"],\"T2M20E\":[\"The\"],\"T2mGOG\":[\"docs.ansible.com\"],\"T2x15z\":[\"فشل تبديل الإشعار.\"],\"T4a4A4\":[\"مفتاح Webhook\"],\"T7yEGN\":[\"نوع المنح الذي يجب على المستخدم استخدامه للحصول على الرموز المميزة لهذا التطبيق\"],\"T91vKp\":[\"تشغيل\"],\"T9hZ3D\":[\"GitHub Enterprise Team\"],\"TAnffV\":[\"تحرير هذه العقدة\"],\"TBH48u\":[\"فشل حذف الفريق.\"],\"TC32CH\":[\"أيام البيانات المراد الاحتفاظ بها\"],\"TD1APv\":[\"الحصول على الاشتراكات\"],\"TFr1UR\":[\"حدد مجموعة Ansible التي توفر ملحق المخزون المستخدم للمزامنة من vCenter. المجموعة community.vmware مهملة لصالح المجموعة الأحدث vmware.vmware. يتم تطبيق الاختيار عبر مفتاح \\\"plugin\\\" في متغيرات المصدر؛ وعند غياب المفتاح، تُستخدم المجموعة الافتراضية.\"],\"TJVvMD\":[\"نوع البحث ذي الصلة\"],\"TLomdD\":[[\"sessionCountdown\",\"plural\",{\"one\":[\"سيتم تسجيل خروجك خلال \",\"#\",\" ثانية بسبب عدم النشاط\"],\"other\":[\"سيتم تسجيل خروجك خلال \",\"#\",\" ثانية بسبب عدم النشاط\"]}]],\"TMJ39S\":[\"إلغاء ربط الدور\"],\"TMLAx2\":[\"مطلوب\"],\"TO3h59\":[\"ملء الحقل من نظام إدارة أسرار خارجي\"],\"TO4OtU\":[\"بيانات اعتماد Insights\"],\"TOjYb_\":[\"عرض تفاصيل مضيف المخزون المُنشأ\"],\"TP9_K5\":[\"الرمز المميز\"],\"TRDppN\":[\"Webhook\"],\"TTMvf7\":[\"نوع المجموعة\"],\"TU6IDa\":[\"نوع المستخدم\"],\"TXKmNM\":[\"يجب تحديد مخزون\"],\"TZEuIE\":[\"العودة إلى أنواع بيانات الاعتماد\"],\"T_87By\":[\"المعلمة\"],\"Ta0ts5\":[\"عرض التغييرات\"],\"TcnG-2\":[\"إنشاء بيئة تنفيذ جديدة\"],\"TgSxH9\":[\"عنوان URL لاستدعاء التوفير\"],\"TkiN8D\":[\"تفاصيل المستخدم\"],\"Tmh24b\":[\"إذا تم التمكين، فسيمنع قالب المهمة إضافة أي مجموعات مثيلات مخزون أو مؤسسة إلى قائمة مجموعات المثيلات المفضلة للتشغيل عليها. ملاحظة: إذا كان هذا الإعداد ممكّنًا وقدمت قائمة فارغة، فسيتم تطبيق مجموعات المثيلات العامة.\"],\"Tmuvry\":[\"بحث تلقائي لتعيين النوع\"],\"ToOoEw\":[\"نسخ بيانات الاعتماد\"],\"Tof7pX\":[\"المهام\"],\"Tq71UT\":[\"يوم عمل\"],\"Tx3NMN\":[\"عبارة مرور المفتاح الخاص\"],\"TxKKED\":[\"عرض تفاصيل المخزون المُنشأ\"],\"TyaPAx\":[\"مسؤول النظام\"],\"Tz0i8g\":[\"الإعدادات\"],\"U-nEJl\":[\"عرض إعدادات GitHub\"],\"U011Uh\":[\"آخر ظهور\"],\"U7rA2a\":[\"عند عدم التحديد، سيتم إجراء دمج، يجمع بين المتغيرات المحلية وتلك الموجودة في المصدر الخارجي.\"],\"UDf-wR\":[\"الاشتراكات المستهلكة\"],\"UEaj7U\":[\"إخفاقات مزامنة المخزون\"],\"UJpDop\":[\"Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"UJsNNk\":[\"مراجعة التحكم بالمصدر\"],\"UPasE4\":[\"Azure AD Default\"],\"UPmrRI\":[\"نسخة غير حساسة لحالة الأحرف من endswith.\"],\"URmyfc\":[\"التفاصيل\"],\"UX2wV1\":[[\"0\",\"plural\",{\"one\":[\"بيانات الاعتماد هذه قيد الاستخدام حاليًا من قبل موارد أخرى. هل أنت متأكد من أنك تريد حذفها؟\"],\"other\":[\"قد يؤثر حذف بيانات الاعتماد هذه على موارد أخرى تعتمد عليها. هل أنت متأكد من أنك تريد الحذف على أي حال؟\"]}]],\"UXBCwc\":[\"اسم العائلة\"],\"UY6iPZ\":[\"إذا كان مُفعّلاً، فستقترن عقد التحكم بهذا المثيل تلقائيًا. إذا كان مُعطّلاً، فسيتصل المثيل بالأقران المرتبطين فقط.\"],\"UYD5ld\":[\"وانقر على تحديث المراجعة عند الإطلاق\"],\"UYUgdb\":[\"الترتيب\"],\"U_JUCL\":[\"Red Hat Insights\"],\"Ua-Kc6\":[\"www.json.org\"],\"UbOul8\":[\"هل أنت متأكد من أنك تريد حذف:\"],\"UbRKMZ\":[\"معلّق\"],\"UbqhuT\":[\"فشل استرجاع كائن مورد العقدة الكامل.\"],\"Uc_tSU\":[\"تبديل الأدوات\"],\"UgFDh3\":[\"هذا المخزون قيد الاستخدام حاليًا من قبل موارد أخرى. هل أنت متأكد من أنك تريد حذفه؟\"],\"UirGxE\":[\"الأخطاء\"],\"UlykKR\":[\"الثالث\"],\"Uo1S9q\":[\"تسجيل الدخول باستخدام Azure AD Tenant\"],\"UueF8b\":[\"بيئة التنفيذ مفقودة أو محذوفة.\"],\"UvGjRK\":[\"إذا تم التمكين، فقم بتشغيل playbook هذا كمسؤول.\"],\"UwJJCk\":[\"إعادة إطلاق المضيفين الفاشلين\"],\"UxKoFf\":[\"التنقل\"],\"UyZ7HQ\":[\"نص رسالة التغيير\"],\"V-7saq\":[\"حذف \",[\"pluralizedItemName\"],\"؟\"],\"V-rJKF\":[\"Seconds\"],\"V0Xv3_\":[[\"intervalValue\",\"plural\",{\"one\":[\"يوم\"],\"other\":[\"أيام\"]}]],\"V0fM4k\":[\"تحليلات المستخدم\"],\"V1EGGU\":[\"الاسم الأول\"],\"V2-omF\":[[\"0\",\"plural\",{\"one\":[\"سيكون المخزون في حالة معلقة حتى تتم معالجة الحذف النهائي.\"],\"other\":[\"ستكون المخزونات في حالة معلقة حتى تتم معالجة الحذف النهائي.\"]}]],\"V2RwJr\":[\"عناوين المستمع\"],\"V2q9w9\":[\"If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode.\"],\"V3z83V\":[\"LDAP 3\"],\"V4WsyL\":[\"إضافة رابط\"],\"V5RUpn\":[\"قائمة المستلمين\"],\"V7qsYh\":[\"ملاحظة: يحدد ترتيب بيانات الاعتماد هذه الأسبقية لمزامنة المحتوى والبحث عنه. حدد أكثر من واحد لتمكين السحب.\"],\"V9xR6T\":[\"توسيع القسم\"],\"VAI2fh\":[\"إنشاء مجموعة حاويات جديدة\"],\"VAcXNz\":[\"الأربعاء\"],\"VEj6_Y\":[\"موافقات سير العمل\"],\"VFvVc6\":[\"تحرير التفاصيل\"],\"VJUm9p\":[\"الصفحة الحالية\"],\"VK2gzi\":[\"عدد العمليات المتوازية أو المتزامنة المراد استخدامها أثناء تنفيذ Playbook. القيمة الفارغة، أو القيمة الأقل من 1، ستستخدم الإعداد الافتراضي لـ Ansible وهو عادةً 5. يمكن الكتابة فوق العدد الافتراضي للتفريعات بإجراء تغيير على\"],\"VL2WkJ\":[\"آخر \",[\"dayOfWeek\"]],\"VLdRt2\":[\"بدء مزامنة المصدر\"],\"VNUs2y\":[\"الحد الأقصى للتفريعات\"],\"VSJ6r5\":[\"الجدول نشط\"],\"VSim_H\":[\"حذف مصدر المخزون\"],\"VTDO7X\":[\"نافذة تفاصيل الحدث\"],\"VU3Nrn\":[\"مفقود\"],\"VWL2DK\":[\"GitHub Organization\"],\"VXFjd8\":[\"المقاييس\"],\"VZfXhQ\":[\"عقدة Hop\"],\"VdcFUD\":[\"اتفاقية ترخيص المستخدم النهائي\"],\"ViDr6F\":[\"إضافة مجموعة جديدة\"],\"VmClsw\":[\"تم حذف المورد المرتبط بهذه العقدة.\"],\"VmvLj9\":[\"اضبط على Public أو Confidential اعتمادًا على مدى أمان جهاز العميل.\"],\"Vqd-tq\":[\"تأكيد إرجاع الكل\"],\"Vqgeac\":[\"Press space or enter to begin dragging,\\n and use the arrow keys to navigate up or down.\\n Press enter to confirm the drag, or any other key to\\n cancel the drag operation.\"],\"Vvbbn2\":[\"فشل حذف الدور.\"],\"Vw8l6h\":[\"حدث خطأ\"],\"VzE_M-\":[\"تبديل فشل الإشعار\"],\"W-O1E9\":[\"نسخ المشروع\"],\"W1iIqa\":[\"عرض مجموعات المخزون\"],\"W3TNvn\":[\"العودة إلى المستخدمين\"],\"W3pOzF\":[\"السماح بتغيير فرع التحكم في المصدر أو المراجعة في قالب مهمة يستخدم هذا المشروع.\"],\"W6uTJi\":[\"فشل الحصول على المثيل.\"],\"W7DGsV\":[\"أُطلقت بواسطة (اسم المستخدم)\"],\"W9XAF4\":[\"يوم من أيام الأسبوع\"],\"W9uQXX\":[\"مطالبة\"],\"WAjFYI\":[\"تاريخ البدء\"],\"WD8djW\":[\"تأكيد إزالة الرابط\"],\"WL91Ms\":[\"Delete Groups?\"],\"WPM2RV\":[\"نوع الإجابة\"],\"WQJduu\":[\"تحديد المفتاح\"],\"WTN9YX\":[\"رمز الحساب المميز\"],\"WTV15I\":[\"تحرير عنوان URL لتجاوز إعادة توجيه تسجيل الدخول\"],\"WVzGc2\":[\"الاشتراك\"],\"WX9-kf\":[\"اسم IRC المستعار\"],\"Wc6m4J\":[\"refspec المراد جلبه (يتم تمريره إلى وحدة git الخاصة بـ Ansible). تتيح هذه المعلمة الوصول إلى المراجع عبر حقل الفرع غير المتوفرة بطريقة أخرى.\"],\"Wdl2f2\":[\"يجب أن يحتوي هذا الحقل على \",[\"0\"],\" أحرف على الأقل\"],\"WgsBEi\":[\"أدخل مرشح بحث واحدًا على الأقل لإنشاء مخزون ذكي جديد\"],\"WhSFGl\":[\"التصفية حسب \",[\"name\"]],\"Wi1pUG\":[[\"numJobsToCancel\",\"plural\",{\"one\":[[\"0\"]],\"other\":[[\"1\"]]}]],\"Wk1rOS\":[\"ملاءمة الرسم البياني لحجم الشاشة المتاح\"],\"Wm7XbF\":[\"فشل حذف بيانات اعتماد واحدة أو أكثر.\"],\"WqaDMq\":[\"الحقل يحتوي على القيمة.\"],\"Wy25yg\":[\"Twilio\"],\"X03-eC\":[\"يرجى إدخال قيمة.\"],\"X5V9DW\":[\"انقر على زر التحرير أدناه لإعادة تكوين العقدة.\"],\"X6d3Zy\":[\"فشل حذف المؤسسة.\"],\"X97mbf\":[\"اختر نوع مهمة\"],\"XA12d8\":[\"قائمة اختيارية بأسماء المضيفين مفصولة بفواصل لتضمينها في كل شريحة مهمة، بالإضافة إلى مضيفي الشريحة نفسها. مفيدة عندما يستهدف play مضيفًا منسقًا، مثل localhost، تعتمد عليه جميع الشرائح. تتم مطابقة الأسماء تمامًا مع مضيفي المخزون؛ المجموعات والأنماط غير مدعومة. تقوم المضيفات المثبتة بتشغيل plays الخاصة بها مرة واحدة لكل شريحة.\"],\"XBROpk\":[\"قدّم نمط مضيف لتقييد قائمة المضيفين الذين سيتم إدارتهم أو التأثير عليهم بواسطة سير العمل بشكل أكبر.\"],\"XCCkju\":[\"تحرير العقدة\"],\"XFRygA\":[\"تتضمن أمثلة عناوين URL للتحكم في مصدر الأرشيف البعيد:\"],\"XHxwBV\":[\"يجب أن يحتوي نطاق التاريخ المحدد على تكرار جدول واحد على الأقل.\"],\"XILg0L\":[\"عنوان بريد إلكتروني غير صالح\"],\"XJOV1Y\":[\"النشاط\"],\"XKp83s\":[\"لا يمكن نسخ المخزونات التي لها مصادر\"],\"XLMJ7O\":[\"السحابة\"],\"XLpxoj\":[\"خيارات البريد الإلكتروني\"],\"XM-gTv\":[\"راجع وثائق Ansible للحصول على تفاصيل حول ملف التكوين.\"],\"XOD7tz\":[\"عرض التغييرات\"],\"XOaZX3\":[\"ترقيم الصفحات\"],\"XP6TQ-\":[\"إذا تم تحديده، فسيتم عرض هذا الحقل على العقدة بدلاً من اسم المورد عند عرض سير العمل\"],\"XREJvl\":[\"المتغيرات المستخدمة لتكوين مصدر المخزون. للحصول على وصف مفصل لكيفية تكوين هذا الملحق، انظر\"],\"XViLWZ\":[\"عند الفشل\"],\"XWDz5f\":[\"تحديد مفتاح بسيط\"],\"X_5TsL\":[\"تبديل الاستبيان\"],\"XaxYwV\":[\"القيم المطلوبة\"],\"XbIM8f\":[\"إجمالي مصادر المخزون\"],\"XdyHT-\":[\"المضيفون المستوردون\"],\"XfmfOA\":[\"التشغيل كل\"],\"Xg3aVa\":[\"استخدام SSL\"],\"XgTa_2\":[\"The inventory will be in a pending status until the final delete is processed.\"],\"XilEsm\":[\"مجموعة المثيلات\"],\"Xm7ruy\":[\"5 (تصحيح WinRM)\"],\"XmJfZT\":[\"الاسم\"],\"XmVvzl\":[\"حدد الأدوار المراد تطبيقها\"],\"XnxCSh\":[\"الخطأ القياسي\"],\"XozZ38\":[\"فشل حذف مصدر مخزون واحد أو أكثر.\"],\"Xq9A0U\":[\"مشروع غير معروف\"],\"Xt4N6V\":[\"مطالبة | \",[\"0\"]],\"XtpZSU\":[\"جميع أنواع المهام\"],\"Xx-ftH\":[\"لقد قمت بالأتمتة على عدد من المضيفين أكثر مما يسمح به اشتراكك.\"],\"XyTWuQ\":[\"يرجى الانتظار حتى يتم ملء عرض الطوبولوجيا...\"],\"XyW2nH\":[[\"0\",\"plural\",{\"one\":[\"هل أنت متأكد من أنك تريد حذف المجموعة أدناه؟\"],\"other\":[\"هل أنت متأكد من أنك تريد حذف المجموعات أدناه؟\"]}]],\"XzD7xj\":[\"حدد العناصر\"],\"Y1YKad\":[\"تحرير التفاصيل\"],\"Y296GK\":[\"فشل حذف الدور\"],\"Y2ml-n\":[\"تمت الموافقة - \",[\"0\"],\". راجع دفق النشاط لمزيد من المعلومات.\"],\"Y5VrmH\":[\"غير مُكوّن لمزامنة المخزون.\"],\"Y5vgVF\":[\"تم الرفض بنجاح\"],\"Y5xJ7I\":[\"اسم Playbook\"],\"Y60pX3\":[\"إضافة مخزون مُنشأ\"],\"YA4I45\":[\"حدد وحدة\"],\"YFmVSY\":[\"إلغاء الربط؟\"],\"YJddb4\":[\"نوع المثيل\"],\"YLMfol\":[\"اختر نوع المورد الذي سيتلقى أدوارًا جديدة. على سبيل المثال، إذا كنت ترغب في إضافة أدوار جديدة إلى مجموعة من المستخدمين، يرجى اختيار المستخدمين والنقر على التالي. ستتمكن من تحديد الموارد المحددة في الخطوة التالية.\"],\"YM06Nm\":[\"تحرير نوع بيانات الاعتماد\"],\"YMLB2b\":[\"ما إذا كانت عقدة الموافقة تتم الموافقة عليها أو رفضها تلقائيًا عند انتهاء المهلة.\"],\"YMpSlP\":[\"الوقت بالثواني لاعتبار مزامنة المخزون حالية. أثناء تشغيل المهام والاستدعاءات، سيقوم نظام المهام بتقييم الطابع الزمني لأحدث مزامنة. إذا كان أقدم من مهلة ذاكرة التخزين المؤقت، فلا يُعتبر حاليًا، وسيتم إجراء مزامنة مخزون جديدة.\"],\"YOOdGq\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" دقيقة\"],\"other\":[\"#\",\" دقائق\"]}]],\"YOh7Aw\":[\"مهمة سير العمل \",[\"currentPosition\"],\"/\",[\"total\"]],\"YP5KRj\":[\"سيتم إنشاء عنوان url جديد لـ webhook عند الحفظ.\"],\"YPDLLX\":[\"العودة إلى بيئات التنفيذ\"],\"YQqM-5\":[\"صورة الحاوية المراد استخدامها للتنفيذ.\"],\"Yd45Xn\":[\"المضيفون حسب نوع المعالج\"],\"Yfw7TK\":[\"انتهت مهلة الإشعار\"],\"YgqgXs\":[[\"intervalValue\",\"plural\",{\"one\":[\"دقيقة\"],\"other\":[\"دقائق\"]}]],\"YiQ03p\":[\"فشل حذف الجدول.\"],\"YiUAZm\":[\"<0>ملاحظة: قد تتم إعادة ربط هذا المثيل بمجموعة المثيلات هذه إذا كان مُدارًا بواسطة <1>قواعد النهج.\"],\"YlGAPh\":[\"المضيفون المثبتون لشريحة المهمة\"],\"Ym7-mu\":[\"قناة Slack واحدة لكل سطر. رمز الجنيه (#)\\n مطلوب للقنوات. للرد على رسالة معينة أو بدء سلسلة رسائل لها، أضف معرّف الرسالة الأصلية إلى القناة حيث يكون معرّف الرسالة الأصلية 16 رقمًا. يجب إدراج نقطة (.) يدويًا بعد الرقم العاشر. مثال:#destination-channel, 1231257890.006423. انظر Slack\"],\"YmEWZH\":[\"إطلاق القالب\"],\"YmjTf2\":[\"فشل التوفير\"],\"YoXjSs\":[\"المطالبة بالمخزون عند الإطلاق.\"],\"Yq4Eaf\":[\"معلومات حالة المضيف لهذه المهمة غير متاحة.\"],\"YsN-3o\":[\"عرض تفاصيل مصدر المخزون\"],\"Yt-rBv\":[\"هذا المشروع قيد الاستخدام حاليًا من قبل موارد أخرى. هل أنت متأكد من أنك تريد حذفه؟\"],\"YuC9dj\":[\"ربط\"],\"YxDLmM\":[\"معرّف نظام Insights\"],\"Z17FAa\":[\"مخزون غير معروف\"],\"Z1Vtl5\":[\"فشل إلغاء مزامنة المشروع\"],\"Z25_RC\":[\"حدد الإدخال\"],\"Z2hVSb\":[\"هجين\"],\"Z40J8D\":[\"تمكّن إنشاء عنوان URL لاستدعاء التزويد. باستخدام عنوان URL، يمكن للمضيف الاتصال بـ \",[\"brandName\"],\" وطلب تحديث التكوين باستخدام قالب المهمة هذا.\"],\"Z5HWHd\":[\"تشغيل\"],\"Z7ZXbT\":[\"الموافقة\"],\"Z88yEl\":[\"مقارنة أكبر من أو يساوي.\"],\"Z9EFpE\":[\"لوحة معلومات Automation Analytics\"],\"ZAWGCX\":[[\"0\"],\" ثانية\"],\"ZEP8tT\":[\"إطلاق\"],\"ZGDCzb\":[\"لم يتم العثور على المثيل.\"],\"ZJjKDg\":[\"العقد المُدارة\"],\"ZKKnVf\":[\"إنشاء قالب سير عمل جديد\"],\"ZL3d6Z\":[\"عنوان خادم IRC\"],\"ZO4CYH\":[\"المهام قيد التشغيل\"],\"ZOLfb2\":[\"يجب ألا يكون هذا الحقل فارغًا.\"],\"ZWhZbs\":[\"تأكيد إزالة العقدة\"],\"ZajTWA\":[\"رقم هاتف المصدر\"],\"Zf6u-6\":[\"الشرح\"],\"ZfrRb0\":[\"يرجى تحديد مخزون أو تحديد خيار المطالبة عند الإطلاق\"],\"ZhUwVw\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" أسبوع\"],\"other\":[\"#\",\" أسابيع\"]}]],\"ZhxwOq\":[\"نص رسالة الخطأ\"],\"Zikd-1\":[\"عدد المضيفين الذين قمت بالأتمتة عليهم أقل من عدد اشتراكك.\"],\"ZjC8QM\":[\"فشل حذف المضيف.\"],\"ZjvPb1\":[\"تم الإنشاء بواسطة (اسم المستخدم)\"],\"Zkh5np\":[\"يتم تحديث الأقران على \",[\"0\"],\". يرجى التأكد من تشغيل حزمة التثبيت لـ \",[\"1\"],\" مرة أخرى لرؤية التغييرات سارية المفعول.\"],\"ZpdX6R\":[\"خطأ في حذف الرموز المميزة\"],\"ZrsGjm\":[\"المخزون\"],\"ZumtuZ\":[\"نسخ القالب\"],\"ZvVF4C\":[\"حذف سؤال الاستبيان\"],\"ZwCTcT\":[\"علامة تبويب قائمة المهام الأخيرة\"],\"ZwujDQ\":[\"العام الماضي\"],\"_-NKbo\":[\"فشل تبديل الجدول.\"],\"_2LfCe\":[\"لإعادة ترتيب أسئلة الاستبيان، اسحبها وأفلتها في الموقع المطلوب.\"],\"_4gGIX\":[\"نسخ إلى الحافظة\"],\"_5REdR\":[\"حدد مخزونات الإدخال لملحق المخزون المُنشأ.\"],\"_Fg1cM\":[\"نص رسالة انتهاء مهلة سير العمل\"],\"_ITcnz\":[\"يوم\"],\"_Ia62Q\":[\"أمثلة المخزون المُنشأ\"],\"_JN1gB\":[\"عدد المهام\"],\"_K2CvV\":[\"قالب\"],\"_LQZpR\":[[\"intervalValue\",\"plural\",{\"one\":[\"سنة\"],\"other\":[\"سنوات\"]}]],\"_LVfwJ\":[\"خطأ في مزامنة مصدر المخزون المُنشأ\"],\"_M4FeF\":[\"حدد بيئة التنفيذ التي تريد تشغيل هذا الأمر داخلها.\"],\"_MTBwI\":[\"رسالة التغيير\"],\"_MdgrM\":[\"أضف عقدة جديدة بين هاتين العقدتين\"],\"_PRaan\":[\"فشل حذف قالب إشعار واحد أو أكثر.\"],\"_Pz_QH\":[\"مُدار بواسطة السياسة\"],\"_W3ZAw\":[[\"selectedItemsCount\",\"plural\",{\"one\":[\"انقر لتشغيل فحص صحة على المثيل المحدد.\"],\"other\":[\"انقر لتشغيل فحص صحة على المثيلات المحددة.\"]}]],\"_WBq2_\":[\"مرفوض - \",[\"0\"],\". راجع دفق النشاط لمزيد من المعلومات.\"],\"_Yq4TU\":[\"الحد الأقصى لعدد التفريعات المسموح بها عبر جميع المهام التي تعمل بشكل متزامن على هذه المجموعة.\\n يعني الصفر عدم فرض أي حد.\"],\"_ZBhqw\":[\"فشل إلغاء مزامنة مصدر المخزون\"],\"_bAUGi\":[\"اختر طريقة HTTP\"],\"_bE0AS\":[\"حدد مثيلاً\"],\"_cV6Mf\":[\"تصفح…\"],\"_cq4Aa\":[\"لم يتم العثور على موافقة سير العمل.\"],\"_ereyb\":[\"TACACS+\"],\"_gCD76\":[\"تحرير مجموعة المثيلات\"],\"_ismew\":[\"مفتاح الأثر\"],\"_kYJq6\":[\"أيام البيانات المراد الاحتفاظ بها\"],\"_khNCh\":[\"يجب استبدال بيانات الاعتماد الافتراضية لقالب المهمة بأخرى من النوع نفسه. يرجى تحديد بيانات اعتماد للأنواع التالية للمتابعة: \",[\"0\"]],\"_oeZtS\":[\"استقصاء المضيف\"],\"_rCRcH\":[\"توثيق البحث المتقدم\"],\"_vI8Rx\":[\"Delete Group?\"],\"a02Xjc\":[\"عنوان خادم IRC\"],\"a3AD0M\":[\"تأكيد تحرير إعادة توجيه تسجيل الدخول\"],\"a5zD9f\":[\"التغييرات\"],\"a6E-_p\":[\"نسخة غير حساسة لحالة الأحرف من contains\"],\"a8AgQY\":[\"عرض تفاصيل المضيف\"],\"a8nooQ\":[\"الرابع\"],\"a9BTUD\":[\"يوم عطلة نهاية الأسبوع\"],\"aBgwis\":[\"النطاق\"],\"aLlb3-\":[\"boolean\"],\"aNxqSL\":[\"حذف بيئة التنفيذ\"],\"aQ4XJX\":[\"تمكين تتبع نظام السجل للحقائق بشكل فردي\"],\"aSuBiU\":[\"Microsoft Azure Resource Manager\"],\"aTK0Fh\":[\"في الأيام\"],\"aUNPq3\":[\"عقدة التنفيذ\"],\"aVoVcG\":[\"تحديد متعدد\"],\"aXBrSq\":[\"Red Hat Virtualization\"],\"a_vlog\":[\"إزالة شريحة \",[\"0\"]],\"adPhRK\":[\"المخزون الذي ينتمي إليه هذا المضيف.\"],\"adjqlB\":[[\"0\"],\" (محذوف)\"],\"aht2s_\":[\"لون الإشعار\"],\"aiejXq\":[\"إضافة نوع مورد\"],\"ajDpGH\":[\"الحالة:\"],\"anfIXl\":[\"تفاصيل المستخدم\"],\"aqqAbL\":[\"إذا كان مُفعّلاً، فسيمنع المخزون إضافة أي مجموعات مثيلات مؤسسة إلى قائمة مجموعات المثيلات المفضلة لتشغيل قوالب المهام المرتبطة عليها. ملاحظة: إذا كان هذا الإعداد مُفعّلاً وقدمت قائمة فارغة، فسيتم تطبيق مجموعات المثيلات العامة.\"],\"ar5AA2\":[\"لمزيد من المعلومات.\"],\"ataY5Z\":[\"خطأ في حذف المهمة\"],\"ax6e8j\":[\"يرجى تحديد مؤسسة قبل تحرير مرشح المضيف\"],\"az8lvo\":[\"إيقاف\"],\"b1CAkh\":[\"مهام الإدارة\"],\"b2Z0Zq\":[\"إلغاء تغييرات الرابط\"],\"b433OF\":[\"تحرير المجموعة\"],\"b4SLah\":[\"انظر الأخطاء على اليسار\"],\"b9Y4up\":[\"معرّف العميل\"],\"bDa_hW\":[\"حدد مجموعات المثيلات التي يجب أن تعمل عليها مزامنة مصدر المخزون هذا. إذا لم يتم التعيين، تعمل المزامنة على مجموعات المثيلات الخاصة بالمخزون أو مؤسسته.\"],\"bE4zYn\":[\"حدد المنفذ الذي سيستمع عليه Receptor للاتصالات الواردة، مثل 27199.\"],\"bHXYoC\":[\"طريقة HTTP\"],\"bKR18T\":[\"بيان الاشتراك هو تصدير لاشتراك Red Hat. لإنشاء بيان اشتراك، انتقل إلى <0>access.redhat.com. لمزيد من المعلومات، راجع <1>دليل المستخدم.\"],\"bLt_0J\":[\"سير العمل\"],\"bPq357\":[\"القيمة المُفعّلة\"],\"bQZByw\":[\"استخدم علامة تعليق واحدة لكل سطر، بدون فواصل.\"],\"bTu5jX\":[\"اسم المستخدم / كلمة المرور\"],\"bWr6j5\":[\"يجب أن يحتوي هذا الحقل على \",[\"min\"],\" أحرف على الأقل\"],\"bY8C86\":[\"عرض جميع المستخدمين.\"],\"bYXbel\":[\"مفتاح webhook لقالب مهمة سير العمل\"],\"baP8gx\":[\"4 (تصحيح الاتصال)\"],\"baqrhc\":[\"رؤوس HTTP\"],\"bbJ-VR\":[\"تصغير\"],\"bcyJXs\":[\"العنصر جيد\"],\"bd1Kuw\":[\"عنوان URL للأيقونة\"],\"bf7UKi\":[\"تحديث مهلة ذاكرة التخزين المؤقت\"],\"bfgr_e\":[\"سؤال\"],\"bgjTnp\":[\"0 (عادي)\"],\"bgq1rW\":[\"زر إرسال البحث\"],\"bhxnLH\":[\"ليس لديك إذن لحذف المجموعات التالية: \",[\"itemsUnableToDelete\"]],\"bkPO0d\":[\"نوع الإشعار\"],\"bpECfE\":[\"إلغاء إزالة الرابط\"],\"bpnj1H\":[\"حدث خطأ أثناء تحميل هذا المحتوى. يرجى إعادة تحميل الصفحة.\"],\"bwRvnp\":[\"إجراء\"],\"bx2rrL\":[\"المخزون الذكي\"],\"bxaVlf\":[\"إنشاء نوع بيانات اعتماد جديد\"],\"byXCTu\":[\"مرات التكرار\"],\"bznJUg\":[\"حدد المخزون الذي يحتوي على المضيفين الذين تريد أن يديرهم سير العمل هذا.\"],\"bzv8Dv\":[\"خطأ في الإزالة\"],\"c-xCSz\":[\"صحيح\"],\"c0n4p3\":[\"تخزين الحقائق\"],\"c1Rsz1\":[\"عرض تفاصيل موافقة سير العمل\"],\"c3XJ18\":[\"مساعدة\"],\"c4kHK7\":[\"إغلاق نافذة الاشتراك\"],\"c6IFRs\":[\"ملف JSON لحساب الخدمة\"],\"c6u6gk\":[\"حدد مجموعات المثيلات التي ستعمل عليها هذه المؤسسة.\"],\"c7-Adk\":[\"فشل مزامنة مصدر المخزون.\"],\"c8HyJq\":[\"حدد مجموعات المثيلات التي سيعمل عليها هذا المخزون.\"],\"c8sV0t\":[\"هذه الميزة مهملة وستتم إزالتها في إصدار مستقبلي.\"],\"c9V3Yo\":[\"فشل المضيف\"],\"c9iw51\":[\"المهام قيد التشغيل\"],\"c9pF61\":[\"معرّف العميل\"],\"cFC8w7\":[\"مصدر المخزون هذا قيد الاستخدام حاليًا من قبل موارد أخرى تعتمد عليه. هل أنت متأكد من أنك تريد حذفه؟\"],\"cFCKYZ\":[\"رفض\"],\"cFOXv9\":[\"OIDC عام\"],\"cGRiaP\":[\"تفاصيل الحدث\"],\"cIdUma\":[\"\\n لا توجد أدلة playbook متاحة في \",[\"project_base_dir\"],\".\\n إما أن هذا الدليل فارغ، أو أن جميع المحتويات مُعيّنة بالفعل\\n لمشاريع أخرى. أنشئ دليلاً جديدًا هناك وتأكد\\n من أن ملفات playbook يمكن قراءتها بواسطة مستخدم النظام \\\"awx\\\"،\\n أو اجعل \",[\"brandName\"],\" يسترجع ملفات playbook الخاصة بك مباشرة من\\n التحكم بالمصدر باستخدام خيار نوع التحكم بالمصدر أعلاه.\"],\"cNsIJf\":[\"تم التغيير\"],\"cPTnDL\":[\"مزامنة المشروع\"],\"cQIQa2\":[\"حدد المجموعات\"],\"cQlPDN\":[\"قراءة\"],\"cUKLzq\":[\"تحرير الترتيب\"],\"cYir0h\":[\"حدد الخيار (الخيارات)\"],\"c_PGsA\":[\"تفاصيل مهمة سير العمل\"],\"cbSPfq\":[\"تم اتخاذ إجراء بشأن سير العمل هذا بالفعل\"],\"ccA_Bz\":[\"التنسيق المقترح لأسماء المتغيرات هو أحرف صغيرة\\n ومفصولة بشرطة سفلية (على سبيل المثال، foo_bar، user_id، host_name،\\n إلخ). أسماء المتغيرات التي تحتوي على مسافات غير مسموح بها.\"],\"cdm6_X\":[\"السعة المستخدمة\"],\"chbm2W\":[\"مرشحات المثيل\"],\"ci3mwY\":[\"يجب ألا يكون هذا الحقل فارغًا\"],\"cit9TY\":[\"اسم الأثر الذي تنتجه العقدة الأصل عبر set_stats. يتم اتباع الرابط فقط عندما تطابق المهمة الأصل النتيجة المختارة ويكون الشرط صحيحًا. المفتاح المفقود لا يطابق أبدًا.\"],\"cj1KTQ\":[\"عرض جميع المخزونات.\"],\"cjJXKx\":[\"فشل المضيف غير المتزامن\"],\"ckH3fT\":[\"جاهز\"],\"ckdiAB\":[\"حذف الإشعار\"],\"cmWTxn\":[\"مقارنة أقل من أو يساوي.\"],\"cnGeoo\":[\"حذف\"],\"cnnWD0\":[\"By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>\",[\"0\"],\". Uncheck the following boxes to disable this feature.\"],\"ct_Puj\":[\"سيتم استرجاع هذا الحقل من نظام إدارة أسرار خارجي باستخدام بيانات الاعتماد المُحددة.\"],\"cucDBz\":[\"قالب السياق\"],\"cucG_7\":[\"لا يوجد YAML متاح\"],\"cxjfgY\":[\"لا يمكن تشغيل فحص الصحة على عقد hop.\"],\"cy3yJa\":[\"تم التأسيس\"],\"d-F6q9\":[\"تم الإنشاء\"],\"d-zGjA\":[\"سيؤدي هذا الإجراء إلى حذف ما يلي:\"],\"d1BVnY\":[\"A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>\",[\"0\"],\".\"],\"d5zxa4\":[\"محلي\"],\"d6in1T\":[\"حدد المخزون الذي يحتوي على المضيفين الذين تريد أن تديرهم هذه المهمة.\"],\"d73flf\":[\"نافذة التنبيه\"],\"d75lEw\":[\"تعيين النوع\"],\"d7VUIS\":[\"إزالة العقدة \",[\"nodeName\"]],\"d8B-tr\":[\"علامة تبويب الرسم البياني لحالة المهمة\"],\"dAZObA\":[\"عناوين URI لإعادة التوجيه\"],\"dBNZkl\":[\"عرض تفاصيل مضيف المخزون الذكي\"],\"dCcO-F\":[\"فشل استرجاع التكوين.\"],\"dELxuP\":[\"لم يتم العثور على المخزون.\"],\"dEgA5A\":[\"إلغاء\"],\"dH6aQY\":[\"Azure AD Tenant\"],\"dIb9tv\":[\"عرض جميع التطبيقات.\"],\"dJcvVX\":[\"مرشح المضيف الذكي\"],\"dNAHKF\":[\"تقطيع المهمة\"],\"dOjocz\":[\"تحديد التقارب\"],\"dPGRd8\":[\"إذا تم التمكين، فسيتم عرض التغييرات التي أجرتها مهام Ansible، حيثما كان ذلك مدعومًا. هذا يعادل وضع --diff في Ansible.\"],\"dPY1x1\":[\"لمزيد من المعلومات.\"],\"dQFAgv\":[\"يحتاج هذا المشروع إلى التحديث\"],\"dQjRO3\":[\"بدء عملية المزامنة\"],\"dbWo0h\":[\"تسجيل الدخول باستخدام Google\"],\"dcGoCm\":[\"ملف المخزون\"],\"ddIcfH\":[\"الانتقال إلى الصفحة الأخيرة\"],\"dfWFox\":[\"عدد المضيفين\"],\"dk7qNl\":[\"عقدة التحكم\"],\"dkGxGj\":[\"Subversion\"],\"dlHFy7\":[\"فشل حذف بيئة تنفيذ واحدة أو أكثر\"],\"dnCwNB\":[\"تم النسخ إلى الحافظة بنجاح!\"],\"dov9kY\":[\"يجب أن يكون هذا الحقل رقمًا وأن تكون قيمته بين \",[\"0\"],\" و\",[\"1\"]],\"dqxQzB\":[\"dictionary\"],\"dzQfDY\":[\"أكتوبر\"],\"e0NrBM\":[\"المشروع\"],\"e3pQqT\":[\"اختر نوع إشعار\"],\"e4GHWP\":[\"سحب\"],\"e5CMOi\":[\"متغيرات البيئة أو المتغيرات الإضافية التي تحدد القيم التي يمكن لنوع بيانات الاعتماد حقنها.\"],\"e5VbKq\":[\"قوالب مهام سير العمل\"],\"e6BtDv\":[\"<0>\",[\"0\"],\"<1>\",[\"1\"],\"\"],\"e70-_3\":[\"تبديل وسيلة الإيضاح\"],\"e8GyQg\":[\"المقياس\"],\"e8U63Z\":[\"قم بمزامنة المشروع فقط عندما يطابق الـ ref المدفوع هذا النمط، على سبيل المثال refs/heads/main أو refs/heads/release-*. اتركه فارغًا للمزامنة عند أي حدث دفع أو وسم.\"],\"e91aLH\":[\"عرض جميع أنواع بيانات الاعتماد\"],\"e9k5zp\":[\"يرجى إضافة جدول لملء هذه القائمة. يمكن إضافة الجداول إلى قالب أو مشروع أو مصدر مخزون.\"],\"eAR1n4\":[\"بحث تلقائي لنوع البحث ذي الصلة\"],\"eD_0Fo\":[\"فشل حذف فريق واحد أو أكثر.\"],\"eDjsWq\":[\"إنشاء قالب إشعار جديد\"],\"eGkahQ\":[\"حذف قالب المهمة\"],\"eHx-29\":[\"تفاصيل المصدر\"],\"ePK91l\":[\"تحرير\"],\"ePS9As\":[\"إعدادات RADIUS\"],\"eQkgKV\":[\"مُثبّت\"],\"eRV9Z3\":[\"لم يتم تحديد مهلة\"],\"eRlz2Q\":[\"رقم (أرقام) SMS الوجهة\"],\"eSXF_i\":[\"فشل حذف التطبيق.\"],\"eTsJYJ\":[\"الوصف\"],\"eVJ2lo\":[\"Float\"],\"eXOp7I\":[\"ليس لديك إذن لإزالة المثيلات: \",[\"itemsUnableToremove\"]],\"eXWuGz\":[\"علامة تبويب قائمة القوالب الأخيرة\"],\"eYJ4TK\":[\"لم يتم العثور على المخزون المُنشأ.\"],\"eeke40\":[\"Automation Analytics\"],\"ekUnNJ\":[\"حدد الوسوم\"],\"el9nUc\":[\"الجدول غير نشط\"],\"emqNXf\":[\"فحص Playbook\"],\"eqiT7d\":[\"يحدد الدور الذي سيلعبه هذا المثيل ضمن طوبولوجيا الشبكة. الافتراضي هو \\\"execution\\\".\"],\"espHeZ\":[\"منع الرجوع إلى مجموعة المثيلات: إذا كان مُفعّلاً، فسيمنع المخزون إضافة أي مجموعات مثيلات مؤسسة إلى قائمة مجموعات المثيلات المفضلة لتشغيل قوالب المهام المرتبطة عليها.\"],\"etQEqZ\":[\"ستؤدي إزالة هذا الرابط إلى جعل بقية الفرع يتيمًا وستتسبب في تنفيذه فورًا عند الإطلاق.\"],\"ewSXyG\":[\"حذف \",[\"pluralizedItemName\"],\" بشكل مؤقت؟\"],\"f-fQK9\":[\"مفتاح Grafana API\"],\"f2o-xB\":[\"تأكيد الإلغاء\"],\"f6Hub0\":[\"فرز\"],\"f9yJNM\":[\"يساوي\"],\"fCZSgU\":[\"عرض جميع مجموعات المثيلات\"],\"fDzxi_\":[\"الخروج دون حفظ\"],\"fE2kOY\":[\"تحديد عامل التاريخ\"],\"fGEOCn\":[\"حالة المهمة\"],\"fGLpQj\":[\"فرع/وسم/التزام التحكم بالمصدر\"],\"fGQ9Ug\":[\"حدد بيانات الاعتماد للوصول إلى العُقد التي سيتم تشغيل هذه المهمة عليها. يمكنك تحديد بيانات اعتماد واحدة فقط من كل نوع. بالنسبة لبيانات اعتماد الأجهزة (SSH)، فإن تحديد “المطالبة عند التشغيل” دون تحديد بيانات اعتماد سيتطلب منك تحديد بيانات اعتماد جهاز في وقت التشغيل. إذا حددت بيانات اعتماد وحددت “المطالبة عند التشغيل”، تصبح بيانات الاعتماد المحددة هي القيم الافتراضية التي يمكن تحديثها في وقت التشغيل.\"],\"fJ9xam\":[\"تمكين المثيل\"],\"fKew5B\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"إلغاء المهمة\"],\"other\":[\"إلغاء المهام\"]}]],\"fL7WXr\":[\"التطبيقات\"],\"fMUEsk\":[\"اليوم \",[\"0\"]],\"fMulwN\":[\"تحديث مراجعة المشروع\"],\"fOAyP5\":[\"إدخال نص البحث\"],\"fODqV4\":[\"لم يتم العثور على تلك القيمة. يرجى إدخال أو تحديد قيمة صالحة.\"],\"fQCM-p\":[\"عرض تفاصيل المؤسسة\"],\"fQGOXc\":[\"خطأ!\"],\"fR8DDt\":[\"تأكيد إزالة جميع العقد\"],\"fVjyJ4\":[\"تأكيد إلغاء الربط\"],\"f_Xpp2\":[\"سيؤدي هذا الإجراء إلى إلغاء ربط ما يلي:\"],\"fcTDCh\":[\"قدّم بيانات اعتماد Red Hat أو Red Hat Satellite الخاصة بك\\n أدناه ويمكنك الاختيار من قائمة الاشتراكات المتاحة لديك.\\n سيتم تخزين بيانات الاعتماد التي تستخدمها للاستخدام المستقبلي في\\n استرجاع اشتراكات التجديد أو الموسّعة.\"],\"ff_JYN\":[\"التصفية حسب اسم المجموعة المتداخلة\"],\"fgrmWn\":[\"المطالبة بوضع الفرق عند الإطلاق.\"],\"fhFmMp\":[\"معرّف العميل\"],\"fjX9i5\":[\"لم يتم العثور على المخزون الذكي.\"],\"fk1WEw\":[\"مشفّر\"],\"fld-O4\":[\"جميع المهام\"],\"fnbZWe\":[\"اختياريًا، حدد بيانات الاعتماد المراد استخدامها لإرسال تحديثات الحالة مرة أخرى إلى خدمة webhook.\"],\"foItBN\":[\"يوم عطلة نهاية الأسبوع\"],\"fp4RS1\":[\"content-loading-in-progress\"],\"fpMgHS\":[\"الاثنين\"],\"fqSfXY\":[\"استبدال\"],\"fqmP_m\":[\"المضيف غير قابل للوصول\"],\"fthJP1\":[\"يمكن لخدمات webhook تشغيل المهام باستخدام قالب مهمة سير العمل هذا عن طريق إجراء طلب POST إلى عنوان URL هذا.\"],\"fwX7gC\":[\"VMware vCenter\"],\"g4o5Lr\":[\"مفصّل\"],\"g6ekO4\":[\"فشل تبديل المضيف.\"],\"g7CZ-8\":[\"تسجيل الدخول باستخدام GitHub Enterprise Organizations\"],\"g9d3sF\":[\"نص رسالة البدء\"],\"gALXcv\":[\"حذف هذه العقدة\"],\"gBnBJa\":[\"مهمة سير العمل المصدر\"],\"gDx5MG\":[\"تحرير الرابط\"],\"gIGcbR\":[\"الحد الأقصى لعدد المهام التي تعمل بشكل متزامن على هذه المجموعة. يعني الصفر عدم فرض أي حد.\"],\"gJccsJ\":[\"رسالة الموافقة على سير العمل\"],\"gK06zh\":[\"إضافة قالب مهمة\"],\"gM3pS9\":[\"بيئات التنفيذ\"],\"gN3aF4\":[\"LDAP5\"],\"gSVH9P\":[\"مزامنة جميع المصادر\"],\"gUaMtt\":[\"عند انتهاء المهلة\"],\"gVYePj\":[\"إنشاء فريق جديد\"],\"gWlcwd\":[\"حالة آخر مهمة\"],\"gYWK-5\":[\"عرض إعدادات واجهة المستخدم\"],\"gZXc5U\":[\"عدد المستخدمين المميزين الذين يجب أن يوافقوا قبل أن يستمر سير العمل. الرفض الواحد يرفض العقدة دائمًا.\"],\"gZaMqy\":[\"تسجيل الدخول باستخدام GitHub Teams\"],\"gZkstf\":[\"إذا تم التمكين، فسيؤدي ذلك إلى تخزين الحقائق المجمعة بحيث يمكن عرضها على مستوى المضيف. يتم الاحتفاظ بالحقائق وحقنها في ذاكرة التخزين المؤقت للحقائق في وقت التشغيل.\"],\"gcFnpl\":[\"حالة المهمة\"],\"geTfDb\":[\"عرض تفاصيل المهمة\"],\"ged_ZE\":[\"المؤسسة\"],\"gezukD\":[\"حدد مهمة لإلغائها\"],\"gfyddN\":[\"تحميل ملف .zip\"],\"gh06VD\":[\"المخرجات\"],\"ghJsq8\":[\"التمرير للأول\"],\"gmB6oO\":[\"الجدول\"],\"gmBQqV\":[\"تحديث المشروع\"],\"gnveFZ\":[\"علامة تبويب الخطأ القياسي\"],\"goVc-x\":[\"تحرير تكوين ملحق بيانات الاعتماد\"],\"go_DGX\":[\"إضافة أدوار الفريق\"],\"gpKdxJ\":[\"حدد سؤالاً لحذفه\"],\"gpmbqk\":[\"المتغيرات\"],\"gpnvle\":[\"خطأ في الحذف\"],\"gsj32g\":[\"إلغاء مزامنة المشروع\"],\"gtB4z-\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" ساعة\"],\"other\":[\"#\",\" ساعات\"]}]],\"gwKtbI\":[\"في التوثيق و\"],\"h25sKn\":[\"إدارة الاشتراك\"],\"h51QFW\":[\"YAML\"],\"h8DugX\":[\"التسميات\"],\"hAjDQy\":[\"حدد الحالة\"],\"hBHRCF\":[\"الحد الأدنى لعدد المثيلات التي سيتم تعيينها\\n تلقائيًا لهذه المجموعة عند اتصال مثيلات جديدة.\"],\"hEBjSg\":[\"Red Hat Satellite 6\"],\"hEnNCI\":[\"أزل البحث الحالي المتعلق بحقائق ansible لتمكين بحث آخر باستخدام هذا المفتاح.\"],\"hG89Ed\":[\"الصورة\"],\"hHKoQD\":[\"حدد عناوين الأقران\"],\"hLDu5N\":[\"تحرير التطبيق\"],\"hNudM0\":[\"تعيين قيمة لهذا الحقل\"],\"hPa_zN\":[\"المؤسسة (الاسم)\"],\"hQ0dMQ\":[\"إضافة مضيف جديد\"],\"hQRttt\":[\"إرسال\"],\"hVPa4O\":[\"حدد خيارًا\"],\"hX8KyU\":[\"فشلت هذه المهمة وليس لها مخرجات.\"],\"hXDKWN\":[\"تفاصيل التردد\"],\"hXzOVo\":[\"التالي\"],\"hYH0cE\":[\"هل أنت متأكد من أنك تريد إرسال طلب إلغاء هذه المهمة؟\"],\"hYgDIe\":[\"إنشاء\"],\"hZ6znB\":[\"المنفذ\"],\"hZke6f\":[\"هل أنت متأكد من أنك تريد تعطيل المصادقة المحلية؟ قد يؤثر ذلك على قدرة المستخدمين على تسجيل الدخول وقدرة مسؤول النظام على التراجع عن هذا التغيير.\"],\"hc_ufD\":[\"وسوم المهمة\"],\"hdyeZ0\":[\"حذف المهمة\"],\"he3ygx\":[\"نسخ\"],\"heqHpI\":[\"المسار الأساسي للمشروع\"],\"hg6l4j\":[\"مارس\"],\"hgJ0FN\":[\"قم بإجراء بحث لتحديد مرشح مضيف\"],\"hgr8eo\":[\"العناصر\"],\"hgvbYY\":[\"سبتمبر\"],\"hhzh14\":[\"لم نتمكن من العثور على تراخيص مرتبطة بهذا الحساب.\"],\"hi1n6B\":[\"تحديث الإعدادات المتعلقة بالمهام ضمن \",[\"brandName\"]],\"hiDMCa\":[\"التوفير\"],\"hjsbgA\":[\"متغيرات إضافية\"],\"hjwN_s\":[\"اسم المورد\"],\"hlbQEq\":[\"بيانات اعتماد التحقق من توقيع المحتوى\"],\"hmEecN\":[\"مهمة الإدارة\"],\"hmjNLv\":[\"السمة المفضّلة\"],\"hty0d5\":[\"الاثنين\"],\"hvs-Js\":[\"معلومات التطبيق\"],\"i0VMLn\":[\"رسالة رفض سير العمل\"],\"i2izXk\":[\"الجدول يفتقد rrule\"],\"i4_LY_\":[\"كتابة\"],\"i9sC0B\":[\"إضافة أذونات الفريق\"],\"iASwqf\":[\"This action will cancel the following job:\"],\"iCFhEl\":[\"رقم هاتف المصدر\"],\"iDNBZe\":[\"الإشعارات\"],\"iDWfOR\":[\"فشل الموافقة على موافقة سير عمل واحدة أو أكثر.\"],\"iDjyID\":[\"عرض تفاصيل بيانات الاعتماد\"],\"iE1s1P\":[\"إطلاق سير العمل\"],\"iEUzMn\":[\"النظام\"],\"iH8pgl\":[\"رجوع\"],\"iI4bLJ\":[\"آخر تسجيل دخول\"],\"iIVceM\":[\"خطأ في النسخ\"],\"iJWOeZ\":[\"لا يوجد JSON متاح\"],\"iJiCFw\":[\"تفاصيل المجموعة\"],\"iLO3nG\":[\"عدد التشغيلات\"],\"iMaC2H\":[\"مجموعات المثيلات\"],\"iPp22p\":[\"يستخدم هذا الجدول قواعد معقدة غير مدعومة في\\n واجهة المستخدم. يرجى استخدام API لإدارة هذا الجدول.\"],\"iQdYL_\":[\"إضافة مخزون ذكي\"],\"iRWxmA\":[\"تعطيل التحقق من SSL\"],\"iTylMl\":[\"القوالب\"],\"iWKCzl\":[\"حدد من قائمة الأدلة الموجودة في المسار الأساسي للمشروع. يوفر المسار الأساسي ودليل Playbook معًا المسار الكامل المستخدم لتحديد موقع Playbooks.\"],\"iXmHtI\":[\"حدد نوع المهمة\"],\"iZBwau\":[\"تحتوي هذه الخطوة على أخطاء\"],\"i_CDGy\":[\"السماح بتجاوز الفرع\"],\"i_Kv21\":[\"إنشاء مصدر جديد\"],\"ifckL-\":[\"تحديد الصف\"],\"ifdViT\":[\"عرض تفاصيل المخزون\"],\"ig0q8s\":[\"يتم تطبيق هذا المخزون على جميع عقد سير العمل ضمن سير العمل هذا (\",[\"0\"],\") التي تطالب بمخزون.\"],\"inP0J5\":[\"تفاصيل الاشتراك\"],\"isRobC\":[\"جديد\"],\"itlxml\":[\"مهمة الإدارة\"],\"ittbfT\":[\"يتطلب البحث بواسطة ansible_facts صيغة خاصة. راجع\"],\"itu2NQ\":[\"أنواع حالة الرابط\"],\"j1a5f1\":[\"تحرير المضيف\"],\"j6gqC6\":[\"الفرع المراد استخدامه في تشغيل المهمة. يتم استخدام القيمة الافتراضية للمشروع إذا كان فارغًا. مسموح به فقط إذا تم تعيين حقل allow_override الخاص بالمشروع على true.\"],\"j7zAEo\":[\"حالات سير العمل\"],\"j8QfHv\":[\"تحرير المضيف\"],\"jAxdt7\":[\"إلغاء الحذف\"],\"jBGh4u\":[\"تعريف مخزون المجموعات المتداخلة:\"],\"jCVu9g\":[\"Cancel selected job\"],\"jEJtMA\":[\"موافقات سير العمل المعلّقة\"],\"jEw0Mr\":[\"يرجى إدخال عنوان URL صالح\"],\"jFaaUJ\":[\"أساسي\"],\"jGUu_G\":[\"الموافقات المطلوبة\"],\"jIaeJK\":[\"الاستبيان\"],\"jJdwCB\":[\"الرجوع\"],\"jKibyt\":[\"إعادة تعيين التكبير\"],\"jMyq_x\":[\"Workflow Job 1/\",[\"0\"]],\"jaUa4e\":[\"تُستخدم هذه البيانات لتحسين\\n الإصدارات المستقبلية من برنامج Tower وللمساعدة في\\n تبسيط تجربة العملاء ونجاحهم.\"],\"jc86YO\":[\"المطالبة بالحد عند الإطلاق.\"],\"ji-8F7\":[\"بيانات الاعتماد هذه قيد الاستخدام حاليًا من قبل موارد أخرى. هل أنت متأكد من أنك تريد حذفها؟\"],\"jiE6Vn\":[\"المؤسسات\"],\"jifz9m\":[\"لا شيء (تشغيل مرة واحدة)\"],\"jkQOCm\":[\"إضافة استثناءات\"],\"jljuYN\":[\"الخدمة التي سيتم قبول طلبات Webhook منها.\"],\"jluR-N\":[\"تحذير: \",[\"selectedValue\"],\" هو رابط إلى \",[\"0\"],\" وسيتم حفظه على هذا النحو.\"],\"joAQQS\":[\"The inventories will be in a pending status until the final delete is processed.\"],\"jqVo_k\":[\"هنا.\"],\"jqzUyM\":[\"غير متاح\"],\"jrkyDn\":[\"بدأ التشغيل\"],\"jrsFB3\":[\"علامة تبويب المخرجات\"],\"jsz-PY\":[\"تاريخ انتهاء غير معروف\"],\"jwmkq1\":[\"بيانات اعتماد الجهاز\"],\"jzD-D6\":[\"تكون علامات التخطي مفيدة عندما يكون لديك Playbook كبير وتريد تخطي أجزاء معينة من play أو مهمة. استخدم الفواصل لفصل علامات متعددة. راجع الوثائق للحصول على تفاصيل حول استخدام العلامات.\"],\"k020kO\":[\"دفق النشاط\"],\"k2dzu3\":[\"ينتهي في UTC\"],\"k30JvV\":[\"الفئة المحددة\"],\"k5nHqi\":[\"بيئة التنفيذ التي سيتم استخدامها عند تشغيل قالب المهمة هذا. يمكن تجاوز بيئة التنفيذ التي تم حلها عن طريق تعيين بيئة مختلفة بشكل صريح لقالب المهمة هذا.\"],\"k6OGfu\":[\"Select the Ansible collection providing the inventory plugin used to sync from vCenter. The community.vmware collection is deprecated in favor of the newer vmware.vmware collection. The selection is saved as the \\\"plugin\\\" key in the source variables.\"],\"kALwhk\":[\"seconds\"],\"kDWprA\":[\"تُستخدم هذه الوسائط مع الوحدة المحددة.\"],\"kEhyki\":[\"الحقل ينتهي بالقيمة.\"],\"kLja4m\":[\"بدأ بواسطة\"],\"kLk5bG\":[\"رسالة البدء\"],\"kNUkGV\":[\"نوع البحث\"],\"kNfXib\":[\"اسم الوحدة\"],\"kODvZJ\":[\"الاسم الأول\"],\"kOVkPY\":[\"تبديل المثيل\"],\"kP-3Hw\":[\"العودة إلى المخزونات\"],\"kQerRU\":[\"يجب ألا يحتوي هذا الحقل على مسافات\"],\"kX-GZH\":[\"إعادة إطلاق المهمة\"],\"kXzl6Z\":[\"متغيرات المصدر\"],\"kYDvK4\":[\"بما في ذلك الملف\"],\"kah1PX\":[\"عرض أمثلة YAML في\"],\"kaux7o\":[\"الكتابة فوق المجموعات والمضيفين المحليين من مصدر المخزون البعيد\"],\"kgtWJ0\":[\"حدد مجموعات المثيلات التي سيتم تشغيل قالب المهمة هذا عليها.\"],\"kiMHN-\":[\"مدقق النظام\"],\"kjrq_8\":[\"مزيد من المعلومات\"],\"kkDQ8m\":[\"الخميس\"],\"kkc8HD\":[\"تمكين تسجيل الدخول المبسّط لتطبيقات \",[\"brandName\"],\" الخاصة بك\"],\"kpRn7y\":[\"حذف الأسئلة\"],\"kpnWnY\":[\"بعد كل تحديث للمشروع تتغير فيه مراجعة SCM، قم بتحديث المخزون من المصدر المحدد قبل تنفيذ مهام المهمة. هذا مخصص للمحتوى الثابت، مثل تنسيق ملف .ini لمخزون Ansible.\"],\"ks-HYT\":[\"إضافة أذونات المستخدم\"],\"ks71ra\":[\"الاستثناءات\"],\"kt8V8M\":[\"حدد فرعًا لسير العمل.\"],\"ktPOqw\":[\"راجع\"],\"kuIbuV\":[\"لا يمكن تشغيل فحوصات الصحة إلا على عقد التنفيذ.\"],\"ku__5b\":[\"الثاني\"],\"kyAi7k\":[\"المثيل\"],\"kyHUFI\":[\"كلمة مرور Vault | \",[\"credId\"]],\"kyfr2I\":[\"في حالة تحديده، ستتم إزالة أي مضيفين ومجموعات كانوا موجودين سابقًا في المصدر الخارجي ولكن تمت إزالتهم الآن من المخزون. سيتم ترقية المضيفين والمجموعات التي لم تكن مُدارة بواسطة مصدر المخزون إلى المجموعة التالية التي تم إنشاؤها يدويًا أو إذا لم تكن هناك مجموعة تم إنشاؤها يدويًا لترقيتهم إليها، فسيتم تركهم في المجموعة الافتراضية \\\"all\\\" للمخزون.\"],\"kz7G1W\":[\"هل أنت متأكد من أنك تريد إزالة وصول \",[\"0\"],\" من \",[\"1\"],\"؟ سيؤثر ذلك على جميع أعضاء الفريق.\"],\"l4MzBY\":[[\"update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" ثانية\"],\"other\":[\"#\",\" ثوانٍ\"]}]],\"l4k9lc\":[\"العقدة الأولى\"],\"l5XUoS\":[\"بيانات اعتماد Webhook\"],\"l75CjT\":[\"نعم\"],\"l9ZmWD\":[[\"scm_update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" ثانية\"],\"other\":[\"#\",\" ثوانٍ\"]}]],\"lCF0wC\":[\"تحديث\"],\"lJFsGr\":[\"إنشاء مجموعة مثيلات جديدة\"],\"lKxoCA\":[\"توسيع أحداث المهمة\"],\"lM9cbX\":[\"لاحظ أنك قد لا تزال ترى المجموعة في القائمة بعد إلغاء الربط إذا كان المضيف عضوًا أيضًا في العناصر الفرعية لتلك المجموعة. تعرض هذه القائمة جميع المجموعات التي يرتبط بها المضيف بشكل مباشر وغير مباشر.\"],\"lURfHJ\":[\"طي القسم\"],\"lWkKSO\":[\"دقيقة\"],\"lWmv3p\":[\"مصادر المخزون\"],\"lYDyXS\":[\"المخزون الذكي\"],\"l_jRvf\":[\"اكتمل Playbook\"],\"lfoFSg\":[\"حذف المضيف\"],\"lgm7y2\":[\"تحرير\"],\"lgphOX\":[\"القيمة المتوقعة\"],\"lhgU4l\":[\"لم يتم العثور على القالب.\"],\"lhkaAC\":[\"تجريبي\"],\"ljGeYw\":[\"مستخدم عادي\"],\"lk5WJ7\":[\"host-name-\",[\"0\"]],\"lkgIYt\":[\"Pagerduty\"],\"lo-rJO\":[\"التحريك للأسفل\"],\"ltvmAF\":[\"لم يتم العثور على التطبيق.\"],\"lu2qW5\":[\"أي\"],\"lucaxq\":[\"لا يمكن تمكين مجمّع السجلات دون توفير مضيف مجمّع التسجيل ونوع مجمّع التسجيل.\"],\"luxcrf\":[\"مزيد من المعلومات حول \",[\"label\"]],\"lyjq5X\":[\"Slack\"],\"m-eV2_\":[\"لم يتم العثور على مجموعة الحاويات.\"],\"m16xKo\":[\"إضافة\"],\"m1tKEz\":[\"يتمتع مسؤولو النظام بوصول غير مقيد إلى جميع الموارد.\"],\"m2ErDa\":[\"فشل\"],\"m3k6kn\":[\"فشل إلغاء مزامنة مصدر المخزون المُنشأ\"],\"m5MOUX\":[\"العودة إلى المضيفين\"],\"mGJIOu\":[\"يُنشئ إدخال المخزون المُنشأ هذا\\n مجموعة لكلتا الفئتين ويستخدم\\n الحد (نمط المضيف) لإرجاع المضيفين الموجودين فقط\\n في تقاطع هاتين المجموعتين.\"],\"mNBZ1R\":[\"ملاحظة: يفترض هذا الحقل أن اسم الجهاز البعيد هو “origin”.\"],\"mOFgdC\":[\"الحد الأقصى\"],\"mPiYpP\":[\"أنواع حالة العقدة\"],\"mSv_7k\":[\"السنوات الثلاث الماضية\"],\"mXRKES\":[\"LDAP4\"],\"mXfNlE\":[\"هذا الجدول يفتقد قيم الاستبيان المطلوبة\"],\"mYGY3B\":[\"التاريخ\"],\"mZiQNk\":[\"تصعيد الامتيازات: إذا تم التمكين، فقم بتشغيل playbook هذا كمسؤول.\"],\"m_tELA\":[\"إلغاء الإزالة\"],\"ma7cO9\":[\"فشل حذف المجموعة \",[\"0\"],\".\"],\"mahPLs\":[\"كلمة مرور تصعيد الامتيازات\"],\"mcGG2z\":[[\"minutes\"],\" دقيقة \",[\"seconds\"],\" ثانية\"],\"mdNruY\":[\"رمز API المميز\"],\"mgJ1oe\":[\"تأكيد الحذف\"],\"mgjN5u\":[\"إلغاء ربط المثيل من مجموعة المثيلات؟\"],\"mhg7Av\":[\"تشغيل أمر مؤقت\"],\"mi9ffh\":[\"تفاصيل المضيف\"],\"mk4anB\":[\"افتراضي المتصفح\"],\"mlDUq3\":[\"تم التعديل بواسطة (اسم المستخدم)\"],\"mnm1rs\":[\"GitHub Default\"],\"moZ0VP\":[\"حالة المزامنة\"],\"momgZ_\":[\"اسم قالب مهمة سير العمل.\"],\"mqAOoN\":[\"اختر دليل Playbook\"],\"n-37ya\":[\"تأكيد تعطيل التفويض المحلي\"],\"n-LISx\":[\"حدث خطأ أثناء حفظ سير العمل.\"],\"n-ZioH\":[\"خطأ في جلب المشروع المُحدّث\"],\"n-qmM7\":[\"حدد مفتاح حساب خدمة بتنسيق JSON لملء الحقول التالية تلقائيًا.\"],\"n12Go4\":[\"فشل تحميل المجموعات ذات الصلة.\"],\"n60kiJ\":[\"* سيتم استرجاع هذا الحقل من نظام إدارة أسرار خارجي باستخدام بيانات الاعتماد المُحددة.\"],\"n6mYYY\":[\"رسالة انتهاء مهلة سير العمل\"],\"n9Idrk\":[\"(مقتصر على أول 10)\"],\"n9lz4A\":[\"المهام الفاشلة\"],\"nBAIS_\":[\"عرض تفاصيل الحدث\"],\"nC35Na\":[\"Are you sure you want delete the group below?\"],\"nCU-1E\":[\"يُمكّن من إنشاء عنوان URL\\n لاستدعاء التوفير. باستخدام عنوان URL يمكن للمضيف الاتصال بـ \",[\"brandName\"],\"\\n وطلب تحديث تكوين باستخدام قالب المهمة\\n هذا\"],\"nCY9IL\":[\"تم تخطي المضيف\"],\"nDjIzD\":[\"عرض تفاصيل المشروع\"],\"nGbNEN\":[\"الوقت بالثواني لاعتبار المشروع حاليًا. أثناء عمليات تشغيل المهام والاستدعاءات، سيقوم نظام المهام بتقييم الطابع الزمني لآخر تحديث للمشروع. إذا كان أقدم من مهلة ذاكرة التخزين المؤقت، فلا يُعتبر حاليًا، وسيتم إجراء تحديث جديد للمشروع.\"],\"nI54lc\":[\"حذف المشروع قبل المزامنة\"],\"nJPBvA\":[\"ملف أو دليل أو نص برمجي\"],\"nJTOTZ\":[\"بيئة التنفيذ التي ستُستخدم للمهام داخل هذه المؤسسة. سيتم استخدام هذا كخيار احتياطي عندما لم يتم تعيين بيئة تنفيذ صراحةً على مستوى المشروع أو قالب المهمة أو سير العمل.\"],\"nLGsp4\":[\"تمكين استبيان لقالب مهمة سير العمل هذا.\"],\"nMiE53\":[\"المتغير المُفعّل\"],\"nOhz3x\":[\"تسجيل الخروج\"],\"nPH1Cr\":[\"قد تكون بيئات التنفيذ هذه قيد الاستخدام من قبل موارد أخرى تعتمد عليها. هل أنت متأكد من أنك تريد حذفها على أي حال؟\"],\"nQOwDS\":[[\"0\",\"selectordinal\",{\"3\":[\"ثالث \",[\"dayOfWeek\"]],\"4\":[\"رابع \",[\"dayOfWeek\"]],\"5\":[\"خامس \",[\"dayOfWeek\"]],\"one\":[\"أول \",[\"dayOfWeek\"]],\"two\":[\"ثاني \",[\"dayOfWeek\"]]}]],\"nRXCOn\":[\"عدد المضيفين الفاشلين\"],\"nSTT11\":[\"إعادة الإطلاق من:\"],\"nTENWI\":[\"العودة إلى إدارة الاشتراك.\"],\"nU16mp\":[\"مهلة ذاكرة التخزين المؤقت\"],\"nZPX7r\":[\"تحذير: تغييرات غير محفوظة\"],\"nZW6P0\":[\"المنطقة الزمنية المحلية\"],\"nZYB4j\":[\"لا توجد حالة متاحة\"],\"nZYxse\":[\"إلغاء ربط المضيف من المجموعة؟\"],\"n_qDNz\":[\"Switch to dark mode\"],\"naCW6Z\":[\"أبريل\"],\"ncxIQL\":[\"فشل إلغاء ربط مثيل واحد أو أكثر.\"],\"neiOWk\":[\"عرض توثيق المخزون المُنشأ هنا\"],\"nfnm9D\":[\"اسم المؤسسة\"],\"ng00aZ\":[\"مرشح المضيف\"],\"nhxAdQ\":[\"كلمة مفتاحية\"],\"nlsWzF\":[\"يرجى إضافة أسئلة الاستبيان.\"],\"nnY7VU\":[\"النطاق الفرعي لـ Pagerduty\"],\"noGZlf\":[\"مهلة ذاكرة التخزين المؤقت (ثوانٍ)\"],\"npGo-z\":[\"تسجيل الدخول باستخدام \",[\"label\"]],\"nuh_Wq\":[\"عنوان URL لـ Webhook\"],\"nvUq8j\":[\"1 (مفصّل)\"],\"nzozOC\":[\"حذف المستخدم\"],\"nzr1qE\":[\"تم رفض تحميل الملف. يرجى تحديد ملف .json واحد.\"],\"o-JPE2\":[\"لم يتم العثور على أسئلة استبيان.\"],\"o0RwAq\":[\"تسجيل الدخول باستخدام GitHub Enterprise\"],\"o0x5-R\":[\"حدد قيمة لهذا الحقل\"],\"o4NRE0\":[\"إدخال قيمة البحث المتقدم\"],\"o5J6dR\":[\"حدد الشروط التي يجب بموجبها تنفيذ هذه العقدة\"],\"o9R2tO\":[\"اتصال SSL\"],\"oABS9f\":[\"قدّم قيمة لهذا الحقل أو حدد خيار المطالبة عند الإطلاق.\"],\"oB5EwG\":[\"نظام إدارة الأسرار الخارجي\"],\"oBmCtD\":[\"Are you sure you want delete the groups below?\"],\"oC5JSb\":[\"فشل جلب بيانات المشروع المُحدّثة.\"],\"oCKCYp\":[\"تم إرسال الإشعار بنجاح\"],\"oEijQ7\":[\"نسخة غير حساسة لحالة الأحرف من startswith.\"],\"oFtmtl\":[\"Select the inventory containing the hosts\\n you want this job to manage.\"],\"oGKq12\":[\"إنشاء مجموعتين، الاقتصار على التقاطع\"],\"oH1Qle\":[\"عنوان URL لـ webhook لقالب مهمة سير العمل هذا.\"],\"oHOOxn\":[\"بشكل افتراضي، نقوم بجمع وإرسال بيانات التحليلات حول استخدام الخدمة إلى Red Hat. هناك فئتان من البيانات التي تجمعها الخدمة. لمزيد من المعلومات، راجع <0>صفحة وثائق Tower هذه. قم بإلغاء تحديد المربعات التالية لتعطيل هذه الميزة.\"],\"oII7vS\":[\"إعدادات GitHub\"],\"oKMFX4\":[\"لم يتم التحديث أبدًا\"],\"oKbBFU\":[\"# source with sync failures.\"],\"oNOjE7\":[\"تاريخ/وقت الانتهاء\"],\"oNZQUQ\":[\"بيانات اعتماد للمصادقة مع Kubernetes أو OpenShift\"],\"oQqtoP\":[\"العودة إلى مهام الإدارة\"],\"oRt7Uv\":[[\"interval\"],\" years\"],\"oTDA5P\":[[\"0\",\"plural\",{\"one\":[\"يتم استخدام هذا المثيل حاليًا بواسطة موارد أخرى. هل أنت متأكد من أنك تريد حذفه؟\"],\"other\":[\"قد يؤثر إلغاء توفير هذه المثيلات على موارد أخرى تعتمد عليها. هل أنت متأكد من أنك تريد الحذف على أي حال؟\"]}]],\"oWvSIB\":[\"بريد المرسل الإلكتروني\"],\"oX_mCH\":[\"خطأ في مزامنة المشروع\"],\"oZvDsd\":[[\"interval\"],\" hours\"],\"ocUvR-\":[\"خطأ\"],\"ofO19Q\":[\"تسجيل الدخول باستخدام GitHub Enterprise Teams\"],\"ofcQVG\":[\"نافذة التغييرات غير المحفوظة\"],\"olEUh2\":[\"ناجح\"],\"opS--k\":[\"العودة إلى مجموعات المثيلات\"],\"orh4t6\":[\"المضيف جيد\"],\"osCeRO\":[\"عرض إعدادات Azure AD\"],\"ot7qsv\":[\"مسح جميع المرشحات\"],\"ovBPCi\":[\"افتراضي\"],\"owBGkJ\":[\"لم تطابق النهاية قيمة متوقعة (\",[\"0\"],\")\"],\"owQ8JH\":[\"إضافة مجموعة مثيلات\"],\"ozbhWy\":[\"خطأ في الحذف\"],\"p-nfFx\":[\"اسحب ملفًا هنا أو تصفح للتحميل\"],\"p-ngUo\":[\"إلغاء المتابعة\"],\"p-pp9U\":[\"string\"],\"p2LEhJ\":[\"رمز وصول شخصي\"],\"p2_GCq\":[\"تأكيد كلمة المرور\"],\"p3PM8G\":[\"إعادة الإطلاق من العقدة الأولى\"],\"p6-JME\":[\"الأول يجلب جميع المراجع. الثاني يجلب طلب سحب Github رقم 62، وفي هذا المثال يجب أن يكون الفرع “pull/62/head”.\"],\"pAtylB\":[\"غير موجود\"],\"pCCQER\":[\"متاح عالميًا\"],\"pH8j40\":[\"المضيفون النشطون المحذوفون سابقًا\"],\"pHyx6k\":[\"اختيار متعدد (تحديد واحد)\"],\"pKQcta\":[\"تخصيص مواصفات pod\"],\"pOJNDA\":[\"الأمر\"],\"pOd3wA\":[\"اضغط 'Enter' لإضافة المزيد من خيارات الإجابة. خيار إجابة\\nواحد لكل سطر.\"],\"pOhwkU\":[\"سيؤدي هذا الإجراء إلى إلغاء ربط الدور التالي من \",[\"0\"],\":\"],\"pRZ6hs\":[\"التشغيل عند\"],\"pSypIG\":[\"عرض الوصف\"],\"pYENvg\":[\"نوع منح التفويض\"],\"pZJ0-s\":[\"الحد الأقصى لعدد التفريعات المسموح بها عبر جميع المهام التي تعمل بشكل متزامن على هذه المجموعة. يعني الصفر عدم فرض أي حد.\"],\"pa1SrG\":[[\"interval\"],\" days\"],\"peCAyQ\":[\"عرض إعدادات RADIUS\"],\"pfw0Wr\":[\"الكل\"],\"pguZh2\":[\"أنشئ متغيرات من تعبيرات jinja2. يمكن أن يكون هذا مفيدًا\\n إذا كانت المجموعات المُنشأة التي تحددها لا تحتوي على المضيفين\\n المتوقعين. يمكن استخدام هذا لإضافة hostvars من التعبيرات حتى\\n تعرف ما هي القيم الناتجة عن تلك التعبيرات.\"],\"phTgAm\":[\"من الصعب تقديم مواصفات\\n للمخزون لحقائق Ansible، لأنه لملء\\n حقائق النظام تحتاج إلى تشغيل playbook مقابل\\n المخزون الذي يحتوي على `gather_facts: true`. ستختلف\\n الحقائق الفعلية من نظام إلى آخر.\"],\"pkY73W\":[\"Rocket.Chat\"],\"pn7Xy3\":[\"انظر Django\"],\"poMgBa\":[\"المطالبة بفرع SCM عند الإطلاق.\"],\"ppcQy0\":[\"تعيين التكبير إلى 100% وتوسيط الرسم البياني\"],\"prydaE\":[\"إخفاقات مزامنة المشروع\"],\"pw2VDK\":[\"آخر \",[\"weekday\"],\" من \",[\"month\"]],\"q-Uk_P\":[\"فشل حذف نوع بيانات اعتماد واحد أو أكثر.\"],\"q-hNag\":[\"المجموعة\"],\"q45OlW\":[\"المناطق\"],\"q5tQBE\":[\"تعيين النوع مُعطّل لعمليات البحث التقريبية في حقل البحث ذي الصلة\"],\"q67y3T\":[\"لم يتم العثور على قالب الإشعار.\"],\"qAlZNb\":[\"لا يمكنك اتخاذ إجراء بشأن موافقات سير العمل التالية: \",[\"itemsUnableToDeny\"]],\"qCUUnr\":[\"لا يوجد مضيفون متبقون\"],\"qChjCy\":[\"أول تشغيل\"],\"qD-pvR\":[\"معرّف لوحة المعلومات (اختياري)\"],\"qEMgTP\":[\"خطأ في مزامنة مصدر المخزون\"],\"qJK-de\":[\"تسجيل الدخول باستخدام OIDC\"],\"qS0GhO\":[\"بيئة التنفيذ مفقودة\"],\"qSSVmd\":[\"قنوات أو مستخدمو الوجهة\"],\"qSSg1L\":[\"الربط بعقدة متاحة\"],\"qWD0iN\":[\"تُستخدم هذه البيانات لتحسين\\n الإصدارات المستقبلية من البرنامج ولتوفير\\n Automation Analytics.\"],\"qXRYa2\":[\"تتبع أحدث التزام للوحدات الفرعية على الفرع\"],\"qYkrfg\":[\"تفاصيل استدعاء التوفير\"],\"qZ2MTC\":[\"هذه هي الوحدات التي يدعم \",[\"brandName\"],\" تشغيل الأوامر عليها.\"],\"qgjtIt\":[\"التقارب\"],\"qlhQw_\":[\"مزامنة المخزون\"],\"qliDbL\":[\"أرشيف بعيد\"],\"qlwLcm\":[\"استكشاف الأخطاء وإصلاحها\"],\"qmBmJJ\":[\"هذه هي المرة الوحيدة التي سيتم فيها عرض سر العميل.\"],\"qmYgP7\":[\"تمت الموافقة\"],\"qqeAJM\":[\"أبدًا\"],\"qtFFSS\":[\"تحديث المراجعة عند الإطلاق\"],\"qtaMu8\":[\"المخزون (الاسم)\"],\"qvCD_i\":[\"تتضمن الأمثلة:\"],\"qwaCoN\":[\"تحديث التحكم بالمصدر\"],\"qxZ5RX\":[\"المضيفون\"],\"qznBkw\":[\"نافذة رابط سير العمل\"],\"r6Aglb\":[\"أدخل الحاقنات باستخدام صيغة JSON أو YAML. راجع توثيق Ansible Controller للحصول على مثال على الصيغة.\"],\"r6y-jM\":[\"تحذير\"],\"r6zgGo\":[\"ديسمبر\"],\"r8ojWq\":[\"تأكيد الإزالة\"],\"r8oq0Y\":[\"آخر 24 ساعة\"],\"rBdPPP\":[\"فشل حذف \",[\"name\"],\".\"],\"rE95l8\":[\"نوع العميل\"],\"rG3WVm\":[\"تحديد\"],\"rHK_Sg\":[\"يجب استبدال البيئة الافتراضية المخصصة \",[\"virtualEnvironment\"],\" ببيئة تنفيذ. لمزيد من المعلومات حول الترحيل إلى بيئات التنفيذ انظر <0>التوثيق.\"],\"rK7UBZ\":[\"إعادة إطلاق جميع المضيفين\"],\"rKS_55\":[\"تخزين الحقائق: إذا تم التمكين، فسيؤدي ذلك إلى تخزين الحقائق المجمعة بحيث يمكن عرضها على مستوى المضيف. يتم الاحتفاظ بالحقائق وحقنها في ذاكرة التخزين المؤقت للحقائق في وقت التشغيل.\"],\"rKTFNB\":[\"حذف نوع بيانات الاعتماد\"],\"rLznGJ\":[\"قالب Jinja2 يتم عرضه مع آثار set_stats الأولية عند إنشاء الموافقة. استخدم هذا لإظهار السياق ذي الصلة للموافِق من خطوات المهمة السابقة. تأتي المتغيرات المتاحة من بيانات set_stats للعقد الأصلية.\"],\"rMrKOB\":[\"فشل مزامنة المشروع.\"],\"rOZRCa\":[\"رابط سير العمل\"],\"rSYkIY\":[\"يجب أن يكون هذا الحقل رقمًا\"],\"rXhu41\":[\"2 (تصحيح)\"],\"rYHzDr\":[\"العناصر لكل صفحة\"],\"r_IfWZ\":[\"تحرير المخزون\"],\"rdUucN\":[\"معاينة\"],\"rfYaVc\":[\"اسم متغير الإجابة\"],\"rfpIXM\":[\"المطالبة بمجموعات المثيلات عند الإطلاق.\"],\"rfx2oA\":[\"نص رسالة سير العمل المعلّق\"],\"riBcU5\":[\"اسم IRC المستعار\"],\"rjVfy3\":[\"توثيق سير العمل\"],\"rjyWPb\":[\"يناير\"],\"rmb2GE\":[\"رفض بواسطة \",[\"0\"],\" - \",[\"1\"]],\"rmt9Tu\":[\"إجمالي المضيفين\"],\"ruhGSG\":[\"إلغاء مزامنة مصدر المخزون\"],\"rvia3m\":[\"المصادقة المتنوعة\"],\"rw1pRJ\":[\"تنزيل الحزمة\"],\"rwWNpy\":[\"المخزونات\"],\"s-MGs7\":[\"الموارد\"],\"s2xYUy\":[\"الكتابة فوق المتغيرات المحلية من مصدر المخزون البعيد\"],\"s3KtlK\":[\"لا يحتوي هذا الجدول على أي تكرارات بسبب الاستثناءات المحددة.\"],\"s4Qnj2\":[\"بيئة التنفيذ\"],\"s4fge-\":[\"الشهر الماضي\"],\"s5aIEB\":[\"حذف قالب مهمة سير العمل\"],\"s5mACA\":[\"تفاصيل المثيل\"],\"s5r5nt\":[[\"0\",\"plural\",{\"one\":[\"تُستخدم مجموعة المثيلات هذه حاليًا من قبل موارد أخرى. هل أنت متأكد من أنك تريد حذفها؟\"],\"other\":[\"قد يؤثر حذف مجموعات المثيلات هذه على موارد أخرى تعتمد عليها. هل أنت متأكد من أنك تريد الحذف على أي حال؟\"]}]],\"s6F6Ks\":[\"لم يتم العثور على مخرجات لهذه المهمة.\"],\"s70SJY\":[\"إعدادات التسجيل\"],\"s8hQty\":[\"عرض جميع المهام.\"],\"s9EKbs\":[\"تعطيل التحقق من SSL\"],\"sAz1tZ\":[\"تأكيد إلغاء الربط\"],\"sBJ5MF\":[\"المصادر\"],\"sCEb_0\":[\"عرض جميع مضيفي المخزون.\"],\"sGodAp\":[\"تجاوز مواصفات Pod\"],\"sMDRa_\":[\"العودة إلى المجموعات\"],\"sOMf4x\":[\"القوالب الأخيرة\"],\"sSFxX6\":[\"تحديث المراجعة عند إطلاق المهمة\"],\"sTkKoT\":[\"حدد صفًا للرفض\"],\"sUyFTB\":[\"جارٍ إعادة التوجيه إلى لوحة المعلومات\"],\"sV3kNp\":[\"مجموعة المثيلات هذه قيد الاستخدام حاليًا من قبل موارد أخرى. هل أنت متأكد من أنك تريد حذفها؟\"],\"sVh4-e\":[\"حذف هذا الرابط\"],\"sW5OjU\":[\"مطلوب\"],\"sZif4m\":[\"إلغاء ربط المجموعة (المجموعات) ذات الصلة؟\"],\"s_XkZs\":[\"بدء\"],\"s_r4Az\":[\"يجب أن يكون هذا الحقل عددًا صحيحًا\"],\"sesAIn\":[\"استخدم رسائل مخصصة لتغيير محتوى\\n الإشعارات المُرسلة عند بدء مهمة أو نجاحها أو فشلها. استخدم\\n الأقواس المعقوفة للوصول إلى معلومات حول المهمة:\"],\"sgRZMG\":[\"عقدة هجينة\"],\"siJgSI\":[\"لم يتم العثور على المستخدم.\"],\"sjMCOP\":[\"آخر تعديل\"],\"sjVfrA\":[\"الأمر\"],\"smFRaX\":[\"تم إطلاق مهمة بالفعل\"],\"sqMsvU\":[[\"0\",\"plural\",{\"one\":[\"#\",\" مصدر به فشل في المزامنة.\"],\"other\":[\"#\",\" مصادر بها فشل في المزامنة.\"]}]],\"sr4LMa\":[\"مصدر المخزون\"],\"svR3aM\":[\"OpenStack\"],\"svy2x9\":[\"يُرجع النتائج التي تحقق هذا الفلتر أو أي فلاتر أخرى.\"],\"sxkWRg\":[\"متقدم\"],\"syupn5\":[\"صورة العلامة التجارية\"],\"syyeb9\":[\"الأول\"],\"t-R8-P\":[\"التنفيذ\"],\"t2q1xO\":[\"تحرير الجدول\"],\"t4v_7X\":[\"حدد نوع عقدة\"],\"t9QlBd\":[\"نوفمبر\"],\"tRm9qR\":[\"تكون العلامات مفيدة عندما يكون لديك Playbook كبير وتريد تشغيل جزء معين من play أو مهمة. استخدم الفواصل لفصل علامات متعددة. راجع الوثائق للحصول على تفاصيل حول استخدام العلامات.\"],\"tVEot_\":[[\"0\",\"plural\",{\"one\":[\"هذا القالب قيد الاستخدام حاليًا من قبل بعض عقد سير العمل. هل أنت متأكد من أنك تريد حذفه؟\"],\"other\":[\"قد يؤثر حذف هذه القوالب على بعض عقد سير العمل التي تعتمد عليها. هل أنت متأكد من أنك تريد الحذف على أي حال؟\"]}]],\"tXkhj_\":[\"بدء\"],\"t_YqKh\":[\"إزالة\"],\"tbSVlt\":[\"إزالة وصول المستخدم\"],\"tfDRzk\":[\"حفظ\"],\"tfh2eq\":[\"انقر لإنشاء رابط جديد لهذه العقدة.\"],\"tgPwON\":[\"العامل\"],\"tgSBSE\":[\"إزالة الرابط\"],\"tgWuMB\":[\"تم التعديل\"],\"thJljW\":[\"تحذير: \"],\"toJdZA\":[\"Reorder\"],\"tpCmSt\":[\"policy rules.\"],\"tqlcfo\":[\"إلغاء التوفير\"],\"trjiIV\":[\"فشل ربط القرين.\"],\"tst44n\":[\"الأحداث\"],\"twE5a9\":[\"فشل حذف بيانات الاعتماد.\"],\"txNbrI\":[\"فرع التحكم بالمصدر\"],\"ty2DZX\":[\"هذه المؤسسة قيد الاستخدام حاليًا من قبل موارد أخرى. هل أنت متأكد من أنك تريد حذفها؟\"],\"tzgOKK\":[\"تم اتخاذ إجراء بشأن هذا بالفعل\"],\"u-sh8m\":[\"/ (جذر المشروع)\"],\"u4ex5r\":[\"يوليو\"],\"u4n8Fm\":[\"فشل إزالة الأقران.\"],\"u4x6Jy\":[\"العودة إلى المهام\"],\"u5AJST\":[\"عدد العمليات المتوازية أو المتزامنة المراد استخدامها أثناء تنفيذ playbook. لن يؤدي عدم إدخال أي قيمة إلى استخدام القيمة الافتراضية من ملف تكوين ansible. يمكنك العثور على مزيد من المعلومات\"],\"u7f6WK\":[\"عرض جميع موافقات سير العمل.\"],\"u84wS1\":[\"خطأ في إلغاء المهمة\"],\"uAQUqI\":[\"الحالة\"],\"uAhZbx\":[\"مصادر المخزون التي بها إخفاقات\"],\"uCjD1h\":[\"انتهت جلستك. يرجى تسجيل الدخول للمتابعة من حيث توقفت.\"],\"uImfEm\":[\"رسالة سير العمل المعلّق\"],\"uJz8NJ\":[\"البحث مُعطّل أثناء تشغيل المهمة\"],\"uPRp5U\":[\"إلغاء البحث\"],\"uTDtiS\":[\"الخامس\"],\"uUehLT\":[\"في انتظار\"],\"uVu1Yt\":[\"تحديد تعيين النوع\"],\"uYtvvN\":[\"حدد مشروعًا قبل تحرير بيئة التنفيذ.\"],\"ucSTeu\":[\"تم الإنشاء بواسطة (اسم المستخدم)\"],\"ucgZ0o\":[\"المؤسسة\"],\"ugZpot\":[\"اختبار بيانات الاعتماد الخارجية\"],\"ulRNXw\":[\"Dragging cancelled. List is unchanged.\"],\"upC07l\":[\"Survey Disabled\"],\"uuPCEU\":[\"If you want the Inventory Source to update on launch , click on Update on Launch, and also go to \"],\"uyJsf6\":[\"حول\"],\"uzTiFQ\":[\"العودة إلى الجداول\"],\"v-CZEv\":[\"المطالبة عند الإطلاق\"],\"v-EbDj\":[\"إعدادات استكشاف الأخطاء وإصلاحها\"],\"v-M-LP\":[\"إطلاق القالب\"],\"v0urVb\":[\"إذا لم يكن لديك اشتراك، يمكنك زيارة\\n Red Hat للحصول على اشتراك تجريبي.\"],\"v1kQyJ\":[\"Webhooks\"],\"v2dMHj\":[\"إعادة الإطلاق باستخدام معلمات المضيف\"],\"v2gmVS\":[\"سيؤدي هذا الإجراء إلى الحذف المؤقت لما يلي:\"],\"v45yUL\":[\"إلغاء الربط\"],\"v7vAuj\":[\"إجمالي المهام\"],\"vCS_TJ\":[\"فشل حذف مصدر المخزون \",[\"name\"],\".\"],\"vEr6TL\":[\"تُستخدم هذه الوسائط مع الوحدة المحددة. يمكنك العثور على معلومات حول \",[\"0\"],\" بالنقر \"],\"vF82C6\":[\"التنفيذ عندما تؤدي العقدة الأصل إلى حالة ناجحة.\"],\"vFKI2e\":[\"قواعد الجدول\"],\"vFVhzc\":[\"اجتماعي\"],\"vGVmd5\":[\"يتم تجاهل هذا الحقل ما لم يتم تعيين متغير مُفعّل. إذا كان المتغير المُفعّل يطابق هذه القيمة، فسيتم تمكين المضيف عند الاستيراد.\"],\"vGjmyl\":[\"محذوف\"],\"vHAaZi\":[\"تخطي كل\"],\"vIb3RK\":[\"إنشاء جدول جديد\"],\"vKRQJB\":[\"حقل لتمرير مواصفات Pod مخصصة لـ Kubernetes أو OpenShift.\"],\"vLyv1R\":[\"إخفاء\"],\"vPrMqH\":[\"المراجعة #\"],\"vQHUI6\":[\"في حالة التحديد، ستتم إزالة جميع المتغيرات للمجموعات الفرعية والمضيفين واستبدالها بتلك الموجودة في المصدر الخارجي.\"],\"vTL8gi\":[\"وقت الانتهاء\"],\"vUOn9d\":[\"رجوع\"],\"vYFWsi\":[\"حدد الفرق\"],\"vYuE8q\":[\"الوقت المنقضي لتشغيل المهمة\"],\"vZbIkJ\":[\"GitLab\"],\"vcH-SH\":[\"Bitbucket Data Center\"],\"ve_jRy\":[\"عند الشرط\"],\"vgwVkd\":[\"UTC\"],\"vlHGDw\":[\"قم بتمرير متغيرات سطر أوامر إضافية إلى Playbook. هذه هي معلمة سطر الأوامر -e أو --extra-vars لـ ansible-playbook. قدم أزواج المفتاح/القيمة باستخدام YAML أو JSON. راجع الوثائق للحصول على مثال على بناء الجملة.\"],\"voRH7M\":[\"أمثلة:\"],\"vq1XXv\":[\"إنشاء مخزون ذكي جديد بالمرشح المطبق\"],\"vq2WxD\":[\"الثلاثاء\"],\"vq9gg6\":[\"لا يمكنك اتخاذ إجراء بشأن موافقات سير العمل التالية: \",[\"itemsUnableToApprove\"]],\"vqAmQC\":[\"الوحدة\"],\"vvY8pz\":[\"المطالبة بالوسوم المتخطاة عند الإطلاق.\"],\"vye-ip\":[\"المطالبة بالمهلة عند الإطلاق.\"],\"vzsN_5\":[[\"interval\"],\" day\"],\"w07pgp\":[\"المطالبة بالتفصيل عند الإطلاق.\"],\"w0kTk8\":[\"إعادة الإطلاق من العقدة الفاشلة\"],\"w14eW4\":[\"عرض جميع الرموز المميزة.\"],\"w1RiT6\":[[\"0\",\"plural\",{\"one\":[\"يُستخدم مصدر المخزون هذا حاليًا من قبل موارد أخرى تعتمد عليه. هل أنت متأكد من أنك تريد حذفه؟\"],\"other\":[\"قد يؤثر حذف مصادر المخزون هذه على موارد أخرى تعتمد عليها. هل أنت متأكد من أنك تريد حذفها على أي حال؟\"]}]],\"w2VTLB\":[\"مقارنة أقل من.\"],\"w3EE8S\":[\"المضيفون المُؤتمتون\"],\"w4j7js\":[\"عرض تفاصيل الفريق\"],\"w6zx64\":[\"استخدام افتراضي المتصفح\"],\"wCnaTT\":[\"استبدال الحقل بقيمة جديدة\"],\"wF-BAU\":[\"إضافة مخزون\"],\"wFnb77\":[\"معرّف المخزون\"],\"wKEfMu\":[\"اكتملت معالجة الأحداث.\"],\"wO29qX\":[\"لم يتم العثور على المؤسسة.\"],\"wW08QA\":[\"لا يساوي\"],\"wX6sAX\":[\"السنتان الماضيتان\"],\"wXAVe-\":[\"وسائط الوحدة\"],\"wXB7k5\":[\"حدد لون إشعار. الألوان المقبولة هي رمز لون\\n سداسي عشري (مثال: #3af أو #789abc).\"],\"waFx9W\":[\"مُدار\"],\"wdxz7K\":[\"المصدر\"],\"wgNoIs\":[\"تحديد الكل\"],\"wkgHlv\":[\"إضافة عقدة جديدة\"],\"wlQNTg\":[\"الأعضاء\"],\"wnizTi\":[\"حدد اشتراكًا\"],\"wpT1VN\":[\"الشرط\"],\"wpt6vB\":[\"LDAP2\"],\"wqXiR2\":[\"قم بتمرير تغييرات سطر أوامر إضافية. هناك معلمتان لسطر أوامر ansible: \"],\"wsggVq\":[\"عند عدم التحديد، ستبقى المضيفون والمجموعات الفرعية المحلية غير الموجودة في المصدر الخارجي دون تغيير بواسطة عملية تحديث المخزون.\"],\"x-a4Mr\":[\"بيانات اعتماد Webhook\"],\"x02hbg\":[\"استدعاءات التزويد: تمكّن إنشاء عنوان URL لاستدعاء التزويد. باستخدام عنوان URL، يمكن للمضيف الاتصال بـ Ansible AWX وطلب تحديث التكوين باستخدام قالب المهمة هذا.\"],\"x4Xp3c\":[\"تم التحديث\"],\"x5DnMs\":[\"آخر تعديل\"],\"x6_dAC\":[\"المخزون الموحّد\"],\"x6oT_o\":[\"المضيفون المتاحون\"],\"x7PDL5\":[\"التسجيل\"],\"x8uKc7\":[\"حالة المثيل\"],\"x9WS62\":[\"إلغاء \",[\"0\"]],\"xAYSEs\":[\"وقت البدء\"],\"xAqth4\":[\"عرض إعدادات Google OAuth 2.0\"],\"xC9EVu\":[\"عقدة ملغاة\"],\"xCJdfg\":[\"مسح\"],\"xDr_ct\":[\"النهاية\"],\"xESTou\":[\"فشل حذف المهمة.\"],\"xF5tnT\":[\"كلمة مرور Vault\"],\"xGQZwx\":[\"إضافة مجموعة حاويات\"],\"xGVfLh\":[\"متابعة\"],\"xHZS6u\":[\"المهام الناجحة\"],\"xHokxV\":[[\"0\",\"plural\",{\"one\":[\"لا يمكن حذف المهمة المحددة بسبب إذن غير كافٍ أو حالة مهمة قيد التشغيل\"],\"other\":[\"لا يمكن حذف المهام المحددة بسبب أذونات غير كافية أو حالة مهمة قيد التشغيل\"]}]],\"xHt036\":[\"رمز الوصول الشخصي\"],\"xKQRBr\":[\"الحد الأقصى للطول\"],\"xM01Pk\":[\"الإجابة الافتراضية\"],\"xONDaO\":[\"Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?\"],\"xOl1yT\":[\"بحث تام في حقل الاسم.\"],\"xPO5w7\":[\"تسجيل الدخول باستخدام GitHub\"],\"xPpkbX\":[\"Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway\"],\"xPxMOJ\":[\"تنسيق وقت غير صالح\"],\"xQioPk\":[\"الشروط المسبقة لتشغيل هذه العقدة عند وجود عدة عقد أصلية. راجع\"],\"xSytdh\":[\"انتهى:\"],\"xUhTCP\":[\"اختر مصدرًا\"],\"xVhQZV\":[\"الجمعة\"],\"xY9DEq\":[\"النمط المستخدم لاستهداف المضيفين في المخزون. سيؤدي ترك الحقل فارغًا، و all، و * جميعها إلى استهداف جميع المضيفين في المخزون. يمكنك العثور على مزيد من المعلومات حول أنماط مضيف Ansible\"],\"xY9s5E\":[\"المهلة\"],\"x_Ej3K\":[\"اختر نوع أو تنسيق الإجابة الذي تريده كمطالبة للمستخدم.\\n راجع وثائق Ascender للحصول على معلومات إضافية حول كل خيار.\"],\"x_ugm_\":[\"إجمالي المجموعات\"],\"xa7N9Z\":[\"تحرير عنوان URL لتجاوز إعادة توجيه تسجيل الدخول\"],\"xcaG5l\":[\"تحرير سير العمل\"],\"xd2LI3\":[\"تنتهي الصلاحية في \",[\"0\"]],\"xdA_-p\":[\"الأدوات\"],\"xe5RvT\":[\"علامة تبويب YAML\"],\"xefC7k\":[\"منفذ خادم IRC\"],\"xeiujy\":[\"نص\"],\"xg771-\":[\"LDAP1\"],\"xhj1Rt\":[\"تعذر العثور على الصفحة التي طلبتها.\"],\"xi4nE2\":[\"رسالة الخطأ\"],\"xnSIXG\":[\"فشل حذف مضيف واحد أو أكثر.\"],\"xoCdYY\":[\"التحقق مما إذا كانت قيمة الحقل المحدد موجودة في القائمة المقدمة؛ يتوقع قائمة عناصر مفصولة بفواصل.\"],\"xoXoBo\":[\"خطأ في الحذف\"],\"xrG8k4\":[\"Google Compute Engine\"],\"xtRU96\":[\"GitHub Enterprise Organization\"],\"xuYTJb\":[\"فشل حذف قالب المهمة.\"],\"xw06rt\":[\"الإعداد يطابق إعداد المصنع الافتراضي.\"],\"xxTtJH\":[\"تعبير نمطي حيث سيتم استيراد أسماء المضيفين المطابقة فقط. يتم تطبيق المرشح كخطوة معالجة لاحقة بعد تطبيق أي مرشحات ملحق مخزون.\"],\"y11WBZ\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"إلغاء المهمة المحددة\"],\"other\":[\"إلغاء المهام المحددة\"]}]],\"y8ibKI\":[\"إزالة المثيلات\"],\"yCCaoF\":[\"فشل تحديث المثيل.\"],\"yDeNnS\":[\"إنشاء مخزون مُنشأ جديد\"],\"yDifzB\":[\"تأكيد التحديد\"],\"yGS9cI\":[\"سليم\"],\"yGUKlf\":[\"مهام الإدارة\"],\"yGfW7Y\":[\"قم بتغيير PROJECTS_ROOT عند نشر \",[\"brandName\"],\" لتغيير هذا الموقع.\"],\"yMIahh\":[\"مرحبًا بك في Red Hat Ansible Automation Platform!\\n يرجى إكمال الخطوات أدناه لتفعيل اشتراكك.\"],\"yMYuDg\":[\"إصدار Automation controller\"],\"yMfU4O\":[\"البريد الإلكتروني للمرسل\"],\"yNcGa2\":[\"انتهاء صلاحية رمز الوصول\"],\"yOXgbH\":[\"ملاحظة: عند استخدام بروتوكول SSH لـ GitHub أو Bitbucket، أدخل مفتاح SSH فقط، ولا تُدخل اسم مستخدم (بخلاف git). بالإضافة إلى ذلك، لا يدعم GitHub وBitbucket مصادقة كلمة المرور عند استخدام SSH. لا يستخدم بروتوكول GIT للقراءة فقط (git://) معلومات اسم المستخدم أو كلمة المرور.\"],\"yQE2r9\":[\"جارٍ التحميل\"],\"yRiHPB\":[\"يرجى تشغيل مهمة لملء هذه القائمة.\"],\"yRkqG9\":[\"الحد\"],\"yRsSBw\":[\"الموافقات\"],\"yUlffE\":[\"إعادة الإطلاق\"],\"yVgnJA\":[\"الحد الأقصى لعدد المضيفين المسموح بإدارتهم بواسطة هذه المؤسسة.\\n القيمة الافتراضية هي 0 مما يعني عدم وجود حد. راجع توثيق Ansible\\n لمزيد من التفاصيل.\"],\"yX3qAQ\":[\"عُقد قالب مهمة سير العمل\"],\"yaG1CX\":[\"LDAP\"],\"yaX9sM\":[\"قالب سير العمل\"],\"yb_fjw\":[\"الموافقة\"],\"ydoZpB\":[\"لم يتم العثور على الفريق.\"],\"ydw9CW\":[\"المضيفون الفاشلون\"],\"yfG3F2\":[\"المفاتيح المباشرة\"],\"yjwMJ8\":[\"كم مرة تمت أتمتة المضيف\"],\"yjyGja\":[\"توسيع الإدخال\"],\"ylXj1N\":[\"محدد\"],\"yq6OqI\":[\"هذه هي المرة الوحيدة التي سيتم فيها عرض قيمة الرمز المميز وقيمة رمز التحديث المرتبط.\"],\"yqiwAW\":[\"إلغاء سير العمل\"],\"yrUyDQ\":[\"يحدد مرحلة دورة الحياة الحالية لهذا المثيل. الافتراضي هو \\\"installed\\\".\"],\"yrwl2P\":[\"متوافق\"],\"yuXsFE\":[\"فشل حذف موافقة سير عمل واحدة أو أكثر.\"],\"yuvDX_\":[[\"intervalValue\",\"plural\",{\"one\":[\"شهر\"],\"other\":[\"أشهر\"]}]],\"ywSBEn\":[\"خطأ في ربط الدور\"],\"yxDqcD\":[\"انتهاء صلاحية رمز التفويض\"],\"yy1cWw\":[\"تخصيص الرسائل…\"],\"yz7wBu\":[\"إغلاق\"],\"yzQhLU\":[\"الحد الأدنى لمثيلات السياسة\"],\"yzdDia\":[\"حذف الاستبيان\"],\"z-BNGk\":[\"حذف رمز المستخدم المميز\"],\"z0DcIS\":[\"مشفّر\"],\"z3XA1I\":[\"إعادة محاولة المضيف\"],\"z409y8\":[\"خدمة Webhook\"],\"z7NLxJ\":[\"إذا كنت تريد فقط إزالة الوصول لهذا المستخدم المعين، يرجى إزالته من الفريق.\"],\"z8mwbl\":[\"الحد الأدنى لنسبة جميع المثيلات التي سيتم تعيينها تلقائيًا لهذه المجموعة عند اتصال مثيلات جديدة.\"],\"zBO1TV\":[[\"numOccurrences\",\"plural\",{\"one\":[\"بعد \",\"#\",\" تكرار\"],\"other\":[\"بعد \",\"#\",\" تكرارات\"]}]],\"zHcXAG\":[\"اترك هذا الحقل فارغًا لجعل بيئة التنفيذ متاحة عالميًا.\"],\"zICM7E\":[\"تجاهل التغييرات المحلية قبل المزامنة\"],\"zJY4Uj\":[\"Playbook\"],\"zKJMiH\":[\"دليل Playbook\"],\"zK_63z\":[\"اسم مستخدم أو كلمة مرور غير صالحة. يرجى المحاولة مرة أخرى.\"],\"zLsDix\":[\"مستخدم ldap\"],\"zMKkOk\":[\"العودة إلى المؤسسات\"],\"zN0nhk\":[\"قدّم بيانات اعتماد Red Hat أو Red Hat Satellite الخاصة بك لتمكين Automation Analytics.\"],\"zQRgi-\":[\"تبديل بدء الإشعار\"],\"zTediT\":[\"يجب أن يكون هذا الحقل رقمًا وأن تكون قيمته بين \",[\"min\"],\" و\",[\"max\"]],\"zUIPys\":[\"إضافة المضيفين إلى المجموعة بناءً على شروط Jinja2.\"],\"z_PZxu\":[\"فشل حذف موافقة سير العمل.\"],\"zbLCH1\":[\"نوع المخزون\"],\"zcQj5X\":[\"أولاً، حدد مفتاحًا\"],\"zdl7YZ\":[\"حدد مسار المصدر\"],\"zeEQd_\":[\"يونيو\"],\"zf7FzC\":[\"بيانات اعتماد للمصادقة مع Kubernetes أو OpenShift. يجب أن تكون من نوع \\\"Kubernetes/OpenShift API Bearer Token\\\". إذا تُركت فارغة، فسيتم استخدام حساب خدمة Pod الأساسي.\"],\"zfZydd\":[\"نافذة معاينة الاستبيان\"],\"zfsBaJ\":[\"تعرف على المزيد حول Automation Analytics\"],\"zgInnV\":[\"نافذة عرض عقدة سير العمل\"],\"zga9sT\":[\"موافق\"],\"zhPLvU\":[\"فشل الربط.\"],\"zhrjek\":[\"المجموعات\"],\"zi_YNm\":[\"فشل إلغاء \",[\"0\"]],\"zmu4-P\":[\"معرّف الحساب SID\"],\"znG7ed\":[\"حدد playbook\"],\"znTz5r\":[\"لم يتم العثور على الجدول.\"],\"znuW_M\":[\"إذا كانت نعم، اجعل الإدخالات غير الصالحة خطأً فادحًا، وإلا تخطَّ\\n وتابع.\"],\"zq0gmb\":[\"حدد الفترة\"],\"ztOzCj\":[\"التحديث عند الإطلاق\"],\"ztw2L3\":[\"يجب أن تكون هناك قيمة في إدخال واحد على الأقل\"],\"zvfXp0\":[\"تبديل موافقات الإشعار\"],\"zx4BuL\":[\"أسبوع\"],\"zzDlyQ\":[\"نجاح\"],\"{count, plural, one {# fork} other {# forks}}\":[[\"count\",\"plural\",{\"one\":[\"#\",\" fork\"],\"other\":[\"#\",\" forks\"]}]]}")}; \ No newline at end of file diff --git a/awx/ui/src/locales/ar/messages.po b/awx/ui/src/locales/ar/messages.po index 959e51b6..3a218b97 100644 --- a/awx/ui/src/locales/ar/messages.po +++ b/awx/ui/src/locales/ar/messages.po @@ -59,7 +59,7 @@ msgid "TACACS+" msgstr "TACACS+" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:637 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:232 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:251 msgid "Workflow timed out message body" msgstr "نص رسالة انتهاء مهلة سير العمل" @@ -117,6 +117,10 @@ msgstr "حدد بيئة التنفيذ التي تريد تشغيل هذا ال msgid "Add a new node between these two nodes" msgstr "أضف عقدة جديدة بين هاتين العقدتين" +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:170 +msgid "Changed message" +msgstr "رسالة التغيير" + #: screens/Job/JobOutput/JobOutputSearch.js:120 msgid "Host Polling" msgstr "استقصاء المضيف" @@ -150,7 +154,7 @@ msgid "Maximum number of forks to allow across all jobs running concurrently on msgstr "الحد الأقصى لعدد التفريعات المسموح بها عبر جميع المهام التي تعمل بشكل متزامن على هذه المجموعة.\n" " يعني الصفر عدم فرض أي حد." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:341 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:349 #: screens/Inventory/InventorySources/InventorySourceListItem.js:89 msgid "Failed to cancel Inventory Source Sync" msgstr "فشل إلغاء مزامنة مصدر المخزون" @@ -334,8 +338,8 @@ msgstr "الفرع المراد سحبه. بالإضافة إلى الفروع، #: components/JobList/JobList.js:265 #: components/JobList/JobListItem.js:109 #: components/Lookup/ProjectLookup.js:134 -#: components/NotificationList/NotificationList.js:219 -#: components/NotificationList/NotificationListItem.js:34 +#: components/NotificationList/NotificationList.js:230 +#: components/NotificationList/NotificationListItem.js:36 #: components/PromptDetail/PromptDetail.js:125 #: components/RelatedTemplateList/RelatedTemplateList.js:200 #: components/TemplateList/TemplateList.js:219 @@ -435,7 +439,7 @@ msgstr "انقر لعرض تفاصيل المهمة" msgid "Sync Project" msgstr "مزامنة المشروع" -#: components/NotificationList/NotificationList.js:194 +#: components/NotificationList/NotificationList.js:205 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:135 msgid "Grafana" msgstr "Grafana" @@ -515,7 +519,7 @@ msgstr "حدث" msgid "Repeat Frequency" msgstr "تكرار التردد" -#: screens/Inventory/shared/Inventory.helptext.js:171 +#: screens/Inventory/shared/Inventory.helptext.js:172 msgid "Variables used to configure the constructed inventory plugin. For a detailed description of how to configure this plugin, see" msgstr "المتغيرات المستخدمة لتكوين ملحق المخزون المُنشأ. للحصول على وصف مفصل لكيفية تكوين هذا الملحق، انظر" @@ -577,8 +581,8 @@ msgstr "مجموعة الحاويات" msgid "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" msgstr "{0, plural, one {لا يمكنك إلغاء المهمة التالية لأنها لا تعمل:} other {لا يمكنك إلغاء المهام التالية لأنها لا تعمل:}}" -#: components/NotificationList/NotificationList.js:220 -#: components/NotificationList/NotificationListItem.js:35 +#: components/NotificationList/NotificationList.js:231 +#: components/NotificationList/NotificationListItem.js:38 #: screens/Credential/shared/TypeInputsSubForm.js:46 #: screens/InstanceGroup/shared/ContainerGroupForm.js:79 #: screens/Instances/Shared/InstanceForm.js:95 @@ -602,7 +606,7 @@ msgid "You cannot select multiple vault credentials with the same vault ID. Doin msgstr "لا يمكنك تحديد عدة بيانات اعتماد vault بنفس معرّف vault. سيؤدي ذلك تلقائيًا إلى إلغاء تحديد الآخر الذي يحمل نفس معرّف vault." #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:334 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:342 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:350 #: screens/Project/ProjectDetail/ProjectDetail.js:354 msgid "Cancel Sync" msgstr "إلغاء المزامنة" @@ -715,8 +719,8 @@ msgstr "مقاييس المضيف" msgid "Create new credential Type" msgstr "إنشاء نوع بيانات اعتماد جديد" -#: screens/Inventory/shared/Inventory.helptext.js:103 -#: screens/Inventory/shared/Inventory.helptext.js:118 +#: screens/Inventory/shared/Inventory.helptext.js:104 +#: screens/Inventory/shared/Inventory.helptext.js:119 msgid "If you want the Inventory Source to update on launch, click on Update on Launch, and also go to " msgstr "إذا كنت تريد أن يتم تحديث مصدر المخزون عند الإطلاق، انقر على تحديث عند الإطلاق، وانتقل أيضًا إلى " @@ -734,7 +738,7 @@ msgid "Start Time" msgstr "وقت البدء" #: screens/Inventory/shared/Inventory.helptext.js:48 -#: screens/Inventory/shared/Inventory.helptext.js:184 +#: screens/Inventory/shared/Inventory.helptext.js:185 msgid "Variables must be in JSON or YAML syntax. Use the radio button to toggle between the two." msgstr "يجب أن تكون المتغيرات بصيغة JSON أو YAML. استخدم زر الاختيار للتبديل بينهما." @@ -750,7 +754,7 @@ msgstr "اختلاف الملف" msgid "Relaunch from canceled node" msgstr "إعادة الإطلاق من العقدة الملغاة" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:271 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:279 msgid "Cache timeout" msgstr "مهلة ذاكرة التخزين المؤقت" @@ -830,7 +834,7 @@ msgstr "يرجى إدخال عدد مرات التكرار." msgid "Fuzzy search on name field." msgstr "بحث تقريبي في حقل الاسم." -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:106 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:107 msgid "Ansible Controller Documentation." msgstr "توثيق Ansible Controller." @@ -838,7 +842,7 @@ msgstr "توثيق Ansible Controller." msgid "The Instance Groups to which this instance belongs." msgstr "مجموعات المثيلات التي ينتمي إليها هذا المثيل." -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:97 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:98 msgid "You may apply a number of possible variables in the\n" " message. For more information, refer to the" msgstr "يمكنك تطبيق عدد من المتغيرات الممكنة في\n" @@ -887,7 +891,7 @@ msgstr "عقد سير العمل" msgid "Overwrite" msgstr "الكتابة فوق" -#: components/NotificationList/NotificationList.js:195 +#: components/NotificationList/NotificationList.js:206 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:136 msgid "Hipchat" msgstr "Hipchat" @@ -922,7 +926,7 @@ msgstr "فرع التحكم بالمصدر" msgid "Tabs" msgstr "علامات التبويب" -#: screens/Template/Template.js:273 +#: screens/Template/Template.js:274 #: screens/Template/WorkflowJobTemplate.js:286 msgid "View Template Details" msgstr "عرض تفاصيل القالب" @@ -968,7 +972,7 @@ msgstr "{interval, plural, one {# سنة} other {# سنوات}}" msgid "Inventory Source Sync" msgstr "مزامنة مصدر المخزون" -#: screens/Inventory/shared/Inventory.helptext.js:146 +#: screens/Inventory/shared/Inventory.helptext.js:147 msgid "Inventory Plugins" msgstr "ملحقات المخزون" @@ -1038,7 +1042,7 @@ msgstr "1 (معلومات)" msgid "Set the instance enabled or disabled. If disabled, jobs will not be assigned to this instance." msgstr "تعيين المثيل مُفعّلاً أو مُعطّلاً. إذا كان مُعطّلاً، فلن يتم تعيين المهام لهذا المثيل." -#: screens/Inventory/shared/Inventory.helptext.js:105 +#: screens/Inventory/shared/Inventory.helptext.js:106 msgid "and click on Update Revision on Launch." msgstr "وانقر على تحديث المراجعة عند الإطلاق." @@ -1527,8 +1531,8 @@ msgstr "فشل حذف مهمة واحدة أو أكثر." msgid "Run Command" msgstr "تشغيل الأمر" -#: screens/Inventory/shared/Inventory.helptext.js:156 -#: screens/Inventory/shared/Inventory.helptext.js:179 +#: screens/Inventory/shared/Inventory.helptext.js:157 +#: screens/Inventory/shared/Inventory.helptext.js:180 msgid "plugin configuration guide." msgstr "دليل تكوين الملحق." @@ -1639,9 +1643,9 @@ msgstr "إنشاء مخزون موحّد جديد" #: components/Lookup/OrganizationLookup.js:141 #: components/Lookup/ProjectLookup.js:129 #: components/Lookup/ProjectLookup.js:159 -#: components/NotificationList/NotificationList.js:181 -#: components/NotificationList/NotificationList.js:218 -#: components/NotificationList/NotificationListItem.js:29 +#: components/NotificationList/NotificationList.js:192 +#: components/NotificationList/NotificationList.js:229 +#: components/NotificationList/NotificationListItem.js:31 #: components/OptionsList/OptionsList.js:48 #: components/PaginatedTable/PaginatedTable.js:76 #: components/PromptDetail/PromptDetail.js:115 @@ -1755,14 +1759,14 @@ msgstr "إنشاء مخزون موحّد جديد" #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:182 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:197 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:238 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:204 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:205 #: screens/Inventory/InventorySources/InventorySourceList.js:212 #: screens/Inventory/InventorySources/InventorySourceListItem.js:60 #: screens/Inventory/shared/ConstructedInventoryForm.js:66 #: screens/Inventory/shared/FederatedInventoryForm.js:56 #: screens/Inventory/shared/InventoryForm.js:50 #: screens/Inventory/shared/InventoryGroupForm.js:33 -#: screens/Inventory/shared/InventorySourceForm.js:133 +#: screens/Inventory/shared/InventorySourceForm.js:139 #: screens/Inventory/shared/SmartInventoryForm.js:46 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:98 #: screens/ManagementJob/ManagementJobList/ManagementJobList.js:91 @@ -1885,7 +1889,7 @@ msgstr "{automatedInstancesCount} منذ {automatedInstancesSinceDateTime}" msgid "No job data available" msgstr "لا تتوفر بيانات مهمة" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:309 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:317 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:22 msgid "Source variables" msgstr "متغيرات المصدر" @@ -2022,7 +2026,7 @@ msgid "Confirm" msgstr "تأكيد" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:526 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:142 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:143 msgid "Success message body" msgstr "نص رسالة النجاح" @@ -2297,7 +2301,7 @@ msgstr "المضيفون الفاشلون" msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?" msgstr "بيئة التنفيذ هذه قيد الاستخدام حاليًا من قبل موارد أخرى. هل أنت متأكد من أنك تريد حذفها؟" -#: components/NotificationList/NotificationList.js:196 +#: components/NotificationList/NotificationList.js:207 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:137 msgid "IRC" msgstr "IRC" @@ -2501,7 +2505,7 @@ msgstr "تمكين التسجيل الخارجي" #: components/Sparkline/Sparkline.js:30 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:51 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:181 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:182 #: screens/Inventory/InventorySources/InventorySourceListItem.js:31 #: screens/Project/ProjectDetail/ProjectDetail.js:134 #: screens/Project/ProjectList/ProjectListItem.js:56 @@ -2541,7 +2545,7 @@ msgstr "تمكين تتبع نظام السجل للحقائق بشكل فردي msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" msgstr "لا يمكن تحديد قوالب المهام ذات بيانات الاعتماد التي تطالب بكلمات مرور عند إنشاء العقد أو تحريرها" -#: screens/Inventory/shared/Inventory.helptext.js:193 +#: screens/Inventory/shared/Inventory.helptext.js:194 msgid "If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on. Note: If this setting is enabled and you provided an empty list, the global instance groups will be applied." msgstr "إذا كان مُفعّلاً، فسيمنع المخزون إضافة أي مجموعات مثيلات مؤسسة إلى قائمة مجموعات المثيلات المفضلة لتشغيل قوالب المهام المرتبطة عليها. ملاحظة: إذا كان هذا الإعداد مُفعّلاً وقدمت قائمة فارغة، فسيتم تطبيق مجموعات المثيلات العامة." @@ -2678,7 +2682,7 @@ msgstr "فشل إلغاء ربط مضيف واحد أو أكثر." #: components/Sparkline/Sparkline.js:27 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:48 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:178 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:179 #: screens/Inventory/InventorySources/InventorySourceListItem.js:28 #: screens/Project/ProjectDetail/ProjectDetail.js:131 #: screens/Project/ProjectList/ProjectListItem.js:53 @@ -2765,7 +2769,7 @@ msgstr "العنصر جيد" msgid "Icon URL" msgstr "عنوان URL للأيقونة" -#: screens/Inventory/shared/InventorySourceForm.js:159 +#: screens/Inventory/shared/InventorySourceForm.js:165 msgid "Select the Instance Groups this inventory source sync should run on. If unset, the sync runs on the instance groups of the inventory or its organization." msgstr "حدد مجموعات المثيلات التي يجب أن تعمل عليها مزامنة مصدر المخزون هذا. إذا لم يتم التعيين، تعمل المزامنة على مجموعات المثيلات الخاصة بالمخزون أو مؤسسته." @@ -2774,7 +2778,7 @@ msgid "Select the port that Receptor will listen on for incoming connections, e. msgstr "حدد المنفذ الذي سيستمع عليه Receptor للاتصالات الواردة، مثل 27199." #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:517 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:133 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:134 msgid "Success message" msgstr "رسالة النجاح" @@ -2831,7 +2835,7 @@ msgstr "طريقة HTTP" msgid "The execution environment that will be used for jobs inside of this organization. This will be used as a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." msgstr "بيئة التنفيذ التي ستُستخدم للمهام داخل هذه المؤسسة. ستُستخدم كخيار احتياطي عندما لا تكون بيئة التنفيذ قد عُيّنت صراحةً على مستوى المشروع أو قالب المهمة أو سير العمل." -#: components/NotificationList/NotificationList.js:190 +#: components/NotificationList/NotificationList.js:201 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:131 msgid "Notification type" msgstr "نوع الإشعار" @@ -2865,7 +2869,7 @@ msgstr "إلغاء إزالة الرابط" msgid "There was an error loading this content. Please reload the page." msgstr "حدث خطأ أثناء تحميل هذا المحتوى. يرجى إعادة تحميل الصفحة." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:292 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:300 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:135 msgid "Enabled Value" msgstr "القيمة المُفعّلة" @@ -3178,7 +3182,7 @@ msgstr "<0>ملاحظة: قد تتم إعادة ربط المثيلات بمجم msgid "Timeout minutes" msgstr "دقائق المهلة" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:353 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:361 msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" msgstr "مصدر المخزون هذا قيد الاستخدام حاليًا من قبل موارد أخرى تعتمد عليه. هل أنت متأكد من أنك تريد حذفه؟" @@ -3334,7 +3338,7 @@ msgstr "مقارنة أقل من أو يساوي." #: screens/Inventory/FederatedInventoryDetail/FederatedInventoryDetail.js:187 #: screens/Inventory/InventoryDetail/InventoryDetail.js:185 #: screens/Inventory/InventoryGroups/InventoryGroupsList.js:102 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:356 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:364 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:67 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:71 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:76 @@ -3357,6 +3361,7 @@ msgstr "مقارنة أقل من أو يساوي." msgid "Delete" msgstr "حذف" +#: components/NotificationList/NotificationListItem.js:105 #: components/StatusLabel/StatusLabel.js:53 #: screens/Job/JobOutput/shared/HostStatusBar.js:43 msgid "Changed" @@ -3488,7 +3493,7 @@ msgstr "GitHub Team" #: screens/Inventory/InventoryDetail/InventoryDetail.js:157 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:43 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:78 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:317 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:325 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:133 #: screens/Job/JobDetail/JobDetail.js:578 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:425 @@ -3862,7 +3867,7 @@ msgstr "بيئة التنفيذ الافتراضية" #: components/PromptDetail/PromptJobTemplateDetail.js:122 #: components/PromptDetail/PromptJobTemplateDetail.js:130 #: components/TemplateList/TemplateListItem.js:263 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:245 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:246 #: screens/Job/JobDetail/JobDetail.js:180 #: screens/Job/JobDetail/JobDetail.js:214 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:216 @@ -3983,7 +3988,7 @@ msgstr "عرض الطوبولوجيا" msgid "Syncing" msgstr "جارٍ المزامنة" -#: screens/Inventory/shared/InventorySourceForm.js:192 +#: screens/Inventory/shared/InventorySourceForm.js:198 msgid "Source details" msgstr "تفاصيل المصدر" @@ -4075,7 +4080,7 @@ msgstr "حذف بيانات الاعتماد" #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:56 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:61 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:100 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:332 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:340 #: screens/Inventory/InventorySources/InventorySourceListItem.js:105 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:148 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:450 @@ -4157,7 +4162,7 @@ msgstr "لم يتم تحديد مهلة" msgid "On Timeout" msgstr "عند انتهاء المهلة" -#: screens/Inventory/shared/Inventory.helptext.js:196 +#: screens/Inventory/shared/Inventory.helptext.js:197 msgid "Prevent Instance Group Fallback: If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on." msgstr "منع الرجوع إلى مجموعة المثيلات: إذا كان مُفعّلاً، فسيمنع المخزون إضافة أي مجموعات مثيلات مؤسسة إلى قائمة مجموعات المثيلات المفضلة لتشغيل قوالب المهام المرتبطة عليها." @@ -4499,7 +4504,7 @@ msgstr "content-loading-in-progress" msgid "Mon" msgstr "الاثنين" -#: screens/Organization/Organization.js:239 +#: screens/Organization/Organization.js:240 msgid "View Organization Details" msgstr "عرض تفاصيل المؤسسة" @@ -4512,7 +4517,7 @@ msgstr "عرض تفاصيل المؤسسة" #: components/JobList/JobList.js:345 #: components/LaunchButton/LaunchButton.js:248 #: components/LaunchPrompt/LaunchPrompt.js:99 -#: components/NotificationList/NotificationList.js:246 +#: components/NotificationList/NotificationList.js:259 #: components/PaginatedTable/ToolbarDeleteButton.js:148 #: components/RelatedTemplateList/RelatedTemplateList.js:254 #: components/ResourceAccessList/ResourceAccessList.js:249 @@ -4556,7 +4561,7 @@ msgstr "عرض تفاصيل المؤسسة" #: screens/Inventory/InventoryHosts/InventoryHostList.js:204 #: screens/Inventory/InventoryList/InventoryList.js:300 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:270 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:363 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:371 #: screens/Inventory/InventorySources/InventorySourceList.js:240 #: screens/Inventory/InventorySources/InventorySourceList.js:252 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:155 @@ -4708,11 +4713,11 @@ msgid "Notification Templates" msgstr "قوالب الإشعارات" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:508 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:124 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:125 msgid "Start message body" msgstr "نص رسالة البدء" -#: screens/Inventory/shared/Inventory.helptext.js:128 +#: screens/Inventory/shared/Inventory.helptext.js:129 msgid "Branch to use on inventory sync. Project default used if blank. Only allowed if project allow_override field is set to true." msgstr "الفرع المراد استخدامه عند مزامنة المخزون. يُستخدم افتراضي المشروع إذا كان فارغًا. مسموح به فقط إذا تم تعيين حقل allow_override للمشروع على true." @@ -4821,7 +4826,7 @@ msgid "Failed to delete one or more user tokens." msgstr "فشل حذف رمز مستخدم مميز واحد أو أكثر." #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:553 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:169 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:188 msgid "Workflow approved message" msgstr "رسالة الموافقة على سير العمل" @@ -5002,12 +5007,12 @@ msgstr "عند انتهاء المهلة" msgid "Create New Team" msgstr "إنشاء فريق جديد" -#: screens/Inventory/shared/Inventory.helptext.js:148 +#: screens/Inventory/shared/Inventory.helptext.js:149 msgid "in the documentation and the" msgstr "في التوثيق و" #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:152 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:206 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:207 #: screens/Project/ProjectDetail/ProjectDetail.js:160 msgid "Last Job Status" msgstr "حالة آخر مهمة" @@ -5339,7 +5344,7 @@ msgid "Preferred Theme" msgstr "السمة المفضّلة" #: screens/Instances/Shared/InstanceForm.js:31 -#: screens/Inventory/shared/InventorySourceForm.js:92 +#: screens/Inventory/shared/InventorySourceForm.js:98 #: screens/Project/shared/ProjectForm.js:121 msgid "Set a value for this field" msgstr "تعيين قيمة لهذا الحقل" @@ -5472,7 +5477,7 @@ msgid "Download Bundle" msgstr "تنزيل الحزمة" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:577 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:187 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:206 msgid "Workflow denied message" msgstr "رسالة رفض سير العمل" @@ -5525,7 +5530,7 @@ msgstr "نوع العقدة" msgid "View Credential Details" msgstr "عرض تفاصيل بيانات الاعتماد" -#: components/NotificationList/NotificationList.js:177 +#: components/NotificationList/NotificationList.js:188 #: routeConfig.js:140 #: screens/Inventory/Inventories.js:119 #: screens/Inventory/InventorySource/InventorySource.js:101 @@ -5745,7 +5750,7 @@ msgstr "إشعار الاختبار" #: screens/Credential/CredentialDetail/CredentialDetail.js:262 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:234 #: screens/Inventory/InventoryDetail/InventoryDetail.js:122 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:305 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:313 #: screens/Project/ProjectDetail/ProjectDetail.js:333 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:357 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:193 @@ -5794,7 +5799,7 @@ msgstr "فرع التحكم بالمصدر" #: screens/Instances/InstanceDetail/InstanceDetail.js:248 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:225 #: screens/Inventory/InventoryDetail/InventoryDetail.js:107 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:239 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:240 #: screens/Organization/OrganizationDetail/OrganizationDetail.js:116 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:418 #: util/getRelatedResourceDeleteDetails.js:282 @@ -6124,7 +6129,7 @@ msgid "View YAML examples at" msgstr "عرض أمثلة YAML في" #: components/PromptDetail/PromptInventorySourceDetail.js:35 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:142 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:143 msgid "Overwrite local groups and hosts from remote inventory source" msgstr "الكتابة فوق المجموعات والمضيفين المحليين من مصدر المخزون البعيد" @@ -6133,7 +6138,7 @@ msgid "Resource deleted" msgstr "تم حذف المورد" #: screens/Inventory/shared/Inventory.helptext.js:54 -#: screens/Inventory/shared/Inventory.helptext.js:187 +#: screens/Inventory/shared/Inventory.helptext.js:188 msgid "YAML:" msgstr "YAML:" @@ -6220,7 +6225,7 @@ msgid "Initiated By" msgstr "بدأ بواسطة" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:499 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:115 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:116 msgid "Start message" msgstr "رسالة البدء" @@ -6284,7 +6289,7 @@ msgstr "تبديل المثيل" msgid "Back to Inventories" msgstr "العودة إلى المخزونات" -#: screens/Inventory/shared/Inventory.helptext.js:113 +#: screens/Inventory/shared/Inventory.helptext.js:114 msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format." msgstr "بعد كل تحديث للمشروع تتغير فيه مراجعة SCM، قم بتحديث المخزون من المصدر المحدد قبل تنفيذ مهام المهمة. هذا مخصص للمحتوى الثابت، مثل تنسيق ملف .ini لمخزون Ansible." @@ -6378,7 +6383,7 @@ msgstr "المثيل" msgid "Including File" msgstr "بما في ذلك الملف" -#: screens/Inventory/shared/Inventory.helptext.js:81 +#: screens/Inventory/shared/Inventory.helptext.js:82 msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." msgstr "في حالة تحديده، ستتم إزالة أي مضيفين ومجموعات كانوا موجودين سابقًا في المصدر الخارجي ولكن تمت إزالتهم الآن من المخزون. سيتم ترقية المضيفين والمجموعات التي لم تكن مُدارة بواسطة مصدر المخزون إلى المجموعة التالية التي تم إنشاؤها يدويًا أو إذا لم تكن هناك مجموعة تم إنشاؤها يدويًا لترقيتهم إليها، فسيتم تركهم في المجموعة الافتراضية \"all\" للمخزون." @@ -6415,7 +6420,7 @@ msgstr "علامة تبويب التفاصيل" #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:100 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:72 #: screens/InstanceGroup/shared/ContainerGroupForm.js:50 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:298 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:306 #: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:39 #: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:38 #: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:38 @@ -6426,7 +6431,7 @@ msgstr "علامة تبويب التفاصيل" #: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:117 #: screens/Inventory/shared/InventorySourceSubForms/TerraformSubForm.js:38 #: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:39 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:39 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:44 msgid "Credential" msgstr "بيانات الاعتماد" @@ -6435,7 +6440,7 @@ msgid "First node" msgstr "العقدة الأولى" #: components/PromptDetail/PromptInventorySourceDetail.js:97 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:273 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:281 msgid "{update_cache_timeout, plural, one {# second} other {# seconds}}" msgstr "{update_cache_timeout, plural, one {# ثانية} other {# ثوانٍ}}" @@ -6499,7 +6504,7 @@ msgstr "عرض إعدادات المهام" #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:122 #: screens/Instances/InstanceDetail/InstanceDetail.js:349 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:96 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:329 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:337 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:145 #: screens/Project/ProjectDetail/ProjectDetail.js:340 #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:229 @@ -6553,7 +6558,7 @@ msgstr "مستخدم عادي" msgid "host-name-{0}" msgstr "host-name-{0}" -#: components/NotificationList/NotificationList.js:198 +#: components/NotificationList/NotificationList.js:209 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:139 msgid "Pagerduty" msgstr "Pagerduty" @@ -6612,7 +6617,7 @@ msgstr "الحد الأدنى لعدد المثيلات التي سيتم تعي msgid "Launch | {0}" msgstr "إطلاق | {0}" -#: components/NotificationList/NotificationListItem.js:79 +#: components/NotificationList/NotificationListItem.js:84 msgid "Toggle notification success" msgstr "تبديل نجاح الإشعار" @@ -6705,7 +6710,7 @@ msgstr "تمكين المهام المتزامنة" msgid "Smart Inventory" msgstr "المخزون الذكي" -#: components/NotificationList/NotificationList.js:200 +#: components/NotificationList/NotificationList.js:211 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:141 msgid "Slack" msgstr "Slack" @@ -6741,7 +6746,7 @@ msgstr "إضافة" msgid "System administrators have unrestricted access to all resources." msgstr "يتمتع مسؤولو النظام بوصول غير مقيد إلى جميع الموارد." -#: components/NotificationList/NotificationListItem.js:86 +#: components/NotificationList/NotificationListItem.js:91 msgid "Failure" msgstr "فشل" @@ -6886,7 +6891,7 @@ msgstr "متابعة" #: components/Lookup/MultiCredentialsLookup.js:205 #: components/Lookup/OrganizationLookup.js:135 #: components/Lookup/ProjectLookup.js:149 -#: components/NotificationList/NotificationList.js:210 +#: components/NotificationList/NotificationList.js:221 #: components/RelatedTemplateList/RelatedTemplateList.js:183 #: components/Schedule/ScheduleList/ScheduleList.js:205 #: components/TemplateList/TemplateList.js:235 @@ -7098,7 +7103,7 @@ msgstr "يجب أن يكون هذا الحقل رقمًا وأن تكون قيم msgid "All" msgstr "الكل" -#: screens/Inventory/shared/Inventory.helptext.js:177 +#: screens/Inventory/shared/Inventory.helptext.js:178 msgid "constructed inventory" msgstr "المخزون المُنشأ" @@ -7112,7 +7117,7 @@ msgid "Confirm Delete" msgstr "تأكيد الحذف" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:625 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:223 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:242 msgid "Workflow timed out message" msgstr "رسالة انتهاء مهلة سير العمل" @@ -7208,7 +7213,7 @@ msgstr "أبدًا" msgid "Organization Name" msgstr "اسم المؤسسة" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:282 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:290 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:149 msgid "Host Filter" msgstr "مرشح المضيف" @@ -7260,7 +7265,7 @@ msgstr "قائمة {pluralizedItemName}" msgid "Please add survey questions." msgstr "يرجى إضافة أسئلة الاستبيان." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:287 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:295 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:121 msgid "Enabled Variable" msgstr "المتغير المُفعّل" @@ -7372,7 +7377,7 @@ msgstr "مزامنة" #: components/Lookup/ApplicationLookup.js:128 #: components/Lookup/HostFilterLookup.js:439 #: components/Lookup/HostListItem.js:10 -#: components/NotificationList/NotificationList.js:186 +#: components/NotificationList/NotificationList.js:197 #: components/PromptDetail/PromptDetail.js:120 #: components/Schedule/ScheduleDetail/ScheduleDetail.js:337 #: components/Schedule/ScheduleList/ScheduleList.js:197 @@ -7407,13 +7412,13 @@ msgstr "مزامنة" #: screens/Inventory/InventoryHosts/InventoryHostList.js:125 #: screens/Inventory/InventoryHosts/InventoryHostList.js:141 #: screens/Inventory/InventoryList/InventoryList.js:215 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:221 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:222 #: screens/Inventory/shared/ConstructedInventoryForm.js:74 #: screens/Inventory/shared/ConstructedInventoryHint.js:63 #: screens/Inventory/shared/FederatedInventoryForm.js:64 #: screens/Inventory/shared/InventoryForm.js:58 #: screens/Inventory/shared/InventoryGroupForm.js:41 -#: screens/Inventory/shared/InventorySourceForm.js:141 +#: screens/Inventory/shared/InventorySourceForm.js:147 #: screens/Inventory/shared/SmartInventoryForm.js:54 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:104 #: screens/Job/JobOutput/HostEventModal.js:118 @@ -7558,7 +7563,7 @@ msgstr "تسجيل الدخول باستخدام GitHub Enterprise" #: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130 #: screens/Inventory/shared/InventorySourceSubForms/TerraformSubForm.js:46 #: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:47 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:47 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:52 #: screens/Inventory/shared/SmartInventoryForm.js:66 #: screens/NotificationTemplate/shared/NotificationTemplateForm.js:29 #: screens/NotificationTemplate/shared/NotificationTemplateForm.js:66 @@ -7591,7 +7596,7 @@ msgstr "تسجيل الدخول باستخدام SAML {samlIDP}" msgid "Browse" msgstr "تصفح" -#: components/NotificationList/NotificationList.js:193 +#: components/NotificationList/NotificationList.js:204 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:134 #: screens/User/shared/UserForm.js:104 #: screens/User/UserDetail/UserDetail.js:71 @@ -8014,7 +8019,7 @@ msgid "Sat" msgstr "السبت" #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:46 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:176 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:177 #: screens/Inventory/InventorySources/InventorySourceListItem.js:26 #: screens/Project/ProjectDetail/ProjectDetail.js:129 #: screens/Project/ProjectList/ProjectListItem.js:51 @@ -8051,7 +8056,7 @@ msgid "Specify HTTP Headers in JSON format. Refer to\n" msgstr "حدد رؤوس HTTP بتنسيق JSON. راجع\n" " توثيق Ansible Controller للحصول على مثال على الصيغة." -#: components/NotificationList/NotificationList.js:199 +#: components/NotificationList/NotificationList.js:210 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:140 msgid "Rocket.Chat" msgstr "Rocket.Chat" @@ -8110,7 +8115,7 @@ msgstr "تعيين التكبير إلى 100% وتوسيط الرسم البيا msgid "Revert all to default" msgstr "إرجاع الكل إلى الافتراضي" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:255 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:256 #: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:135 msgid "Inventory file" msgstr "ملف المخزون" @@ -8187,6 +8192,11 @@ msgstr "منع الرجوع إلى مجموعة المثيلات" msgid "Maximum number of forks to allow across all jobs running concurrently on this group. Zero means no limit will be enforced." msgstr "الحد الأقصى لعدد التفريعات المسموح بها عبر جميع المهام التي تعمل بشكل متزامن على هذه المجموعة. يعني الصفر عدم فرض أي حد." +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:263 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:56 +msgid "Collection" +msgstr "المجموعة" + #: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:207 msgid "Failed to delete one or more credential types." msgstr "فشل حذف نوع بيانات اعتماد واحد أو أكثر." @@ -8201,7 +8211,7 @@ msgstr "المناطق" #: components/WorkflowOutputNavigation/WorkflowOutputNavigation.js:148 msgid "Workflow Jobs ({total})" -msgstr "" +msgstr "مهام سير العمل ({total})" #: components/Search/AdvancedSearch.js:315 msgid "Set type disabled for related search field fuzzy searches" @@ -8237,11 +8247,11 @@ msgstr "لا يوجد مضيفون متبقون" msgid "ID of the dashboard (optional)" msgstr "معرّف لوحة المعلومات (اختياري)" -#: screens/Inventory/shared/Inventory.helptext.js:127 +#: screens/Inventory/shared/Inventory.helptext.js:128 msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'" msgstr "استرجاع الحالة المُفعّلة من dict متغيرات المضيف المحدد. يمكن تحديد المتغير المُفعّل باستخدام تدوين النقطة، مثل: 'foo.bar'" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:339 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:347 #: screens/Inventory/InventorySources/InventorySourceListItem.js:88 msgid "Inventory Source Sync Error" msgstr "خطأ في مزامنة مصدر المخزون" @@ -8268,14 +8278,14 @@ msgstr "" #: components/VerbositySelectField/VerbositySelectField.js:35 #: components/VerbositySelectField/VerbositySelectField.js:45 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:217 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:261 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:269 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:47 #: screens/Job/JobDetail/JobDetail.js:369 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:257 msgid "Verbosity" msgstr "التفصيل" -#: components/NotificationList/NotificationList.js:197 +#: components/NotificationList/NotificationList.js:208 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:138 msgid "Mattermost" msgstr "Mattermost" @@ -8502,6 +8512,10 @@ msgstr "العودة إلى موافقات سير العمل" msgid "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Controller documentation for example syntax." msgstr "أدخل الحاقنات باستخدام صيغة JSON أو YAML. راجع توثيق Ansible Controller للحصول على مثال على الصيغة." +#: components/NotificationList/NotificationListItem.js:112 +msgid "Toggle notification changed" +msgstr "تبديل تغيير الإشعار" + #: components/Workflow/WorkflowLegend.js:122 #: screens/Job/JobOutput/JobOutputSearch.js:140 msgid "Warning" @@ -8570,7 +8584,7 @@ msgid "Prompt for instance groups on launch." msgstr "المطالبة بمجموعات المثيلات عند الإطلاق." #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:613 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:214 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:233 msgid "Workflow pending message body" msgstr "نص رسالة سير العمل المعلّق" @@ -8612,7 +8626,7 @@ msgstr "اسم IRC المستعار" msgid "Expires on" msgstr "ينتهي في" -#: screens/Inventory/shared/Inventory.helptext.js:98 +#: screens/Inventory/shared/Inventory.helptext.js:99 msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." msgstr "في كل مرة تعمل فيها مهمة باستخدام هذا المخزون، قم بتحديث المخزون من المصدر المحدد قبل تنفيذ مهام المهمة." @@ -8737,7 +8751,7 @@ msgstr "تمكين webhook لهذا القالب." msgid "On date" msgstr "في التاريخ" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:340 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:348 #: screens/Inventory/InventorySources/InventorySourceListItem.js:90 msgid "Cancel Inventory Source Sync" msgstr "إلغاء مزامنة مصدر المخزون" @@ -8814,7 +8828,7 @@ msgid "Greater than comparison." msgstr "مقارنة أكبر من." #: components/PromptDetail/PromptInventorySourceDetail.js:40 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:148 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:149 msgid "Overwrite local variables from remote inventory source" msgstr "الكتابة فوق المتغيرات المحلية من مصدر المخزون البعيد" @@ -8886,7 +8900,7 @@ msgstr "فشل حذف مستخدم واحد أو أكثر." msgid "On Success" msgstr "عند النجاح" -#: screens/Inventory/shared/Inventory.helptext.js:192 +#: screens/Inventory/shared/Inventory.helptext.js:193 msgid "The inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." msgstr "ملف المخزون المراد مزامنته بواسطة هذا المصدر. يمكنك التحديد من القائمة المنسدلة أو إدخال ملف داخل الإدخال." @@ -8951,7 +8965,7 @@ msgstr "غير مُكوّن" msgid "Workflow Job" msgstr "مهمة سير العمل" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:82 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:83 msgid "Use custom messages to change the content of\n" " notifications sent when a job starts, succeeds, or fails. Use\n" " curly braces to access information about the job:" @@ -9155,7 +9169,7 @@ msgid "Go to previous page" msgstr "الانتقال إلى الصفحة السابقة" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:565 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:178 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:197 msgid "Workflow approved message body" msgstr "نص رسالة الموافقة على سير العمل" @@ -9172,7 +9186,7 @@ msgid "required" msgstr "مطلوب" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:589 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:196 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:215 msgid "Workflow denied message body" msgstr "نص رسالة رفض سير العمل" @@ -9274,7 +9288,7 @@ msgstr "docs.ansible.com" msgid "Edit Schedule" msgstr "تحرير الجدول" -#: components/NotificationList/NotificationList.js:250 +#: components/NotificationList/NotificationList.js:263 msgid "Failed to toggle notification." msgstr "فشل تبديل الإشعار." @@ -9363,6 +9377,10 @@ msgstr "حفظ" msgid "Click to create a new link to this node." msgstr "انقر لإنشاء رابط جديد لهذه العقدة." +#: screens/Inventory/shared/Inventory.helptext.js:78 +msgid "Select the Ansible collection providing the inventory plugin used to sync from vCenter. The community.vmware collection is deprecated in favor of the newer vmware.vmware collection. The selection is applied via the \"plugin\" key in the source variables; when the key is absent, the default collection is used." +msgstr "حدد مجموعة Ansible التي توفر ملحق المخزون المستخدم للمزامنة من vCenter. المجموعة community.vmware مهملة لصالح المجموعة الأحدث vmware.vmware. يتم تطبيق الاختيار عبر مفتاح \"plugin\" في متغيرات المصدر؛ وعند غياب المفتاح، تُستخدم المجموعة الافتراضية." + #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:167 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:136 msgid "Operator" @@ -9480,7 +9498,7 @@ msgid "Deprovisioning" msgstr "إلغاء التوفير" #: components/DetailList/LaunchedByDetail.js:27 -#: components/NotificationList/NotificationList.js:202 +#: components/NotificationList/NotificationList.js:213 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:143 msgid "Webhook" msgstr "Webhook" @@ -9521,7 +9539,7 @@ msgstr "فشل حذف بيانات الاعتماد." msgid "Private key passphrase" msgstr "عبارة مرور المفتاح الخاص" -#: components/NotificationList/NotificationListItem.js:58 +#: components/NotificationList/NotificationListItem.js:63 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:47 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:53 msgid "Start" @@ -9541,7 +9559,7 @@ msgstr "يجب تحديد مخزون" #: components/PromptDetail/PromptProjectDetail.js:100 #: components/PromptDetail/PromptWFJobTemplateDetail.js:81 #: components/Schedule/ScheduleDetail/ScheduleDetail.js:477 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:266 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:274 #: screens/Job/JobDetail/JobDetail.js:345 #: screens/Project/ProjectDetail/ProjectDetail.js:229 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 @@ -9595,7 +9613,7 @@ msgstr "Red Hat Insights" msgid "View GitHub Settings" msgstr "عرض إعدادات GitHub" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:257 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:258 msgid "/ (project root)" msgstr "/ (جذر المشروع)" @@ -9624,7 +9642,7 @@ msgstr "عدد العمليات المتوازية أو المتزامنة ال msgid "View all Workflow Approvals." msgstr "عرض جميع موافقات سير العمل." -#: screens/Inventory/shared/Inventory.helptext.js:92 +#: screens/Inventory/shared/Inventory.helptext.js:93 msgid "When not checked, a merge will be performed, combining local variables with those found on the external source." msgstr "عند عدم التحديد، سيتم إجراء دمج، يجمع بين المتغيرات المحلية وتلك الموجودة في المصدر الخارجي." @@ -9718,7 +9736,7 @@ msgstr "تبديل الأدوات" #: screens/Inventory/InventoryList/InventoryList.js:211 #: screens/Inventory/InventoryList/InventoryList.js:241 #: screens/Inventory/InventoryList/InventoryListItem.js:121 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:225 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:226 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:107 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:153 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:163 @@ -9769,7 +9787,7 @@ msgid "Test External Credential" msgstr "اختبار بيانات الاعتماد الخارجية" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:601 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:205 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:224 msgid "Workflow pending message" msgstr "رسالة سير العمل المعلّق" @@ -9952,7 +9970,7 @@ msgstr "التنقل" msgid "If enabled, control nodes will peer to this instance automatically. If disabled, instance will be connected only to associated peers." msgstr "إذا كان مُفعّلاً، فستقترن عقد التحكم بهذا المثيل تلقائيًا. إذا كان مُعطّلاً، فسيتصل المثيل بالأقران المرتبطين فقط." -#: screens/Inventory/shared/Inventory.helptext.js:120 +#: screens/Inventory/shared/Inventory.helptext.js:121 msgid "and click on Update Revision on Launch" msgstr "وانقر على تحديث المراجعة عند الإطلاق" @@ -9971,6 +9989,10 @@ msgstr "حدد مشروعًا قبل تحرير بيئة التنفيذ." msgid "Order" msgstr "الترتيب" +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:179 +msgid "Changed message body" +msgstr "نص رسالة التغيير" + #: components/Schedule/Schedule.js:65 msgid "Back to Schedules" msgstr "العودة إلى الجداول" @@ -10089,7 +10111,7 @@ msgstr "إنشاء مجموعة حاويات جديدة" msgid "Bitbucket Data Center" msgstr "Bitbucket Data Center" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:367 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:375 msgid "Failed to delete inventory source {name}." msgstr "فشل حذف مصدر المخزون {name}." @@ -10155,7 +10177,7 @@ msgstr "تحرير التفاصيل" msgid "Deleted" msgstr "محذوف" -#: screens/Inventory/shared/Inventory.helptext.js:129 +#: screens/Inventory/shared/Inventory.helptext.js:130 msgid "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import." msgstr "يتم تجاهل هذا الحقل ما لم يتم تعيين متغير مُفعّل. إذا كان المتغير المُفعّل يطابق هذه القيمة، فسيتم تمكين المضيف عند الاستيراد." @@ -10254,11 +10276,11 @@ msgstr "الوحدة" msgid "Confirm revert all" msgstr "تأكيد إرجاع الكل" -#: screens/Inventory/shared/Inventory.helptext.js:89 +#: screens/Inventory/shared/Inventory.helptext.js:90 msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source." msgstr "في حالة التحديد، ستتم إزالة جميع المتغيرات للمجموعات الفرعية والمضيفين واستبدالها بتلك الموجودة في المصدر الخارجي." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:350 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:358 msgid "Delete inventory source" msgstr "حذف مصدر المخزون" @@ -10329,7 +10351,7 @@ msgstr "الوقت المنقضي لتشغيل المهمة" msgid "GitLab" msgstr "GitLab" -#: components/NotificationList/NotificationListItem.js:93 +#: components/NotificationList/NotificationListItem.js:98 msgid "Toggle notification failure" msgstr "تبديل فشل الإشعار" @@ -10430,8 +10452,8 @@ msgstr "يجب أن يحتوي هذا الحقل على {0} أحرف على ال #: components/JobList/JobListItem.js:197 #: components/PromptDetail/PromptInventorySourceDetail.js:78 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:222 -#: screens/Inventory/shared/InventorySourceForm.js:162 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:223 +#: screens/Inventory/shared/InventorySourceForm.js:168 #: screens/Job/JobDetail/JobDetail.js:180 #: screens/Job/JobDetail/JobDetail.js:332 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:93 @@ -10515,7 +10537,7 @@ msgstr "تحديد المفتاح" msgid "Pass extra command line changes. There are two ansible command line parameters: " msgstr "قم بتمرير تغييرات سطر أوامر إضافية. هناك معلمتان لسطر أوامر ansible: " -#: screens/Inventory/shared/Inventory.helptext.js:84 +#: screens/Inventory/shared/Inventory.helptext.js:85 msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process." msgstr "عند عدم التحديد، ستبقى المضيفون والمجموعات الفرعية المحلية غير الموجودة في المصدر الخارجي دون تغيير بواسطة عملية تحديث المخزون." @@ -10558,7 +10580,7 @@ msgid "Specify a notification color. Acceptable colors are hex\n" msgstr "حدد لون إشعار. الألوان المقبولة هي رمز لون\n" " سداسي عشري (مثال: #3af أو #789abc)." -#: components/NotificationList/NotificationList.js:201 +#: components/NotificationList/NotificationList.js:212 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:142 msgid "Twilio" msgstr "Twilio" @@ -10598,7 +10620,7 @@ msgid "updated" msgstr "تم التحديث" #: screens/Inventory/AdvancedInventoryHostDetail/AdvancedInventoryHostDetail.js:50 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:320 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:328 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:135 #: screens/Project/ProjectList/ProjectListItem.js:274 #: screens/TopologyView/Tooltip.js:347 @@ -10799,7 +10821,7 @@ msgid "Successful jobs" msgstr "المهام الناجحة" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:535 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:151 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:152 msgid "Error message" msgstr "رسالة الخطأ" @@ -10928,7 +10950,7 @@ msgstr "مشروع غير معروف" msgid "Preconditions for running this node when there are multiple parents. Refer to the" msgstr "الشروط المسبقة لتشغيل هذه العقدة عند وجود عدة عقد أصلية. راجع" -#: screens/Inventory/shared/Inventory.helptext.js:140 +#: screens/Inventory/shared/Inventory.helptext.js:141 msgid "Variables used to configure the inventory source. For a detailed description of how to configure this plugin, see" msgstr "المتغيرات المستخدمة لتكوين مصدر المخزون. للحصول على وصف مفصل لكيفية تكوين هذا الملحق، انظر" @@ -10938,7 +10960,7 @@ msgstr "Google Compute Engine" #: components/Sparkline/Sparkline.js:34 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:55 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:185 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:186 #: screens/Inventory/InventorySources/InventorySourceListItem.js:35 #: screens/Project/ProjectDetail/ProjectDetail.js:138 #: screens/Project/ProjectList/ProjectListItem.js:60 @@ -10960,7 +10982,7 @@ msgstr "جميع أنواع المهام" msgid "GitHub Enterprise Organization" msgstr "GitHub Enterprise Organization" -#: screens/Inventory/shared/InventorySourceForm.js:170 +#: screens/Inventory/shared/InventorySourceForm.js:176 msgid "Choose a source" msgstr "اختر مصدرًا" @@ -10994,7 +11016,7 @@ msgstr "تحديد مفتاح بسيط" msgid "You have automated against more hosts than your subscription allows." msgstr "لقد قمت بالأتمتة على عدد من المضيفين أكثر مما يسمح به اشتراكك." -#: screens/Inventory/shared/Inventory.helptext.js:130 +#: screens/Inventory/shared/Inventory.helptext.js:131 msgid "Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied." msgstr "تعبير نمطي حيث سيتم استيراد أسماء المضيفين المطابقة فقط. يتم تطبيق المرشح كخطوة معالجة لاحقة بعد تطبيق أي مرشحات ملحق مخزون." @@ -11120,7 +11142,7 @@ msgstr "LDAP" msgid "Workflow Template" msgstr "قالب سير العمل" -#: components/NotificationList/NotificationListItem.js:40 +#: components/NotificationList/NotificationListItem.js:45 #: components/Workflow/WorkflowLegend.js:118 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:76 msgid "Approval" @@ -11282,7 +11304,7 @@ msgstr "فشل التوفير" msgid "Whether the approval node is automatically approved or denied when the timeout expires." msgstr "ما إذا كانت عقدة الموافقة تتم الموافقة عليها أو رفضها تلقائيًا عند انتهاء المهلة." -#: screens/Inventory/shared/Inventory.helptext.js:125 +#: screens/Inventory/shared/Inventory.helptext.js:126 msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed." msgstr "الوقت بالثواني لاعتبار مزامنة المخزون حالية. أثناء تشغيل المهام والاستدعاءات، سيقوم نظام المهام بتقييم الطابع الزمني لأحدث مزامنة. إذا كان أقدم من مهلة ذاكرة التخزين المؤقت، فلا يُعتبر حاليًا، وسيتم إجراء مزامنة مخزون جديدة." @@ -11296,7 +11318,7 @@ msgstr "انتهاء صلاحية رمز الوصول" #: components/WorkflowOutputNavigation/WorkflowOutputNavigation.js:147 msgid "Workflow Job {currentPosition}/{total}" -msgstr "" +msgstr "مهمة سير العمل {currentPosition}/{total}" #: components/Schedule/ScheduleDetail/FrequencyDetails.js:69 msgid "{interval, plural, one {# minute} other {# minutes}}" @@ -11440,7 +11462,7 @@ msgstr "معرّف نظام Insights" msgid "Authorization Code Expiration" msgstr "انتهاء صلاحية رمز التفويض" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:69 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:70 msgid "Customize messages…" msgstr "تخصيص الرسائل…" @@ -11666,7 +11688,7 @@ msgid "{interval, plural, one {# week} other {# weeks}}" msgstr "{interval, plural, one {# أسبوع} other {# أسابيع}}" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:544 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:160 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:161 msgid "Error message body" msgstr "نص رسالة الخطأ" @@ -11709,7 +11731,7 @@ msgstr "العقد المُدارة" #: components/Lookup/MultiCredentialsLookup.js:201 #: components/Lookup/OrganizationLookup.js:131 #: components/Lookup/ProjectLookup.js:153 -#: components/NotificationList/NotificationList.js:206 +#: components/NotificationList/NotificationList.js:217 #: components/RelatedTemplateList/RelatedTemplateList.js:179 #: components/Schedule/ScheduleList/ScheduleList.js:201 #: components/TemplateList/TemplateList.js:231 @@ -11825,7 +11847,7 @@ msgstr "خطأ في حذف الرموز المميزة" msgid "Select period" msgstr "حدد الفترة" -#: components/NotificationList/NotificationListItem.js:65 +#: components/NotificationList/NotificationListItem.js:70 msgid "Toggle notification start" msgstr "تبديل بدء الإشعار" @@ -11873,7 +11895,7 @@ msgid "This field must be a number and have a value between {min} and {max}" msgstr "يجب أن يكون هذا الحقل رقمًا وأن تكون قيمته بين {min} و{max}" #: components/PromptDetail/PromptInventorySourceDetail.js:45 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:154 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:155 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:93 msgid "Update on launch" msgstr "التحديث عند الإطلاق" @@ -11890,7 +11912,7 @@ msgstr "إضافة المضيفين إلى المجموعة بناءً على ش msgid "Copy Template" msgstr "نسخ القالب" -#: components/NotificationList/NotificationListItem.js:51 +#: components/NotificationList/NotificationListItem.js:56 msgid "Toggle notification approvals" msgstr "تبديل موافقات الإشعار" @@ -11918,7 +11940,7 @@ msgstr "العام الماضي" msgid "Week" msgstr "أسبوع" -#: components/NotificationList/NotificationListItem.js:72 +#: components/NotificationList/NotificationListItem.js:77 #: components/StatusLabel/StatusLabel.js:39 msgid "Success" msgstr "نجاح" diff --git a/awx/ui/src/locales/en/messages.js b/awx/ui/src/locales/en/messages.js index cb214ca1..1cf1445f 100644 --- a/awx/ui/src/locales/en/messages.js +++ b/awx/ui/src/locales/en/messages.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"--iDlT\":[\"Delete Project\"],\"-0AkQd\":[[\"forks\",\"plural\",{\"one\":[\"#\",\" fork\"],\"other\":[\"#\",\" forks\"]}]],\"-0B-ue\":[\"Projects\"],\"-5kO8P\":[\"Saturday\"],\"-6EcFR\":[\"Press Enter to edit. Press ESC to stop editing.\"],\"-7M7WW\":[\"Click to toggle default value\"],\"-7VWRl\":[\"RAM \",[\"0\"]],\"-8WGoO\":[\"The plugin parameter is required.\"],\"-9d7Ol\":[\"Pagerduty subdomain\"],\"-9y9jy\":[\"Running health check\"],\"-9yY_Q\":[\"Failed to copy inventory.\"],\"-AZQnp\":[\"SAML\"],\"-FWz2-\":[\"Scroll previous\"],\"-FjWgX\":[\"Thu\"],\"-GMFSa\":[\"Failed to copy project.\"],\"-GOG9X\":[\"Hide description\"],\"-NI2UI\":[\"Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory.\"],\"-NezOR\":[\"This credential type is currently being used by some credentials and cannot be deleted\"],\"-OpL2l\":[\"Execute regardless of the parent node's final state.\"],\"-PyL32\":[\"Are you sure you want to remove this node?\"],\"-RAMET\":[\"Edit this link\"],\"-SAqJ3\":[\"Failed to copy credential.\"],\"-Uepfb\":[\"Control\"],\"-b3ghh\":[\"Privilege Escalation\"],\"-cWxFz\":[\"Enable content signing to verify that the content has remained secure when a project is synced. If the content has been tampered with, the job will not run.\"],\"-hh3vo\":[\"Unable to load last job update\"],\"-li8PK\":[\"Subscription Usage\"],\"-nb9qF\":[\"(Prompt on launch)\"],\"-ohrPc\":[\"Lookup typeahead\"],\"-rfqXD\":[\"Survey Enabled\"],\"-uOi7U\":[\"Click to download bundle\"],\"-vAlj5\":[\"Failed to launch job.\"],\"-z0Ubz\":[\"Select Roles to Apply\"],\"-zW4qj\":[\"Branch to checkout. In addition to branches, you can input tags, commit hashes, and arbitrary refs. Some commit hashes and refs may not be available unless you also provide a custom refspec.\"],\"-zy2Nq\":[\"Type\"],\"0-31GV\":[\"Removing\"],\"0-yjzX\":[\"The project must be synced before a revision is available.\"],\"00_HDq\":[\"Policy Type\"],\"00cteM\":[\"This field must not exceed \",[\"0\"],\" characters\"],\"01Zgfk\":[\"Timed out\"],\"02FGuS\":[\"Create new group\"],\"02ePaq\":[\"Select \",[\"0\"]],\"02o5A-\":[\"Create New Project\"],\"05TJDT\":[\"Click to view job details\"],\"06Veq8\":[\"Sync Project\"],\"08IuMU\":[\"Overwrite variables\"],\"08dX0o\":[\"Grafana\"],\"0Ca6Bi\":[[\"dateStr\"],\" by <0>\",[\"username\"],\"\"],\"0DRyjU\":[\"Running Handlers\"],\"0JjrTf\":[\"There was an error parsing the file. Please check the file formatting and try again.\"],\"0K8MzY\":[\"This field must not exceed \",[\"max\"],\" characters\"],\"0LUj25\":[\"Delete instance group\"],\"0MFMD5\":[\"Failed to run a health check on one or more instances.\"],\"0Ohn6b\":[\"Launched By\"],\"0PUWHV\":[\"Repeat Frequency\"],\"0Pz6gk\":[\"Variables used to configure the constructed inventory plugin. For a detailed description of how to configure this plugin, see\"],\"0QsHpG\":[\"Input schema which defines a set of ordered fields for that type.\"],\"0Tddvz\":[\"The base URL of the Grafana server - the\\n /api/annotations endpoint will be added automatically to the base\\n Grafana URL.\"],\"0WL4_U\":[\"Delete all nodes\"],\"0WP27-\":[\"Waiting for job output…\"],\"0YAsXQ\":[\"Container group\"],\"0ZdD1M\":[[\"0\",\"plural\",{\"one\":[\"You cannot cancel the following job because it is not running:\"],\"other\":[\"You cannot cancel the following jobs because they are not running:\"]}]],\"0ZqUtV\":[\"For more information, refer to the\"],\"0_ru-E\":[\"Copy Inventory\"],\"0cqIWs\":[\"Basic auth password\"],\"0d48JM\":[\"Multiple Choice (multiple select)\"],\"0eOoxo\":[\"Please select an end date/time that comes after the start date/time.\"],\"0f7U0k\":[\"Wed\"],\"0gPQCa\":[\"Always\"],\"0lvFRT\":[\"You cannot change the credential type of a credential, as it may break the functionality of the resources using it.\"],\"0pC_y6\":[\"Event\"],\"0qOaMt\":[\"Something went wrong with the request to test this credential and metadata.\"],\"0rVzXl\":[\"Google OAuth 2 settings\"],\"0sNe72\":[\"Add Roles\"],\"0tNXE8\":[\"PUT\"],\"0tfvhT\":[\"Instance group used capacity\"],\"0wlLcO\":[\"Set how many days of data should be retained.\"],\"0zpgxV\":[\"Options\"],\"0zs8j5\":[\"Maximum number of times this node's job is automatically retried after failing before its failure paths are followed. Canceled jobs are never retried.\"],\"1-4GhF\":[\"Cancel Sync\"],\"10B0do\":[\"Failed to send test notification.\"],\"1280Tg\":[\"Host Name\"],\"12j25_\":[\"GPG Public Key\"],\"12kemj\":[\"Source Control URL\"],\"14KOyT\":[\"Source vars\"],\"15GcuU\":[\"View Miscellaneous Authentication settings\"],\"17TKua\":[\"Instance group\"],\"19zgn6\":[\"Instance Type\"],\"1A3EXy\":[\"Expand\"],\"1C5cFl\":[\"Next Run\"],\"1Ey8My\":[\"IP address\"],\"1F0IaT\":[\"View Schedules\"],\"1HMy92\":[\"JSON:\"],\"1I6UoR\":[\"Views\"],\"1L3KBl\":[\"Create new credential Type\"],\"1LRwvx\":[\"If you want the Inventory Source to update on launch, click on Update on Launch, and also go to \"],\"1Ltnvs\":[\"Add Node\"],\"1PQRWr\":[\"Start Time\"],\"1QRNEs\":[\"Repeat frequency\"],\"1RYzKu\":[\"Relaunch from canceled node\"],\"1UJu6o\":[\"Please select a day number between 1 and 31.\"],\"1UjRxI\":[\"Cache timeout\"],\"1UzENP\":[\"No\"],\"1V4Yvg\":[\"Miscellaneous System\"],\"1WlWk7\":[\"View Inventory Host Details\"],\"1WsB5U\":[\"We were unable to locate subscriptions associated with this account.\"],\"1ZaQUH\":[\"Last name\"],\"1_gTC7\":[\"You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID.\"],\"1abtmx\":[\"Promote Child Groups and Hosts\"],\"1ahgeV\":[\"Google OAuth2\"],\"1cT4RU\":[\"SCM update\"],\"1fO-kL\":[\"Failed to toggle instance.\"],\"1hCxP5\":[\"Failed to delete one or more instance groups.\"],\"1kwHxg\":[\"Host Metrics\"],\"1n50PN\":[\"JSON tab\"],\"1qd4yi\":[\"Variables must be in JSON or YAML syntax. Use the radio button to toggle between the two.\"],\"1rDBnp\":[\"File Difference\"],\"1w2SCz\":[\"Choose a Source Control Type\"],\"1xdJD7\":[\"Fit to screen\"],\"1yHVE-\":[\"Adding\"],\"2-iKER\":[\"View activity stream\"],\"2B_v7Y\":[\"Policy instance percentage\"],\"2CTKOa\":[\"Back to Projects\"],\"2FB7vv\":[\"Select an organization before editing the default execution environment.\"],\"2FeJcd\":[\"Item Skipped\"],\"2H9REH\":[\"Fuzzy search on name field.\"],\"2JV4mx\":[\"The Instance Groups to which this instance belongs.\"],\"2KlsJC\":[\"You may apply a number of possible variables in the\\n message. For more information, refer to the\"],\"2MSEkM\":[\"Failed to delete inventory.\"],\"2a07Yj\":[\"Copy Notification Template\"],\"2ekvhy\":[\"Exception Frequency\"],\"2gDkH_\":[\"Please enter a number of occurrences.\"],\"2iyx-2\":[\"Ansible Controller Documentation.\"],\"2n41Wr\":[\"Add workflow template\"],\"2nsB1O\":[\"Back to Tokens\"],\"2ocqzE\":[\"Webhooks: Enable webhook for this template.\"],\"2ooR7j\":[\"LDAP 5\"],\"2p6eVk\":[\"Lookup modal\"],\"2pNIxF\":[\"Workflow Nodes\"],\"2pgi-L\":[\"Indicates if a host is available and should be included in running\\n jobs. For hosts that are part of an external inventory, this may be\\n reset by the inventory sync process.\"],\"2qfwJn\":[\"Overwrite\"],\"2r06bV\":[\"Hipchat\"],\"2rvMKg\":[\"Refresh Token\"],\"2w-INk\":[\"Host details\"],\"2zs1kI\":[\"This value does not match the password you entered previously. Please confirm that password.\"],\"3-SkJA\":[\"Disassociate group from host?\"],\"3-sY1p\":[\"Destination SMS number(s)\"],\"328Yxp\":[\"Source control branch\"],\"38Or-7\":[\"Tabs\"],\"38VIWI\":[\"View Template Details\"],\"39y5bn\":[\"Friday\"],\"3A9ATS\":[\"Execution environment not found.\"],\"3AOZPn\":[\"View and edit debug options\"],\"3FUtN9\":[\"Inventory Source Sync\"],\"3IVQDN\":[\"This schedule uses complex rules that are not supported in the\\n UI. Please use the API to manage this schedule.\"],\"3JjdaA\":[\"Run\"],\"3JnvxN\":[\"Choose the resources that will be receiving new roles. You'll be able to select the roles to apply in the next step. Note that the resources chosen here will receive all roles chosen in the next step.\"],\"3JzsDb\":[\"May\"],\"3LoUor\":[\"Destination channels\"],\"3LqMX2\":[\"CIQ Ascender Automation Platform\"],\"3PAU4M\":[\"Year\"],\"3PZalO\":[\"Host not found.\"],\"3Rke7L\":[\"1 (Info)\"],\"3WGwSW\":[\"Delete the local repository in its entirety prior to performing an update. Depending on the size of the repository this may significantly increase the amount of time required to complete an update.\"],\"3YSVMq\":[\"Deletion error\"],\"3aIe4Y\":[\"Create New Organization\"],\"3b24mY\":[\"CPU \",[\"0\"]],\"3fG1e7\":[\"Elapsed Time\"],\"3fMc43\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" year\"],\"other\":[\"#\",\" years\"]}]],\"3hCQhK\":[\"Inventory Plugins\"],\"3hvUyZ\":[\"new choice\"],\"3mTiHp\":[\"Failed to copy template.\"],\"3pBNb0\":[\"Reload output\"],\"3sFvGC\":[\"Set the instance enabled or disabled. If disabled, jobs will not be assigned to this instance.\"],\"3sXZ-V\":[\"and click on Update Revision on Launch.\"],\"3uAM50\":[\"End User License Agreement\"],\"3wPA9L\":[\"Setting category\"],\"3y7qi5\":[\"Back to Credentials\"],\"3yy_k-\":[\"View all Teams.\"],\"4-RjdJ\":[[\"interval\"],\" year\"],\"40lLFI\":[\"Go to next page\"],\"41KRqu\":[\"Credential passwords\"],\"45BzQy\":[\"Health checks are asynchronous tasks. See the\"],\"45cx0B\":[\"Cancel subscription edit\"],\"45gLaI\":[\"Prompt for credentials on launch.\"],\"46SUtl\":[\"Edit group\"],\"479kuh\":[\"Copy full revision to clipboard.\"],\"47e97a\":[\"Max Retries\"],\"4BITzH\":[\"Error:\"],\"4LzLLz\":[\"View all settings\"],\"4Q4HZp\":[\"No \",[\"pluralizedItemName\"],\" Found\"],\"4QXpWJ\":[\"timed out\"],\"4QfhOe\":[\"Some search modifiers like not__ and __search are not supported in Smart Inventory host filters. Remove these to create a new Smart Inventory with this filter.\"],\"4S2cNE\":[\"View Logging settings\"],\"4Wt2Ty\":[\"Select Items from List\"],\"4_ESDh\":[\"This field must be a regular expression\"],\"4_xiC_\":[\"Artifacts\"],\"4alXD6\":[\"Maximum number of jobs to run concurrently on this group.\\n Zero means no limit will be enforced.\"],\"4bhLaA\":[\"Select a credential Type\"],\"4cWhxn\":[\"Controls whether or not this instance is managed by policy. If enabled, the instance will be available for automatic assignment to and unassignment from instance groups based on policy rules.\"],\"4dQFvz\":[\"Finished\"],\"4g1rw0\":[\"The amount of time (in seconds) before the email\\n notification stops trying to reach the host and times out. Ranges\\n from 1 to 120 seconds.\"],\"4hPyPF\":[\"Save & Exit\"],\"4j2eOR\":[\"Select the inventory that this host will belong to.\"],\"4jnim6\":[\"Select a webhook service.\"],\"4km-Vu\":[\"Out of compliance\"],\"4kw_um\":[[\"interval\"],\" minute\"],\"4lCMxZ\":[\"Failure Explanation:\"],\"4lgLew\":[\"February\"],\"4mQyZf\":[\"Webhook services can use this as a shared secret.\"],\"4nLbTY\":[\"View all management jobs\"],\"4o_cFL\":[\"Delete application\"],\"4s0pSB\":[\"Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns are allowed. Refer to Ansible documentation for more information and examples on patterns.\"],\"4uVADI\":[\"Client secret\"],\"4vFDZV\":[\"Create New Job Template\"],\"4vkbaA\":[\"The project from which this inventory update is sourced.\"],\"4yGeRr\":[\"Inventory Sync\"],\"4zue79\":[\"Copyright\"],\"5-qYGv\":[\"Edit Instance\"],\"54_SyV\":[[\"0\",\"plural\",{\"one\":[\"You do not have permission to cancel the following job:\"],\"other\":[\"You do not have permission to cancel the following jobs:\"]}]],\"56fd5u\":[\"Are you sure you want to remove all the nodes in this workflow?\"],\"5B77Dm\":[\"Last job\"],\"5F5F4w\":[\"Workflow Approval\"],\"5IhYoj\":[\"Node types\"],\"5K7kGO\":[\"documentation\"],\"5KMGbn\":[\"Are you sure you want to cancel this job?\"],\"5RMgCw\":[\"Hosts\"],\"5S4tZv\":[\"Frequency did not match an expected value\"],\"5Sa1Ss\":[\"E-mail\"],\"5TnQp6\":[\"Job Type\"],\"5WFDw4\":[\"Only Group By\"],\"5X2wog\":[\"There was a problem logging in. Please try again.\"],\"5_vHPm\":[\"View TACACS+ settings\"],\"5ajaW1\":[\"Execute when an artifact of the parent node matches the condition.\"],\"5dJK4M\":[\"Roles\"],\"5eHyY-\":[\"Test Notification\"],\"5eL2KN\":[\"Target URL\"],\"5lqXf5\":[\"Revert to factory default.\"],\"5n_soj\":[\"Prompt for job slice count on launch.\"],\"5p6-Mk\":[\"Filter by failed jobs\"],\"5pDe2G\":[\"Remove \",[\"0\"],\" Access\"],\"5pa4JT\":[\"Playbook Started\"],\"5qauVA\":[\"This workflow job template is currently being used by other resources. Are you sure you want to delete it?\"],\"5vA8H0\":[\"No Hosts Matched\"],\"5xzS8Q\":[\"Token that ensures this is a source file\\n for the ‘constructed’ plugin.\"],\"5y9wkB\":[\"Back to Notifications\"],\"6-OdGi\":[\"Protocol\"],\"6-ptnU\":[\"option to the\"],\"623gDt\":[\"Failed to delete user.\"],\"63C4Yo\":[\"Container Group\"],\"66Zq7T\":[\"Save link changes\"],\"66qTfS\":[\"Past week\"],\"679-JR\":[\"Fuzzy search on id, name or description fields.\"],\"68OTAn\":[\"This intance is currently being used by other resources. Are you sure you want to delete it?\"],\"68h6WG\":[\"Launch management job\"],\"69aXwM\":[\"Add existing group\"],\"69zuwn\":[\"Deprovisioning these instances could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"6ASSBg\":[\"LDAP 4\"],\"6BzDub\":[\"Soft delete\"],\"6GBt0m\":[\"Metadata\"],\"6HLTEb\":[\"Filter...\"],\"6J-cs1\":[\"Timeout seconds\"],\"6KhU4s\":[\"Are you sure you want to exit the Workflow Creator without saving your changes?\"],\"6LTyxl\":[\"Revision\"],\"6PmtyP\":[\"Toggle legend\"],\"6RDwJM\":[\"Tokens\"],\"6UYTy8\":[\"Minute\"],\"6V3Ea3\":[\"Copied\"],\"6WwHL3\":[\"Total Nodes\"],\"6XOI1I\":[\"Create new federated inventory\"],\"6XgEPi\":[\"Hour\"],\"6YtxFj\":[\"Name\"],\"6Z5ACo\":[\"Host Config Key\"],\"6bpC9t\":[\"Failed node\"],\"6cylr_\":[\"Stdout\"],\"6f961q\":[\"Only if Missing\"],\"6hEnxG\":[\"Enable privilege escalation\"],\"6j6_0F\":[\"Related resource\"],\"6kpN96\":[\"Failed to delete notification.\"],\"6lGV3K\":[\"Show less\"],\"6msU0q\":[\"Failed to delete one or more jobs.\"],\"6nsio_\":[\"Run Command\"],\"6oNH0E\":[\"plugin configuration guide.\"],\"6pMgh_\":[\"View LDAP Settings\"],\"6rSKy6\":[\"Select the source inventories for this federated inventory. When a job is launched, hosts will be routed to each source inventory's instance group automatically.\"],\"6uvnKV\":[\"API Service/Integration Key\"],\"6vrz8I\":[\"Failed to cancel one or more jobs.\"],\"6zGHNM\":[\"Hosts remaining\"],\"74MNbw\":[\"Ctrl IQ, Inc.\"],\"764xeZ\":[\"Failed to update survey.\"],\"7Bj3x9\":[\"Failed\"],\"7ElOdS\":[\"ID of the Dashboard\"],\"7IUE9q\":[\"Source variables\"],\"7JF9w9\":[\"Add Question\"],\"7L01XJ\":[\"Actions\"],\"7O5TcN\":[\"Event summary not available\"],\"7PzzBU\":[\"User\"],\"7UZtKb\":[\"The organization that owns this workflow job template.\"],\"7VETeB\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"],\"7VpPHA\":[\"Confirm\"],\"7Xk3M1\":[\"Select the project containing the playbook you want this job to execute.\"],\"7ZhNzL\":[\"Go to first page\"],\"7b8TOD\":[\"details.\"],\"7bDeKc\":[\"Subscription manifest\"],\"7fJwmW\":[\"Selected items list.\"],\"7hS02I\":[[\"automatedInstancesCount\"],\" since \",[\"automatedInstancesSinceDateTime\"]],\"7icMBj\":[\"No job data available\"],\"7kb4LU\":[\"Approved\"],\"7p5kLi\":[\"Dashboard\"],\"7q256R\":[\"Allow branch override\"],\"7qFdk8\":[\"Edit Credential\"],\"7sMeHQ\":[\"Key\"],\"7sNhEz\":[\"Username\"],\"7w3QvK\":[\"Success message body\"],\"7wgt9A\":[\"Playbook run\"],\"7zmvk2\":[\"Item Failed\"],\"81eOdm\":[\"relaunch workflow\"],\"82O8kJ\":[\"This project is currently on sync and cannot be clicked until sync process completed\"],\"82sWFi\":[\"Administration\"],\"84Usx_\":[\"Failed to delete project.\"],\"87a_t_\":[\"Label\"],\"88ip8h\":[\"Revert all\"],\"8BkLPF\":[\"Allowed URIs list, space separated\"],\"8F8HYs\":[\"Select your Ansible Automation Platform subscription to use.\"],\"8H3Igx\":[[\"interval\"],\" month\"],\"8Oef5v\":[\"Example URLs for GIT Source Control include:\"],\"8XM8GW\":[\"Failed to assign roles properly\"],\"8Z236a\":[\"brand logo\"],\"8ZsakT\":[\"Password\"],\"8_wZUD\":[\"Team Roles\"],\"8d57h8\":[\"View Miscellaneous System settings\"],\"8gCRbU\":[\"Other prompts\"],\"8gaTqG\":[\"Type Details\"],\"8kDNpI\":[\"Parent node outcome required before the condition is evaluated.\"],\"8l9yyw\":[\"Job Template\"],\"8lEjQX\":[\"Install Bundle\"],\"8lb4Do\":[\"Clear subscription\"],\"8oiwP_\":[\"Input configuration\"],\"8p_xVT\":[[\"0\",\"plural\",{\"one\":[[\"1\"]],\"other\":[[\"2\"]]}]],\"8u5g0S\":[\"Delete smart inventory\"],\"8vETh9\":[\"Show\"],\"8wxHsh\":[\"Webhook key for this workflow job template.\"],\"8yd882\":[\"Failed to disassociate one or more teams.\"],\"8zGO4o\":[\"Field matches the given regular expression.\"],\"8zoIOi\":[[\"0\",\"plural\",{\"one\":[\"This credential type is currently being used by some credentials and cannot be deleted.\"],\"other\":[\"Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?\"]}]],\"8zvzWO\":[\"Allow simultaneous runs of this workflow job template.\"],\"9-wVFp\":[\"View Federated Inventory Details\"],\"91UHfE\":[\"Inventory Update\"],\"91lyAf\":[\"Concurrent Jobs\"],\"933cZy\":[\"Miscellaneous System settings\"],\"954HqS\":[\"When was the host first automated\"],\"95p1BK\":[\"Create New User\"],\"98Qtlu\":[\"Each time a job runs using this project, update the revision of the project prior to starting the job.\"],\"991Df5\":[\"a new webhook key will be generated on save.\"],\"99qC6z\":[[\"interval\"],\" week\"],\"9Ah95g\":[[\"0\",\"plural\",{\"one\":[\"This inventory is currently being used by some templates. Are you sure you want to delete it?\"],\"other\":[\"Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?\"]}]],\"9BTNYL\":[\"Expected at least one of client_email, project_id or private_key to be present in the file.\"],\"9BpfLa\":[\"Select Labels\"],\"9DOXq6\":[\"View all Templates.\"],\"9DugxF\":[\"Subscription type\"],\"9HhFQ8\":[\"Returns results that have values other than this one as well as other filters.\"],\"9L1ngr\":[\"Total jobs\"],\"9N-4tQ\":[\"Credential Type\"],\"9NyAH9\":[\"Skipped\"],\"9PB0sF\":[\"IRC\"],\"9Rsklx\":[\"Remove All Nodes\"],\"9Tmez1\":[\"View Instance Details\"],\"9UuGMQ\":[\"Pending delete\"],\"9V-Un3\":[\"Enable Fact Storage\"],\"9VMv7k\":[\"Constructed Inventory\"],\"9Wm-J4\":[\"Toggle Password\"],\"9XA1Rs\":[\"The project is currently syncing and the revision will be available after the sync is complete.\"],\"9Y3BQE\":[\"Delete Organization\"],\"9YSB0Z\":[\"This schedule is missing an Inventory\"],\"9ZnrIx\":[\"View and edit your subscription information\"],\"9fRa7M\":[\"Select a row to remove\"],\"9hmrEp\":[\"Relaunch on\"],\"9iX1S0\":[\"This action will remove the following instance and you may need to rerun the install bundle for any instance that was previously connected to:\"],\"9jfn-S\":[\"Is not expanded\"],\"9l0RZY\":[\"Click an available node to create a new link. Click outside the graph to cancel.\"],\"9m7jms\":[\"Source inventories whose hosts will be routed to their respective instance groups when a job is launched against this federated inventory.\"],\"9mfJJf\":[\"Job templates\"],\"9nhhVW\":[\"pages\"],\"9nypdt\":[\"Restore initial value.\"],\"9odS2n\":[\"Failed Hosts\"],\"9og-0c\":[\"This execution environment is currently being used by other resources. Are you sure you want to delete it?\"],\"9rFgm2\":[\"Subscription capacity\"],\"9rvzNA\":[\"Association modal\"],\"9td1Wl\":[\"Check\"],\"9uI_rE\":[\"Undo\"],\"9u_dDE\":[\"Unreachable Host Count\"],\"9uxVdR\":[\"Source Control Credential\"],\"9wvWk3\":[\"This constructed inventory input \\n creates a group for both of the categories and uses \\n the limit (host pattern) to only return hosts that \\n are in the intersection of those two groups.\"],\"A1a8Ku\":[\"Management job launch error\"],\"A1taO8\":[\"Search\"],\"A3o0Xd\":[\"The Instance Groups for this Organization to run on.\"],\"A6paZd\":[\"Add federated inventory\"],\"A8lIi2\":[\"Sync for revision\"],\"A9-PUr\":[\"Health check request(s) submitted. Please wait and reload the page.\"],\"AA2ASV\":[\"Execution environment copied successfully\"],\"ADVQ46\":[\"Log In\"],\"ARAUFe\":[\"Delete Inventory\"],\"AV22aU\":[\"Something went wrong...\"],\"AWOSPo\":[\"Zoom in\"],\"Ab1y_G\":[\"Cancel Constructed Inventory Source Sync\"],\"AgTBbk\":[[\"intervalValue\",\"plural\",{\"one\":[\"week\"],\"other\":[\"weeks\"]}]],\"AgTuXC\":[\"You do not have permission to delete \",[\"pluralizedItemName\"],\": \",[\"itemsUnableToDelete\"]],\"Ai2U7L\":[\"Host\"],\"Aj3on1\":[\"Enable external logging\"],\"AoCBvp\":[\"Job Slice\"],\"Apl-Vf\":[\"Red Hat subscription manifest\"],\"Apv-R1\":[\"If you are ready to upgrade or renew, please <0>contact us.\"],\"AqdlyH\":[\"Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes\"],\"ArtxnQ\":[\"Source Control Refspec\"],\"AsLVdj\":[\"Use one IRC channel or username per line. The pound\\n symbol (#) for channels, and the at (@) symbol for users, are not\\n required.\"],\"AwUsnG\":[\"Instances\"],\"AxC8wb\":[\"Copy Output\"],\"AxPAXW\":[\"No results found\"],\"Axi4f8\":[\"Dragging item \",[\"id\"],\". Item with index \",[\"oldIndex\"],\" in now \",[\"newIndex\"],\".\"],\"Azw0EZ\":[\"Create new smart inventory\"],\"B0HFJ8\":[\"Failed to disassociate one or more hosts.\"],\"B0P3qo\":[\"JOB ID:\"],\"B0dbFG\":[\"Delete Schedule\"],\"B2Zb_F\":[\"JSON\"],\"B3ZzHO\":[\"Last automated\"],\"B4WcU9\":[\"Approved by \",[\"0\"],\" - \",[\"1\"]],\"B7FU4J\":[\"Host Started\"],\"B8bpYS\":[\"Upload a Red Hat Subscription Manifest containing your subscription. To generate your subscription manifest, go to <0>subscription allocations on the Red Hat Customer Portal.\"],\"BAmn8K\":[\"Select a Resource Type\"],\"BERhj_\":[\"Success message\"],\"BGNDgh\":[\"Node Alias\"],\"BH7upP\":[\"POST\"],\"BIJ2_m\":[\"The execution environment that will be used for jobs inside of this organization. This will be used as a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level.\"],\"BNDplB\":[\"Template copied successfully\"],\"BWTzAb\":[\"Manual\"],\"BaPk6N\":[\"Base path used for locating playbooks. Directories found inside this path will be listed in the playbook directory drop-down. Together the base path and selected playbook directory provide the full path used to locate playbooks.\"],\"BfYq0G\":[\"Source Control Type\"],\"Bg7M6U\":[\"No result found\"],\"Bl2Djq\":[\"View Tokens\"],\"Bl2eoO\":[\"ENCRYPTED\"],\"BskWMl\":[\"Unreachable\"],\"BsrdSv\":[\"Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Controller documentation for example syntax.\"],\"Bv8zdm\":[\"Input Inventories\"],\"BwJKBw\":[\"of\"],\"Bz7WRU\":[[\"0\",\"plural\",{\"one\":[\"Please enter a valid phone number.\"],\"other\":[\"Please enter valid phone numbers.\"]}]],\"BzEFor\":[\"or\"],\"BzbzJb\":[\"Facts\"],\"BzfzPK\":[\"Items\"],\"C-gr_n\":[\"Azure AD settings\"],\"C0sUgI\":[\"Create new inventory\"],\"C2KEkR\":[\"SSH password\"],\"C3Q1LZ\":[\"View OIDC settings\"],\"C4C-qQ\":[\"Schedule details\"],\"C6GAUT\":[\"Is expanded\"],\"C7dP40\":[\"Failed to deny \",[\"0\"],\".\"],\"C7s60U\":[\"Webhook details\"],\"CAL6E9\":[\"Teams\"],\"CDOlBM\":[\"Instance ID\"],\"CE-M2e\":[\"Info\"],\"CGOseh\":[\"Schedule Details\"],\"CGZgZY\":[\"Select a row to disassociate\"],\"CG_9l6\":[\"LDAP 1\"],\"CGwKKr\":[[\"0\",\"plural\",{\"one\":[\"Delete Group?\"],\"other\":[\"Delete Groups?\"]}]],\"CIEoqM\":[\"Instance Name\"],\"CKc7jz\":[\"Host details modal\"],\"CL7QiF\":[\"Type answer then click checkbox on right to select answer as\\ndefault.\"],\"CLTHnk\":[\"Survey Question Order\"],\"CMmwQ-\":[\"Unknown Start Date\"],\"CNZ5h9\":[\"Data retention period\"],\"CS8u6E\":[\"Enable Webhook\"],\"CSvk3a\":[\"The number associated with the \\\"Messaging\\n Service\\\" in Twilio with the format +18005550199.\"],\"CW11B-\":[\"Minimum\"],\"CXJHPJ\":[\"Modified by (username)\"],\"CZDqWd\":[\"The project revision is currently out of date. Please refresh to fetch the most recent revision.\"],\"CZg9aH\":[\"Select Hosts\"],\"C_Lu89\":[\"Enter inputs using either JSON or YAML syntax. Refer to the Ansible Controller documentation for example syntax.\"],\"C_NnqT\":[\"Create New Host\"],\"Cc8jO8\":[\"Select the credential you want to use when accessing the remote hosts to run the command. Choose the credential containing the username and SSH key or password that Ansible will need to log into the remote hosts.\"],\"CcKMRv\":[\"This job template is currently being used by other resources. Are you sure you want to delete it?\"],\"CczdmZ\":[\"View all Credentials.\"],\"CdGRti\":[\"View all Notification Templates.\"],\"Ce28nP\":[\"<0>Note: Instances may be re-associated with this instance group if they are managed by <1>policy rules.\"],\"Cev3QF\":[\"Timeout minutes\"],\"ChTa9Z\":[[\"intervalValue\",\"plural\",{\"one\":[\"hour\"],\"other\":[\"hours\"]}]],\"CoPs3y\":[\"This workflow does not have any nodes configured.\"],\"CoTqdo\":[\"\\n Note that you may still see the group in the list after\\n disassociating if the host is also a member of that group’s\\n children. This list shows all groups the host is associated\\n with directly and indirectly.\\n \"],\"Coyxic\":[\"Click this button to verify connection to the secret management system using the selected credential and specified inputs.\"],\"Cs0oSA\":[\"View Settings\"],\"Csvbqs\":[\"view the constructed inventory plugin docs here.\"],\"Cx8SDk\":[\"Refresh Token Expiration\"],\"D-NlUC\":[\"System\"],\"D1JWCq\":[[\"interval\"],\" minutes\"],\"D4euEu\":[\"Miscellaneous Authentication settings\"],\"D89zck\":[\"Sun\"],\"DBBU2q\":[\"At least one value must be selected for this field.\"],\"DBC3t5\":[\"Sunday\"],\"DBHTm_\":[\"August\"],\"DFNPK8\":[\"Run health check\"],\"DGZ08x\":[\"Sync all\"],\"DHf0mx\":[\"Create new Instance\"],\"DHrOgD\":[\"Project Update Status\"],\"DIKUI7\":[\"Minimum length\"],\"DIX823\":[\"This field must be a number and have a value less than \",[\"max\"]],\"DJIazz\":[\"Successfully Approved\"],\"DNLiC8\":[\"Revert settings\"],\"DNqHaO\":[\"This table gives a few useful parameters of the constructed\\n inventory plugin. For the full list of parameters \"],\"DPfwMq\":[\"Done\"],\"DV-Xbw\":[\"Preferred Language\"],\"DVIUId\":[\"Prompt Overrides\"],\"DZNGtI\":[\"Project checkout results\"],\"D_oBkC\":[\"GitHub Team\"],\"DdlJTq\":[\"Exact match (default lookup if not specified).\"],\"De2WsK\":[\"This action will disassociate all roles for this user from the selected teams.\"],\"DhSza7\":[\"Controller Node\"],\"DnkUe2\":[\"Choose a Webhook Service\"],\"DqnAO4\":[\"First automated\"],\"Du6bPw\":[\"Address\"],\"Dug0C-\":[\"After number of occurrences\"],\"DyYigF\":[\"TACACS+ settings\"],\"Dz7fsq\":[\"Zoom In\"],\"E6Z4zF\":[\"Invalid file format. Please upload a valid Red Hat Subscription Manifest.\"],\"E86aJB\":[\"Disassociate role!\"],\"E9wN_Q\":[\"Last Health Check\"],\"EH6-2h\":[\"Topology View\"],\"EHu0x2\":[\"Syncing\"],\"EIBcgD\":[\"Sourced from a project\"],\"EIkRy0\":[\"Destination Channels\"],\"EJQLCT\":[\"Failed to delete workflow job template.\"],\"ENDbv1\":[\"View all Hosts.\"],\"ENRWp9\":[\"Tags for the Annotation\"],\"ENyw54\":[\"Related Groups\"],\"EP-eCv\":[\"SAML settings\"],\"EQ-qsg\":[\"Workflow job templates\"],\"ES0WE_\":[\"On Timeout\"],\"ETUQuF\":[\"Failed to delete one or more inventories.\"],\"EWL-h4\":[\"host-description-\",[\"0\"]],\"E_QGRL\":[\"Disabled\"],\"E_tJey\":[\"Default Execution Environment\"],\"Eb5CN1\":[[\"0\",\"plural\",{\"one\":[\"This organization is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"EdQY6l\":[\"None\"],\"Eff_76\":[\"Local Time Zone\"],\"Eg4kGP\":[\"Default Answer(s)\"],\"EmSrGB\":[\"Before\"],\"EmfKjn\":[\"View Troubleshooting settings\"],\"Emna_v\":[\"Edit Source\"],\"EmzUsN\":[\"View node details\"],\"EnC3hS\":[\"Custom pod spec\"],\"EpH7Cd\":[\"Delete Credential\"],\"Eq6_y5\":[\"this Tower documentation page\"],\"Eqp9wv\":[\"View JSON examples at\"],\"EwxKbE\":[\"DELETED\"],\"EzwCw7\":[\"Edit Question\"],\"F-0xxR\":[\"Resources are missing from this template.\"],\"F-LGli\":[\"You do not have permission to disassociate the following: \",[\"itemsUnableToDisassociate\"]],\"F-_-es\":[\"Select Instances\"],\"F0xJYs\":[\"Failed to update capacity adjustment.\"],\"F2l57P\":[\"Minimum percentage of all instances that will be automatically\\n assigned to this group when new instances come online.\"],\"FCnKmF\":[\"Create user token\"],\"FD8Y9V\":[\"Click on a node icon to display the details.\"],\"FEr96N\":[\"Theme\"],\"FFv0Vh\":[\"Automation\"],\"FG2mko\":[\"Select items from list\"],\"FGnH0p\":[\"This will cancel all subsequent nodes in this workflow\"],\"FMpB-A\":[\"<0>Note: Manually associated instances may be automatically disassociated from an instance group if the instance is managed by <1>policy rules.\"],\"FO7Rwo\":[\"Remove peers?\"],\"FQto51\":[\"Expand all rows\"],\"FTuS3P\":[\"This field may not be blank\"],\"FV5MUV\":[\"If users need feedback about the correctness\\n of their constructed groups, it is highly recommended\\n to use strict: true in the plugin configuration.\"],\"FXmp8Q\":[\"Failed to associate role\"],\"FYJRCY\":[\"Failed to delete one or more projects.\"],\"F_Nk65\":[\"Download Output\"],\"F_c3Jb\":[\"Custom Kubernetes or OpenShift Pod specification.\"],\"Failed\":[\"Failed\"],\"Fanpmj\":[\"Variables Prompted\"],\"FblMFO\":[\"Select a metric\"],\"FclH3w\":[\"Save successful!\"],\"FfGhiE\":[\"Error saving the workflow!\"],\"FhTYgi\":[\"Failed to delete one or more job templates.\"],\"FhhvWu\":[\"This will cancel all subsequent nodes in this workflow.\"],\"FiyMaa\":[\"Choose a .json file\"],\"FjVFQ-\":[\"Choose a module\"],\"FjkaiT\":[\"Zoom out\"],\"FkQvI0\":[\"Edit Template\"],\"FlvpdU\":[\"If enabled, show the changes made\\n by Ansible tasks, where supported. This is equivalent to Ansible’s\\n --diff mode.\"],\"FnSb-y\":[\"Cancel Job\"],\"FnZzou\":[\"Instance State\"],\"FncCci\":[\"RADIUS\"],\"Fo2bwm\":[\"Actor\"],\"Fo6qAq\":[\"Example URLs for Subversion Source Control include:\"],\"Fp0Rk4\":[\"Optional labels that describe this inventory,\\n such as 'dev' or 'test'. Labels can be used to group and filter\\n inventories and completed jobs.\"],\"FqW8E0\":[\"Used Capacity\"],\"FsGJXJ\":[\"Clean\"],\"Fx2-x_\":[\"Add User Roles\"],\"G-jHgL\":[\"Set source path to\"],\"G2KpGE\":[\"Edit Project\"],\"G3myU-\":[\"Tuesday\"],\"G768_0\":[\"denied\"],\"G8jcl6\":[\"Notification Templates\"],\"G9MOps\":[\"Branch to use on inventory sync. Project default used if blank. Only allowed if project allow_override field is set to true.\"],\"GDvlUT\":[\"Role\"],\"GGWsTU\":[\"Canceled\"],\"GGuAXg\":[\"View SAML settings\"],\"GHDQ7i\":[\"Failed to delete one or more organizations.\"],\"GJKwN0\":[\"Schedules\"],\"GLZDtF\":[\"System Warning\"],\"GLwo_j\":[\"0 (Warning)\"],\"GMaU6_\":[\"Prompt for job type on launch.\"],\"GO6s6F\":[\"Jobs settings\"],\"GRwtth\":[\"Run a health check on the instance\"],\"GSYBQc\":[\"API service/integration key\"],\"GTOcxw\":[\"Edit User\"],\"GU9vaV\":[\"Unreachable Hosts\"],\"GXiLKo\":[\"Text Area\"],\"GZIG7_\":[\"Inventory copied successfully\"],\"G_Dwo_\":[\"Choose an answer type or format you want as the prompt for the user.\\n Refer to the Ansible Controller Documentation for more additional\\n information about each option.\"],\"GaJLE6\":[\"Initiated by\"],\"Gd-B71\":[\"Credential type not found.\"],\"Ge5ecx\":[\"Max Hosts\"],\"GeIrWJ\":[[\"brandName\"],\" logo\"],\"Gf3vm8\":[\"per page\"],\"GiXRTS\":[\"Failed to delete one or more user tokens.\"],\"Gix1h_\":[\"View all Jobs\"],\"GkbHM9\":[\"View all Projects.\"],\"Gn7TK5\":[\"Toggle tools\"],\"GpNoVG\":[\"Please add a Schedule to populate this list.\"],\"GpWp6E\":[\"Define system-level features and functions\"],\"GtycJ_\":[\"Tasks\"],\"H0z3JJ\":[\"These arguments are used with the specified module. You can find information about \",[\"moduleName\"],\" by clicking \"],\"H1M6a6\":[\"View all Instances.\"],\"H3kCln\":[\"Hostname\"],\"H6jbKn\":[\"User Interface settings\"],\"H7OUPr\":[\"Day\"],\"H7e4dl\":[\"Provide key/value pairs using either\\n YAML or JSON.\"],\"H86f9p\":[\"Collapse\"],\"H9MIed\":[\"Execution node\"],\"HAi1aX\":[\"Update webhook key\"],\"HAzhV7\":[\"Credentials\"],\"HDULRt\":[\"Unique Hosts\"],\"HGOtRu\":[\"Notification test failed.\"],\"HIfMSF\":[\"Multiple Choice Options\"],\"HLAK2g\":[\"This action will cancel the following jobs:\"],\"HODq3s\":[\"Failed to deny one or more workflow approval.\"],\"HQ7e8y\":[\"Case-insensitive version of exact.\"],\"HQ7oEt\":[\"Back to Teams\"],\"HUx6pW\":[\"Injector configuration\"],\"HajiZl\":[\"Month\"],\"HbaQks\":[\"Use one email address per line to create a recipient list for this type of notification.\"],\"HbnjOn\":[[\"interval\"],\" weeks\"],\"HcznyH\":[\"Failed to sync some or all inventory sources.\"],\"HdE1If\":[\"Channel\"],\"HdErwL\":[\"Select a row to approve\"],\"Hf0QDK\":[\"Project copied successfully\"],\"Hhnh8d\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" day\"],\"other\":[\"#\",\" days\"]}]],\"HiTf1W\":[\"Cancel revert\"],\"HjxnnB\":[\"select module\"],\"HlhZ5D\":[\"Use TLS\"],\"HoHveO\":[\"Returns results that satisfy this one as well as other filters. This is the default set type if nothing is selected.\"],\"HpK_8d\":[\"Reload\"],\"Ht1JWm\":[\"Notification Color\"],\"HwpTx4\":[\"Control the level of output ansible will produce as the playbook executes.\"],\"I0LRRn\":[\"Download Bundle\"],\"I7Epp-\":[\"Option Details\"],\"I9NouQ\":[\"No subscriptions found\"],\"ICi4pv\":[\"Last automation\"],\"ICt7Id\":[\"Node Type\"],\"IEKPuq\":[\"Scroll next\"],\"IGQ11b\":[\"Secret shared with the webhook service. The service uses it to sign its requests, so only your repository can trigger a project sync. Type your own secret to manage it as configuration, or leave the field blank to have one generated on save.\"],\"IJAVcb\":[\"Back to applications\"],\"IKg_un\":[\"Destination channels or users\"],\"IMJYui\":[\"Use one phone number per line to specify where to\\n route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation\"],\"IN6gbp\":[\"Click to rearrange the order of the survey questions\"],\"IPusY8\":[\"Remove any local modifications prior to performing an update.\"],\"ISuwrJ\":[\"Edit Execution Environment\"],\"IV0EjT\":[\"Test notification\"],\"IVvM2B\":[\"Enabled Options\"],\"IWoF_f\":[\"View Survey\"],\"IZfe0p\":[\"source control branch\"],\"Igz8MU\":[\"Past two weeks\"],\"IiR1sT\":[\"Node type\"],\"IjDwKK\":[\"login type\"],\"Ikhk0q\":[\"Webhook service for this workflow job template.\"],\"Iqm2E5\":[\"Please add \",[\"pluralizedItemName\"],\" to populate this list\"],\"IrC12v\":[\"Application\"],\"IrI9pg\":[\"End date\"],\"IsJ8i6\":[\"Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch.\"],\"IspLSK\":[\"Management job not found.\"],\"J0zi6q\":[\"Skip Tags\"],\"J2HgCR\":[\"Red Hat, Inc.\"],\"J2d1y8\":[\"Filter by successful jobs\"],\"J4y7Uk\":[\"Workflow Cancelled \"],\"J8VgfD\":[\"Check whether the given field or related object is null; expects a boolean value.\"],\"JEGlfK\":[\"Started\"],\"JFnJqF\":[\"Elapsed\"],\"JFphCp\":[\"3 (Debug)\"],\"JGvwnU\":[\"Last used\"],\"JIX50w\":[\"Prevent Instance Group Fallback: If enabled, the job template will prevent adding any inventory or organization instance groups to the list of preferred instances groups to run on.\"],\"JJwEMx\":[\"Hosts deleted\"],\"JKZTiL\":[\"These are the verbosity levels for standard out of the command run that are supported.\"],\"JL3si7\":[\"Updating\"],\"JLjfEs\":[\"Failed to delete one or more schedules.\"],\"JOmgRg\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" month\"],\"other\":[\"#\",\" months\"]}]],\"JRa4kV\":[\"Sync the project when a push happens in the source control repository, so the local copy is always up to date without polling or updating on every job launch.\"],\"JTHoCu\":[\"toggle changes\"],\"JUwjsw\":[\"Select an activity type\"],\"JXgd33\":[\"Back to Dashboard.\"],\"J_2nGO\":[\"The execution environment that will be used for jobs\\n inside of this organization. This will be used a fallback when\\n an execution environment has not been explicitly assigned at the\\n project, job template or workflow level.\"],\"J_DUZt\":[\"Instance Groups\"],\"Ja4VHl\":[[\"0\"],\" more\"],\"JgP090\":[\"Track submodules\"],\"JjcTk5\":[\"social login\"],\"JjfsZM\":[\"Delete Workflow Approval\"],\"JppQoT\":[\"Last recalculation date:\"],\"JsY1p5\":[\"Denied\"],\"Jvv6rS\":[\"Multiple Choice\"],\"JwqOfG\":[\"Evaluate on\"],\"Jy9qCv\":[\"cancel edit login redirect\"],\"K5AykR\":[\"Delete Team\"],\"K93j4j\":[\"Label Name\"],\"KC2nS5\":[\"Resource deleted\"],\"KDcLJ6\":[\"YAML:\"],\"KEY0qH\":[\"Test passed\"],\"KM6m8p\":[\"Team\"],\"KNOsJ0\":[\"Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs.\"],\"KQ9EQm\":[\"How to use constructed inventory plugin\"],\"KR9Aiy\":[\"This inventory is currently being used by some templates. Are you sure you want to delete it?\"],\"KRf0wm\":[\"Credential Types\"],\"KTvwHj\":[\"Credential Input Sources\"],\"KVbzjm\":[\"Visualizer\"],\"KXFYp9\":[\"Get subscription\"],\"KXnokb\":[\"Globally available execution environment can not be reassigned to a specific Organization\"],\"KZp4lW\":[\"Lookup select\"],\"K_MYeX\":[\"View User Details\"],\"KeRkFA\":[\"Clear subscription selection\"],\"KeqCdz\":[\"Peers from control nodes\"],\"Ki_j_-\":[\"Leave blank to generate a new webhook key on save\"],\"KjBkMe\":[\"This container group is currently being by other resources. Are you sure you want to delete it?\"],\"KjVvNP\":[\"ID of the Panel\"],\"KkMfgW\":[\"Job Templates\"],\"KkzJWF\":[\"First automation\"],\"KlQd8_\":[\"Scope for the token's access\"],\"KnN1Tu\":[\"Expires\"],\"KoCnPE\":[\"Cancel job\"],\"KopV8H\":[\"Show only root groups\"],\"KxIA0h\":[\"Toggle host\"],\"Kz9DSl\":[\"Add existing host\"],\"KzQFvE\":[\"Edit Organization\"],\"L1Ob4t\":[\"Details tab\"],\"L3ooU6\":[\"Credential\"],\"L7Nz3F\":[\"Missing resource\"],\"L8fEEm\":[\"Group\"],\"L973Qq\":[\"Request subscription\"],\"LCl8Ck\":[\"Date search input\"],\"LGl_pR\":[\"View Jobs settings\"],\"LGryaQ\":[\"Create New Credential\"],\"LQ29yc\":[\"Start inventory source sync\"],\"LQRys9\":[\"Submodules will track the latest commit on their master branch (or other branch specified in .gitmodules). If no, submodules will be kept at the revision specified by the main project. This is equivalent to specifying the --remote flag to git submodule update.\"],\"LQTgjH\":[\"Project not found.\"],\"LRePxk\":[\"Minimum number of instances that will be automatically assigned to this group when new instances come online.\"],\"LSUePQ\":[\"Launch | \",[\"0\"]],\"LULLsO\":[\"View all Organizations.\"],\"LV5a9V\":[\"Peers\"],\"LVecP9\":[\"User Roles\"],\"LYAQ1X\":[\"Enable Concurrent Jobs\"],\"LZr1lR\":[\"Instance group not found.\"],\"Lc0RHh\":[\"Toggle schedule\"],\"LgD0Cy\":[\"Application Name\"],\"LhMjLm\":[\"Time\"],\"Ll7Jei\":[\"LDAP3\"],\"LnYbGj\":[\"Edit Survey\"],\"Lnnjmk\":[\"<0><1/> A tech preview of the new \",[\"brandName\"],\" user interface can be found <2>here.\"],\"Lqygiq\":[\"Provisioning Callbacks\"],\"LtBtED\":[\"Toggle notification success\"],\"LuXP9q\":[\"Access\"],\"LwHwt1\":[[\"brandName\"],\" Subscription\"],\"Lwovp8\":[\"If enabled, simultaneous runs of this job template will be allowed.\"],\"M0okDw\":[\"Set preferences for data collection, logos, and logins\"],\"M73whl\":[\"Context\"],\"MA-mp9\":[\"Webhook Ref Filter\"],\"MA7cMf\":[\"Constructed inventory parameters table\"],\"MAI_nw\":[\"Please try another search using the filter above\"],\"MAV-SQ\":[\"Credential not found.\"],\"MApRef\":[\"Are you sure you want to edit login redirect override URL? Doing so could impact users' ability to log in to the system once local authentication is also disabled.\"],\"MD0-Al\":[\"Your session is about to expire\"],\"MDQLec\":[\"Control the level of output Ansible will produce for inventory source update jobs.\"],\"MGpavd\":[\"Key typeahead\"],\"MHM-bv\":[\"Invalid link target. Unable to link to children or ancestor nodes. Graph cycles are not supported.\"],\"MHbbol\":[\" Job Slicing\"],\"MKEPCY\":[\"Follow\"],\"MP1v-1\":[\"Legend\"],\"MP8dU9\":[\"The full image location, including the container registry, image name, and version tag.\"],\"MQPvAa\":[\"Prompt for labels on launch.\"],\"MQoyj6\":[\"Workflow Job Template\"],\"MTLPCv\":[\"Execute when the parent node results in a failure state.\"],\"MVw5um\":[\"2 (More Verbose)\"],\"MZU5bt\":[\"Failed to delete one or more groups.\"],\"M_gXds\":[\"Note: This instance may be re-associated with this instance group if it is managed by \"],\"MdhgLT\":[\"IRC server password\"],\"MfCEiB\":[\"Galaxy Credentials\"],\"MfQHgE\":[\"Days to keep\"],\"Mfk6hJ\":[\"Failed to delete one or more templates.\"],\"Mhn5m4\":[\"Registry credential\"],\"Mn45Gz\":[\"Back to instance groups\"],\"MnbH31\":[\"page\"],\"MofjBu\":[\"The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level.\"],\"MpLngK\":[\"The webhook endpoint of this project. Add it to the webhook configuration of the repository to have pushes trigger a project sync.\"],\"MpZRQy\":[\"Git\"],\"MuhG5I\":[[\"0\",\"plural\",{\"one\":[\"This approval cannot be deleted due to insufficient permissions or a pending job status\"],\"other\":[\"These approvals cannot be deleted due to insufficient permissions or a pending job status\"]}]],\"MwCc2O\":[\"Webhook credential for this workflow job template.\"],\"Mwf3Mw\":[\"Populate the hosts for this inventory by using a search\\n filter. Example: ansible_facts__ansible_distribution:\\\"RedHat\\\".\\n Refer to the documentation for further syntax and\\n examples. Refer to the Ansible Controller documentation for further syntax and\\n examples.\"],\"MzcRa_\":[\"User and Automation Analytics\"],\"Mzqo60\":[\"Value to compare the artifact against. Interpreted as JSON when possible (e.g. true, 3), otherwise as a plain string.\"],\"N1U4ZG\":[\"Subscription Compliance\"],\"N36GRB\":[\"This field must be a number and have a value greater than \",[\"min\"]],\"N40H-G\":[\"All\"],\"N5vmCy\":[\"constructed inventory\"],\"N6GBcC\":[\"Confirm Delete\"],\"N7wOty\":[\"Select the playbook to be executed by this job.\"],\"NAKA53\":[\"Host Failure\"],\"NBONaK\":[\"Gathering Facts\"],\"NCVKhy\":[\"Recent jobs\"],\"NDQvUO\":[\"Prompt for tags on launch.\"],\"NIuIk1\":[\"Unlimited\"],\"NLKsgx\":[[\"pluralizedItemName\"],\" List\"],\"NO1ZxL\":[\"Application name\"],\"NPfgIB\":[\"sec\"],\"NQHZnb\":[\"Integer\"],\"NRn4V6\":[[\"interval\"],\" months\"],\"NUNUrW\":[\"Tags for the annotation (optional)\"],\"NW-xDQ\":[\"This will revert all configuration values on this page to\\n their factory defaults. Are you sure you want to proceed?\"],\"NX18CF\":[\"On or after\"],\"NYxilo\":[\"Max concurrent jobs\"],\"Na9fIV\":[\"No items found.\"],\"NcVaYu\":[\"Finish Time\"],\"NeA1eI\":[\"Pan Right\"],\"Never\":[\"Never\"],\"NgD4On\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"This action will cancel the following job:\"],\"other\":[\"This action will cancel the following jobs:\"]}]],\"NjnDuY\":[\"Dragging started for item id: \",[\"newId\"],\".\"],\"NjqMGF\":[\"Resource type\"],\"NnH3pK\":[\"Test\"],\"No Jobs\":[\"No Jobs\"],\"NpJHAp\":[\"Job Templates with a missing inventory or project cannot be selected when creating or editing nodes. Select another template or fix the missing fields to proceed.\"],\"NqIlWb\":[\"Last Ran\"],\"NrGRF4\":[\"Subscription selection modal\"],\"NsXTPu\":[\"To create a smart inventory using ansible facts, go to the smart inventory screen.\"],\"NtD3hJ\":[\"Related Keys\"],\"Nu4DdT\":[\"Sync\"],\"Nu4oKW\":[\"Description\"],\"Nu7VHX\":[\"Choose roles to apply to the selected resources. Note that all selected roles will be applied to all selected resources.\"],\"O-OYOe\":[\"Edit Team\"],\"O06Rp6\":[\"User Interface\"],\"O1Aswy\":[\"Never expires\"],\"O28qFz\":[\"View job \",[\"0\"]],\"O2EuOK\":[\"Sign in with SAML \",[\"samlIDP\"]],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O4ilec\":[\"Case-insensitive version of regex.\"],\"O5pAaX\":[\"Select an instance and a metric to show chart\"],\"O78b13\":[\"The application that this token belongs to, or leave this field empty to create a Personal Access Token.\"],\"O8_96D\":[\"Listener Port\"],\"O9VQlh\":[\"Select frequency\"],\"OA8xiA\":[\"Pan Left\"],\"OA99Nq\":[\"When was the host last automated\"],\"OC4Tzv\":[\"here\"],\"OGoqLy\":[\"# sources with sync failures.\"],\"OHGMM6\":[\"Start date/time\"],\"OIv5hN\":[\"Redirecting to subscription detail\"],\"OJ9bHy\":[\"Failed to disassociate one or more groups.\"],\"OOq_rD\":[\"Playbook Run\"],\"OPTWH4\":[\"Enable HTTPS certificate verification\"],\"ORxrw7\":[\"Days remaining\"],\"OSH8xi\":[\"Hop\"],\"OcRJRt\":[\"Confirm cancel job\"],\"Oe_VOY\":[\"Failed to remove one or more instances.\"],\"OgB1k4\":[\"Arguments\"],\"OiCz65\":[\"Grafana URL\"],\"Oiqdmc\":[\"Sign in with GitHub Organizations\"],\"Oj2Ix6\":[\"The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout.\"],\"OjwX8k\":[\"Token information\"],\"OlpaBt\":[\"Concurrent jobs: If enabled, simultaneous runs of this job template will be allowed.\"],\"OmbooC\":[\"Task Started\"],\"OogRLI\":[\"Federated Inventory not found.\"],\"OqE3G-\":[\"Exact search on id field.\"],\"Osn70z\":[\"Debug\"],\"OvBnOM\":[\"Back to Settings\"],\"OyGPiW\":[\"Subscription settings\"],\"OzssJK\":[\"Run command\"],\"P3spiP\":[\"Back to Templates\"],\"P7d85D\":[\"Remove Team Access\"],\"P8fBlG\":[\"Authentication\"],\"PByO0X\":[\"Votes\"],\"PCEmEr\":[\"User tokens\"],\"PJ1B0S\":[[\"0\",\"plural\",{\"one\":[\"This project is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"PJf54Q\":[\"Back to Sources\"],\"PKTjJ3\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"weekday\"],\" of \",[\"month\"]],\"4\":[\"The fourth \",[\"weekday\"],\" of \",[\"month\"]],\"5\":[\"The fifth \",[\"weekday\"],\" of \",[\"month\"]],\"one\":[\"The first \",[\"weekday\"],\" of \",[\"month\"]],\"two\":[\"The second \",[\"weekday\"],\" of \",[\"month\"]]}]],\"PLzYyl\":[\"Frequency Exception Details\"],\"PMk2Wg\":[\"Deprovisioning fail\"],\"POKy-m\":[\"Copy Execution Environment\"],\"PPsHsC\":[\"Revert all to default\"],\"PQPOpT\":[\"Inventory file\"],\"PRuZiQ\":[\"Refresh for revision\"],\"PUnovD\":[\"Amazon EC2\"],\"PVCOQE\":[\"Peer removed. Please be sure to run the install bundle for \",[\"0\"],\" again in order to see changes take effect.\"],\"PWwwY2\":[\"Disassociate\"],\"PYPqaM\":[\"ID of the panel (optional)\"],\"PZBWpL\":[\"Switch to light mode\"],\"P_s0vy\":[\"Unable to look up the credential type for this webhook service, so the webhook credential field is unavailable.\"],\"PaTL2O\":[\"Recipient list\"],\"PhufXn\":[\"Job Slice Parent\"],\"Pi5vnX\":[\"Failed to sync constructed inventory source\"],\"PiK6Ld\":[\"Sat\"],\"PiRb8z\":[\"MOST RECENT SYNC\"],\"PjkoCm\":[\"Are you sure you want to remove the node below:\"],\"PkVlOm\":[\"Specify HTTP Headers in JSON format. Refer to\\n the Ansible Controller documentation for example syntax.\"],\"Po1btV\":[\"Global navigation\"],\"Po7y5X\":[\"Failed to copy execution environment\"],\"PvgcEq\":[\"Draggable list to reorder and remove selected items.\"],\"PwAMWD\":[\"Collapse all job events\"],\"PyV1wC\":[\"Prevent Instance Group Fallback\"],\"Q3P_4s\":[\"Task\"],\"Q4hWRC\":[\"Workflow Jobs (\",[\"total\"],\")\"],\"Q5ZW8j\":[\"Subscriptions table\"],\"QF_MpS\":[\"\\n Note that only hosts directly in this group can\\n be disassociated. Hosts in sub-groups must be disassociated\\n directly from the sub-group level that they belong.\\n \"],\"QFdBqu\":[\"Mattermost\"],\"QGbLBK\":[\"Job ID\"],\"QHF6CU\":[\"Plays\"],\"QIOH6p\":[\"Initiated by (username)\"],\"QIpNLR\":[\"No inventory sync failures.\"],\"QIq3_3\":[\"Note: The order in which these are selected sets the execution precedence. Select more than one to enable drag.\"],\"QJbMvX\":[\"Credentials that require passwords on launch are not permitted. Please remove or replace the following credentials with a credential of the same type in order to proceed: \",[\"0\"]],\"QJowYS\":[\"confirm delete\"],\"QKUQw1\":[\"Create new host\"],\"QKbQTN\":[\"Activity Stream type selector\"],\"QOF7Jg\":[\"Failed to approve \",[\"0\"],\".\"],\"QPRWww\":[\"Run type\"],\"QR908H\":[\"Setting name\"],\"QT1rDU\":[\"GitHub Enterprise\"],\"QTwM6Y\":[\"The project containing the playbook this job will execute.\"],\"QYKS3D\":[\"Recent Jobs\"],\"QamIPZ\":[\"Please click the Start button to begin.\"],\"Qay_5h\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"Qd2E32\":[\"Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'\"],\"Qf36YE\":[\"Verbosity\"],\"QgnNyZ\":[\"Sync error\"],\"Qhb8lT\":[\"Create New Application\"],\"QmvYrA\":[\"Optional description for the workflow job template.\"],\"QnJn75\":[\"Last Run\"],\"Qv59HG\":[\"Select Credential Type\"],\"Qv91_c\":[\"LDAP 2\"],\"QyjCeq\":[\"Capacity\"],\"R-uZ8Y\":[\"Sign in with SAML\"],\"R633QG\":[\"Back to Workflow Approvals\"],\"R7s3iG\":[\"Return to\"],\"R9Khdg\":[\"Auto\"],\"R9sZsA\":[\"Delete All Groups and Hosts\"],\"RBDHUE\":[\"Prompt for execution environment on launch.\"],\"RI8cIw\":[\"The maximum number of hosts allowed to be managed by\\n this organization. Value defaults to 0 which means no limit.\\n Refer to the Ansible documentation for more details.\"],\"RIcSTA\":[\"Expires on\"],\"RIeAlp\":[\"Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks.\"],\"RK1gDV\":[\"Sign in with Azure AD\"],\"RMdd1C\":[\"None (Run Once)\"],\"RO9G1f\":[\"This field must be greater than 0\"],\"RPnV2o\":[\"The search filter did not produce any results…\"],\"RThfvh\":[\"Disassociate related team(s)?\"],\"R_mzhp\":[\"Failed to user token.\"],\"RbIaa9\":[\"Token not found.\"],\"RdLvW9\":[\"relaunch jobs\"],\"Rguqao\":[\"Select a row to delete\"],\"RhOukN\":[[\"interval\"],\" hour\"],\"RiQMUh\":[\"Running\"],\"RjIKOw\":[\"Unable to change inventory on a host\"],\"RjkhdY\":[\"Field starts with value.\"],\"RkXlPZ\":[\"GitHub\"],\"RlsPz7\":[\"Are you sure you want to remove this link?\"],\"Rm1iI_\":[\"Prompt for variables on launch.\"],\"Roaswv\":[\"User Guide\"],\"RpKSl3\":[\"Credential copied successfully\"],\"RsZ4BA\":[\"Scroll last\"],\"RtKKbA\":[\"Last\"],\"Ru59oZ\":[\"Enable webhook for this template.\"],\"RuEWFx\":[\"On date\"],\"RuiOO0\":[\"Failed to delete one or more applications.\"],\"Rw1xwN\":[\"Content Loading\"],\"RxzN1M\":[\"Enabled\"],\"RyPas1\":[\"Cancel selected jobs\"],\"S0kLOH\":[\"ID\"],\"S2nsEw\":[\"Greater than comparison.\"],\"S5gO6Y\":[\"Pass extra command line variables to the workflow.\"],\"S6zj7M\":[\"For job templates, select run to execute the playbook. Select check to only check playbook syntax, test environment setup, and report problems without executing the playbook.\"],\"S7kN8O\":[\"Failed to delete one or more users.\"],\"S7tNdv\":[\"On Success\"],\"S8FW2i\":[\"The inventory file to be synced by this source. You can select from the dropdown or enter a file within the input.\"],\"SA-KXq\":[\"Pan Up\"],\"SAw-Ux\":[\"Are you sure you want to remove \",[\"0\"],\" access from \",[\"username\"],\"?\"],\"SBfnbf\":[\"View all execution environments\"],\"SC1Cur\":[\"Unknown Status\"],\"SDND4q\":[\"Not configured\"],\"SIJDi3\":[\"Capacity Adjustment\"],\"SJjggI\":[\"Update options\"],\"SJmHMo\":[\"Documentation.\"],\"SLm_0U\":[\"IRC Server Port\"],\"SODyJ3\":[\"Host Async OK\"],\"SRiPhD\":[\"Cancel node removal\"],\"SV5nA1\":[\"Some of the previous step(s) have errors\"],\"SVG6MY\":[\"Revert field to previously saved value\"],\"SYbJcn\":[\"Edit Notification Template\"],\"SZvybZ\":[\"LDAP Default\"],\"SZw9tS\":[\"View Details\"],\"SbRHme\":[\"Textarea\"],\"Se_E0z\":[\"Workflow Job\"],\"Sgr5NW\":[\"Select an instance to run a health check.\"],\"Sh2XTJ\":[\"Notification Type\"],\"SiexHs\":[\"Dashboard (all activity)\"],\"Sja7f-\":[\"How many times was the host deleted\"],\"Sjoj4f\":[\"Credential Name\"],\"SlfejT\":[\"Error\"],\"SoREmD\":[\"Applications & Tokens\"],\"SqA8uD\":[\"Job Runs\"],\"SqLEdN\":[\"Failed to delete smart inventory.\"],\"SqYo9m\":[\"Back to Instances\"],\"Ssdrw4\":[\"Deprecated\"],\"Successful\":[\"Successful\"],\"SvPvEX\":[\"Workflow approved message body\"],\"Svkela\":[\"Go to previous page\"],\"SwJLlZ\":[\"Workflow denied message body\"],\"SxGqey\":[\"Generic OIDC settings\"],\"Sxm8rQ\":[\"Users\"],\"SzFxHC\":[\"LDAP settings\"],\"SzQMpA\":[\"Forks\"],\"T2M20E\":[\"The\"],\"T2mGOG\":[\"docs.ansible.com\"],\"T2x15z\":[\"Failed to toggle notification.\"],\"T4a4A4\":[\"Webhook Key\"],\"T7yEGN\":[\"The Grant type the user must use to acquire tokens for this application\"],\"T91vKp\":[\"Play\"],\"T9hZ3D\":[\"GitHub Enterprise Team\"],\"TAnffV\":[\"Edit this node\"],\"TBH48u\":[\"Failed to delete team.\"],\"TC32CH\":[\"Days of data to be retained\"],\"TD1APv\":[\"Get subscriptions\"],\"TJVvMD\":[\"Related search type\"],\"TLomdD\":[[\"sessionCountdown\",\"plural\",{\"one\":[\"You will be logged out in \",\"#\",\" second due to inactivity\"],\"other\":[\"You will be logged out in \",\"#\",\" seconds due to inactivity\"]}]],\"TMJ39S\":[\"Disassociate role\"],\"TMLAx2\":[\"Required\"],\"TO3h59\":[\"Populate field from an external secret management system\"],\"TO4OtU\":[\"Insights Credential\"],\"TOjYb_\":[\"View constructed inventory host details\"],\"TP9_K5\":[\"Token\"],\"TRDppN\":[\"Webhook\"],\"TTMvf7\":[\"Group type\"],\"TU6IDa\":[\"User Type\"],\"TXKmNM\":[\"An inventory must be selected\"],\"TZEuIE\":[\"Back to credential types\"],\"T_87By\":[\"Parameter\"],\"Ta0ts5\":[\"Show changes\"],\"TcnG-2\":[\"Create new execution environment\"],\"TgSxH9\":[\"Provisioning Callback URL\"],\"TkiN8D\":[\"User details\"],\"Tmh24b\":[\"If enabled, the job template will prevent adding any inventory or organization instance groups to the list of preferred instances groups to run on. Note: If this setting is enabled and you provided an empty list, the global instance groups will be applied.\"],\"Tmuvry\":[\"Set type typeahead\"],\"ToOoEw\":[\"Copy Credential\"],\"Tof7pX\":[\"Jobs\"],\"Tq71UT\":[\"weekday\"],\"Tx3NMN\":[\"Private key passphrase\"],\"TxKKED\":[\"View Constructed Inventory Details\"],\"TyaPAx\":[\"System Administrator\"],\"Tz0i8g\":[\"Settings\"],\"U-nEJl\":[\"View GitHub Settings\"],\"U011Uh\":[\"Last seen\"],\"U7rA2a\":[\"When not checked, a merge will be performed, combining local variables with those found on the external source.\"],\"UDf-wR\":[\"Subscriptions consumed\"],\"UEaj7U\":[\"Inventory sync failures\"],\"UJpDop\":[\"Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"UJsNNk\":[\"Source Control Revision\"],\"UPasE4\":[\"Azure AD Default\"],\"UPmrRI\":[\"Case-insensitive version of endswith.\"],\"URmyfc\":[\"Details\"],\"UX2wV1\":[[\"0\",\"plural\",{\"one\":[\"This credential is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"UXBCwc\":[\"Last Name\"],\"UY6iPZ\":[\"If enabled, control nodes will peer to this instance automatically. If disabled, instance will be connected only to associated peers.\"],\"UYD5ld\":[\"and click on Update Revision on Launch\"],\"UYUgdb\":[\"Order\"],\"U_JUCL\":[\"Red Hat Insights\"],\"Ua-Kc6\":[\"www.json.org\"],\"UbOul8\":[\"Are you sure you want to delete:\"],\"UbRKMZ\":[\"Pending\"],\"UbqhuT\":[\"Failed to retrieve full node resource object.\"],\"Uc_tSU\":[\"Toggle Tools\"],\"UgFDh3\":[\"This inventory is currently being used by other resources. Are you sure you want to delete it?\"],\"UirGxE\":[\"Errors\"],\"UlykKR\":[\"Third\"],\"Uo1S9q\":[\"Sign in with Azure AD Tenant\"],\"UueF8b\":[\"Execution environment is missing or deleted.\"],\"UvGjRK\":[\"If enabled, run this playbook as an administrator.\"],\"UwJJCk\":[\"Relaunch failed hosts\"],\"UxKoFf\":[\"Navigation\"],\"V-7saq\":[\"Delete \",[\"pluralizedItemName\"],\"?\"],\"V-rJKF\":[\"Seconds\"],\"V0Xv3_\":[[\"intervalValue\",\"plural\",{\"one\":[\"day\"],\"other\":[\"days\"]}]],\"V0fM4k\":[\"User analytics\"],\"V1EGGU\":[\"First name\"],\"V2-omF\":[[\"0\",\"plural\",{\"one\":[\"The inventory will be in a pending status until the final delete is processed.\"],\"other\":[\"The inventories will be in a pending status until the final delete is processed.\"]}]],\"V2RwJr\":[\"Listener Addresses\"],\"V2q9w9\":[\"If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode.\"],\"V3z83V\":[\"LDAP 3\"],\"V4WsyL\":[\"Add Link\"],\"V5RUpn\":[\"Recipient List\"],\"V7qsYh\":[\"Note: The order of these credentials sets precedence for the sync and lookup of the content. Select more than one to enable drag.\"],\"V9xR6T\":[\"Expand section\"],\"VAI2fh\":[\"Create new container group\"],\"VAcXNz\":[\"Wednesday\"],\"VEj6_Y\":[\"Workflow Approvals\"],\"VFvVc6\":[\"Edit details\"],\"VJUm9p\":[\"Current page\"],\"VK2gzi\":[\"The number of parallel or simultaneous processes to use while executing the playbook. An empty value, or a value less than 1 will use the Ansible default which is usually 5. The default number of forks can be overwritten with a change to\"],\"VL2WkJ\":[\"The last \",[\"dayOfWeek\"]],\"VLdRt2\":[\"Start sync source\"],\"VNUs2y\":[\"Max forks\"],\"VSJ6r5\":[\"Schedule is active\"],\"VSim_H\":[\"Delete inventory source\"],\"VTDO7X\":[\"Event detail modal\"],\"VU3Nrn\":[\"Missing\"],\"VWL2DK\":[\"GitHub Organization\"],\"VXFjd8\":[\"Metrics\"],\"VZfXhQ\":[\"Hop node\"],\"VdcFUD\":[\"End user license agreement\"],\"ViDr6F\":[\"Add new group\"],\"VmClsw\":[\"The resource associated with this node has been deleted.\"],\"VmvLj9\":[\"Set to Public or Confidential depending on how secure the client device is.\"],\"Vqd-tq\":[\"Confirm revert all\"],\"Vqgeac\":[\"Press space or enter to begin dragging,\\n and use the arrow keys to navigate up or down.\\n Press enter to confirm the drag, or any other key to\\n cancel the drag operation.\"],\"Vvbbn2\":[\"Failed to delete role.\"],\"Vw8l6h\":[\"An error occurred\"],\"VzE_M-\":[\"Toggle notification failure\"],\"W-O1E9\":[\"Copy Project\"],\"W1iIqa\":[\"View Inventory Groups\"],\"W3TNvn\":[\"Back to Users\"],\"W3pOzF\":[\"Allow changing the Source Control branch or revision in a job template that uses this project.\"],\"W6uTJi\":[\"Failed to get instance.\"],\"W7DGsV\":[\"Launched By (Username)\"],\"W9XAF4\":[\"Weekday\"],\"W9uQXX\":[\"Prompt\"],\"WAjFYI\":[\"Start date\"],\"WD8djW\":[\"Confirm link removal\"],\"WL91Ms\":[\"Delete Groups?\"],\"WPM2RV\":[\"Answer type\"],\"WQJduu\":[\"Key select\"],\"WTN9YX\":[\"Account token\"],\"WTV15I\":[\"Edit Login redirect override URL\"],\"WVzGc2\":[\"Subscription\"],\"WX9-kf\":[\"IRC nick\"],\"Wc6m4J\":[\"A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available.\"],\"Wdl2f2\":[\"This field must be at least \",[\"0\"],\" characters\"],\"WgsBEi\":[\"Enter at least one search filter to create a new Smart Inventory\"],\"WhSFGl\":[\"Filter By \",[\"name\"]],\"Wi1pUG\":[[\"numJobsToCancel\",\"plural\",{\"one\":[[\"0\"]],\"other\":[[\"1\"]]}]],\"Wk1rOS\":[\"Fit the graph to the available screen size\"],\"Wm7XbF\":[\"Failed to delete one or more credentials.\"],\"WqaDMq\":[\"Field contains value.\"],\"Wy25yg\":[\"Twilio\"],\"X03-eC\":[\"Please enter a value.\"],\"X5V9DW\":[\"Click the Edit button below to reconfigure the node.\"],\"X6d3Zy\":[\"Failed to delete organization.\"],\"X97mbf\":[\"Choose a job type\"],\"XA12d8\":[\"Optional comma separated list of host names to include in every job slice, in addition to the hosts of the slice itself. Useful when a play targets a coordinating host, such as localhost, that all slices depend on. Names are matched exactly against inventory hosts; groups and patterns are not supported. Pinned hosts run their plays once per slice.\"],\"XBROpk\":[\"Provide a host pattern to further constrain the list of hosts that will be managed or affected by the workflow.\"],\"XCCkju\":[\"Edit Node\"],\"XFRygA\":[\"Example URLs for Remote Archive Source Control include:\"],\"XHxwBV\":[\"Selected date range must have at least 1 schedule occurrence.\"],\"XILg0L\":[\"Invalid email address\"],\"XJOV1Y\":[\"Activity\"],\"XKp83s\":[\"Inventories with sources cannot be copied\"],\"XLMJ7O\":[\"Cloud\"],\"XLpxoj\":[\"Email Options\"],\"XM-gTv\":[\"Refer to the Ansible documentation for details about the configuration file.\"],\"XOD7tz\":[\"Show Changes\"],\"XOaZX3\":[\"Pagination\"],\"XP6TQ-\":[\"If specified, this field will be shown on the node instead of the resource name when viewing the workflow\"],\"XREJvl\":[\"Variables used to configure the inventory source. For a detailed description of how to configure this plugin, see\"],\"XViLWZ\":[\"On Failure\"],\"XWDz5f\":[\"Simple key select\"],\"X_5TsL\":[\"Survey Toggle\"],\"XaxYwV\":[\"Prompted Values\"],\"XbIM8f\":[\"Total inventory sources\"],\"XdyHT-\":[\"Hosts imported\"],\"XfmfOA\":[\"Run every\"],\"Xg3aVa\":[\"Use SSL\"],\"XgTa_2\":[\"The inventory will be in a pending status until the final delete is processed.\"],\"XilEsm\":[\"Instance Group\"],\"Xm7ruy\":[\"5 (WinRM Debug)\"],\"XmJfZT\":[\"name\"],\"XmVvzl\":[\"Select roles to apply\"],\"XnxCSh\":[\"Standard Error\"],\"XozZ38\":[\"Failed to delete one or more inventory sources.\"],\"Xq9A0U\":[\"Unknown Project\"],\"Xt4N6V\":[\"Prompt | \",[\"0\"]],\"XtpZSU\":[\"All job types\"],\"Xx-ftH\":[\"You have automated against more hosts than your subscription allows.\"],\"XyTWuQ\":[\"Please wait until the topology view is populated...\"],\"XyW2nH\":[[\"0\",\"plural\",{\"one\":[\"Are you sure you want to delete the group below?\"],\"other\":[\"Are you sure you want to delete the groups below?\"]}]],\"XzD7xj\":[\"Select Items\"],\"Y1YKad\":[\"Edit Details\"],\"Y296GK\":[\"Failed to delete role\"],\"Y2ml-n\":[\"Approved - \",[\"0\"],\". See the Activity Stream for more information.\"],\"Y5VrmH\":[\"Not configured for inventory sync.\"],\"Y5vgVF\":[\"Successfully Denied\"],\"Y5xJ7I\":[\"Playbook name\"],\"Y60pX3\":[\"Add constructed inventory\"],\"YA4I45\":[\"Select a module\"],\"YFmVSY\":[\"Disassociate?\"],\"YJddb4\":[\"Instance type\"],\"YLMfol\":[\"Choose the type of resource that will be receiving new roles. For example, if you'd like to add new roles to a set of users please choose Users and click Next. You'll be able to select the specific resources in the next step.\"],\"YM06Nm\":[\"Edit credential type\"],\"YMLB2b\":[\"Whether the approval node is automatically approved or denied when the timeout expires.\"],\"YMpSlP\":[\"Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed.\"],\"YOOdGq\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" minute\"],\"other\":[\"#\",\" minutes\"]}]],\"YOh7Aw\":[\"Workflow Job \",[\"currentPosition\"],\"/\",[\"total\"]],\"YP5KRj\":[\"a new webhook url will be generated on save.\"],\"YPDLLX\":[\"Back to execution environments\"],\"YQqM-5\":[\"The container image to be used for execution.\"],\"Yd45Xn\":[\"Hosts by processor type\"],\"Yfw7TK\":[\"Notification timed out\"],\"YgqgXs\":[[\"intervalValue\",\"plural\",{\"one\":[\"minute\"],\"other\":[\"minutes\"]}]],\"YiQ03p\":[\"Failed to delete schedule.\"],\"YiUAZm\":[\"<0>Note: This instance may be re-associated with this instance group if it is managed by <1>policy rules.\"],\"YlGAPh\":[\"Job Slice Pinned Hosts\"],\"Ym7-mu\":[\"One Slack channel per line. The pound symbol (#)\\n is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack\"],\"YmEWZH\":[\"Launch template\"],\"YmjTf2\":[\"Provisioning fail\"],\"YoXjSs\":[\"Prompt for inventory on launch.\"],\"Yq4Eaf\":[\"Host status information for this job is unavailable.\"],\"YsN-3o\":[\"View inventory source details\"],\"Yt-rBv\":[\"This project is currently being used by other resources. Are you sure you want to delete it?\"],\"YuC9dj\":[\"Associate\"],\"YxDLmM\":[\"Insights system ID\"],\"Z17FAa\":[\"Unknown Inventory\"],\"Z1Vtl5\":[\"Failed to cancel Project Sync\"],\"Z25_RC\":[\"Select Input\"],\"Z2hVSb\":[\"Hybrid\"],\"Z40J8D\":[\"Enables creation of a provisioning callback URL. Using the URL a host can contact \",[\"brandName\"],\" and request a configuration update using this job template.\"],\"Z5HWHd\":[\"On\"],\"Z7ZXbT\":[\"Approve\"],\"Z88yEl\":[\"Greater than or equal to comparison.\"],\"Z9EFpE\":[\"Automation Analytics dashboard\"],\"ZAWGCX\":[[\"0\"],\" seconds\"],\"ZEP8tT\":[\"Launch\"],\"ZGDCzb\":[\"Instance not found.\"],\"ZJjKDg\":[\"Managed nodes\"],\"ZKKnVf\":[\"Create New Workflow Template\"],\"ZL3d6Z\":[\"IRC Server Address\"],\"ZO4CYH\":[\"Running jobs\"],\"ZOLfb2\":[\"This field must not be blank.\"],\"ZWhZbs\":[\"Confirm node removal\"],\"ZajTWA\":[\"Source Phone Number\"],\"Zf6u-6\":[\"Explanation\"],\"ZfrRb0\":[\"Please select an Inventory or check the Prompt on Launch option\"],\"ZhUwVw\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" week\"],\"other\":[\"#\",\" weeks\"]}]],\"ZhxwOq\":[\"Error message body\"],\"Zikd-1\":[\"The number of hosts you have automated against is below your subscription count.\"],\"ZjC8QM\":[\"Failed to delete host.\"],\"ZjvPb1\":[\"Created By (Username)\"],\"Zkh5np\":[\"Peers update on \",[\"0\"],\". Please be sure to run the install bundle for \",[\"1\"],\" again in order to see changes take effect.\"],\"ZpdX6R\":[\"Error deleting tokens\"],\"ZrsGjm\":[\"Inventory\"],\"ZumtuZ\":[\"Copy Template\"],\"ZvVF4C\":[\"Delete survey question\"],\"ZwCTcT\":[\"Recent Jobs list tab\"],\"ZwujDQ\":[\"Past year\"],\"_-NKbo\":[\"Failed to toggle schedule.\"],\"_2LfCe\":[\"To reorder the survey questions drag and drop them in the desired location.\"],\"_4gGIX\":[\"Copy to clipboard\"],\"_5REdR\":[\"Select Input Inventories for the constructed inventory plugin.\"],\"_Fg1cM\":[\"Workflow timed out message body\"],\"_ITcnz\":[\"day\"],\"_Ia62Q\":[\"Constructed inventory examples\"],\"_JN1gB\":[\"Task Count\"],\"_K2CvV\":[\"Template\"],\"_LQZpR\":[[\"intervalValue\",\"plural\",{\"one\":[\"year\"],\"other\":[\"years\"]}]],\"_LVfwJ\":[\"Constructed Inventory Source Sync Error\"],\"_M4FeF\":[\"Select the Execution Environment you want this command to run inside.\"],\"_MdgrM\":[\"Add a new node between these two nodes\"],\"_PRaan\":[\"Failed to delete one or more notification template.\"],\"_Pz_QH\":[\"Managed by Policy\"],\"_W3ZAw\":[[\"selectedItemsCount\",\"plural\",{\"one\":[\"Click to run a health check on the selected instance.\"],\"other\":[\"Click to run a health check on the selected instances.\"]}]],\"_WBq2_\":[\"Denied - \",[\"0\"],\". See the Activity Stream for more information.\"],\"_Yq4TU\":[\"Maximum number of forks to allow across all jobs running concurrently on this group.\\n Zero means no limit will be enforced.\"],\"_ZBhqw\":[\"Failed to cancel Inventory Source Sync\"],\"_bAUGi\":[\"Choose an HTTP method\"],\"_bE0AS\":[\"Select an instance\"],\"_cV6Mf\":[\"Browse…\"],\"_cq4Aa\":[\"Workflow Approval not found.\"],\"_ereyb\":[\"TACACS+\"],\"_gCD76\":[\"Edit instance group\"],\"_ismew\":[\"Artifact key\"],\"_kYJq6\":[\"Days of Data to Keep\"],\"_khNCh\":[\"Job Template default credentials must be replaced with one of the same type. Please select a credential for the following types in order to proceed: \",[\"0\"]],\"_oeZtS\":[\"Host Polling\"],\"_rCRcH\":[\"Advanced search documentation\"],\"_vI8Rx\":[\"Delete Group?\"],\"a02Xjc\":[\"IRC server address\"],\"a3AD0M\":[\"confirm edit login redirect\"],\"a5zD9f\":[\"Changes\"],\"a6E-_p\":[\"Case-insensitive version of contains\"],\"a8AgQY\":[\"View Host Details\"],\"a8nooQ\":[\"Fourth\"],\"a9BTUD\":[\"weekend day\"],\"aBgwis\":[\"Scope\"],\"aLlb3-\":[\"boolean\"],\"aNxqSL\":[\"Delete Execution Environment\"],\"aQ4XJX\":[\"Enable log system tracking facts individually\"],\"aSuBiU\":[\"Microsoft Azure Resource Manager\"],\"aTK0Fh\":[\"On days\"],\"aUNPq3\":[\"Execution Node\"],\"aVoVcG\":[\"Multi-Select\"],\"aXBrSq\":[\"Red Hat Virtualization\"],\"a_vlog\":[\"Remove \",[\"0\"],\" chip\"],\"adPhRK\":[\"The inventory that this host belongs to.\"],\"adjqlB\":[[\"0\"],\" (deleted)\"],\"aht2s_\":[\"Notification color\"],\"aiejXq\":[\"Add resource type\"],\"ajDpGH\":[\"STATUS:\"],\"anfIXl\":[\"User Details\"],\"aqqAbL\":[\"If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on. Note: If this setting is enabled and you provided an empty list, the global instance groups will be applied.\"],\"ar5AA2\":[\"for more information.\"],\"ataY5Z\":[\"Job Delete Error\"],\"ax6e8j\":[\"Please select an organization before editing the host filter\"],\"az8lvo\":[\"Off\"],\"b1CAkh\":[\"Management Jobs\"],\"b2Z0Zq\":[\"Cancel link changes\"],\"b433OF\":[\"Edit Group\"],\"b4SLah\":[\"See errors on the left\"],\"b9Y4up\":[\"Client ID\"],\"bDa_hW\":[\"Select the Instance Groups this inventory source sync should run on. If unset, the sync runs on the instance groups of the inventory or its organization.\"],\"bE4zYn\":[\"Select the port that Receptor will listen on for incoming connections, e.g. 27199.\"],\"bHXYoC\":[\"HTTP Method\"],\"bKR18T\":[\"A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>User Guide.\"],\"bLt_0J\":[\"Workflow\"],\"bPq357\":[\"Enabled Value\"],\"bQZByw\":[\"Use one Annotation Tag per line, without commas.\"],\"bTu5jX\":[\"Username / password\"],\"bWr6j5\":[\"This field must be at least \",[\"min\"],\" characters\"],\"bY8C86\":[\"View all Users.\"],\"bYXbel\":[\"workflow job template webhook key\"],\"baP8gx\":[\"4 (Connection Debug)\"],\"baqrhc\":[\"HTTP Headers\"],\"bbJ-VR\":[\"Zoom Out\"],\"bcyJXs\":[\"Item OK\"],\"bd1Kuw\":[\"Icon URL\"],\"bf7UKi\":[\"Update cache timeout\"],\"bfgr_e\":[\"Question\"],\"bgjTnp\":[\"0 (Normal)\"],\"bgq1rW\":[\"Search submit button\"],\"bhxnLH\":[\"You do not have permission to delete the following Groups: \",[\"itemsUnableToDelete\"]],\"bkPO0d\":[\"Notification type\"],\"bpECfE\":[\"Cancel link removal\"],\"bpnj1H\":[\"There was an error loading this content. Please reload the page.\"],\"bwRvnp\":[\"Action\"],\"bx2rrL\":[\"Smart inventory\"],\"bxaVlf\":[\"Create new credential type\"],\"byXCTu\":[\"Occurrences\"],\"bznJUg\":[\"Select the inventory containing the hosts you want this workflow to manage.\"],\"bzv8Dv\":[\"Removal Error\"],\"c-xCSz\":[\"True\"],\"c0n4p3\":[\"Fact Storage\"],\"c1Rsz1\":[\"View Workflow Approval Details\"],\"c3XJ18\":[\"Help\"],\"c4kHK7\":[\"Close subscription modal\"],\"c6IFRs\":[\"Service account JSON file\"],\"c6u6gk\":[\"Select the Instance Groups for this Organization to run on.\"],\"c7-Adk\":[\"Failed to sync inventory source.\"],\"c8HyJq\":[\"Select the Instance Groups for this Inventory to run on.\"],\"c8sV0t\":[\"This feature is deprecated and will be removed in a future release.\"],\"c9V3Yo\":[\"Host Failed\"],\"c9iw51\":[\"Running Jobs\"],\"c9pF61\":[\"Client identifier\"],\"cFC8w7\":[\"This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?\"],\"cFCKYZ\":[\"Deny\"],\"cFOXv9\":[\"Generic OIDC\"],\"cGRiaP\":[\"Event detail\"],\"cIdUma\":[\"\\n There are no available playbook directories in \",[\"project_base_dir\"],\".\\n Either that directory is empty, or all of the contents are already\\n assigned to other projects. Create a new directory there and make\\n sure the playbook files can be read by the \\\"awx\\\" system user,\\n or have \",[\"brandName\"],\" directly retrieve your playbooks from\\n source control using the Source Control Type option above.\"],\"cNsIJf\":[\"Changed\"],\"cPTnDL\":[\"Project Sync\"],\"cQIQa2\":[\"Select Groups\"],\"cQlPDN\":[\"Read\"],\"cUKLzq\":[\"Edit Order\"],\"cYir0h\":[\"Select option(s)\"],\"c_PGsA\":[\"Workflow job details\"],\"cbSPfq\":[\"This workflow has already been acted on\"],\"ccA_Bz\":[\"The suggested format for variable names is lowercase and\\n underscore-separated (for example, foo_bar, user_id, host_name,\\n etc.). Variable names with spaces are not allowed.\"],\"cdm6_X\":[\"Used capacity\"],\"chbm2W\":[\"Instance Filters\"],\"ci3mwY\":[\"This field must not be blank\"],\"cit9TY\":[\"Name of an artifact produced by the parent node via set_stats. The link is only followed when the parent job matches the chosen outcome and the condition is true. A missing key never matches.\"],\"cj1KTQ\":[\"View all Inventories.\"],\"cjJXKx\":[\"Host Async Failure\"],\"ckH3fT\":[\"Ready\"],\"ckdiAB\":[\"Delete Notification\"],\"cmWTxn\":[\"Less than or equal to comparison.\"],\"cnGeoo\":[\"Delete\"],\"cnnWD0\":[\"By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>\",[\"0\"],\". Uncheck the following boxes to disable this feature.\"],\"ct_Puj\":[\"This field will be retrieved from an external secret management system using the specified credential.\"],\"cucDBz\":[\"Context Template\"],\"cucG_7\":[\"No YAML Available\"],\"cxjfgY\":[\"Cannot run health check on hop nodes.\"],\"cy3yJa\":[\"Established\"],\"d-F6q9\":[\"Created\"],\"d-zGjA\":[\"This action will delete the following:\"],\"d1BVnY\":[\"A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>\",[\"0\"],\".\"],\"d5zxa4\":[\"Local\"],\"d6in1T\":[\"Select the inventory containing the hosts you want this job to manage.\"],\"d73flf\":[\"Alert modal\"],\"d75lEw\":[\"Set type\"],\"d7VUIS\":[\"Remove Node \",[\"nodeName\"]],\"d8B-tr\":[\"Job status graph tab\"],\"dAZObA\":[\"Redirect URIs\"],\"dBNZkl\":[\"View smart inventory host details\"],\"dCcO-F\":[\"Failed to retrieve configuration.\"],\"dELxuP\":[\"Inventory not found.\"],\"dEgA5A\":[\"Cancel\"],\"dH6aQY\":[\"Azure AD Tenant\"],\"dIb9tv\":[\"View all applications.\"],\"dJcvVX\":[\"Smart host filter\"],\"dNAHKF\":[\"Job Slicing\"],\"dOjocz\":[\"Convergence select\"],\"dPGRd8\":[\"If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode.\"],\"dPY1x1\":[\"for more info.\"],\"dQFAgv\":[\"This Project needs to be updated\"],\"dQjRO3\":[\"Start sync process\"],\"dbWo0h\":[\"Sign in with Google\"],\"dcGoCm\":[\"Inventory File\"],\"ddIcfH\":[\"Go to last page\"],\"dfWFox\":[\"Host Count\"],\"dk7qNl\":[\"Control node\"],\"dkGxGj\":[\"Subversion\"],\"dlHFy7\":[\"Failed to delete one or more execution environments\"],\"dnCwNB\":[\"Successfully copied to clipboard!\"],\"dov9kY\":[\"This field must be a number and have a value between \",[\"0\"],\" and \",[\"1\"]],\"dqxQzB\":[\"dictionary\"],\"dzQfDY\":[\"October\"],\"e0NrBM\":[\"Project\"],\"e3pQqT\":[\"Choose a Notification Type\"],\"e4GHWP\":[\"Pull\"],\"e5CMOi\":[\"Environment variables or extra variables that specify the values a credential type can inject.\"],\"e5VbKq\":[\"Workflow Job Templates\"],\"e6BtDv\":[\"<0>\",[\"0\"],\"<1>\",[\"1\"],\"\"],\"e70-_3\":[\"Toggle Legend\"],\"e8GyQg\":[\"Metric\"],\"e8U63Z\":[\"Only sync the project when the pushed ref matches this pattern, for example refs/heads/main or refs/heads/release-*. Leave blank to sync on any push or tag event.\"],\"e91aLH\":[\"View all credential types\"],\"e9k5zp\":[\"Please add a Schedule to populate this list. Schedules can be added to a Template, Project, or Inventory Source.\"],\"eAR1n4\":[\"Related search type typeahead\"],\"eD_0Fo\":[\"Failed to delete one or more teams.\"],\"eDjsWq\":[\"Create New Notification Template\"],\"eGkahQ\":[\"Delete Job Template\"],\"eHx-29\":[\"Source details\"],\"ePK91l\":[\"Edit\"],\"ePS9As\":[\"RADIUS settings\"],\"eQkgKV\":[\"Installed\"],\"eRV9Z3\":[\"No timeout specified\"],\"eRlz2Q\":[\"Destination SMS Number(s)\"],\"eSXF_i\":[\"Failed to delete application.\"],\"eTsJYJ\":[\"description\"],\"eVJ2lo\":[\"Float\"],\"eXOp7I\":[\"You do not have permission to remove instances: \",[\"itemsUnableToremove\"]],\"eXWuGz\":[\"Recent Templates list tab\"],\"eYJ4TK\":[\"Constructed Inventory not found.\"],\"eeke40\":[\"Automation Analytics\"],\"ekUnNJ\":[\"Select tags\"],\"el9nUc\":[\"Schedule is inactive\"],\"emqNXf\":[\"Playbook Check\"],\"eqiT7d\":[\"Sets the role that this instance will play within mesh topology. Default is \\\"execution.\\\"\"],\"espHeZ\":[\"Prevent Instance Group Fallback: If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on.\"],\"etQEqZ\":[\"Removing this link will orphan the rest of the branch and cause it to be executed immediately on launch.\"],\"ewSXyG\":[\"Soft delete \",[\"pluralizedItemName\"],\"?\"],\"f-fQK9\":[\"Grafana API key\"],\"f2o-xB\":[\"Confirm cancellation\"],\"f6Hub0\":[\"Sort\"],\"f9yJNM\":[\"Equals\"],\"fCZSgU\":[\"View all instance groups\"],\"fDzxi_\":[\"Exit Without Saving\"],\"fE2kOY\":[\"Date operator select\"],\"fGEOCn\":[\"Job status\"],\"fGLpQj\":[\"Source Control Branch/Tag/Commit\"],\"fGQ9Ug\":[\"Select credentials for accessing the nodes this job will be ran against. You can only select one credential of each type. For machine credentials (SSH), checking \\\"Prompt on launch\\\" without selecting credentials will require you to select a machine credential at run time. If you select credentials and check \\\"Prompt on launch\\\", the selected credential(s) become the defaults that can be updated at run time.\"],\"fJ9xam\":[\"Enable Instance\"],\"fKew5B\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"Cancel job\"],\"other\":[\"Cancel jobs\"]}]],\"fL7WXr\":[\"Applications\"],\"fMUEsk\":[\"Day \",[\"0\"]],\"fMulwN\":[\"Refresh project revision\"],\"fOAyP5\":[\"Search text input\"],\"fODqV4\":[\"That value was not found. Please enter or select a valid value.\"],\"fQCM-p\":[\"View Organization Details\"],\"fQGOXc\":[\"Error!\"],\"fR8DDt\":[\"Confirm removal of all nodes\"],\"fVjyJ4\":[\"Confirm disassociate\"],\"f_Xpp2\":[\"This action will disassociate the following:\"],\"fcTDCh\":[\"Provide your Red Hat or Red Hat Satellite credentials\\n below and you can choose from a list of your available subscriptions.\\n The credentials you use will be stored for future use in\\n retrieving renewal or expanded subscriptions.\"],\"ff_JYN\":[\"Filter on nested group name\"],\"fgrmWn\":[\"Prompt for diff mode on launch.\"],\"fhFmMp\":[\"Client Identifier\"],\"fjX9i5\":[\"Smart Inventory not found.\"],\"fk1WEw\":[\"Encrypted\"],\"fld-O4\":[\"All jobs\"],\"fnbZWe\":[\"Optionally select the credential to use to send status updates back to the webhook service.\"],\"foItBN\":[\"Weekend day\"],\"fp4RS1\":[\"content-loading-in-progress\"],\"fpMgHS\":[\"Mon\"],\"fqSfXY\":[\"Replace\"],\"fqmP_m\":[\"Host Unreachable\"],\"fthJP1\":[\"Webhook services can launch jobs with this workflow job template by making a POST request to this URL.\"],\"fwX7gC\":[\"VMware vCenter\"],\"g4o5Lr\":[\"Verbose\"],\"g6ekO4\":[\"Failed to toggle host.\"],\"g7CZ-8\":[\"Sign in with GitHub Enterprise Organizations\"],\"g9d3sF\":[\"Start message body\"],\"gALXcv\":[\"Delete this node\"],\"gBnBJa\":[\"Source Workflow Job\"],\"gDx5MG\":[\"Edit Link\"],\"gIGcbR\":[\"Maximum number of jobs to run concurrently on this group. Zero means no limit will be enforced.\"],\"gJccsJ\":[\"Workflow approved message\"],\"gK06zh\":[\"Add job template\"],\"gM3pS9\":[\"Execution Environments\"],\"gN3aF4\":[\"LDAP5\"],\"gSVH9P\":[\"Sync all sources\"],\"gUaMtt\":[\"On timeout\"],\"gVYePj\":[\"Create New Team\"],\"gWlcwd\":[\"Last Job Status\"],\"gYWK-5\":[\"View User Interface settings\"],\"gZXc5U\":[\"The number of distinct users that must approve before the workflow continues. A single denial always denies the node.\"],\"gZaMqy\":[\"Sign in with GitHub Teams\"],\"gZkstf\":[\"If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime.\"],\"gcFnpl\":[\"Job Status\"],\"geTfDb\":[\"View Job Details\"],\"ged_ZE\":[\"Oragnization\"],\"gezukD\":[\"Select a job to cancel\"],\"gfyddN\":[\"Upload a .zip file\"],\"gh06VD\":[\"Output\"],\"ghJsq8\":[\"Scroll first\"],\"gmB6oO\":[\"Schedule\"],\"gmBQqV\":[\"Project Update\"],\"gnveFZ\":[\"Standard error tab\"],\"goVc-x\":[\"Edit Credential Plugin Configuration\"],\"go_DGX\":[\"Add Team Roles\"],\"gpKdxJ\":[\"Select a question to delete\"],\"gpmbqk\":[\"Variables\"],\"gpnvle\":[\"deletion error\"],\"gsj32g\":[\"Cancel Project Sync\"],\"gtB4z-\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" hour\"],\"other\":[\"#\",\" hours\"]}]],\"gwKtbI\":[\"in the documentation and the\"],\"h25sKn\":[\"Subscription Management\"],\"h51QFW\":[\"YAML\"],\"h8DugX\":[\"Labels\"],\"hAjDQy\":[\"Select status\"],\"hBHRCF\":[\"Minimum number of instances that will be automatically\\n assigned to this group when new instances come online.\"],\"hEBjSg\":[\"Red Hat Satellite 6\"],\"hEnNCI\":[\"Remove the current search related to ansible facts to enable another search using this key.\"],\"hG89Ed\":[\"Image\"],\"hHKoQD\":[\"Select Peer Addresses\"],\"hLDu5N\":[\"Edit application\"],\"hNudM0\":[\"Set a value for this field\"],\"hPa_zN\":[\"Organization (Name)\"],\"hQ0dMQ\":[\"Add new host\"],\"hQRttt\":[\"Submit\"],\"hVPa4O\":[\"Select an option\"],\"hX8KyU\":[\"This job failed and has no output.\"],\"hXDKWN\":[\"Frequency Details\"],\"hXzOVo\":[\"Next\"],\"hYH0cE\":[\"Are you sure you want to submit the request to cancel this job?\"],\"hYgDIe\":[\"Create\"],\"hZ6znB\":[\"Port\"],\"hZke6f\":[\"Are you sure you want to disable local authentication? Doing so could impact users' ability to log in and the system administrator's ability to reverse this change.\"],\"hc_ufD\":[\"Job Tags\"],\"hdyeZ0\":[\"Delete Job\"],\"he3ygx\":[\"Copy\"],\"heqHpI\":[\"Project Base Path\"],\"hg6l4j\":[\"March\"],\"hgJ0FN\":[\"Perform a search to define a host filter\"],\"hgr8eo\":[\"items\"],\"hgvbYY\":[\"September\"],\"hhzh14\":[\"We were unable to locate licenses associated with this account.\"],\"hi1n6B\":[\"Update settings pertaining to Jobs within \",[\"brandName\"]],\"hiDMCa\":[\"Provisioning\"],\"hjsbgA\":[\"Extra variables\"],\"hjwN_s\":[\"Resource Name\"],\"hlbQEq\":[\"Content Signature Validation Credential\"],\"hmEecN\":[\"Management Job\"],\"hmjNLv\":[\"Preferred Theme\"],\"hty0d5\":[\"Monday\"],\"hvs-Js\":[\"Application information\"],\"i0VMLn\":[\"Workflow denied message\"],\"i2izXk\":[\"Schedule is missing rrule\"],\"i4_LY_\":[\"Write\"],\"i9sC0B\":[\"Add team permissions\"],\"iASwqf\":[\"This action will cancel the following job:\"],\"iCFhEl\":[\"Source phone number\"],\"iDNBZe\":[\"Notifications\"],\"iDWfOR\":[\"Failed to approve one or more workflow approval.\"],\"iDjyID\":[\"View Credential Details\"],\"iE1s1P\":[\"Launch workflow\"],\"iEUzMn\":[\"system\"],\"iH8pgl\":[\"Back\"],\"iI4bLJ\":[\"Last Login\"],\"iIVceM\":[\"Copy Error\"],\"iJWOeZ\":[\"No JSON Available\"],\"iJiCFw\":[\"Group details\"],\"iLO3nG\":[\"Play Count\"],\"iMaC2H\":[\"Instance groups\"],\"iPp22p\":[\"This schedule uses complex rules that are not supported in the\\n UI. Please use the API to manage this schedule.\"],\"iQdYL_\":[\"Add smart inventory\"],\"iRWxmA\":[\"Disable SSL Verification\"],\"iTylMl\":[\"Templates\"],\"iWKCzl\":[\"Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks.\"],\"iXmHtI\":[\"Select job type\"],\"iZBwau\":[\"This step contains errors\"],\"i_CDGy\":[\"Allow Branch Override\"],\"i_Kv21\":[\"Create new source\"],\"ifckL-\":[\"Row select\"],\"ifdViT\":[\"View Inventory Details\"],\"ig0q8s\":[\"This inventory is applied to all workflow nodes within this workflow (\",[\"0\"],\") that prompt for an inventory.\"],\"inP0J5\":[\"Subscription Details\"],\"isRobC\":[\"New\"],\"itlxml\":[\"Management job\"],\"ittbfT\":[\"Searching by ansible_facts requires special syntax. Refer to the\"],\"itu2NQ\":[\"Link state types\"],\"j1a5f1\":[\"Edit Host\"],\"j6gqC6\":[\"Branch to use in job run. Project default used if blank. Only allowed if project allow_override field is set to true.\"],\"j7zAEo\":[\"Workflow Statuses\"],\"j8QfHv\":[\"Edit host\"],\"jAxdt7\":[\"cancel delete\"],\"jBGh4u\":[\"Nested groups inventory definition:\"],\"jCVu9g\":[\"Cancel selected job\"],\"jEJtMA\":[\"Pending Workflow Approvals\"],\"jEw0Mr\":[\"Please enter a valid URL\"],\"jFaaUJ\":[\"Canonical\"],\"jGUu_G\":[\"Required approvals\"],\"jIaeJK\":[\"Survey\"],\"jJdwCB\":[\"Revert\"],\"jKibyt\":[\"Reset zoom\"],\"jMyq_x\":[\"Workflow Job 1/\",[\"0\"]],\"jaUa4e\":[\"This data is used to enhance\\n future releases of the Tower Software and help\\n streamline customer experience and success.\"],\"jc86YO\":[\"Prompt for limit on launch.\"],\"ji-8F7\":[\"This credential is currently being used by other resources. Are you sure you want to delete it?\"],\"jiE6Vn\":[\"Organizations\"],\"jifz9m\":[\"None (run once)\"],\"jkQOCm\":[\"Add exceptions\"],\"jljuYN\":[\"Service that webhook requests will be accepted from.\"],\"jluR-N\":[\"Warning: \",[\"selectedValue\"],\" is a link to \",[\"0\"],\" and will be saved as that.\"],\"joAQQS\":[\"The inventories will be in a pending status until the final delete is processed.\"],\"jqVo_k\":[\"here.\"],\"jqzUyM\":[\"Unavailable\"],\"jrkyDn\":[\"Play Started\"],\"jrsFB3\":[\"Output tab\"],\"jsz-PY\":[\"Unknown Finish Date\"],\"jwmkq1\":[\"Machine Credential\"],\"jzD-D6\":[\"Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task. Use commas to separate multiple tags. Refer to the documentation for details on the usage of tags.\"],\"k020kO\":[\"Activity Stream\"],\"k2dzu3\":[\"Expires on UTC\"],\"k30JvV\":[\"Selected Category\"],\"k5nHqi\":[\"The execution environment that will be used when launching this job template. The resolved execution environment can be overridden by explicitly assigning a different one to this job template.\"],\"kALwhk\":[\"seconds\"],\"kDWprA\":[\"These arguments are used with the specified module.\"],\"kEhyki\":[\"Field ends with value.\"],\"kLja4m\":[\"Initiated By\"],\"kLk5bG\":[\"Start message\"],\"kNUkGV\":[\"Lookup type\"],\"kNfXib\":[\"Module Name\"],\"kODvZJ\":[\"First Name\"],\"kOVkPY\":[\"Toggle instance\"],\"kP-3Hw\":[\"Back to Inventories\"],\"kQerRU\":[\"This field must not contain spaces\"],\"kX-GZH\":[\"Relaunch Job\"],\"kXzl6Z\":[\"Source Variables\"],\"kYDvK4\":[\"Including File\"],\"kah1PX\":[\"View YAML examples at\"],\"kaux7o\":[\"Overwrite local groups and hosts from remote inventory source\"],\"kgtWJ0\":[\"Select the Instance Groups for this Job Template to run on.\"],\"kiMHN-\":[\"System Auditor\"],\"kjrq_8\":[\"More information\"],\"kkDQ8m\":[\"Thursday\"],\"kkc8HD\":[\"Enable simplified login for your \",[\"brandName\"],\" applications\"],\"kpRn7y\":[\"Delete Questions\"],\"kpnWnY\":[\"After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format.\"],\"ks-HYT\":[\"Add user permissions\"],\"ks71ra\":[\"Exceptions\"],\"kt8V8M\":[\"Select a branch for the workflow.\"],\"ktPOqw\":[\"Refer to the\"],\"kuIbuV\":[\"Health checks can only be run on execution nodes.\"],\"ku__5b\":[\"Second\"],\"kyAi7k\":[\"Instance\"],\"kyHUFI\":[\"Vault password | \",[\"credId\"]],\"kyfr2I\":[\"If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \\\"all\\\" default group for the inventory.\"],\"kz7G1W\":[\"Are you sure you want to remove \",[\"0\"],\" access from \",[\"1\"],\"? Doing so affects all members of the team.\"],\"l4MzBY\":[[\"update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" second\"],\"other\":[\"#\",\" seconds\"]}]],\"l4k9lc\":[\"First node\"],\"l5XUoS\":[\"Webhook Credentials\"],\"l75CjT\":[\"Yes\"],\"l9ZmWD\":[[\"scm_update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" second\"],\"other\":[\"#\",\" seconds\"]}]],\"lCF0wC\":[\"Refresh\"],\"lJFsGr\":[\"Create new instance group\"],\"lKxoCA\":[\"Expand job events\"],\"lM9cbX\":[\"Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly.\"],\"lURfHJ\":[\"Collapse section\"],\"lWkKSO\":[\"min\"],\"lWmv3p\":[\"Inventory Sources\"],\"lYDyXS\":[\"Smart Inventory\"],\"l_jRvf\":[\"Playbook Complete\"],\"lfoFSg\":[\"Delete Host\"],\"lgm7y2\":[\"edit\"],\"lgphOX\":[\"Expected value\"],\"lhgU4l\":[\"Template not found.\"],\"lhkaAC\":[\"Trial\"],\"ljGeYw\":[\"Normal User\"],\"lk5WJ7\":[\"host-name-\",[\"0\"]],\"lkgIYt\":[\"Pagerduty\"],\"lo-rJO\":[\"Pan Down\"],\"ltvmAF\":[\"Application not found.\"],\"lu2qW5\":[\"Any\"],\"lucaxq\":[\"Cannot enable log aggregator without providing logging aggregator host and logging aggregator type.\"],\"luxcrf\":[\"More information for \",[\"label\"]],\"lyjq5X\":[\"Slack\"],\"m-eV2_\":[\"Container group not found.\"],\"m16xKo\":[\"Add\"],\"m1tKEz\":[\"System administrators have unrestricted access to all resources.\"],\"m2ErDa\":[\"Failure\"],\"m3k6kn\":[\"Failed to cancel Constructed Inventory Source Sync\"],\"m5MOUX\":[\"Back to Hosts\"],\"mGJIOu\":[\"This constructed inventory input\\n creates a group for both of the categories and uses\\n the limit (host pattern) to only return hosts that\\n are in the intersection of those two groups.\"],\"mNBZ1R\":[\"Note: This field assumes the remote name is \\\"origin\\\".\"],\"mOFgdC\":[\"Maximum\"],\"mPiYpP\":[\"Node state types\"],\"mSv_7k\":[\"Past three years\"],\"mXRKES\":[\"LDAP4\"],\"mXfNlE\":[\"This schedule is missing required survey values\"],\"mYGY3B\":[\"Date\"],\"mZiQNk\":[\"Privilege escalation: If enabled, run this playbook as an administrator.\"],\"m_tELA\":[\"cancel remove\"],\"ma7cO9\":[\"Failed to delete group \",[\"0\"],\".\"],\"mahPLs\":[\"Privilege escalation password\"],\"mcGG2z\":[[\"minutes\"],\" min \",[\"seconds\"],\" sec\"],\"mdNruY\":[\"API Token\"],\"mgJ1oe\":[\"Confirm delete\"],\"mgjN5u\":[\"Disassociate instance from instance group?\"],\"mhg7Av\":[\"Run ad hoc command\"],\"mi9ffh\":[\"Host Details\"],\"mk4anB\":[\"Browser default\"],\"mlDUq3\":[\"Modified By (Username)\"],\"mnm1rs\":[\"GitHub Default\"],\"moZ0VP\":[\"Sync Status\"],\"momgZ_\":[\"Name of the workflow job template.\"],\"mqAOoN\":[\"Choose a Playbook Directory\"],\"n-37ya\":[\"Confirm Disable Local Authorization\"],\"n-LISx\":[\"There was an error saving the workflow.\"],\"n-ZioH\":[\"Error fetching updated project\"],\"n-qmM7\":[\"Select a JSON formatted service account key to autopopulate the following fields.\"],\"n12Go4\":[\"Failed to load related groups.\"],\"n60kiJ\":[\"* This field will be retrieved from an external secret management system using the specified credential.\"],\"n6mYYY\":[\"Workflow timed out message\"],\"n9Idrk\":[\"(Limited to first 10)\"],\"n9lz4A\":[\"Failed jobs\"],\"nBAIS_\":[\"View event details\"],\"nC35Na\":[\"Are you sure you want delete the group below?\"],\"nCU-1E\":[\"Enables creation of a provisioning\\n callback URL. Using the URL a host can contact \",[\"brandName\"],\"\\n and request a configuration update using this job\\n template\"],\"nCY9IL\":[\"Host Skipped\"],\"nDjIzD\":[\"View Project Details\"],\"nGbNEN\":[\"Time in seconds to consider a project to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest project update. If it is older than Cache Timeout, it is not considered current, and a new project update will be performed.\"],\"nI54lc\":[\"Delete the project before syncing\"],\"nJPBvA\":[\"File, directory or script\"],\"nJTOTZ\":[\"The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level.\"],\"nLGsp4\":[\"Enable a survey for this workflow job template.\"],\"nMiE53\":[\"Enabled Variable\"],\"nOhz3x\":[\"Logout\"],\"nPH1Cr\":[\"These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?\"],\"nQOwDS\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"dayOfWeek\"]],\"4\":[\"The fourth \",[\"dayOfWeek\"]],\"5\":[\"The fifth \",[\"dayOfWeek\"]],\"one\":[\"The first \",[\"dayOfWeek\"]],\"two\":[\"The second \",[\"dayOfWeek\"]]}]],\"nRXCOn\":[\"Failed Host Count\"],\"nSTT11\":[\"Relaunch from:\"],\"nTENWI\":[\"Return to subscription management.\"],\"nU16mp\":[\"Cache Timeout\"],\"nZPX7r\":[\"Warning: Unsaved Changes\"],\"nZW6P0\":[\"Local time zone\"],\"nZYB4j\":[\"No Status Available\"],\"nZYxse\":[\"Disassociate host from group?\"],\"n_qDNz\":[\"Switch to dark mode\"],\"naCW6Z\":[\"April\"],\"ncxIQL\":[\"Failed to disassociate one or more instances.\"],\"neiOWk\":[\"View constructed inventory documentation here\"],\"nfnm9D\":[\"Organization Name\"],\"ng00aZ\":[\"Host Filter\"],\"nhxAdQ\":[\"Keyword\"],\"nlsWzF\":[\"Please add survey questions.\"],\"nnY7VU\":[\"Pagerduty Subdomain\"],\"noGZlf\":[\"Cache timeout (seconds)\"],\"npGo-z\":[\"Sign in with \",[\"label\"]],\"nuh_Wq\":[\"Webhook URL\"],\"nvUq8j\":[\"1 (Verbose)\"],\"nzozOC\":[\"Delete User\"],\"nzr1qE\":[\"File upload rejected. Please select a single .json file.\"],\"o-JPE2\":[\"No survey questions found.\"],\"o0RwAq\":[\"Sign in with GitHub Enterprise\"],\"o0x5-R\":[\"Select a value for this field\"],\"o4NRE0\":[\"Advanced search value input\"],\"o5J6dR\":[\"Specify the conditions under which this node should be executed\"],\"o9R2tO\":[\"SSL Connection\"],\"oABS9f\":[\"Provide a value for this field or select the Prompt on launch option.\"],\"oB5EwG\":[\"External Secret Management System\"],\"oBmCtD\":[\"Are you sure you want delete the groups below?\"],\"oC5JSb\":[\"Failed to fetch the updated project data.\"],\"oCKCYp\":[\"Notification sent successfully\"],\"oEijQ7\":[\"Case-insensitive version of startswith.\"],\"oFtmtl\":[\"Select the inventory containing the hosts\\n you want this job to manage.\"],\"oGKq12\":[\"Construct 2 groups, limit to intersection\"],\"oH1Qle\":[\"Webhook URL for this workflow job template.\"],\"oHOOxn\":[\"By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page. Uncheck the following boxes to disable this feature.\"],\"oII7vS\":[\"GitHub settings\"],\"oKMFX4\":[\"Never Updated\"],\"oKbBFU\":[\"# source with sync failures.\"],\"oNOjE7\":[\"End date/time\"],\"oNZQUQ\":[\"Credential to authenticate with Kubernetes or OpenShift\"],\"oQqtoP\":[\"Back to management jobs\"],\"oRt7Uv\":[[\"interval\"],\" years\"],\"oTDA5P\":[[\"0\",\"plural\",{\"one\":[\"This instance is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deprovisioning these instances could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"oWvSIB\":[\"Sender Email\"],\"oX_mCH\":[\"Project Sync Error\"],\"oZvDsd\":[[\"interval\"],\" hours\"],\"ocUvR-\":[\"False\"],\"ofO19Q\":[\"Sign in with GitHub Enterprise Teams\"],\"ofcQVG\":[\"Unsaved changes modal\"],\"olEUh2\":[\"Successful\"],\"opS--k\":[\"Back to Instance Groups\"],\"orh4t6\":[\"Host OK\"],\"osCeRO\":[\"View Azure AD settings\"],\"ot7qsv\":[\"Clear all filters\"],\"ovBPCi\":[\"Default\"],\"owBGkJ\":[\"End did not match an expected value (\",[\"0\"],\")\"],\"owQ8JH\":[\"Add instance group\"],\"ozbhWy\":[\"Deletion Error\"],\"p-nfFx\":[\"Drag a file here or browse to upload\"],\"p-ngUo\":[\"Unfollow\"],\"p-pp9U\":[\"string\"],\"p2LEhJ\":[\"Personal access token\"],\"p2_GCq\":[\"Confirm Password\"],\"p3PM8G\":[\"Relaunch from first node\"],\"p6-JME\":[\"The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \\\"pull/62/head\\\".\"],\"pAtylB\":[\"Not Found\"],\"pCCQER\":[\"Globally Available\"],\"pH8j40\":[\"Active hosts previously deleted\"],\"pHyx6k\":[\"Multiple Choice (single select)\"],\"pKQcta\":[\"Customize pod specification\"],\"pOJNDA\":[\"command\"],\"pOd3wA\":[\"Press 'Enter' to add more answer choices. One answer\\nchoice per line.\"],\"pOhwkU\":[\"This action will disassociate the following role from \",[\"0\"],\":\"],\"pRZ6hs\":[\"Run on\"],\"pSypIG\":[\"Show description\"],\"pYENvg\":[\"Authorization grant type\"],\"pZJ0-s\":[\"Maximum number of forks to allow across all jobs running concurrently on this group. Zero means no limit will be enforced.\"],\"pa1SrG\":[[\"interval\"],\" days\"],\"peCAyQ\":[\"View RADIUS settings\"],\"pfw0Wr\":[\"ALL\"],\"pguZh2\":[\"Create vars from jinja2 expressions. This can be useful\\n if the constructed groups you define do not contain the expected\\n hosts. This can be used to add hostvars from expressions so\\n that you know what the resultant values of those expressions are.\"],\"phTgAm\":[\"It is hard to give a specification for\\n the inventory for Ansible facts, because to populate\\n the system facts you need to run a playbook against\\n the inventory that has `gather_facts: true`. The\\n actual facts will differ system-to-system.\"],\"pkY73W\":[\"Rocket.Chat\"],\"pn7Xy3\":[\"See Django\"],\"poMgBa\":[\"Prompt for SCM branch on launch.\"],\"ppcQy0\":[\"Set zoom to 100% and center graph\"],\"prydaE\":[\"Project sync failures\"],\"pw2VDK\":[\"The last \",[\"weekday\"],\" of \",[\"month\"]],\"q-Uk_P\":[\"Failed to delete one or more credential types.\"],\"q45OlW\":[\"Regions\"],\"q5tQBE\":[\"Set type disabled for related search field fuzzy searches\"],\"q67y3T\":[\"Notification Template not found.\"],\"qAlZNb\":[\"You are unable to act on the following workflow approvals: \",[\"itemsUnableToDeny\"]],\"qCUUnr\":[\"No Hosts Remaining\"],\"qChjCy\":[\"First Run\"],\"qD-pvR\":[\"ID of the dashboard (optional)\"],\"qEMgTP\":[\"Inventory Source Sync Error\"],\"qJK-de\":[\"Sign in with OIDC\"],\"qS0GhO\":[\"Execution Environment Missing\"],\"qSSVmd\":[\"Destination Channels or Users\"],\"qSSg1L\":[\"Link to an available node\"],\"qWD0iN\":[\"This data is used to enhance\\n future releases of the Software and to provide\\n Automation Analytics.\"],\"qXRYa2\":[\"Track submodules latest commit on branch\"],\"qYkrfg\":[\"Provisioning Callback details\"],\"qZ2MTC\":[\"These are the modules that \",[\"brandName\"],\" supports running commands against.\"],\"qgjtIt\":[\"Convergence\"],\"qlhQw_\":[\"Inventory sync\"],\"qliDbL\":[\"Remote Archive\"],\"qlwLcm\":[\"Troubleshooting\"],\"qmBmJJ\":[\"This is the only time the client secret will be shown.\"],\"qmYgP7\":[\"approved\"],\"qqeAJM\":[\"Never\"],\"qtFFSS\":[\"Update Revision on Launch\"],\"qtaMu8\":[\"Inventory (Name)\"],\"qvCD_i\":[\"Examples include:\"],\"qwaCoN\":[\"Source Control Update\"],\"qxZ5RX\":[\"hosts\"],\"qznBkw\":[\"Workflow link modal\"],\"r6Aglb\":[\"Enter injectors using either JSON or YAML syntax. Refer to the Ansible Controller documentation for example syntax.\"],\"r6y-jM\":[\"Warning\"],\"r6zgGo\":[\"December\"],\"r8ojWq\":[\"Confirm remove\"],\"r8oq0Y\":[\"Past 24 hours\"],\"rBdPPP\":[\"Failed to delete \",[\"name\"],\".\"],\"rE95l8\":[\"Client type\"],\"rG3WVm\":[\"Select\"],\"rHK_Sg\":[\"Custom virtual environment \",[\"virtualEnvironment\"],\" must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation.\"],\"rK7UBZ\":[\"Relaunch all hosts\"],\"rKS_55\":[\"Fact storage: If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime..\"],\"rKTFNB\":[\"Delete credential type\"],\"rLznGJ\":[\"A Jinja2 template rendered with upstream set_stats artifacts when the approval is created. Use this to show the approver relevant context from previous job steps. Available variables come from set_stats data of parent nodes.\"],\"rMrKOB\":[\"Failed to sync project.\"],\"rOZRCa\":[\"Workflow Link\"],\"rSYkIY\":[\"This field must be a number\"],\"rXhu41\":[\"2 (Debug)\"],\"rYHzDr\":[\"Items per page\"],\"r_IfWZ\":[\"Edit Inventory\"],\"rdUucN\":[\"Preview\"],\"rfYaVc\":[\"Answer variable name\"],\"rfpIXM\":[\"Prompt for instance groups on launch.\"],\"rfx2oA\":[\"Workflow pending message body\"],\"riBcU5\":[\"IRC Nick\"],\"rjVfy3\":[\"Workflow documentation\"],\"rjyWPb\":[\"January\"],\"rmb2GE\":[\"Denied by \",[\"0\"],\" - \",[\"1\"]],\"rmt9Tu\":[\"Total hosts\"],\"ruhGSG\":[\"Cancel Inventory Source Sync\"],\"rvia3m\":[\"Miscellaneous Authentication\"],\"rw1pRJ\":[\"Download bundle\"],\"rwWNpy\":[\"Inventories\"],\"s-MGs7\":[\"Resources\"],\"s2xYUy\":[\"Overwrite local variables from remote inventory source\"],\"s3KtlK\":[\"This schedule has no occurrences due to the selected exceptions.\"],\"s4Qnj2\":[\"Execution Environment\"],\"s4fge-\":[\"Past month\"],\"s5aIEB\":[\"Delete Workflow Job Template\"],\"s5mACA\":[\"Instance details\"],\"s5r5nt\":[[\"0\",\"plural\",{\"one\":[\"This instance group is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"s6F6Ks\":[\"No output found for this job.\"],\"s70SJY\":[\"Logging settings\"],\"s8hQty\":[\"View all Jobs.\"],\"s9EKbs\":[\"Disable SSL verification\"],\"sAz1tZ\":[\"confirm disassociate\"],\"sBJ5MF\":[\"Sources\"],\"sCEb_0\":[\"View all Inventory Hosts.\"],\"sGodAp\":[\"Pod spec override\"],\"sMDRa_\":[\"Back to Groups\"],\"sOMf4x\":[\"Recent Templates\"],\"sSFxX6\":[\"Update revision on job launch\"],\"sTkKoT\":[\"Select a row to deny\"],\"sUyFTB\":[\"Redirecting to dashboard\"],\"sV3kNp\":[\"This instance group is currently being by other resources. Are you sure you want to delete it?\"],\"sVh4-e\":[\"Delete this link\"],\"sW5OjU\":[\"required\"],\"sZif4m\":[\"Disassociate related group(s)?\"],\"s_XkZs\":[\"START\"],\"s_r4Az\":[\"This field must be an integer\"],\"sesAIn\":[\"Use custom messages to change the content of\\n notifications sent when a job starts, succeeds, or fails. Use\\n curly braces to access information about the job:\"],\"sgRZMG\":[\"Hybrid node\"],\"siJgSI\":[\"User not found.\"],\"sjMCOP\":[\"Last Modified\"],\"sjVfrA\":[\"Command\"],\"smFRaX\":[\"A job has already been launched\"],\"sqMsvU\":[[\"0\",\"plural\",{\"one\":[\"#\",\" source with sync failures.\"],\"other\":[\"#\",\" sources with sync failures.\"]}]],\"sr4LMa\":[\"Inventory Source\"],\"svR3aM\":[\"OpenStack\"],\"svy2x9\":[\"Returns results that satisfy this one or any other filters.\"],\"sxkWRg\":[\"Advanced\"],\"syupn5\":[\"Brand Image\"],\"syyeb9\":[\"First\"],\"t-R8-P\":[\"Execution\"],\"t2q1xO\":[\"Edit Schedule\"],\"t4v_7X\":[\"Select a Node Type\"],\"t9QlBd\":[\"November\"],\"tRm9qR\":[\"Tags are useful when you have a large playbook, and you want to run a specific part of a play or task. Use commas to separate multiple tags. Refer to the documentation for details on the usage of tags.\"],\"tVEot_\":[[\"0\",\"plural\",{\"one\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"other\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"]}]],\"tXkhj_\":[\"Start\"],\"t_YqKh\":[\"Remove\"],\"tbSVlt\":[\"Remove User Access\"],\"tfDRzk\":[\"Save\"],\"tfh2eq\":[\"Click to create a new link to this node.\"],\"tgPwON\":[\"Operator\"],\"tgSBSE\":[\"Remove Link\"],\"tgWuMB\":[\"Modified\"],\"thJljW\":[\"WARNING: \"],\"toJdZA\":[\"Reorder\"],\"tpCmSt\":[\"policy rules.\"],\"tqlcfo\":[\"Deprovisioning\"],\"trjiIV\":[\"Failed to associate peer.\"],\"tst44n\":[\"Events\"],\"twE5a9\":[\"Failed to delete credential.\"],\"txNbrI\":[\"Source Control Branch\"],\"ty2DZX\":[\"This organization is currently being by other resources. Are you sure you want to delete it?\"],\"tzgOKK\":[\"This has already been acted on\"],\"u-sh8m\":[\"/ (project root)\"],\"u4ex5r\":[\"July\"],\"u4n8Fm\":[\"Failed to remove peers.\"],\"u4x6Jy\":[\"Back to Jobs\"],\"u5AJST\":[\"The number of parallel or simultaneous processes to use while executing the playbook. Inputting no value will use the default value from the ansible configuration file. You can find more information\"],\"u7f6WK\":[\"View all Workflow Approvals.\"],\"u84wS1\":[\"Job Cancel Error\"],\"uAQUqI\":[\"Status\"],\"uAhZbx\":[\"Inventory sources with failures\"],\"uCjD1h\":[\"Your session has expired. Please log in to continue where you left off.\"],\"uImfEm\":[\"Workflow pending message\"],\"uJz8NJ\":[\"Search is disabled while the job is running\"],\"uPRp5U\":[\"Cancel lookup\"],\"uTDtiS\":[\"Fifth\"],\"uUehLT\":[\"Waiting\"],\"uVu1Yt\":[\"Set type select\"],\"uYtvvN\":[\"Select a project before editing the execution environment.\"],\"ucSTeu\":[\"Created by (username)\"],\"ucgZ0o\":[\"Organization\"],\"ugZpot\":[\"Test External Credential\"],\"ulRNXw\":[\"Dragging cancelled. List is unchanged.\"],\"upC07l\":[\"Survey Disabled\"],\"uuPCEU\":[\"If you want the Inventory Source to update on launch , click on Update on Launch, and also go to \"],\"uyJsf6\":[\"About\"],\"uzTiFQ\":[\"Back to Schedules\"],\"v-CZEv\":[\"Prompt on launch\"],\"v-EbDj\":[\"Troubleshooting settings\"],\"v-M-LP\":[\"Launch Template\"],\"v0urVb\":[\"If you do not have a subscription, you can visit\\n Red Hat to obtain a trial subscription.\"],\"v1kQyJ\":[\"Webhooks\"],\"v2dMHj\":[\"Relaunch using host parameters\"],\"v2gmVS\":[\"This action will soft delete the following:\"],\"v45yUL\":[\"disassociate\"],\"v7vAuj\":[\"Total Jobs\"],\"vCS_TJ\":[\"Failed to delete inventory source \",[\"name\"],\".\"],\"vEr6TL\":[\"These arguments are used with the specified module. You can find information about \",[\"0\"],\" by clicking \"],\"vF82C6\":[\"Execute when the parent node results in a successful state.\"],\"vFKI2e\":[\"Schedule Rules\"],\"vFVhzc\":[\"SOCIAL\"],\"vGVmd5\":[\"This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import.\"],\"vGjmyl\":[\"Deleted\"],\"vHAaZi\":[\"Skip every\"],\"vIb3RK\":[\"Create New Schedule\"],\"vKRQJB\":[\"Field for passing a custom Kubernetes or OpenShift Pod specification.\"],\"vLyv1R\":[\"Hide\"],\"vPrMqH\":[\"Revision #\"],\"vQHUI6\":[\"If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source.\"],\"vTL8gi\":[\"End time\"],\"vUOn9d\":[\"Return\"],\"vYFWsi\":[\"Select Teams\"],\"vYuE8q\":[\"Elapsed time that the job ran\"],\"vZbIkJ\":[\"GitLab\"],\"vcH-SH\":[\"Bitbucket Data Center\"],\"ve_jRy\":[\"On Condition\"],\"vgwVkd\":[\"UTC\"],\"vlHGDw\":[\"Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON. Refer to the documentation for example syntax.\"],\"voRH7M\":[\"Examples:\"],\"vq1XXv\":[\"Create a new Smart Inventory with the applied filter\"],\"vq2WxD\":[\"Tue\"],\"vq9gg6\":[\"You are unable to act on the following workflow approvals: \",[\"itemsUnableToApprove\"]],\"vqAmQC\":[\"Module\"],\"vvY8pz\":[\"Prompt for skip tags on launch.\"],\"vye-ip\":[\"Prompt for timeout on launch.\"],\"vzsN_5\":[[\"interval\"],\" day\"],\"w07pgp\":[\"Prompt for verbosity on launch.\"],\"w0kTk8\":[\"Relaunch from failed node\"],\"w14eW4\":[\"View all tokens.\"],\"w1RiT6\":[[\"0\",\"plural\",{\"one\":[\"This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?\"],\"other\":[\"Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete them anyway?\"]}]],\"w2VTLB\":[\"Less than comparison.\"],\"w3EE8S\":[\"Hosts automated\"],\"w4j7js\":[\"View Team Details\"],\"w6zx64\":[\"Use browser default\"],\"wCnaTT\":[\"Replace field with new value\"],\"wF-BAU\":[\"Add inventory\"],\"wFnb77\":[\"Inventory ID\"],\"wKEfMu\":[\"Events processing complete.\"],\"wO29qX\":[\"Organization not found.\"],\"wW08QA\":[\"Not equals\"],\"wX6sAX\":[\"Past two years\"],\"wXAVe-\":[\"Module Arguments\"],\"wXB7k5\":[\"Specify a notification color. Acceptable colors are hex\\n color code (example: #3af or #789abc).\"],\"waFx9W\":[\"Managed\"],\"wdxz7K\":[\"Source\"],\"wgNoIs\":[\"Select all\"],\"wkgHlv\":[\"Add a new node\"],\"wlQNTg\":[\"Members\"],\"wnizTi\":[\"Select a subscription\"],\"wpT1VN\":[\"Condition\"],\"wpt6vB\":[\"LDAP2\"],\"wqXiR2\":[\"Pass extra command line changes. There are two ansible command line parameters: \"],\"wsggVq\":[\"When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process.\"],\"x-a4Mr\":[\"Webhook Credential\"],\"x02hbg\":[\"Provisioning callbacks: Enables creation of a provisioning callback URL. Using the URL a host can contact Ansible AWX and request a configuration update using this job template.\"],\"x4Xp3c\":[\"updated\"],\"x5DnMs\":[\"Last modified\"],\"x6_dAC\":[\"Federated Inventory\"],\"x6oT_o\":[\"Hosts available\"],\"x7PDL5\":[\"Logging\"],\"x8uKc7\":[\"Instance status\"],\"x9WS62\":[\"Cancel \",[\"0\"]],\"xAYSEs\":[\"Start time\"],\"xAqth4\":[\"View Google OAuth 2.0 settings\"],\"xC9EVu\":[\"Canceled node\"],\"xCJdfg\":[\"Clear\"],\"xDr_ct\":[\"End\"],\"xESTou\":[\"Failed to delete job.\"],\"xF5tnT\":[\"Vault password\"],\"xGQZwx\":[\"Add container group\"],\"xGVfLh\":[\"Continue\"],\"xHZS6u\":[\"Successful jobs\"],\"xHokxV\":[[\"0\",\"plural\",{\"one\":[\"The selected job cannot be deleted due to insufficient permission or a running job status\"],\"other\":[\"The selected jobs cannot be deleted due to insufficient permissions or a running job status\"]}]],\"xHt036\":[\"Personal Access Token\"],\"xKQRBr\":[\"Maximum length\"],\"xM01Pk\":[\"Default answer\"],\"xONDaO\":[\"Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?\"],\"xOl1yT\":[\"Exact search on name field.\"],\"xPO5w7\":[\"Sign in with GitHub\"],\"xPpkbX\":[\"Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway\"],\"xPxMOJ\":[\"Invalid time format\"],\"xQioPk\":[\"Preconditions for running this node when there are multiple parents. Refer to the\"],\"xSytdh\":[\"FINISHED:\"],\"xUhTCP\":[\"Choose a source\"],\"xVhQZV\":[\"Fri\"],\"xY9DEq\":[\"The pattern used to target hosts in the inventory. Leaving the field blank, all, and * will all target all hosts in the inventory. You can find more information about Ansible's host patterns\"],\"xY9s5E\":[\"Timeout\"],\"x_Ej3K\":[\"Choose an answer type or format you want as the prompt for the user.\\n Refer to the Ascender Documentation for additional information about each option.\"],\"x_ugm_\":[\"Total groups\"],\"xa7N9Z\":[\"Edit login redirect override URL\"],\"xcaG5l\":[\"Edit workflow\"],\"xd2LI3\":[\"Expires on \",[\"0\"]],\"xdA_-p\":[\"Tools\"],\"xe5RvT\":[\"YAML tab\"],\"xefC7k\":[\"IRC server port\"],\"xeiujy\":[\"Text\"],\"xg771-\":[\"LDAP1\"],\"xhj1Rt\":[\"The page you requested could not be found.\"],\"xi4nE2\":[\"Error message\"],\"xnSIXG\":[\"Failed to delete one or more hosts.\"],\"xoCdYY\":[\"Check whether the given field's value is present in the list provided; expects a comma-separated list of items.\"],\"xoXoBo\":[\"Delete error\"],\"xrG8k4\":[\"Google Compute Engine\"],\"xtRU96\":[\"GitHub Enterprise Organization\"],\"xuYTJb\":[\"Failed to delete job template.\"],\"xw06rt\":[\"Setting matches factory default.\"],\"xxTtJH\":[\"Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied.\"],\"y11WBZ\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"Cancel selected job\"],\"other\":[\"Cancel selected jobs\"]}]],\"y8ibKI\":[\"Remove Instances\"],\"yCCaoF\":[\"Failed to update instance.\"],\"yDeNnS\":[\"Create new constructed inventory\"],\"yDifzB\":[\"Confirm selection\"],\"yGS9cI\":[\"Healthy\"],\"yGUKlf\":[\"Management jobs\"],\"yGfW7Y\":[\"Change PROJECTS_ROOT when deploying \",[\"brandName\"],\" to change this location.\"],\"yMIahh\":[\"Welcome to Red Hat Ansible Automation Platform!\\n Please complete the steps below to activate your subscription.\"],\"yMYuDg\":[\"Automation controller version\"],\"yMfU4O\":[\"Sender e-mail\"],\"yNcGa2\":[\"Access Token Expiration\"],\"yOXgbH\":[\"Note: When using SSH protocol for GitHub or Bitbucket, enter an SSH key only, do not enter a username (other than git). Additionally, GitHub and Bitbucket do not support password authentication when using SSH. GIT read only protocol (git://) does not use username or password information.\"],\"yQE2r9\":[\"Loading\"],\"yRiHPB\":[\"Please run a job to populate this list.\"],\"yRkqG9\":[\"Limit\"],\"yRsSBw\":[\"Approvals\"],\"yUlffE\":[\"Relaunch\"],\"yVgnJA\":[\"The maximum number of hosts allowed to be managed by this organization.\\n Value defaults to 0 which means no limit. Refer to the Ansible\\n documentation for more details.\"],\"yX3qAQ\":[\"Workflow Job Template Nodes\"],\"yaG1CX\":[\"LDAP\"],\"yaX9sM\":[\"Workflow Template\"],\"yb_fjw\":[\"Approval\"],\"ydoZpB\":[\"Team not found.\"],\"ydw9CW\":[\"Failed hosts\"],\"yfG3F2\":[\"Direct Keys\"],\"yjwMJ8\":[\"How many times was the host automated\"],\"yjyGja\":[\"Expand input\"],\"ylXj1N\":[\"Selected\"],\"yq6OqI\":[\"This is the only time the token value and associated refresh token value will be shown.\"],\"yqiwAW\":[\"Cancel Workflow\"],\"yrUyDQ\":[\"Sets the current life cycle stage of this instance. Default is \\\"installed.\\\"\"],\"yrwl2P\":[\"Compliant\"],\"yuXsFE\":[\"Failed to delete one or more workflow approval.\"],\"yuvDX_\":[[\"intervalValue\",\"plural\",{\"one\":[\"month\"],\"other\":[\"months\"]}]],\"ywSBEn\":[\"Associate role error\"],\"yxDqcD\":[\"Authorization Code Expiration\"],\"yy1cWw\":[\"Customize messages…\"],\"yz7wBu\":[\"Close\"],\"yzQhLU\":[\"Policy instance minimum\"],\"yzdDia\":[\"Delete Survey\"],\"z-BNGk\":[\"Delete User Token\"],\"z0DcIS\":[\"encrypted\"],\"z3XA1I\":[\"Host Retry\"],\"z409y8\":[\"Webhook Service\"],\"z7NLxJ\":[\"If you only want to remove access for this particular user, please remove them from the team.\"],\"z8mwbl\":[\"Minimum percentage of all instances that will be automatically assigned to this group when new instances come online.\"],\"zBO1TV\":[[\"numOccurrences\",\"plural\",{\"one\":[\"After \",\"#\",\" occurrence\"],\"other\":[\"After \",\"#\",\" occurrences\"]}]],\"zHcXAG\":[\"Leave this field blank to make the execution environment globally available.\"],\"zICM7E\":[\"Discard local changes before syncing\"],\"zJY4Uj\":[\"Playbook\"],\"zKJMiH\":[\"Playbook Directory\"],\"zK_63z\":[\"Invalid username or password. Please try again.\"],\"zLsDix\":[\"ldap user\"],\"zMKkOk\":[\"Back to Organizations\"],\"zN0nhk\":[\"Provide your Red Hat or Red Hat Satellite credentials to enable Automation Analytics.\"],\"zQRgi-\":[\"Toggle notification start\"],\"zTediT\":[\"This field must be a number and have a value between \",[\"min\"],\" and \",[\"max\"]],\"zUIPys\":[\"Add hosts to group based on Jinja2 conditionals.\"],\"z_PZxu\":[\"Failed to delete workflow approval.\"],\"zbLCH1\":[\"Inventory Type\"],\"zcQj5X\":[\"First, select a key\"],\"zdl7YZ\":[\"Select source path\"],\"zeEQd_\":[\"June\"],\"zf7FzC\":[\"Credential to authenticate with Kubernetes or OpenShift. Must be of type \\\"Kubernetes/OpenShift API Bearer Token\\\". If left blank, the underlying Pod's service account will be used.\"],\"zfZydd\":[\"Survey preview modal\"],\"zfsBaJ\":[\"Learn more about Automation Analytics\"],\"zgInnV\":[\"Workflow node view modal\"],\"zga9sT\":[\"OK\"],\"zhPLvU\":[\"Failed to associate.\"],\"zhrjek\":[\"Groups\"],\"zi_YNm\":[\"Failed to cancel \",[\"0\"]],\"zmu4-P\":[\"Account SID\"],\"znG7ed\":[\"Select a playbook\"],\"znTz5r\":[\"Schedule not found.\"],\"znuW_M\":[\"If yes make invalid entries a fatal error, otherwise skip and\\n continue.\"],\"zq0gmb\":[\"Select period\"],\"ztOzCj\":[\"Update on launch\"],\"ztw2L3\":[\"There must be a value in at least one input\"],\"zvfXp0\":[\"Toggle notification approvals\"],\"zx4BuL\":[\"Week\"],\"zzDlyQ\":[\"Success\"],\"{count, plural, one {# fork} other {# forks}}\":[[\"count\",\"plural\",{\"one\":[\"#\",\" fork\"],\"other\":[\"#\",\" forks\"]}]]}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"--iDlT\":[\"Delete Project\"],\"-0AkQd\":[[\"forks\",\"plural\",{\"one\":[\"#\",\" fork\"],\"other\":[\"#\",\" forks\"]}]],\"-0B-ue\":[\"Projects\"],\"-5kO8P\":[\"Saturday\"],\"-6EcFR\":[\"Press Enter to edit. Press ESC to stop editing.\"],\"-7M7WW\":[\"Click to toggle default value\"],\"-7VWRl\":[\"RAM \",[\"0\"]],\"-8WGoO\":[\"The plugin parameter is required.\"],\"-9d7Ol\":[\"Pagerduty subdomain\"],\"-9y9jy\":[\"Running health check\"],\"-9yY_Q\":[\"Failed to copy inventory.\"],\"-AZQnp\":[\"SAML\"],\"-FWz2-\":[\"Scroll previous\"],\"-FjWgX\":[\"Thu\"],\"-GMFSa\":[\"Failed to copy project.\"],\"-GOG9X\":[\"Hide description\"],\"-NI2UI\":[\"Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory.\"],\"-NezOR\":[\"This credential type is currently being used by some credentials and cannot be deleted\"],\"-OpL2l\":[\"Execute regardless of the parent node's final state.\"],\"-PyL32\":[\"Are you sure you want to remove this node?\"],\"-RAMET\":[\"Edit this link\"],\"-SAqJ3\":[\"Failed to copy credential.\"],\"-Uepfb\":[\"Control\"],\"-b3ghh\":[\"Privilege Escalation\"],\"-cWxFz\":[\"Enable content signing to verify that the content has remained secure when a project is synced. If the content has been tampered with, the job will not run.\"],\"-hh3vo\":[\"Unable to load last job update\"],\"-li8PK\":[\"Subscription Usage\"],\"-nb9qF\":[\"(Prompt on launch)\"],\"-ohrPc\":[\"Lookup typeahead\"],\"-rfqXD\":[\"Survey Enabled\"],\"-uOi7U\":[\"Click to download bundle\"],\"-vAlj5\":[\"Failed to launch job.\"],\"-z0Ubz\":[\"Select Roles to Apply\"],\"-zW4qj\":[\"Branch to checkout. In addition to branches, you can input tags, commit hashes, and arbitrary refs. Some commit hashes and refs may not be available unless you also provide a custom refspec.\"],\"-zy2Nq\":[\"Type\"],\"0-31GV\":[\"Removing\"],\"0-yjzX\":[\"The project must be synced before a revision is available.\"],\"00_HDq\":[\"Policy Type\"],\"00cteM\":[\"This field must not exceed \",[\"0\"],\" characters\"],\"01Zgfk\":[\"Timed out\"],\"02FGuS\":[\"Create new group\"],\"02ePaq\":[\"Select \",[\"0\"]],\"02o5A-\":[\"Create New Project\"],\"05TJDT\":[\"Click to view job details\"],\"06Veq8\":[\"Sync Project\"],\"08IuMU\":[\"Overwrite variables\"],\"08dX0o\":[\"Grafana\"],\"0Ca6Bi\":[[\"dateStr\"],\" by <0>\",[\"username\"],\"\"],\"0DRyjU\":[\"Running Handlers\"],\"0JjrTf\":[\"There was an error parsing the file. Please check the file formatting and try again.\"],\"0K8MzY\":[\"This field must not exceed \",[\"max\"],\" characters\"],\"0LUj25\":[\"Delete instance group\"],\"0MFMD5\":[\"Failed to run a health check on one or more instances.\"],\"0Ohn6b\":[\"Launched By\"],\"0PUWHV\":[\"Repeat Frequency\"],\"0Pz6gk\":[\"Variables used to configure the constructed inventory plugin. For a detailed description of how to configure this plugin, see\"],\"0QsHpG\":[\"Input schema which defines a set of ordered fields for that type.\"],\"0Tddvz\":[\"The base URL of the Grafana server - the\\n /api/annotations endpoint will be added automatically to the base\\n Grafana URL.\"],\"0WL4_U\":[\"Delete all nodes\"],\"0WP27-\":[\"Waiting for job output…\"],\"0YAsXQ\":[\"Container group\"],\"0ZdD1M\":[[\"0\",\"plural\",{\"one\":[\"You cannot cancel the following job because it is not running:\"],\"other\":[\"You cannot cancel the following jobs because they are not running:\"]}]],\"0ZqUtV\":[\"For more information, refer to the\"],\"0_ru-E\":[\"Copy Inventory\"],\"0cqIWs\":[\"Basic auth password\"],\"0d48JM\":[\"Multiple Choice (multiple select)\"],\"0eOoxo\":[\"Please select an end date/time that comes after the start date/time.\"],\"0f7U0k\":[\"Wed\"],\"0gPQCa\":[\"Always\"],\"0lvFRT\":[\"You cannot change the credential type of a credential, as it may break the functionality of the resources using it.\"],\"0pC_y6\":[\"Event\"],\"0qOaMt\":[\"Something went wrong with the request to test this credential and metadata.\"],\"0rVzXl\":[\"Google OAuth 2 settings\"],\"0sNe72\":[\"Add Roles\"],\"0tNXE8\":[\"PUT\"],\"0tfvhT\":[\"Instance group used capacity\"],\"0wlLcO\":[\"Set how many days of data should be retained.\"],\"0zpgxV\":[\"Options\"],\"0zs8j5\":[\"Maximum number of times this node's job is automatically retried after failing before its failure paths are followed. Canceled jobs are never retried.\"],\"1-4GhF\":[\"Cancel Sync\"],\"10B0do\":[\"Failed to send test notification.\"],\"1280Tg\":[\"Host Name\"],\"12j25_\":[\"GPG Public Key\"],\"12kemj\":[\"Source Control URL\"],\"14KOyT\":[\"Source vars\"],\"15GcuU\":[\"View Miscellaneous Authentication settings\"],\"17TKua\":[\"Instance group\"],\"19zgn6\":[\"Instance Type\"],\"1A3EXy\":[\"Expand\"],\"1C5cFl\":[\"Next Run\"],\"1Ey8My\":[\"IP address\"],\"1F0IaT\":[\"View Schedules\"],\"1HMy92\":[\"JSON:\"],\"1I6UoR\":[\"Views\"],\"1L3KBl\":[\"Create new credential Type\"],\"1LRwvx\":[\"If you want the Inventory Source to update on launch, click on Update on Launch, and also go to \"],\"1Ltnvs\":[\"Add Node\"],\"1PQRWr\":[\"Start Time\"],\"1QRNEs\":[\"Repeat frequency\"],\"1RYzKu\":[\"Relaunch from canceled node\"],\"1UJu6o\":[\"Please select a day number between 1 and 31.\"],\"1UjRxI\":[\"Cache timeout\"],\"1UzENP\":[\"No\"],\"1V4Yvg\":[\"Miscellaneous System\"],\"1WlWk7\":[\"View Inventory Host Details\"],\"1WsB5U\":[\"We were unable to locate subscriptions associated with this account.\"],\"1ZaQUH\":[\"Last name\"],\"1_gTC7\":[\"You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID.\"],\"1abtmx\":[\"Promote Child Groups and Hosts\"],\"1ahgeV\":[\"Google OAuth2\"],\"1cT4RU\":[\"SCM update\"],\"1fO-kL\":[\"Failed to toggle instance.\"],\"1hCxP5\":[\"Failed to delete one or more instance groups.\"],\"1kwHxg\":[\"Host Metrics\"],\"1n50PN\":[\"JSON tab\"],\"1qd4yi\":[\"Variables must be in JSON or YAML syntax. Use the radio button to toggle between the two.\"],\"1rDBnp\":[\"File Difference\"],\"1w2SCz\":[\"Choose a Source Control Type\"],\"1xdJD7\":[\"Fit to screen\"],\"1yHVE-\":[\"Adding\"],\"2-iKER\":[\"View activity stream\"],\"2B_v7Y\":[\"Policy instance percentage\"],\"2CTKOa\":[\"Back to Projects\"],\"2FB7vv\":[\"Select an organization before editing the default execution environment.\"],\"2FeJcd\":[\"Item Skipped\"],\"2H9REH\":[\"Fuzzy search on name field.\"],\"2JV4mx\":[\"The Instance Groups to which this instance belongs.\"],\"2KlsJC\":[\"You may apply a number of possible variables in the\\n message. For more information, refer to the\"],\"2MSEkM\":[\"Failed to delete inventory.\"],\"2a07Yj\":[\"Copy Notification Template\"],\"2ekvhy\":[\"Exception Frequency\"],\"2gDkH_\":[\"Please enter a number of occurrences.\"],\"2iyx-2\":[\"Ansible Controller Documentation.\"],\"2n41Wr\":[\"Add workflow template\"],\"2nsB1O\":[\"Back to Tokens\"],\"2ocqzE\":[\"Webhooks: Enable webhook for this template.\"],\"2ooR7j\":[\"LDAP 5\"],\"2p6eVk\":[\"Lookup modal\"],\"2pNIxF\":[\"Workflow Nodes\"],\"2pgi-L\":[\"Indicates if a host is available and should be included in running\\n jobs. For hosts that are part of an external inventory, this may be\\n reset by the inventory sync process.\"],\"2qfwJn\":[\"Overwrite\"],\"2r06bV\":[\"Hipchat\"],\"2rvMKg\":[\"Refresh Token\"],\"2w-INk\":[\"Host details\"],\"2zs1kI\":[\"This value does not match the password you entered previously. Please confirm that password.\"],\"3-SkJA\":[\"Disassociate group from host?\"],\"3-sY1p\":[\"Destination SMS number(s)\"],\"328Yxp\":[\"Source control branch\"],\"38Or-7\":[\"Tabs\"],\"38VIWI\":[\"View Template Details\"],\"39y5bn\":[\"Friday\"],\"3A9ATS\":[\"Execution environment not found.\"],\"3AOZPn\":[\"View and edit debug options\"],\"3FUtN9\":[\"Inventory Source Sync\"],\"3IVQDN\":[\"This schedule uses complex rules that are not supported in the\\n UI. Please use the API to manage this schedule.\"],\"3JjdaA\":[\"Run\"],\"3JnvxN\":[\"Choose the resources that will be receiving new roles. You'll be able to select the roles to apply in the next step. Note that the resources chosen here will receive all roles chosen in the next step.\"],\"3JzsDb\":[\"May\"],\"3LoUor\":[\"Destination channels\"],\"3LqMX2\":[\"CIQ Ascender Automation Platform\"],\"3PAU4M\":[\"Year\"],\"3PZalO\":[\"Host not found.\"],\"3Rke7L\":[\"1 (Info)\"],\"3WGwSW\":[\"Delete the local repository in its entirety prior to performing an update. Depending on the size of the repository this may significantly increase the amount of time required to complete an update.\"],\"3YSVMq\":[\"Deletion error\"],\"3aIe4Y\":[\"Create New Organization\"],\"3b24mY\":[\"CPU \",[\"0\"]],\"3fG1e7\":[\"Elapsed Time\"],\"3fMc43\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" year\"],\"other\":[\"#\",\" years\"]}]],\"3hCQhK\":[\"Inventory Plugins\"],\"3hvUyZ\":[\"new choice\"],\"3mTiHp\":[\"Failed to copy template.\"],\"3pBNb0\":[\"Reload output\"],\"3sFvGC\":[\"Set the instance enabled or disabled. If disabled, jobs will not be assigned to this instance.\"],\"3sXZ-V\":[\"and click on Update Revision on Launch.\"],\"3uAM50\":[\"End User License Agreement\"],\"3wPA9L\":[\"Setting category\"],\"3y7qi5\":[\"Back to Credentials\"],\"3yy_k-\":[\"View all Teams.\"],\"4-RjdJ\":[[\"interval\"],\" year\"],\"40lLFI\":[\"Go to next page\"],\"41KRqu\":[\"Credential passwords\"],\"45BzQy\":[\"Health checks are asynchronous tasks. See the\"],\"45cx0B\":[\"Cancel subscription edit\"],\"45gLaI\":[\"Prompt for credentials on launch.\"],\"46SUtl\":[\"Edit group\"],\"479kuh\":[\"Copy full revision to clipboard.\"],\"47e97a\":[\"Max Retries\"],\"4BITzH\":[\"Error:\"],\"4LzLLz\":[\"View all settings\"],\"4Q4HZp\":[\"No \",[\"pluralizedItemName\"],\" Found\"],\"4QXpWJ\":[\"timed out\"],\"4QfhOe\":[\"Some search modifiers like not__ and __search are not supported in Smart Inventory host filters. Remove these to create a new Smart Inventory with this filter.\"],\"4S2cNE\":[\"View Logging settings\"],\"4Wt2Ty\":[\"Select Items from List\"],\"4_ESDh\":[\"This field must be a regular expression\"],\"4_xiC_\":[\"Artifacts\"],\"4alXD6\":[\"Maximum number of jobs to run concurrently on this group.\\n Zero means no limit will be enforced.\"],\"4bhLaA\":[\"Select a credential Type\"],\"4cWhxn\":[\"Controls whether or not this instance is managed by policy. If enabled, the instance will be available for automatic assignment to and unassignment from instance groups based on policy rules.\"],\"4dQFvz\":[\"Finished\"],\"4g1rw0\":[\"The amount of time (in seconds) before the email\\n notification stops trying to reach the host and times out. Ranges\\n from 1 to 120 seconds.\"],\"4hPyPF\":[\"Save & Exit\"],\"4j2eOR\":[\"Select the inventory that this host will belong to.\"],\"4jnim6\":[\"Select a webhook service.\"],\"4km-Vu\":[\"Out of compliance\"],\"4kw_um\":[[\"interval\"],\" minute\"],\"4lCMxZ\":[\"Failure Explanation:\"],\"4lgLew\":[\"February\"],\"4mQyZf\":[\"Webhook services can use this as a shared secret.\"],\"4nLbTY\":[\"View all management jobs\"],\"4o_cFL\":[\"Delete application\"],\"4s0pSB\":[\"Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns are allowed. Refer to Ansible documentation for more information and examples on patterns.\"],\"4uVADI\":[\"Client secret\"],\"4vFDZV\":[\"Create New Job Template\"],\"4vkbaA\":[\"The project from which this inventory update is sourced.\"],\"4yGeRr\":[\"Inventory Sync\"],\"4zue79\":[\"Copyright\"],\"5-qYGv\":[\"Edit Instance\"],\"54_SyV\":[[\"0\",\"plural\",{\"one\":[\"You do not have permission to cancel the following job:\"],\"other\":[\"You do not have permission to cancel the following jobs:\"]}]],\"56fd5u\":[\"Are you sure you want to remove all the nodes in this workflow?\"],\"5B77Dm\":[\"Last job\"],\"5F5F4w\":[\"Workflow Approval\"],\"5IhYoj\":[\"Node types\"],\"5K7kGO\":[\"documentation\"],\"5KMGbn\":[\"Are you sure you want to cancel this job?\"],\"5RMgCw\":[\"Hosts\"],\"5S4tZv\":[\"Frequency did not match an expected value\"],\"5Sa1Ss\":[\"E-mail\"],\"5TnQp6\":[\"Job Type\"],\"5WFDw4\":[\"Only Group By\"],\"5X2wog\":[\"There was a problem logging in. Please try again.\"],\"5_vHPm\":[\"View TACACS+ settings\"],\"5ajaW1\":[\"Execute when an artifact of the parent node matches the condition.\"],\"5dJK4M\":[\"Roles\"],\"5eHyY-\":[\"Test Notification\"],\"5eL2KN\":[\"Target URL\"],\"5lqXf5\":[\"Revert to factory default.\"],\"5n_soj\":[\"Prompt for job slice count on launch.\"],\"5p6-Mk\":[\"Filter by failed jobs\"],\"5pDe2G\":[\"Remove \",[\"0\"],\" Access\"],\"5pa4JT\":[\"Playbook Started\"],\"5qauVA\":[\"This workflow job template is currently being used by other resources. Are you sure you want to delete it?\"],\"5vA8H0\":[\"No Hosts Matched\"],\"5xzS8Q\":[\"Token that ensures this is a source file\\n for the ‘constructed’ plugin.\"],\"5y9wkB\":[\"Back to Notifications\"],\"6-OdGi\":[\"Protocol\"],\"6-ptnU\":[\"option to the\"],\"623gDt\":[\"Failed to delete user.\"],\"63C4Yo\":[\"Container Group\"],\"66Zq7T\":[\"Save link changes\"],\"66qTfS\":[\"Past week\"],\"679-JR\":[\"Fuzzy search on id, name or description fields.\"],\"68OTAn\":[\"This intance is currently being used by other resources. Are you sure you want to delete it?\"],\"68h6WG\":[\"Launch management job\"],\"69aXwM\":[\"Add existing group\"],\"69zuwn\":[\"Deprovisioning these instances could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"6ASSBg\":[\"LDAP 4\"],\"6BzDub\":[\"Soft delete\"],\"6GBt0m\":[\"Metadata\"],\"6HLTEb\":[\"Filter...\"],\"6J-cs1\":[\"Timeout seconds\"],\"6KhU4s\":[\"Are you sure you want to exit the Workflow Creator without saving your changes?\"],\"6LTyxl\":[\"Revision\"],\"6PmtyP\":[\"Toggle legend\"],\"6RDwJM\":[\"Tokens\"],\"6UYTy8\":[\"Minute\"],\"6V3Ea3\":[\"Copied\"],\"6WwHL3\":[\"Total Nodes\"],\"6XOI1I\":[\"Create new federated inventory\"],\"6XgEPi\":[\"Hour\"],\"6YtxFj\":[\"Name\"],\"6Z5ACo\":[\"Host Config Key\"],\"6bpC9t\":[\"Failed node\"],\"6cylr_\":[\"Stdout\"],\"6f961q\":[\"Only if Missing\"],\"6hEnxG\":[\"Enable privilege escalation\"],\"6j6_0F\":[\"Related resource\"],\"6kpN96\":[\"Failed to delete notification.\"],\"6lGV3K\":[\"Show less\"],\"6msU0q\":[\"Failed to delete one or more jobs.\"],\"6nsio_\":[\"Run Command\"],\"6oNH0E\":[\"plugin configuration guide.\"],\"6pMgh_\":[\"View LDAP Settings\"],\"6rSKy6\":[\"Select the source inventories for this federated inventory. When a job is launched, hosts will be routed to each source inventory's instance group automatically.\"],\"6uvnKV\":[\"API Service/Integration Key\"],\"6vrz8I\":[\"Failed to cancel one or more jobs.\"],\"6zGHNM\":[\"Hosts remaining\"],\"74MNbw\":[\"Ctrl IQ, Inc.\"],\"764xeZ\":[\"Failed to update survey.\"],\"7Bj3x9\":[\"Failed\"],\"7ElOdS\":[\"ID of the Dashboard\"],\"7IUE9q\":[\"Source variables\"],\"7JF9w9\":[\"Add Question\"],\"7L01XJ\":[\"Actions\"],\"7O5TcN\":[\"Event summary not available\"],\"7PzzBU\":[\"User\"],\"7UZtKb\":[\"The organization that owns this workflow job template.\"],\"7VETeB\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"],\"7VpPHA\":[\"Confirm\"],\"7Xk3M1\":[\"Select the project containing the playbook you want this job to execute.\"],\"7ZhNzL\":[\"Go to first page\"],\"7b8TOD\":[\"details.\"],\"7bDeKc\":[\"Subscription manifest\"],\"7fJwmW\":[\"Selected items list.\"],\"7hS02I\":[[\"automatedInstancesCount\"],\" since \",[\"automatedInstancesSinceDateTime\"]],\"7icMBj\":[\"No job data available\"],\"7kb4LU\":[\"Approved\"],\"7p5kLi\":[\"Dashboard\"],\"7q256R\":[\"Allow branch override\"],\"7qFdk8\":[\"Edit Credential\"],\"7sMeHQ\":[\"Key\"],\"7sNhEz\":[\"Username\"],\"7w3QvK\":[\"Success message body\"],\"7wgt9A\":[\"Playbook run\"],\"7zmvk2\":[\"Item Failed\"],\"81eOdm\":[\"relaunch workflow\"],\"82O8kJ\":[\"This project is currently on sync and cannot be clicked until sync process completed\"],\"82sWFi\":[\"Administration\"],\"84Usx_\":[\"Failed to delete project.\"],\"87a_t_\":[\"Label\"],\"88ip8h\":[\"Revert all\"],\"8BkLPF\":[\"Allowed URIs list, space separated\"],\"8F8HYs\":[\"Select your Ansible Automation Platform subscription to use.\"],\"8H3Igx\":[[\"interval\"],\" month\"],\"8Oef5v\":[\"Example URLs for GIT Source Control include:\"],\"8XM8GW\":[\"Failed to assign roles properly\"],\"8Z236a\":[\"brand logo\"],\"8ZsakT\":[\"Password\"],\"8_wZUD\":[\"Team Roles\"],\"8d57h8\":[\"View Miscellaneous System settings\"],\"8gCRbU\":[\"Other prompts\"],\"8gaTqG\":[\"Type Details\"],\"8kDNpI\":[\"Parent node outcome required before the condition is evaluated.\"],\"8l9yyw\":[\"Job Template\"],\"8lEjQX\":[\"Install Bundle\"],\"8lb4Do\":[\"Clear subscription\"],\"8oiwP_\":[\"Input configuration\"],\"8p_xVT\":[[\"0\",\"plural\",{\"one\":[[\"1\"]],\"other\":[[\"2\"]]}]],\"8u5g0S\":[\"Delete smart inventory\"],\"8vETh9\":[\"Show\"],\"8wxHsh\":[\"Webhook key for this workflow job template.\"],\"8yd882\":[\"Failed to disassociate one or more teams.\"],\"8zGO4o\":[\"Field matches the given regular expression.\"],\"8zoIOi\":[[\"0\",\"plural\",{\"one\":[\"This credential type is currently being used by some credentials and cannot be deleted.\"],\"other\":[\"Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?\"]}]],\"8zvzWO\":[\"Allow simultaneous runs of this workflow job template.\"],\"9-wVFp\":[\"View Federated Inventory Details\"],\"91UHfE\":[\"Inventory Update\"],\"91lyAf\":[\"Concurrent Jobs\"],\"933cZy\":[\"Miscellaneous System settings\"],\"954HqS\":[\"When was the host first automated\"],\"95p1BK\":[\"Create New User\"],\"98Qtlu\":[\"Each time a job runs using this project, update the revision of the project prior to starting the job.\"],\"991Df5\":[\"a new webhook key will be generated on save.\"],\"99qC6z\":[[\"interval\"],\" week\"],\"9Ah95g\":[[\"0\",\"plural\",{\"one\":[\"This inventory is currently being used by some templates. Are you sure you want to delete it?\"],\"other\":[\"Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?\"]}]],\"9BTNYL\":[\"Expected at least one of client_email, project_id or private_key to be present in the file.\"],\"9BpfLa\":[\"Select Labels\"],\"9DOXq6\":[\"View all Templates.\"],\"9DugxF\":[\"Subscription type\"],\"9HhFQ8\":[\"Returns results that have values other than this one as well as other filters.\"],\"9L1ngr\":[\"Total jobs\"],\"9N-4tQ\":[\"Credential Type\"],\"9NyAH9\":[\"Skipped\"],\"9PB0sF\":[\"IRC\"],\"9Rsklx\":[\"Remove All Nodes\"],\"9Tmez1\":[\"View Instance Details\"],\"9UuGMQ\":[\"Pending delete\"],\"9V-Un3\":[\"Enable Fact Storage\"],\"9VMv7k\":[\"Constructed Inventory\"],\"9Wm-J4\":[\"Toggle Password\"],\"9XA1Rs\":[\"The project is currently syncing and the revision will be available after the sync is complete.\"],\"9Y3BQE\":[\"Delete Organization\"],\"9YSB0Z\":[\"This schedule is missing an Inventory\"],\"9ZnrIx\":[\"View and edit your subscription information\"],\"9fRa7M\":[\"Select a row to remove\"],\"9hmrEp\":[\"Relaunch on\"],\"9iX1S0\":[\"This action will remove the following instance and you may need to rerun the install bundle for any instance that was previously connected to:\"],\"9jfn-S\":[\"Is not expanded\"],\"9l0RZY\":[\"Click an available node to create a new link. Click outside the graph to cancel.\"],\"9m7jms\":[\"Source inventories whose hosts will be routed to their respective instance groups when a job is launched against this federated inventory.\"],\"9mfJJf\":[\"Job templates\"],\"9nhhVW\":[\"pages\"],\"9nypdt\":[\"Restore initial value.\"],\"9odS2n\":[\"Failed Hosts\"],\"9og-0c\":[\"This execution environment is currently being used by other resources. Are you sure you want to delete it?\"],\"9rFgm2\":[\"Subscription capacity\"],\"9rvzNA\":[\"Association modal\"],\"9td1Wl\":[\"Check\"],\"9uI_rE\":[\"Undo\"],\"9u_dDE\":[\"Unreachable Host Count\"],\"9uxVdR\":[\"Source Control Credential\"],\"9wvWk3\":[\"This constructed inventory input \\n creates a group for both of the categories and uses \\n the limit (host pattern) to only return hosts that \\n are in the intersection of those two groups.\"],\"A1a8Ku\":[\"Management job launch error\"],\"A1taO8\":[\"Search\"],\"A3o0Xd\":[\"The Instance Groups for this Organization to run on.\"],\"A6paZd\":[\"Add federated inventory\"],\"A8lIi2\":[\"Sync for revision\"],\"A9-PUr\":[\"Health check request(s) submitted. Please wait and reload the page.\"],\"AA2ASV\":[\"Execution environment copied successfully\"],\"ADVQ46\":[\"Log In\"],\"ARAUFe\":[\"Delete Inventory\"],\"AV22aU\":[\"Something went wrong...\"],\"AWOSPo\":[\"Zoom in\"],\"Ab1y_G\":[\"Cancel Constructed Inventory Source Sync\"],\"AgTBbk\":[[\"intervalValue\",\"plural\",{\"one\":[\"week\"],\"other\":[\"weeks\"]}]],\"AgTuXC\":[\"You do not have permission to delete \",[\"pluralizedItemName\"],\": \",[\"itemsUnableToDelete\"]],\"Ai2U7L\":[\"Host\"],\"Aj3on1\":[\"Enable external logging\"],\"AoCBvp\":[\"Job Slice\"],\"Apl-Vf\":[\"Red Hat subscription manifest\"],\"Apv-R1\":[\"If you are ready to upgrade or renew, please <0>contact us.\"],\"AqdlyH\":[\"Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes\"],\"ArtxnQ\":[\"Source Control Refspec\"],\"AsLVdj\":[\"Use one IRC channel or username per line. The pound\\n symbol (#) for channels, and the at (@) symbol for users, are not\\n required.\"],\"AwUsnG\":[\"Instances\"],\"AxC8wb\":[\"Copy Output\"],\"AxPAXW\":[\"No results found\"],\"Axi4f8\":[\"Dragging item \",[\"id\"],\". Item with index \",[\"oldIndex\"],\" in now \",[\"newIndex\"],\".\"],\"Azw0EZ\":[\"Create new smart inventory\"],\"B0HFJ8\":[\"Failed to disassociate one or more hosts.\"],\"B0P3qo\":[\"JOB ID:\"],\"B0dbFG\":[\"Delete Schedule\"],\"B2Zb_F\":[\"JSON\"],\"B3ZzHO\":[\"Last automated\"],\"B4WcU9\":[\"Approved by \",[\"0\"],\" - \",[\"1\"]],\"B7FU4J\":[\"Host Started\"],\"B8bpYS\":[\"Upload a Red Hat Subscription Manifest containing your subscription. To generate your subscription manifest, go to <0>subscription allocations on the Red Hat Customer Portal.\"],\"BAmn8K\":[\"Select a Resource Type\"],\"BERhj_\":[\"Success message\"],\"BGNDgh\":[\"Node Alias\"],\"BH7upP\":[\"POST\"],\"BIJ2_m\":[\"The execution environment that will be used for jobs inside of this organization. This will be used as a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level.\"],\"BNDplB\":[\"Template copied successfully\"],\"BWTzAb\":[\"Manual\"],\"BaPk6N\":[\"Base path used for locating playbooks. Directories found inside this path will be listed in the playbook directory drop-down. Together the base path and selected playbook directory provide the full path used to locate playbooks.\"],\"BfYq0G\":[\"Source Control Type\"],\"Bg7M6U\":[\"No result found\"],\"Bl2Djq\":[\"View Tokens\"],\"Bl2eoO\":[\"ENCRYPTED\"],\"BskWMl\":[\"Unreachable\"],\"BsrdSv\":[\"Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Controller documentation for example syntax.\"],\"Bv8zdm\":[\"Input Inventories\"],\"BwJKBw\":[\"of\"],\"Bz7WRU\":[[\"0\",\"plural\",{\"one\":[\"Please enter a valid phone number.\"],\"other\":[\"Please enter valid phone numbers.\"]}]],\"BzEFor\":[\"or\"],\"BzbzJb\":[\"Facts\"],\"BzfzPK\":[\"Items\"],\"C-gr_n\":[\"Azure AD settings\"],\"C0sUgI\":[\"Create new inventory\"],\"C2KEkR\":[\"SSH password\"],\"C3Q1LZ\":[\"View OIDC settings\"],\"C4C-qQ\":[\"Schedule details\"],\"C6GAUT\":[\"Is expanded\"],\"C7dP40\":[\"Failed to deny \",[\"0\"],\".\"],\"C7s60U\":[\"Webhook details\"],\"CAL6E9\":[\"Teams\"],\"CDOlBM\":[\"Instance ID\"],\"CE-M2e\":[\"Info\"],\"CGOseh\":[\"Schedule Details\"],\"CGZgZY\":[\"Select a row to disassociate\"],\"CG_9l6\":[\"LDAP 1\"],\"CGwKKr\":[[\"0\",\"plural\",{\"one\":[\"Delete Group?\"],\"other\":[\"Delete Groups?\"]}]],\"CIEoqM\":[\"Instance Name\"],\"CKc7jz\":[\"Host details modal\"],\"CL7QiF\":[\"Type answer then click checkbox on right to select answer as\\ndefault.\"],\"CLTHnk\":[\"Survey Question Order\"],\"CMmwQ-\":[\"Unknown Start Date\"],\"CNZ5h9\":[\"Data retention period\"],\"CS8u6E\":[\"Enable Webhook\"],\"CSvk3a\":[\"The number associated with the \\\"Messaging\\n Service\\\" in Twilio with the format +18005550199.\"],\"CW11B-\":[\"Minimum\"],\"CXJHPJ\":[\"Modified by (username)\"],\"CZDqWd\":[\"The project revision is currently out of date. Please refresh to fetch the most recent revision.\"],\"CZg9aH\":[\"Select Hosts\"],\"C_Lu89\":[\"Enter inputs using either JSON or YAML syntax. Refer to the Ansible Controller documentation for example syntax.\"],\"C_NnqT\":[\"Create New Host\"],\"Cc8jO8\":[\"Select the credential you want to use when accessing the remote hosts to run the command. Choose the credential containing the username and SSH key or password that Ansible will need to log into the remote hosts.\"],\"CcKMRv\":[\"This job template is currently being used by other resources. Are you sure you want to delete it?\"],\"CczdmZ\":[\"View all Credentials.\"],\"CdGRti\":[\"View all Notification Templates.\"],\"Ce28nP\":[\"<0>Note: Instances may be re-associated with this instance group if they are managed by <1>policy rules.\"],\"Cev3QF\":[\"Timeout minutes\"],\"ChTa9Z\":[[\"intervalValue\",\"plural\",{\"one\":[\"hour\"],\"other\":[\"hours\"]}]],\"CoPs3y\":[\"This workflow does not have any nodes configured.\"],\"CoTqdo\":[\"\\n Note that you may still see the group in the list after\\n disassociating if the host is also a member of that group’s\\n children. This list shows all groups the host is associated\\n with directly and indirectly.\\n \"],\"Coyxic\":[\"Click this button to verify connection to the secret management system using the selected credential and specified inputs.\"],\"Cs0oSA\":[\"View Settings\"],\"Csvbqs\":[\"view the constructed inventory plugin docs here.\"],\"Cx8SDk\":[\"Refresh Token Expiration\"],\"D-NlUC\":[\"System\"],\"D1JWCq\":[[\"interval\"],\" minutes\"],\"D4euEu\":[\"Miscellaneous Authentication settings\"],\"D89zck\":[\"Sun\"],\"DBBU2q\":[\"At least one value must be selected for this field.\"],\"DBC3t5\":[\"Sunday\"],\"DBHTm_\":[\"August\"],\"DFNPK8\":[\"Run health check\"],\"DGZ08x\":[\"Sync all\"],\"DHf0mx\":[\"Create new Instance\"],\"DHrOgD\":[\"Project Update Status\"],\"DIKUI7\":[\"Minimum length\"],\"DIX823\":[\"This field must be a number and have a value less than \",[\"max\"]],\"DJIazz\":[\"Successfully Approved\"],\"DNLiC8\":[\"Revert settings\"],\"DNqHaO\":[\"This table gives a few useful parameters of the constructed\\n inventory plugin. For the full list of parameters \"],\"DPfwMq\":[\"Done\"],\"DV-Xbw\":[\"Preferred Language\"],\"DVIUId\":[\"Prompt Overrides\"],\"DZNGtI\":[\"Project checkout results\"],\"D_oBkC\":[\"GitHub Team\"],\"DdlJTq\":[\"Exact match (default lookup if not specified).\"],\"De2WsK\":[\"This action will disassociate all roles for this user from the selected teams.\"],\"DhSza7\":[\"Controller Node\"],\"DnkUe2\":[\"Choose a Webhook Service\"],\"DqnAO4\":[\"First automated\"],\"Du6bPw\":[\"Address\"],\"Dug0C-\":[\"After number of occurrences\"],\"DyYigF\":[\"TACACS+ settings\"],\"Dz7fsq\":[\"Zoom In\"],\"E6Z4zF\":[\"Invalid file format. Please upload a valid Red Hat Subscription Manifest.\"],\"E86aJB\":[\"Disassociate role!\"],\"E9wN_Q\":[\"Last Health Check\"],\"EH6-2h\":[\"Topology View\"],\"EHu0x2\":[\"Syncing\"],\"EIBcgD\":[\"Sourced from a project\"],\"EIkRy0\":[\"Destination Channels\"],\"EJQLCT\":[\"Failed to delete workflow job template.\"],\"ENDbv1\":[\"View all Hosts.\"],\"ENRWp9\":[\"Tags for the Annotation\"],\"ENyw54\":[\"Related Groups\"],\"EP-eCv\":[\"SAML settings\"],\"EQ-qsg\":[\"Workflow job templates\"],\"ES0WE_\":[\"On Timeout\"],\"ETUQuF\":[\"Failed to delete one or more inventories.\"],\"EWL-h4\":[\"host-description-\",[\"0\"]],\"E_QGRL\":[\"Disabled\"],\"E_tJey\":[\"Default Execution Environment\"],\"Eb5CN1\":[[\"0\",\"plural\",{\"one\":[\"This organization is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"EdQY6l\":[\"None\"],\"Eff_76\":[\"Local Time Zone\"],\"Eg4kGP\":[\"Default Answer(s)\"],\"EmSrGB\":[\"Before\"],\"EmfKjn\":[\"View Troubleshooting settings\"],\"Emna_v\":[\"Edit Source\"],\"EmzUsN\":[\"View node details\"],\"EnC3hS\":[\"Custom pod spec\"],\"EpH7Cd\":[\"Delete Credential\"],\"Eq6_y5\":[\"this Tower documentation page\"],\"Eqp9wv\":[\"View JSON examples at\"],\"EwxKbE\":[\"DELETED\"],\"EzwCw7\":[\"Edit Question\"],\"F-0xxR\":[\"Resources are missing from this template.\"],\"F-LGli\":[\"You do not have permission to disassociate the following: \",[\"itemsUnableToDisassociate\"]],\"F-_-es\":[\"Select Instances\"],\"F0xJYs\":[\"Failed to update capacity adjustment.\"],\"F2l57P\":[\"Minimum percentage of all instances that will be automatically\\n assigned to this group when new instances come online.\"],\"FCnKmF\":[\"Create user token\"],\"FD8Y9V\":[\"Click on a node icon to display the details.\"],\"FEr96N\":[\"Theme\"],\"FFv0Vh\":[\"Automation\"],\"FG2mko\":[\"Select items from list\"],\"FGnH0p\":[\"This will cancel all subsequent nodes in this workflow\"],\"FMpB-A\":[\"<0>Note: Manually associated instances may be automatically disassociated from an instance group if the instance is managed by <1>policy rules.\"],\"FO7Rwo\":[\"Remove peers?\"],\"FQto51\":[\"Expand all rows\"],\"FTuS3P\":[\"This field may not be blank\"],\"FV5MUV\":[\"If users need feedback about the correctness\\n of their constructed groups, it is highly recommended\\n to use strict: true in the plugin configuration.\"],\"FXmp8Q\":[\"Failed to associate role\"],\"FYJRCY\":[\"Failed to delete one or more projects.\"],\"F_Nk65\":[\"Download Output\"],\"F_c3Jb\":[\"Custom Kubernetes or OpenShift Pod specification.\"],\"Failed\":[\"Failed\"],\"Fanpmj\":[\"Variables Prompted\"],\"FblMFO\":[\"Select a metric\"],\"FclH3w\":[\"Save successful!\"],\"FfGhiE\":[\"Error saving the workflow!\"],\"FhTYgi\":[\"Failed to delete one or more job templates.\"],\"FhhvWu\":[\"This will cancel all subsequent nodes in this workflow.\"],\"FiyMaa\":[\"Choose a .json file\"],\"FjVFQ-\":[\"Choose a module\"],\"FjkaiT\":[\"Zoom out\"],\"FkQvI0\":[\"Edit Template\"],\"FlvpdU\":[\"If enabled, show the changes made\\n by Ansible tasks, where supported. This is equivalent to Ansible’s\\n --diff mode.\"],\"FnSb-y\":[\"Cancel Job\"],\"FnZzou\":[\"Instance State\"],\"FncCci\":[\"RADIUS\"],\"Fo2bwm\":[\"Actor\"],\"Fo6qAq\":[\"Example URLs for Subversion Source Control include:\"],\"Fp0Rk4\":[\"Optional labels that describe this inventory,\\n such as 'dev' or 'test'. Labels can be used to group and filter\\n inventories and completed jobs.\"],\"FqW8E0\":[\"Used Capacity\"],\"FsGJXJ\":[\"Clean\"],\"Fx2-x_\":[\"Add User Roles\"],\"G-jHgL\":[\"Set source path to\"],\"G2KpGE\":[\"Edit Project\"],\"G3myU-\":[\"Tuesday\"],\"G768_0\":[\"denied\"],\"G8jcl6\":[\"Notification Templates\"],\"G9MOps\":[\"Branch to use on inventory sync. Project default used if blank. Only allowed if project allow_override field is set to true.\"],\"GDvlUT\":[\"Role\"],\"GGWsTU\":[\"Canceled\"],\"GGuAXg\":[\"View SAML settings\"],\"GHDQ7i\":[\"Failed to delete one or more organizations.\"],\"GJKwN0\":[\"Schedules\"],\"GLZDtF\":[\"System Warning\"],\"GLwo_j\":[\"0 (Warning)\"],\"GMaU6_\":[\"Prompt for job type on launch.\"],\"GO6s6F\":[\"Jobs settings\"],\"GRwtth\":[\"Run a health check on the instance\"],\"GSYBQc\":[\"API service/integration key\"],\"GTOcxw\":[\"Edit User\"],\"GU9vaV\":[\"Unreachable Hosts\"],\"GXiLKo\":[\"Text Area\"],\"GZIG7_\":[\"Inventory copied successfully\"],\"G_Dwo_\":[\"Choose an answer type or format you want as the prompt for the user.\\n Refer to the Ansible Controller Documentation for more additional\\n information about each option.\"],\"GaJLE6\":[\"Initiated by\"],\"Gd-B71\":[\"Credential type not found.\"],\"Ge5ecx\":[\"Max Hosts\"],\"GeIrWJ\":[[\"brandName\"],\" logo\"],\"Gf3vm8\":[\"per page\"],\"GiXRTS\":[\"Failed to delete one or more user tokens.\"],\"Gix1h_\":[\"View all Jobs\"],\"GkbHM9\":[\"View all Projects.\"],\"Gn7TK5\":[\"Toggle tools\"],\"GpNoVG\":[\"Please add a Schedule to populate this list.\"],\"GpWp6E\":[\"Define system-level features and functions\"],\"GtycJ_\":[\"Tasks\"],\"H0z3JJ\":[\"These arguments are used with the specified module. You can find information about \",[\"moduleName\"],\" by clicking \"],\"H1M6a6\":[\"View all Instances.\"],\"H3kCln\":[\"Hostname\"],\"H6jbKn\":[\"User Interface settings\"],\"H7OUPr\":[\"Day\"],\"H7e4dl\":[\"Provide key/value pairs using either\\n YAML or JSON.\"],\"H86f9p\":[\"Collapse\"],\"H9MIed\":[\"Execution node\"],\"HAi1aX\":[\"Update webhook key\"],\"HAzhV7\":[\"Credentials\"],\"HDULRt\":[\"Unique Hosts\"],\"HGOtRu\":[\"Notification test failed.\"],\"HIfMSF\":[\"Multiple Choice Options\"],\"HLAK2g\":[\"This action will cancel the following jobs:\"],\"HODq3s\":[\"Failed to deny one or more workflow approval.\"],\"HQ7e8y\":[\"Case-insensitive version of exact.\"],\"HQ7oEt\":[\"Back to Teams\"],\"HUx6pW\":[\"Injector configuration\"],\"HajiZl\":[\"Month\"],\"HbaQks\":[\"Use one email address per line to create a recipient list for this type of notification.\"],\"HbnjOn\":[[\"interval\"],\" weeks\"],\"HcznyH\":[\"Failed to sync some or all inventory sources.\"],\"HdE1If\":[\"Channel\"],\"HdErwL\":[\"Select a row to approve\"],\"Hf0QDK\":[\"Project copied successfully\"],\"Hhnh8d\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" day\"],\"other\":[\"#\",\" days\"]}]],\"HiTf1W\":[\"Cancel revert\"],\"HjxnnB\":[\"select module\"],\"HlhZ5D\":[\"Use TLS\"],\"HoHveO\":[\"Returns results that satisfy this one as well as other filters. This is the default set type if nothing is selected.\"],\"HpK_8d\":[\"Reload\"],\"Ht1JWm\":[\"Notification Color\"],\"HwpTx4\":[\"Control the level of output ansible will produce as the playbook executes.\"],\"I0LRRn\":[\"Download Bundle\"],\"I7Epp-\":[\"Option Details\"],\"I9NouQ\":[\"No subscriptions found\"],\"ICi4pv\":[\"Last automation\"],\"ICt7Id\":[\"Node Type\"],\"IEKPuq\":[\"Scroll next\"],\"IGQ11b\":[\"Secret shared with the webhook service. The service uses it to sign its requests, so only your repository can trigger a project sync. Type your own secret to manage it as configuration, or leave the field blank to have one generated on save.\"],\"IJAVcb\":[\"Back to applications\"],\"IKg_un\":[\"Destination channels or users\"],\"IMJYui\":[\"Use one phone number per line to specify where to\\n route SMS messages. Phone numbers should be formatted +11231231234. For more information see Twilio documentation\"],\"IN6gbp\":[\"Click to rearrange the order of the survey questions\"],\"IPusY8\":[\"Remove any local modifications prior to performing an update.\"],\"ISuwrJ\":[\"Edit Execution Environment\"],\"IV0EjT\":[\"Test notification\"],\"IVvM2B\":[\"Enabled Options\"],\"IWoF_f\":[\"View Survey\"],\"IZfe0p\":[\"source control branch\"],\"Igz8MU\":[\"Past two weeks\"],\"IiR1sT\":[\"Node type\"],\"IjDwKK\":[\"login type\"],\"Ikhk0q\":[\"Webhook service for this workflow job template.\"],\"Iqm2E5\":[\"Please add \",[\"pluralizedItemName\"],\" to populate this list\"],\"IrC12v\":[\"Application\"],\"IrI9pg\":[\"End date\"],\"IsJ8i6\":[\"Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch.\"],\"IspLSK\":[\"Management job not found.\"],\"J0zi6q\":[\"Skip Tags\"],\"J2HgCR\":[\"Red Hat, Inc.\"],\"J2d1y8\":[\"Filter by successful jobs\"],\"J4y7Uk\":[\"Workflow Cancelled \"],\"J8VgfD\":[\"Check whether the given field or related object is null; expects a boolean value.\"],\"JEGlfK\":[\"Started\"],\"JFnJqF\":[\"Elapsed\"],\"JFphCp\":[\"3 (Debug)\"],\"JGvwnU\":[\"Last used\"],\"JIX50w\":[\"Prevent Instance Group Fallback: If enabled, the job template will prevent adding any inventory or organization instance groups to the list of preferred instances groups to run on.\"],\"JJwEMx\":[\"Hosts deleted\"],\"JKZTiL\":[\"These are the verbosity levels for standard out of the command run that are supported.\"],\"JL3si7\":[\"Updating\"],\"JLjfEs\":[\"Failed to delete one or more schedules.\"],\"JOmgRg\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" month\"],\"other\":[\"#\",\" months\"]}]],\"JRa4kV\":[\"Sync the project when a push happens in the source control repository, so the local copy is always up to date without polling or updating on every job launch.\"],\"JTHoCu\":[\"toggle changes\"],\"JUwjsw\":[\"Select an activity type\"],\"JXgd33\":[\"Back to Dashboard.\"],\"J_2nGO\":[\"The execution environment that will be used for jobs\\n inside of this organization. This will be used a fallback when\\n an execution environment has not been explicitly assigned at the\\n project, job template or workflow level.\"],\"J_DUZt\":[\"Instance Groups\"],\"Ja4VHl\":[[\"0\"],\" more\"],\"JgP090\":[\"Track submodules\"],\"JjcTk5\":[\"social login\"],\"JjfsZM\":[\"Delete Workflow Approval\"],\"JppQoT\":[\"Last recalculation date:\"],\"JsY1p5\":[\"Denied\"],\"Jvv6rS\":[\"Multiple Choice\"],\"JwqOfG\":[\"Evaluate on\"],\"Jy9qCv\":[\"cancel edit login redirect\"],\"K5AykR\":[\"Delete Team\"],\"K93j4j\":[\"Label Name\"],\"KC2nS5\":[\"Resource deleted\"],\"KDcLJ6\":[\"YAML:\"],\"KEY0qH\":[\"Test passed\"],\"KM6m8p\":[\"Team\"],\"KNOsJ0\":[\"Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs.\"],\"KQ9EQm\":[\"How to use constructed inventory plugin\"],\"KR9Aiy\":[\"This inventory is currently being used by some templates. Are you sure you want to delete it?\"],\"KRf0wm\":[\"Credential Types\"],\"KTvwHj\":[\"Credential Input Sources\"],\"KVbzjm\":[\"Visualizer\"],\"KXFYp9\":[\"Get subscription\"],\"KXnokb\":[\"Globally available execution environment can not be reassigned to a specific Organization\"],\"KZp4lW\":[\"Lookup select\"],\"K_MYeX\":[\"View User Details\"],\"KeRkFA\":[\"Clear subscription selection\"],\"KeqCdz\":[\"Peers from control nodes\"],\"Ki_j_-\":[\"Leave blank to generate a new webhook key on save\"],\"KjBkMe\":[\"This container group is currently being by other resources. Are you sure you want to delete it?\"],\"KjVvNP\":[\"ID of the Panel\"],\"KkMfgW\":[\"Job Templates\"],\"KkzJWF\":[\"First automation\"],\"KlQd8_\":[\"Scope for the token's access\"],\"KnN1Tu\":[\"Expires\"],\"KoCnPE\":[\"Cancel job\"],\"KopV8H\":[\"Show only root groups\"],\"KxIA0h\":[\"Toggle host\"],\"Kz9DSl\":[\"Add existing host\"],\"KzQFvE\":[\"Edit Organization\"],\"L1Ob4t\":[\"Details tab\"],\"L3ooU6\":[\"Credential\"],\"L7Nz3F\":[\"Missing resource\"],\"L8fEEm\":[\"Group\"],\"L973Qq\":[\"Request subscription\"],\"LCl8Ck\":[\"Date search input\"],\"LGl_pR\":[\"View Jobs settings\"],\"LGryaQ\":[\"Create New Credential\"],\"LQ29yc\":[\"Start inventory source sync\"],\"LQRys9\":[\"Submodules will track the latest commit on their master branch (or other branch specified in .gitmodules). If no, submodules will be kept at the revision specified by the main project. This is equivalent to specifying the --remote flag to git submodule update.\"],\"LQTgjH\":[\"Project not found.\"],\"LRePxk\":[\"Minimum number of instances that will be automatically assigned to this group when new instances come online.\"],\"LSUePQ\":[\"Launch | \",[\"0\"]],\"LULLsO\":[\"View all Organizations.\"],\"LV5a9V\":[\"Peers\"],\"LVecP9\":[\"User Roles\"],\"LYAQ1X\":[\"Enable Concurrent Jobs\"],\"LZr1lR\":[\"Instance group not found.\"],\"Lc0RHh\":[\"Toggle schedule\"],\"LgD0Cy\":[\"Application Name\"],\"LhMjLm\":[\"Time\"],\"Ll7Jei\":[\"LDAP3\"],\"LnYbGj\":[\"Edit Survey\"],\"Lnnjmk\":[\"<0><1/> A tech preview of the new \",[\"brandName\"],\" user interface can be found <2>here.\"],\"Lqygiq\":[\"Provisioning Callbacks\"],\"LtBtED\":[\"Toggle notification success\"],\"LuXP9q\":[\"Access\"],\"LwHwt1\":[[\"brandName\"],\" Subscription\"],\"Lwovp8\":[\"If enabled, simultaneous runs of this job template will be allowed.\"],\"M0okDw\":[\"Set preferences for data collection, logos, and logins\"],\"M73whl\":[\"Context\"],\"MA-mp9\":[\"Webhook Ref Filter\"],\"MA7cMf\":[\"Constructed inventory parameters table\"],\"MAI_nw\":[\"Please try another search using the filter above\"],\"MAV-SQ\":[\"Credential not found.\"],\"MApRef\":[\"Are you sure you want to edit login redirect override URL? Doing so could impact users' ability to log in to the system once local authentication is also disabled.\"],\"MD0-Al\":[\"Your session is about to expire\"],\"MDQLec\":[\"Control the level of output Ansible will produce for inventory source update jobs.\"],\"MGpavd\":[\"Key typeahead\"],\"MHM-bv\":[\"Invalid link target. Unable to link to children or ancestor nodes. Graph cycles are not supported.\"],\"MHbbol\":[\" Job Slicing\"],\"MKEPCY\":[\"Follow\"],\"MP1v-1\":[\"Legend\"],\"MP8dU9\":[\"The full image location, including the container registry, image name, and version tag.\"],\"MQPvAa\":[\"Prompt for labels on launch.\"],\"MQoyj6\":[\"Workflow Job Template\"],\"MTLPCv\":[\"Execute when the parent node results in a failure state.\"],\"MVw5um\":[\"2 (More Verbose)\"],\"MZU5bt\":[\"Failed to delete one or more groups.\"],\"M_gXds\":[\"Note: This instance may be re-associated with this instance group if it is managed by \"],\"MdhgLT\":[\"IRC server password\"],\"MfCEiB\":[\"Galaxy Credentials\"],\"MfQHgE\":[\"Days to keep\"],\"Mfk6hJ\":[\"Failed to delete one or more templates.\"],\"Mhn5m4\":[\"Registry credential\"],\"Mn45Gz\":[\"Back to instance groups\"],\"MnbH31\":[\"page\"],\"MofjBu\":[\"The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level.\"],\"MpLngK\":[\"The webhook endpoint of this project. Add it to the webhook configuration of the repository to have pushes trigger a project sync.\"],\"MpZRQy\":[\"Git\"],\"MuhG5I\":[[\"0\",\"plural\",{\"one\":[\"This approval cannot be deleted due to insufficient permissions or a pending job status\"],\"other\":[\"These approvals cannot be deleted due to insufficient permissions or a pending job status\"]}]],\"MwCc2O\":[\"Webhook credential for this workflow job template.\"],\"Mwf3Mw\":[\"Populate the hosts for this inventory by using a search\\n filter. Example: ansible_facts__ansible_distribution:\\\"RedHat\\\".\\n Refer to the documentation for further syntax and\\n examples. Refer to the Ansible Controller documentation for further syntax and\\n examples.\"],\"MzcRa_\":[\"User and Automation Analytics\"],\"Mzqo60\":[\"Value to compare the artifact against. Interpreted as JSON when possible (e.g. true, 3), otherwise as a plain string.\"],\"N1U4ZG\":[\"Subscription Compliance\"],\"N36GRB\":[\"This field must be a number and have a value greater than \",[\"min\"]],\"N40H-G\":[\"All\"],\"N5vmCy\":[\"constructed inventory\"],\"N6GBcC\":[\"Confirm Delete\"],\"N7wOty\":[\"Select the playbook to be executed by this job.\"],\"NAKA53\":[\"Host Failure\"],\"NBONaK\":[\"Gathering Facts\"],\"NCVKhy\":[\"Recent jobs\"],\"NDQvUO\":[\"Prompt for tags on launch.\"],\"NIuIk1\":[\"Unlimited\"],\"NLKsgx\":[[\"pluralizedItemName\"],\" List\"],\"NO1ZxL\":[\"Application name\"],\"NPfgIB\":[\"sec\"],\"NQHZnb\":[\"Integer\"],\"NRn4V6\":[[\"interval\"],\" months\"],\"NUNUrW\":[\"Tags for the annotation (optional)\"],\"NW-xDQ\":[\"This will revert all configuration values on this page to\\n their factory defaults. Are you sure you want to proceed?\"],\"NX18CF\":[\"On or after\"],\"NYxilo\":[\"Max concurrent jobs\"],\"Na9fIV\":[\"No items found.\"],\"NcVaYu\":[\"Finish Time\"],\"NeA1eI\":[\"Pan Right\"],\"Never\":[\"Never\"],\"NgD4On\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"This action will cancel the following job:\"],\"other\":[\"This action will cancel the following jobs:\"]}]],\"NjnDuY\":[\"Dragging started for item id: \",[\"newId\"],\".\"],\"NjqMGF\":[\"Resource type\"],\"NnH3pK\":[\"Test\"],\"No Jobs\":[\"No Jobs\"],\"NpJHAp\":[\"Job Templates with a missing inventory or project cannot be selected when creating or editing nodes. Select another template or fix the missing fields to proceed.\"],\"NqIlWb\":[\"Last Ran\"],\"NrGRF4\":[\"Subscription selection modal\"],\"NsXTPu\":[\"To create a smart inventory using ansible facts, go to the smart inventory screen.\"],\"NtD3hJ\":[\"Related Keys\"],\"Nu4DdT\":[\"Sync\"],\"Nu4oKW\":[\"Description\"],\"Nu7VHX\":[\"Choose roles to apply to the selected resources. Note that all selected roles will be applied to all selected resources.\"],\"O-OYOe\":[\"Edit Team\"],\"O06Rp6\":[\"User Interface\"],\"O1Aswy\":[\"Never expires\"],\"O28qFz\":[\"View job \",[\"0\"]],\"O2EuOK\":[\"Sign in with SAML \",[\"samlIDP\"]],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O4ilec\":[\"Case-insensitive version of regex.\"],\"O5pAaX\":[\"Select an instance and a metric to show chart\"],\"O78b13\":[\"The application that this token belongs to, or leave this field empty to create a Personal Access Token.\"],\"O8_96D\":[\"Listener Port\"],\"O9VQlh\":[\"Select frequency\"],\"OA8xiA\":[\"Pan Left\"],\"OA99Nq\":[\"When was the host last automated\"],\"OC4Tzv\":[\"here\"],\"OGoqLy\":[\"# sources with sync failures.\"],\"OHGMM6\":[\"Start date/time\"],\"OIv5hN\":[\"Redirecting to subscription detail\"],\"OJ9bHy\":[\"Failed to disassociate one or more groups.\"],\"OOq_rD\":[\"Playbook Run\"],\"OPTWH4\":[\"Enable HTTPS certificate verification\"],\"ORxrw7\":[\"Days remaining\"],\"OSH8xi\":[\"Hop\"],\"OcRJRt\":[\"Confirm cancel job\"],\"Oe_VOY\":[\"Failed to remove one or more instances.\"],\"OgB1k4\":[\"Arguments\"],\"OiCz65\":[\"Grafana URL\"],\"Oiqdmc\":[\"Sign in with GitHub Organizations\"],\"Oj2Ix6\":[\"The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout.\"],\"OjwX8k\":[\"Token information\"],\"OlpaBt\":[\"Concurrent jobs: If enabled, simultaneous runs of this job template will be allowed.\"],\"OmbooC\":[\"Task Started\"],\"OogRLI\":[\"Federated Inventory not found.\"],\"OqE3G-\":[\"Exact search on id field.\"],\"Osn70z\":[\"Debug\"],\"OvBnOM\":[\"Back to Settings\"],\"OyGPiW\":[\"Subscription settings\"],\"OzssJK\":[\"Run command\"],\"P3spiP\":[\"Back to Templates\"],\"P7d85D\":[\"Remove Team Access\"],\"P8fBlG\":[\"Authentication\"],\"PByO0X\":[\"Votes\"],\"PCEmEr\":[\"User tokens\"],\"PJ1B0S\":[[\"0\",\"plural\",{\"one\":[\"This project is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"PJf54Q\":[\"Back to Sources\"],\"PKTjJ3\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"weekday\"],\" of \",[\"month\"]],\"4\":[\"The fourth \",[\"weekday\"],\" of \",[\"month\"]],\"5\":[\"The fifth \",[\"weekday\"],\" of \",[\"month\"]],\"one\":[\"The first \",[\"weekday\"],\" of \",[\"month\"]],\"two\":[\"The second \",[\"weekday\"],\" of \",[\"month\"]]}]],\"PLzYyl\":[\"Frequency Exception Details\"],\"PMk2Wg\":[\"Deprovisioning fail\"],\"POKy-m\":[\"Copy Execution Environment\"],\"PPsHsC\":[\"Revert all to default\"],\"PQPOpT\":[\"Inventory file\"],\"PRuZiQ\":[\"Refresh for revision\"],\"PUnovD\":[\"Amazon EC2\"],\"PVCOQE\":[\"Peer removed. Please be sure to run the install bundle for \",[\"0\"],\" again in order to see changes take effect.\"],\"PWwwY2\":[\"Disassociate\"],\"PYPqaM\":[\"ID of the panel (optional)\"],\"PZBWpL\":[\"Switch to light mode\"],\"P_s0vy\":[\"Unable to look up the credential type for this webhook service, so the webhook credential field is unavailable.\"],\"PaTL2O\":[\"Recipient list\"],\"PhufXn\":[\"Job Slice Parent\"],\"Pi5vnX\":[\"Failed to sync constructed inventory source\"],\"PiK6Ld\":[\"Sat\"],\"PiRb8z\":[\"MOST RECENT SYNC\"],\"PjkoCm\":[\"Are you sure you want to remove the node below:\"],\"PkVlOm\":[\"Specify HTTP Headers in JSON format. Refer to\\n the Ansible Controller documentation for example syntax.\"],\"Po1btV\":[\"Global navigation\"],\"Po7y5X\":[\"Failed to copy execution environment\"],\"PvgcEq\":[\"Draggable list to reorder and remove selected items.\"],\"PwAMWD\":[\"Collapse all job events\"],\"PyV1wC\":[\"Prevent Instance Group Fallback\"],\"Q3P_4s\":[\"Task\"],\"Q4hWRC\":[\"Workflow Jobs (\",[\"total\"],\")\"],\"Q5ZW8j\":[\"Subscriptions table\"],\"QF_MpS\":[\"\\n Note that only hosts directly in this group can\\n be disassociated. Hosts in sub-groups must be disassociated\\n directly from the sub-group level that they belong.\\n \"],\"QFdBqu\":[\"Mattermost\"],\"QGbLBK\":[\"Job ID\"],\"QHF6CU\":[\"Plays\"],\"QIOH6p\":[\"Initiated by (username)\"],\"QIpNLR\":[\"No inventory sync failures.\"],\"QIq3_3\":[\"Note: The order in which these are selected sets the execution precedence. Select more than one to enable drag.\"],\"QJbMvX\":[\"Credentials that require passwords on launch are not permitted. Please remove or replace the following credentials with a credential of the same type in order to proceed: \",[\"0\"]],\"QJowYS\":[\"confirm delete\"],\"QKUQw1\":[\"Create new host\"],\"QKbQTN\":[\"Activity Stream type selector\"],\"QOF7Jg\":[\"Failed to approve \",[\"0\"],\".\"],\"QPRWww\":[\"Run type\"],\"QR908H\":[\"Setting name\"],\"QT1rDU\":[\"GitHub Enterprise\"],\"QTwM6Y\":[\"The project containing the playbook this job will execute.\"],\"QYKS3D\":[\"Recent Jobs\"],\"QamIPZ\":[\"Please click the Start button to begin.\"],\"Qay_5h\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"Qd2E32\":[\"Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'\"],\"Qf36YE\":[\"Verbosity\"],\"QgnNyZ\":[\"Sync error\"],\"Qhb8lT\":[\"Create New Application\"],\"QmvYrA\":[\"Optional description for the workflow job template.\"],\"QnJn75\":[\"Last Run\"],\"Qv59HG\":[\"Select Credential Type\"],\"Qv91_c\":[\"LDAP 2\"],\"QyjCeq\":[\"Capacity\"],\"R-uZ8Y\":[\"Sign in with SAML\"],\"R633QG\":[\"Back to Workflow Approvals\"],\"R6Gueb\":[\"Toggle notification changed\"],\"R7s3iG\":[\"Return to\"],\"R9Khdg\":[\"Auto\"],\"R9sZsA\":[\"Delete All Groups and Hosts\"],\"RBDHUE\":[\"Prompt for execution environment on launch.\"],\"RI8cIw\":[\"The maximum number of hosts allowed to be managed by\\n this organization. Value defaults to 0 which means no limit.\\n Refer to the Ansible documentation for more details.\"],\"RIcSTA\":[\"Expires on\"],\"RIeAlp\":[\"Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks.\"],\"RK1gDV\":[\"Sign in with Azure AD\"],\"RMdd1C\":[\"None (Run Once)\"],\"RO9G1f\":[\"This field must be greater than 0\"],\"RPnV2o\":[\"The search filter did not produce any results…\"],\"RThfvh\":[\"Disassociate related team(s)?\"],\"R_mzhp\":[\"Failed to user token.\"],\"RbIaa9\":[\"Token not found.\"],\"RdLvW9\":[\"relaunch jobs\"],\"Rguqao\":[\"Select a row to delete\"],\"RhOukN\":[[\"interval\"],\" hour\"],\"RiQMUh\":[\"Running\"],\"RjIKOw\":[\"Unable to change inventory on a host\"],\"RjkhdY\":[\"Field starts with value.\"],\"RkXlPZ\":[\"GitHub\"],\"RlsPz7\":[\"Are you sure you want to remove this link?\"],\"Rm1iI_\":[\"Prompt for variables on launch.\"],\"Roaswv\":[\"User Guide\"],\"RpKSl3\":[\"Credential copied successfully\"],\"RsZ4BA\":[\"Scroll last\"],\"RtKKbA\":[\"Last\"],\"Ru59oZ\":[\"Enable webhook for this template.\"],\"RuEWFx\":[\"On date\"],\"RuiOO0\":[\"Failed to delete one or more applications.\"],\"Rw1xwN\":[\"Content Loading\"],\"RxzN1M\":[\"Enabled\"],\"RyPas1\":[\"Cancel selected jobs\"],\"S0kLOH\":[\"ID\"],\"S2nsEw\":[\"Greater than comparison.\"],\"S5gO6Y\":[\"Pass extra command line variables to the workflow.\"],\"S6zj7M\":[\"For job templates, select run to execute the playbook. Select check to only check playbook syntax, test environment setup, and report problems without executing the playbook.\"],\"S7kN8O\":[\"Failed to delete one or more users.\"],\"S7tNdv\":[\"On Success\"],\"S8FW2i\":[\"The inventory file to be synced by this source. You can select from the dropdown or enter a file within the input.\"],\"SA-KXq\":[\"Pan Up\"],\"SAw-Ux\":[\"Are you sure you want to remove \",[\"0\"],\" access from \",[\"username\"],\"?\"],\"SBfnbf\":[\"View all execution environments\"],\"SC1Cur\":[\"Unknown Status\"],\"SDND4q\":[\"Not configured\"],\"SIJDi3\":[\"Capacity Adjustment\"],\"SJjggI\":[\"Update options\"],\"SJmHMo\":[\"Documentation.\"],\"SLm_0U\":[\"IRC Server Port\"],\"SODyJ3\":[\"Host Async OK\"],\"SRiPhD\":[\"Cancel node removal\"],\"SV5nA1\":[\"Some of the previous step(s) have errors\"],\"SVG6MY\":[\"Revert field to previously saved value\"],\"SYbJcn\":[\"Edit Notification Template\"],\"SZvybZ\":[\"LDAP Default\"],\"SZw9tS\":[\"View Details\"],\"SbRHme\":[\"Textarea\"],\"Se_E0z\":[\"Workflow Job\"],\"Sgr5NW\":[\"Select an instance to run a health check.\"],\"Sh2XTJ\":[\"Notification Type\"],\"SiexHs\":[\"Dashboard (all activity)\"],\"Sja7f-\":[\"How many times was the host deleted\"],\"Sjoj4f\":[\"Credential Name\"],\"SlfejT\":[\"Error\"],\"SoREmD\":[\"Applications & Tokens\"],\"SqA8uD\":[\"Job Runs\"],\"SqLEdN\":[\"Failed to delete smart inventory.\"],\"SqYo9m\":[\"Back to Instances\"],\"Ssdrw4\":[\"Deprecated\"],\"Successful\":[\"Successful\"],\"SvPvEX\":[\"Workflow approved message body\"],\"Svkela\":[\"Go to previous page\"],\"SwJLlZ\":[\"Workflow denied message body\"],\"SxGqey\":[\"Generic OIDC settings\"],\"Sxm8rQ\":[\"Users\"],\"SzFxHC\":[\"LDAP settings\"],\"SzQMpA\":[\"Forks\"],\"T2M20E\":[\"The\"],\"T2mGOG\":[\"docs.ansible.com\"],\"T2x15z\":[\"Failed to toggle notification.\"],\"T4a4A4\":[\"Webhook Key\"],\"T7yEGN\":[\"The Grant type the user must use to acquire tokens for this application\"],\"T91vKp\":[\"Play\"],\"T9hZ3D\":[\"GitHub Enterprise Team\"],\"TAnffV\":[\"Edit this node\"],\"TBH48u\":[\"Failed to delete team.\"],\"TC32CH\":[\"Days of data to be retained\"],\"TD1APv\":[\"Get subscriptions\"],\"TFr1UR\":[\"Select the Ansible collection providing the inventory plugin used to sync from vCenter. The community.vmware collection is deprecated in favor of the newer vmware.vmware collection. The selection is applied via the \\\"plugin\\\" key in the source variables; when the key is absent, the default collection is used.\"],\"TJVvMD\":[\"Related search type\"],\"TLomdD\":[[\"sessionCountdown\",\"plural\",{\"one\":[\"You will be logged out in \",\"#\",\" second due to inactivity\"],\"other\":[\"You will be logged out in \",\"#\",\" seconds due to inactivity\"]}]],\"TMJ39S\":[\"Disassociate role\"],\"TMLAx2\":[\"Required\"],\"TO3h59\":[\"Populate field from an external secret management system\"],\"TO4OtU\":[\"Insights Credential\"],\"TOjYb_\":[\"View constructed inventory host details\"],\"TP9_K5\":[\"Token\"],\"TRDppN\":[\"Webhook\"],\"TTMvf7\":[\"Group type\"],\"TU6IDa\":[\"User Type\"],\"TXKmNM\":[\"An inventory must be selected\"],\"TZEuIE\":[\"Back to credential types\"],\"T_87By\":[\"Parameter\"],\"Ta0ts5\":[\"Show changes\"],\"TcnG-2\":[\"Create new execution environment\"],\"TgSxH9\":[\"Provisioning Callback URL\"],\"TkiN8D\":[\"User details\"],\"Tmh24b\":[\"If enabled, the job template will prevent adding any inventory or organization instance groups to the list of preferred instances groups to run on. Note: If this setting is enabled and you provided an empty list, the global instance groups will be applied.\"],\"Tmuvry\":[\"Set type typeahead\"],\"ToOoEw\":[\"Copy Credential\"],\"Tof7pX\":[\"Jobs\"],\"Tq71UT\":[\"weekday\"],\"Tx3NMN\":[\"Private key passphrase\"],\"TxKKED\":[\"View Constructed Inventory Details\"],\"TyaPAx\":[\"System Administrator\"],\"Tz0i8g\":[\"Settings\"],\"U-nEJl\":[\"View GitHub Settings\"],\"U011Uh\":[\"Last seen\"],\"U7rA2a\":[\"When not checked, a merge will be performed, combining local variables with those found on the external source.\"],\"UDf-wR\":[\"Subscriptions consumed\"],\"UEaj7U\":[\"Inventory sync failures\"],\"UJpDop\":[\"Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"UJsNNk\":[\"Source Control Revision\"],\"UPasE4\":[\"Azure AD Default\"],\"UPmrRI\":[\"Case-insensitive version of endswith.\"],\"URmyfc\":[\"Details\"],\"UX2wV1\":[[\"0\",\"plural\",{\"one\":[\"This credential is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"UXBCwc\":[\"Last Name\"],\"UY6iPZ\":[\"If enabled, control nodes will peer to this instance automatically. If disabled, instance will be connected only to associated peers.\"],\"UYD5ld\":[\"and click on Update Revision on Launch\"],\"UYUgdb\":[\"Order\"],\"U_JUCL\":[\"Red Hat Insights\"],\"Ua-Kc6\":[\"www.json.org\"],\"UbOul8\":[\"Are you sure you want to delete:\"],\"UbRKMZ\":[\"Pending\"],\"UbqhuT\":[\"Failed to retrieve full node resource object.\"],\"Uc_tSU\":[\"Toggle Tools\"],\"UgFDh3\":[\"This inventory is currently being used by other resources. Are you sure you want to delete it?\"],\"UirGxE\":[\"Errors\"],\"UlykKR\":[\"Third\"],\"Uo1S9q\":[\"Sign in with Azure AD Tenant\"],\"UueF8b\":[\"Execution environment is missing or deleted.\"],\"UvGjRK\":[\"If enabled, run this playbook as an administrator.\"],\"UwJJCk\":[\"Relaunch failed hosts\"],\"UxKoFf\":[\"Navigation\"],\"UyZ7HQ\":[\"Changed message body\"],\"V-7saq\":[\"Delete \",[\"pluralizedItemName\"],\"?\"],\"V-rJKF\":[\"Seconds\"],\"V0Xv3_\":[[\"intervalValue\",\"plural\",{\"one\":[\"day\"],\"other\":[\"days\"]}]],\"V0fM4k\":[\"User analytics\"],\"V1EGGU\":[\"First name\"],\"V2-omF\":[[\"0\",\"plural\",{\"one\":[\"The inventory will be in a pending status until the final delete is processed.\"],\"other\":[\"The inventories will be in a pending status until the final delete is processed.\"]}]],\"V2RwJr\":[\"Listener Addresses\"],\"V2q9w9\":[\"If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode.\"],\"V3z83V\":[\"LDAP 3\"],\"V4WsyL\":[\"Add Link\"],\"V5RUpn\":[\"Recipient List\"],\"V7qsYh\":[\"Note: The order of these credentials sets precedence for the sync and lookup of the content. Select more than one to enable drag.\"],\"V9xR6T\":[\"Expand section\"],\"VAI2fh\":[\"Create new container group\"],\"VAcXNz\":[\"Wednesday\"],\"VEj6_Y\":[\"Workflow Approvals\"],\"VFvVc6\":[\"Edit details\"],\"VJUm9p\":[\"Current page\"],\"VK2gzi\":[\"The number of parallel or simultaneous processes to use while executing the playbook. An empty value, or a value less than 1 will use the Ansible default which is usually 5. The default number of forks can be overwritten with a change to\"],\"VL2WkJ\":[\"The last \",[\"dayOfWeek\"]],\"VLdRt2\":[\"Start sync source\"],\"VNUs2y\":[\"Max forks\"],\"VSJ6r5\":[\"Schedule is active\"],\"VSim_H\":[\"Delete inventory source\"],\"VTDO7X\":[\"Event detail modal\"],\"VU3Nrn\":[\"Missing\"],\"VWL2DK\":[\"GitHub Organization\"],\"VXFjd8\":[\"Metrics\"],\"VZfXhQ\":[\"Hop node\"],\"VdcFUD\":[\"End user license agreement\"],\"ViDr6F\":[\"Add new group\"],\"VmClsw\":[\"The resource associated with this node has been deleted.\"],\"VmvLj9\":[\"Set to Public or Confidential depending on how secure the client device is.\"],\"Vqd-tq\":[\"Confirm revert all\"],\"Vqgeac\":[\"Press space or enter to begin dragging,\\n and use the arrow keys to navigate up or down.\\n Press enter to confirm the drag, or any other key to\\n cancel the drag operation.\"],\"Vvbbn2\":[\"Failed to delete role.\"],\"Vw8l6h\":[\"An error occurred\"],\"VzE_M-\":[\"Toggle notification failure\"],\"W-O1E9\":[\"Copy Project\"],\"W1iIqa\":[\"View Inventory Groups\"],\"W3TNvn\":[\"Back to Users\"],\"W3pOzF\":[\"Allow changing the Source Control branch or revision in a job template that uses this project.\"],\"W6uTJi\":[\"Failed to get instance.\"],\"W7DGsV\":[\"Launched By (Username)\"],\"W9XAF4\":[\"Weekday\"],\"W9uQXX\":[\"Prompt\"],\"WAjFYI\":[\"Start date\"],\"WD8djW\":[\"Confirm link removal\"],\"WL91Ms\":[\"Delete Groups?\"],\"WPM2RV\":[\"Answer type\"],\"WQJduu\":[\"Key select\"],\"WTN9YX\":[\"Account token\"],\"WTV15I\":[\"Edit Login redirect override URL\"],\"WVzGc2\":[\"Subscription\"],\"WX9-kf\":[\"IRC nick\"],\"Wc6m4J\":[\"A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available.\"],\"Wdl2f2\":[\"This field must be at least \",[\"0\"],\" characters\"],\"WgsBEi\":[\"Enter at least one search filter to create a new Smart Inventory\"],\"WhSFGl\":[\"Filter By \",[\"name\"]],\"Wi1pUG\":[[\"numJobsToCancel\",\"plural\",{\"one\":[[\"0\"]],\"other\":[[\"1\"]]}]],\"Wk1rOS\":[\"Fit the graph to the available screen size\"],\"Wm7XbF\":[\"Failed to delete one or more credentials.\"],\"WqaDMq\":[\"Field contains value.\"],\"Wy25yg\":[\"Twilio\"],\"X03-eC\":[\"Please enter a value.\"],\"X5V9DW\":[\"Click the Edit button below to reconfigure the node.\"],\"X6d3Zy\":[\"Failed to delete organization.\"],\"X97mbf\":[\"Choose a job type\"],\"XA12d8\":[\"Optional comma separated list of host names to include in every job slice, in addition to the hosts of the slice itself. Useful when a play targets a coordinating host, such as localhost, that all slices depend on. Names are matched exactly against inventory hosts; groups and patterns are not supported. Pinned hosts run their plays once per slice.\"],\"XBROpk\":[\"Provide a host pattern to further constrain the list of hosts that will be managed or affected by the workflow.\"],\"XCCkju\":[\"Edit Node\"],\"XFRygA\":[\"Example URLs for Remote Archive Source Control include:\"],\"XHxwBV\":[\"Selected date range must have at least 1 schedule occurrence.\"],\"XILg0L\":[\"Invalid email address\"],\"XJOV1Y\":[\"Activity\"],\"XKp83s\":[\"Inventories with sources cannot be copied\"],\"XLMJ7O\":[\"Cloud\"],\"XLpxoj\":[\"Email Options\"],\"XM-gTv\":[\"Refer to the Ansible documentation for details about the configuration file.\"],\"XOD7tz\":[\"Show Changes\"],\"XOaZX3\":[\"Pagination\"],\"XP6TQ-\":[\"If specified, this field will be shown on the node instead of the resource name when viewing the workflow\"],\"XREJvl\":[\"Variables used to configure the inventory source. For a detailed description of how to configure this plugin, see\"],\"XViLWZ\":[\"On Failure\"],\"XWDz5f\":[\"Simple key select\"],\"X_5TsL\":[\"Survey Toggle\"],\"XaxYwV\":[\"Prompted Values\"],\"XbIM8f\":[\"Total inventory sources\"],\"XdyHT-\":[\"Hosts imported\"],\"XfmfOA\":[\"Run every\"],\"Xg3aVa\":[\"Use SSL\"],\"XgTa_2\":[\"The inventory will be in a pending status until the final delete is processed.\"],\"XilEsm\":[\"Instance Group\"],\"Xm7ruy\":[\"5 (WinRM Debug)\"],\"XmJfZT\":[\"name\"],\"XmVvzl\":[\"Select roles to apply\"],\"XnxCSh\":[\"Standard Error\"],\"XozZ38\":[\"Failed to delete one or more inventory sources.\"],\"Xq9A0U\":[\"Unknown Project\"],\"Xt4N6V\":[\"Prompt | \",[\"0\"]],\"XtpZSU\":[\"All job types\"],\"Xx-ftH\":[\"You have automated against more hosts than your subscription allows.\"],\"XyTWuQ\":[\"Please wait until the topology view is populated...\"],\"XyW2nH\":[[\"0\",\"plural\",{\"one\":[\"Are you sure you want to delete the group below?\"],\"other\":[\"Are you sure you want to delete the groups below?\"]}]],\"XzD7xj\":[\"Select Items\"],\"Y1YKad\":[\"Edit Details\"],\"Y296GK\":[\"Failed to delete role\"],\"Y2ml-n\":[\"Approved - \",[\"0\"],\". See the Activity Stream for more information.\"],\"Y5VrmH\":[\"Not configured for inventory sync.\"],\"Y5vgVF\":[\"Successfully Denied\"],\"Y5xJ7I\":[\"Playbook name\"],\"Y60pX3\":[\"Add constructed inventory\"],\"YA4I45\":[\"Select a module\"],\"YFmVSY\":[\"Disassociate?\"],\"YJddb4\":[\"Instance type\"],\"YLMfol\":[\"Choose the type of resource that will be receiving new roles. For example, if you'd like to add new roles to a set of users please choose Users and click Next. You'll be able to select the specific resources in the next step.\"],\"YM06Nm\":[\"Edit credential type\"],\"YMLB2b\":[\"Whether the approval node is automatically approved or denied when the timeout expires.\"],\"YMpSlP\":[\"Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed.\"],\"YOOdGq\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" minute\"],\"other\":[\"#\",\" minutes\"]}]],\"YOh7Aw\":[\"Workflow Job \",[\"currentPosition\"],\"/\",[\"total\"]],\"YP5KRj\":[\"a new webhook url will be generated on save.\"],\"YPDLLX\":[\"Back to execution environments\"],\"YQqM-5\":[\"The container image to be used for execution.\"],\"Yd45Xn\":[\"Hosts by processor type\"],\"Yfw7TK\":[\"Notification timed out\"],\"YgqgXs\":[[\"intervalValue\",\"plural\",{\"one\":[\"minute\"],\"other\":[\"minutes\"]}]],\"YiQ03p\":[\"Failed to delete schedule.\"],\"YiUAZm\":[\"<0>Note: This instance may be re-associated with this instance group if it is managed by <1>policy rules.\"],\"YlGAPh\":[\"Job Slice Pinned Hosts\"],\"Ym7-mu\":[\"One Slack channel per line. The pound symbol (#)\\n is required for channels. To respond to or start a thread to a specific message add the parent message Id to the channel where the parent message Id is 16 digits. A dot (.) must be manually inserted after the 10th digit. ie:#destination-channel, 1231257890.006423. See Slack\"],\"YmEWZH\":[\"Launch template\"],\"YmjTf2\":[\"Provisioning fail\"],\"YoXjSs\":[\"Prompt for inventory on launch.\"],\"Yq4Eaf\":[\"Host status information for this job is unavailable.\"],\"YsN-3o\":[\"View inventory source details\"],\"Yt-rBv\":[\"This project is currently being used by other resources. Are you sure you want to delete it?\"],\"YuC9dj\":[\"Associate\"],\"YxDLmM\":[\"Insights system ID\"],\"Z17FAa\":[\"Unknown Inventory\"],\"Z1Vtl5\":[\"Failed to cancel Project Sync\"],\"Z25_RC\":[\"Select Input\"],\"Z2hVSb\":[\"Hybrid\"],\"Z40J8D\":[\"Enables creation of a provisioning callback URL. Using the URL a host can contact \",[\"brandName\"],\" and request a configuration update using this job template.\"],\"Z5HWHd\":[\"On\"],\"Z7ZXbT\":[\"Approve\"],\"Z88yEl\":[\"Greater than or equal to comparison.\"],\"Z9EFpE\":[\"Automation Analytics dashboard\"],\"ZAWGCX\":[[\"0\"],\" seconds\"],\"ZEP8tT\":[\"Launch\"],\"ZGDCzb\":[\"Instance not found.\"],\"ZJjKDg\":[\"Managed nodes\"],\"ZKKnVf\":[\"Create New Workflow Template\"],\"ZL3d6Z\":[\"IRC Server Address\"],\"ZO4CYH\":[\"Running jobs\"],\"ZOLfb2\":[\"This field must not be blank.\"],\"ZWhZbs\":[\"Confirm node removal\"],\"ZajTWA\":[\"Source Phone Number\"],\"Zf6u-6\":[\"Explanation\"],\"ZfrRb0\":[\"Please select an Inventory or check the Prompt on Launch option\"],\"ZhUwVw\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" week\"],\"other\":[\"#\",\" weeks\"]}]],\"ZhxwOq\":[\"Error message body\"],\"Zikd-1\":[\"The number of hosts you have automated against is below your subscription count.\"],\"ZjC8QM\":[\"Failed to delete host.\"],\"ZjvPb1\":[\"Created By (Username)\"],\"Zkh5np\":[\"Peers update on \",[\"0\"],\". Please be sure to run the install bundle for \",[\"1\"],\" again in order to see changes take effect.\"],\"ZpdX6R\":[\"Error deleting tokens\"],\"ZrsGjm\":[\"Inventory\"],\"ZumtuZ\":[\"Copy Template\"],\"ZvVF4C\":[\"Delete survey question\"],\"ZwCTcT\":[\"Recent Jobs list tab\"],\"ZwujDQ\":[\"Past year\"],\"_-NKbo\":[\"Failed to toggle schedule.\"],\"_2LfCe\":[\"To reorder the survey questions drag and drop them in the desired location.\"],\"_4gGIX\":[\"Copy to clipboard\"],\"_5REdR\":[\"Select Input Inventories for the constructed inventory plugin.\"],\"_Fg1cM\":[\"Workflow timed out message body\"],\"_ITcnz\":[\"day\"],\"_Ia62Q\":[\"Constructed inventory examples\"],\"_JN1gB\":[\"Task Count\"],\"_K2CvV\":[\"Template\"],\"_LQZpR\":[[\"intervalValue\",\"plural\",{\"one\":[\"year\"],\"other\":[\"years\"]}]],\"_LVfwJ\":[\"Constructed Inventory Source Sync Error\"],\"_M4FeF\":[\"Select the Execution Environment you want this command to run inside.\"],\"_MTBwI\":[\"Changed message\"],\"_MdgrM\":[\"Add a new node between these two nodes\"],\"_PRaan\":[\"Failed to delete one or more notification template.\"],\"_Pz_QH\":[\"Managed by Policy\"],\"_W3ZAw\":[[\"selectedItemsCount\",\"plural\",{\"one\":[\"Click to run a health check on the selected instance.\"],\"other\":[\"Click to run a health check on the selected instances.\"]}]],\"_WBq2_\":[\"Denied - \",[\"0\"],\". See the Activity Stream for more information.\"],\"_Yq4TU\":[\"Maximum number of forks to allow across all jobs running concurrently on this group.\\n Zero means no limit will be enforced.\"],\"_ZBhqw\":[\"Failed to cancel Inventory Source Sync\"],\"_bAUGi\":[\"Choose an HTTP method\"],\"_bE0AS\":[\"Select an instance\"],\"_cV6Mf\":[\"Browse…\"],\"_cq4Aa\":[\"Workflow Approval not found.\"],\"_ereyb\":[\"TACACS+\"],\"_gCD76\":[\"Edit instance group\"],\"_ismew\":[\"Artifact key\"],\"_kYJq6\":[\"Days of Data to Keep\"],\"_khNCh\":[\"Job Template default credentials must be replaced with one of the same type. Please select a credential for the following types in order to proceed: \",[\"0\"]],\"_oeZtS\":[\"Host Polling\"],\"_rCRcH\":[\"Advanced search documentation\"],\"_vI8Rx\":[\"Delete Group?\"],\"a02Xjc\":[\"IRC server address\"],\"a3AD0M\":[\"confirm edit login redirect\"],\"a5zD9f\":[\"Changes\"],\"a6E-_p\":[\"Case-insensitive version of contains\"],\"a8AgQY\":[\"View Host Details\"],\"a8nooQ\":[\"Fourth\"],\"a9BTUD\":[\"weekend day\"],\"aBgwis\":[\"Scope\"],\"aLlb3-\":[\"boolean\"],\"aNxqSL\":[\"Delete Execution Environment\"],\"aQ4XJX\":[\"Enable log system tracking facts individually\"],\"aSuBiU\":[\"Microsoft Azure Resource Manager\"],\"aTK0Fh\":[\"On days\"],\"aUNPq3\":[\"Execution Node\"],\"aVoVcG\":[\"Multi-Select\"],\"aXBrSq\":[\"Red Hat Virtualization\"],\"a_vlog\":[\"Remove \",[\"0\"],\" chip\"],\"adPhRK\":[\"The inventory that this host belongs to.\"],\"adjqlB\":[[\"0\"],\" (deleted)\"],\"aht2s_\":[\"Notification color\"],\"aiejXq\":[\"Add resource type\"],\"ajDpGH\":[\"STATUS:\"],\"anfIXl\":[\"User Details\"],\"aqqAbL\":[\"If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on. Note: If this setting is enabled and you provided an empty list, the global instance groups will be applied.\"],\"ar5AA2\":[\"for more information.\"],\"ataY5Z\":[\"Job Delete Error\"],\"ax6e8j\":[\"Please select an organization before editing the host filter\"],\"az8lvo\":[\"Off\"],\"b1CAkh\":[\"Management Jobs\"],\"b2Z0Zq\":[\"Cancel link changes\"],\"b433OF\":[\"Edit Group\"],\"b4SLah\":[\"See errors on the left\"],\"b9Y4up\":[\"Client ID\"],\"bDa_hW\":[\"Select the Instance Groups this inventory source sync should run on. If unset, the sync runs on the instance groups of the inventory or its organization.\"],\"bE4zYn\":[\"Select the port that Receptor will listen on for incoming connections, e.g. 27199.\"],\"bHXYoC\":[\"HTTP Method\"],\"bKR18T\":[\"A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>User Guide.\"],\"bLt_0J\":[\"Workflow\"],\"bPq357\":[\"Enabled Value\"],\"bQZByw\":[\"Use one Annotation Tag per line, without commas.\"],\"bTu5jX\":[\"Username / password\"],\"bWr6j5\":[\"This field must be at least \",[\"min\"],\" characters\"],\"bY8C86\":[\"View all Users.\"],\"bYXbel\":[\"workflow job template webhook key\"],\"baP8gx\":[\"4 (Connection Debug)\"],\"baqrhc\":[\"HTTP Headers\"],\"bbJ-VR\":[\"Zoom Out\"],\"bcyJXs\":[\"Item OK\"],\"bd1Kuw\":[\"Icon URL\"],\"bf7UKi\":[\"Update cache timeout\"],\"bfgr_e\":[\"Question\"],\"bgjTnp\":[\"0 (Normal)\"],\"bgq1rW\":[\"Search submit button\"],\"bhxnLH\":[\"You do not have permission to delete the following Groups: \",[\"itemsUnableToDelete\"]],\"bkPO0d\":[\"Notification type\"],\"bpECfE\":[\"Cancel link removal\"],\"bpnj1H\":[\"There was an error loading this content. Please reload the page.\"],\"bwRvnp\":[\"Action\"],\"bx2rrL\":[\"Smart inventory\"],\"bxaVlf\":[\"Create new credential type\"],\"byXCTu\":[\"Occurrences\"],\"bznJUg\":[\"Select the inventory containing the hosts you want this workflow to manage.\"],\"bzv8Dv\":[\"Removal Error\"],\"c-xCSz\":[\"True\"],\"c0n4p3\":[\"Fact Storage\"],\"c1Rsz1\":[\"View Workflow Approval Details\"],\"c3XJ18\":[\"Help\"],\"c4kHK7\":[\"Close subscription modal\"],\"c6IFRs\":[\"Service account JSON file\"],\"c6u6gk\":[\"Select the Instance Groups for this Organization to run on.\"],\"c7-Adk\":[\"Failed to sync inventory source.\"],\"c8HyJq\":[\"Select the Instance Groups for this Inventory to run on.\"],\"c8sV0t\":[\"This feature is deprecated and will be removed in a future release.\"],\"c9V3Yo\":[\"Host Failed\"],\"c9iw51\":[\"Running Jobs\"],\"c9pF61\":[\"Client identifier\"],\"cFC8w7\":[\"This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?\"],\"cFCKYZ\":[\"Deny\"],\"cFOXv9\":[\"Generic OIDC\"],\"cGRiaP\":[\"Event detail\"],\"cIdUma\":[\"\\n There are no available playbook directories in \",[\"project_base_dir\"],\".\\n Either that directory is empty, or all of the contents are already\\n assigned to other projects. Create a new directory there and make\\n sure the playbook files can be read by the \\\"awx\\\" system user,\\n or have \",[\"brandName\"],\" directly retrieve your playbooks from\\n source control using the Source Control Type option above.\"],\"cNsIJf\":[\"Changed\"],\"cPTnDL\":[\"Project Sync\"],\"cQIQa2\":[\"Select Groups\"],\"cQlPDN\":[\"Read\"],\"cUKLzq\":[\"Edit Order\"],\"cYir0h\":[\"Select option(s)\"],\"c_PGsA\":[\"Workflow job details\"],\"cbSPfq\":[\"This workflow has already been acted on\"],\"ccA_Bz\":[\"The suggested format for variable names is lowercase and\\n underscore-separated (for example, foo_bar, user_id, host_name,\\n etc.). Variable names with spaces are not allowed.\"],\"cdm6_X\":[\"Used capacity\"],\"chbm2W\":[\"Instance Filters\"],\"ci3mwY\":[\"This field must not be blank\"],\"cit9TY\":[\"Name of an artifact produced by the parent node via set_stats. The link is only followed when the parent job matches the chosen outcome and the condition is true. A missing key never matches.\"],\"cj1KTQ\":[\"View all Inventories.\"],\"cjJXKx\":[\"Host Async Failure\"],\"ckH3fT\":[\"Ready\"],\"ckdiAB\":[\"Delete Notification\"],\"cmWTxn\":[\"Less than or equal to comparison.\"],\"cnGeoo\":[\"Delete\"],\"cnnWD0\":[\"By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>\",[\"0\"],\". Uncheck the following boxes to disable this feature.\"],\"ct_Puj\":[\"This field will be retrieved from an external secret management system using the specified credential.\"],\"cucDBz\":[\"Context Template\"],\"cucG_7\":[\"No YAML Available\"],\"cxjfgY\":[\"Cannot run health check on hop nodes.\"],\"cy3yJa\":[\"Established\"],\"d-F6q9\":[\"Created\"],\"d-zGjA\":[\"This action will delete the following:\"],\"d1BVnY\":[\"A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>\",[\"0\"],\".\"],\"d5zxa4\":[\"Local\"],\"d6in1T\":[\"Select the inventory containing the hosts you want this job to manage.\"],\"d73flf\":[\"Alert modal\"],\"d75lEw\":[\"Set type\"],\"d7VUIS\":[\"Remove Node \",[\"nodeName\"]],\"d8B-tr\":[\"Job status graph tab\"],\"dAZObA\":[\"Redirect URIs\"],\"dBNZkl\":[\"View smart inventory host details\"],\"dCcO-F\":[\"Failed to retrieve configuration.\"],\"dELxuP\":[\"Inventory not found.\"],\"dEgA5A\":[\"Cancel\"],\"dH6aQY\":[\"Azure AD Tenant\"],\"dIb9tv\":[\"View all applications.\"],\"dJcvVX\":[\"Smart host filter\"],\"dNAHKF\":[\"Job Slicing\"],\"dOjocz\":[\"Convergence select\"],\"dPGRd8\":[\"If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode.\"],\"dPY1x1\":[\"for more info.\"],\"dQFAgv\":[\"This Project needs to be updated\"],\"dQjRO3\":[\"Start sync process\"],\"dbWo0h\":[\"Sign in with Google\"],\"dcGoCm\":[\"Inventory File\"],\"ddIcfH\":[\"Go to last page\"],\"dfWFox\":[\"Host Count\"],\"dk7qNl\":[\"Control node\"],\"dkGxGj\":[\"Subversion\"],\"dlHFy7\":[\"Failed to delete one or more execution environments\"],\"dnCwNB\":[\"Successfully copied to clipboard!\"],\"dov9kY\":[\"This field must be a number and have a value between \",[\"0\"],\" and \",[\"1\"]],\"dqxQzB\":[\"dictionary\"],\"dzQfDY\":[\"October\"],\"e0NrBM\":[\"Project\"],\"e3pQqT\":[\"Choose a Notification Type\"],\"e4GHWP\":[\"Pull\"],\"e5CMOi\":[\"Environment variables or extra variables that specify the values a credential type can inject.\"],\"e5VbKq\":[\"Workflow Job Templates\"],\"e6BtDv\":[\"<0>\",[\"0\"],\"<1>\",[\"1\"],\"\"],\"e70-_3\":[\"Toggle Legend\"],\"e8GyQg\":[\"Metric\"],\"e8U63Z\":[\"Only sync the project when the pushed ref matches this pattern, for example refs/heads/main or refs/heads/release-*. Leave blank to sync on any push or tag event.\"],\"e91aLH\":[\"View all credential types\"],\"e9k5zp\":[\"Please add a Schedule to populate this list. Schedules can be added to a Template, Project, or Inventory Source.\"],\"eAR1n4\":[\"Related search type typeahead\"],\"eD_0Fo\":[\"Failed to delete one or more teams.\"],\"eDjsWq\":[\"Create New Notification Template\"],\"eGkahQ\":[\"Delete Job Template\"],\"eHx-29\":[\"Source details\"],\"ePK91l\":[\"Edit\"],\"ePS9As\":[\"RADIUS settings\"],\"eQkgKV\":[\"Installed\"],\"eRV9Z3\":[\"No timeout specified\"],\"eRlz2Q\":[\"Destination SMS Number(s)\"],\"eSXF_i\":[\"Failed to delete application.\"],\"eTsJYJ\":[\"description\"],\"eVJ2lo\":[\"Float\"],\"eXOp7I\":[\"You do not have permission to remove instances: \",[\"itemsUnableToremove\"]],\"eXWuGz\":[\"Recent Templates list tab\"],\"eYJ4TK\":[\"Constructed Inventory not found.\"],\"eeke40\":[\"Automation Analytics\"],\"ekUnNJ\":[\"Select tags\"],\"el9nUc\":[\"Schedule is inactive\"],\"emqNXf\":[\"Playbook Check\"],\"eqiT7d\":[\"Sets the role that this instance will play within mesh topology. Default is \\\"execution.\\\"\"],\"espHeZ\":[\"Prevent Instance Group Fallback: If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on.\"],\"etQEqZ\":[\"Removing this link will orphan the rest of the branch and cause it to be executed immediately on launch.\"],\"ewSXyG\":[\"Soft delete \",[\"pluralizedItemName\"],\"?\"],\"f-fQK9\":[\"Grafana API key\"],\"f2o-xB\":[\"Confirm cancellation\"],\"f6Hub0\":[\"Sort\"],\"f9yJNM\":[\"Equals\"],\"fCZSgU\":[\"View all instance groups\"],\"fDzxi_\":[\"Exit Without Saving\"],\"fE2kOY\":[\"Date operator select\"],\"fGEOCn\":[\"Job status\"],\"fGLpQj\":[\"Source Control Branch/Tag/Commit\"],\"fGQ9Ug\":[\"Select credentials for accessing the nodes this job will be ran against. You can only select one credential of each type. For machine credentials (SSH), checking \\\"Prompt on launch\\\" without selecting credentials will require you to select a machine credential at run time. If you select credentials and check \\\"Prompt on launch\\\", the selected credential(s) become the defaults that can be updated at run time.\"],\"fJ9xam\":[\"Enable Instance\"],\"fKew5B\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"Cancel job\"],\"other\":[\"Cancel jobs\"]}]],\"fL7WXr\":[\"Applications\"],\"fMUEsk\":[\"Day \",[\"0\"]],\"fMulwN\":[\"Refresh project revision\"],\"fOAyP5\":[\"Search text input\"],\"fODqV4\":[\"That value was not found. Please enter or select a valid value.\"],\"fQCM-p\":[\"View Organization Details\"],\"fQGOXc\":[\"Error!\"],\"fR8DDt\":[\"Confirm removal of all nodes\"],\"fVjyJ4\":[\"Confirm disassociate\"],\"f_Xpp2\":[\"This action will disassociate the following:\"],\"fcTDCh\":[\"Provide your Red Hat or Red Hat Satellite credentials\\n below and you can choose from a list of your available subscriptions.\\n The credentials you use will be stored for future use in\\n retrieving renewal or expanded subscriptions.\"],\"ff_JYN\":[\"Filter on nested group name\"],\"fgrmWn\":[\"Prompt for diff mode on launch.\"],\"fhFmMp\":[\"Client Identifier\"],\"fjX9i5\":[\"Smart Inventory not found.\"],\"fk1WEw\":[\"Encrypted\"],\"fld-O4\":[\"All jobs\"],\"fnbZWe\":[\"Optionally select the credential to use to send status updates back to the webhook service.\"],\"foItBN\":[\"Weekend day\"],\"fp4RS1\":[\"content-loading-in-progress\"],\"fpMgHS\":[\"Mon\"],\"fqSfXY\":[\"Replace\"],\"fqmP_m\":[\"Host Unreachable\"],\"fthJP1\":[\"Webhook services can launch jobs with this workflow job template by making a POST request to this URL.\"],\"fwX7gC\":[\"VMware vCenter\"],\"g4o5Lr\":[\"Verbose\"],\"g6ekO4\":[\"Failed to toggle host.\"],\"g7CZ-8\":[\"Sign in with GitHub Enterprise Organizations\"],\"g9d3sF\":[\"Start message body\"],\"gALXcv\":[\"Delete this node\"],\"gBnBJa\":[\"Source Workflow Job\"],\"gDx5MG\":[\"Edit Link\"],\"gIGcbR\":[\"Maximum number of jobs to run concurrently on this group. Zero means no limit will be enforced.\"],\"gJccsJ\":[\"Workflow approved message\"],\"gK06zh\":[\"Add job template\"],\"gM3pS9\":[\"Execution Environments\"],\"gN3aF4\":[\"LDAP5\"],\"gSVH9P\":[\"Sync all sources\"],\"gUaMtt\":[\"On timeout\"],\"gVYePj\":[\"Create New Team\"],\"gWlcwd\":[\"Last Job Status\"],\"gYWK-5\":[\"View User Interface settings\"],\"gZXc5U\":[\"The number of distinct users that must approve before the workflow continues. A single denial always denies the node.\"],\"gZaMqy\":[\"Sign in with GitHub Teams\"],\"gZkstf\":[\"If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime.\"],\"gcFnpl\":[\"Job Status\"],\"geTfDb\":[\"View Job Details\"],\"ged_ZE\":[\"Oragnization\"],\"gezukD\":[\"Select a job to cancel\"],\"gfyddN\":[\"Upload a .zip file\"],\"gh06VD\":[\"Output\"],\"ghJsq8\":[\"Scroll first\"],\"gmB6oO\":[\"Schedule\"],\"gmBQqV\":[\"Project Update\"],\"gnveFZ\":[\"Standard error tab\"],\"goVc-x\":[\"Edit Credential Plugin Configuration\"],\"go_DGX\":[\"Add Team Roles\"],\"gpKdxJ\":[\"Select a question to delete\"],\"gpmbqk\":[\"Variables\"],\"gpnvle\":[\"deletion error\"],\"gsj32g\":[\"Cancel Project Sync\"],\"gtB4z-\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" hour\"],\"other\":[\"#\",\" hours\"]}]],\"gwKtbI\":[\"in the documentation and the\"],\"h25sKn\":[\"Subscription Management\"],\"h51QFW\":[\"YAML\"],\"h8DugX\":[\"Labels\"],\"hAjDQy\":[\"Select status\"],\"hBHRCF\":[\"Minimum number of instances that will be automatically\\n assigned to this group when new instances come online.\"],\"hEBjSg\":[\"Red Hat Satellite 6\"],\"hEnNCI\":[\"Remove the current search related to ansible facts to enable another search using this key.\"],\"hG89Ed\":[\"Image\"],\"hHKoQD\":[\"Select Peer Addresses\"],\"hLDu5N\":[\"Edit application\"],\"hNudM0\":[\"Set a value for this field\"],\"hPa_zN\":[\"Organization (Name)\"],\"hQ0dMQ\":[\"Add new host\"],\"hQRttt\":[\"Submit\"],\"hVPa4O\":[\"Select an option\"],\"hX8KyU\":[\"This job failed and has no output.\"],\"hXDKWN\":[\"Frequency Details\"],\"hXzOVo\":[\"Next\"],\"hYH0cE\":[\"Are you sure you want to submit the request to cancel this job?\"],\"hYgDIe\":[\"Create\"],\"hZ6znB\":[\"Port\"],\"hZke6f\":[\"Are you sure you want to disable local authentication? Doing so could impact users' ability to log in and the system administrator's ability to reverse this change.\"],\"hc_ufD\":[\"Job Tags\"],\"hdyeZ0\":[\"Delete Job\"],\"he3ygx\":[\"Copy\"],\"heqHpI\":[\"Project Base Path\"],\"hg6l4j\":[\"March\"],\"hgJ0FN\":[\"Perform a search to define a host filter\"],\"hgr8eo\":[\"items\"],\"hgvbYY\":[\"September\"],\"hhzh14\":[\"We were unable to locate licenses associated with this account.\"],\"hi1n6B\":[\"Update settings pertaining to Jobs within \",[\"brandName\"]],\"hiDMCa\":[\"Provisioning\"],\"hjsbgA\":[\"Extra variables\"],\"hjwN_s\":[\"Resource Name\"],\"hlbQEq\":[\"Content Signature Validation Credential\"],\"hmEecN\":[\"Management Job\"],\"hmjNLv\":[\"Preferred Theme\"],\"hty0d5\":[\"Monday\"],\"hvs-Js\":[\"Application information\"],\"i0VMLn\":[\"Workflow denied message\"],\"i2izXk\":[\"Schedule is missing rrule\"],\"i4_LY_\":[\"Write\"],\"i9sC0B\":[\"Add team permissions\"],\"iASwqf\":[\"This action will cancel the following job:\"],\"iCFhEl\":[\"Source phone number\"],\"iDNBZe\":[\"Notifications\"],\"iDWfOR\":[\"Failed to approve one or more workflow approval.\"],\"iDjyID\":[\"View Credential Details\"],\"iE1s1P\":[\"Launch workflow\"],\"iEUzMn\":[\"system\"],\"iH8pgl\":[\"Back\"],\"iI4bLJ\":[\"Last Login\"],\"iIVceM\":[\"Copy Error\"],\"iJWOeZ\":[\"No JSON Available\"],\"iJiCFw\":[\"Group details\"],\"iLO3nG\":[\"Play Count\"],\"iMaC2H\":[\"Instance groups\"],\"iPp22p\":[\"This schedule uses complex rules that are not supported in the\\n UI. Please use the API to manage this schedule.\"],\"iQdYL_\":[\"Add smart inventory\"],\"iRWxmA\":[\"Disable SSL Verification\"],\"iTylMl\":[\"Templates\"],\"iWKCzl\":[\"Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks.\"],\"iXmHtI\":[\"Select job type\"],\"iZBwau\":[\"This step contains errors\"],\"i_CDGy\":[\"Allow Branch Override\"],\"i_Kv21\":[\"Create new source\"],\"ifckL-\":[\"Row select\"],\"ifdViT\":[\"View Inventory Details\"],\"ig0q8s\":[\"This inventory is applied to all workflow nodes within this workflow (\",[\"0\"],\") that prompt for an inventory.\"],\"inP0J5\":[\"Subscription Details\"],\"isRobC\":[\"New\"],\"itlxml\":[\"Management job\"],\"ittbfT\":[\"Searching by ansible_facts requires special syntax. Refer to the\"],\"itu2NQ\":[\"Link state types\"],\"j1a5f1\":[\"Edit Host\"],\"j6gqC6\":[\"Branch to use in job run. Project default used if blank. Only allowed if project allow_override field is set to true.\"],\"j7zAEo\":[\"Workflow Statuses\"],\"j8QfHv\":[\"Edit host\"],\"jAxdt7\":[\"cancel delete\"],\"jBGh4u\":[\"Nested groups inventory definition:\"],\"jCVu9g\":[\"Cancel selected job\"],\"jEJtMA\":[\"Pending Workflow Approvals\"],\"jEw0Mr\":[\"Please enter a valid URL\"],\"jFaaUJ\":[\"Canonical\"],\"jGUu_G\":[\"Required approvals\"],\"jIaeJK\":[\"Survey\"],\"jJdwCB\":[\"Revert\"],\"jKibyt\":[\"Reset zoom\"],\"jMyq_x\":[\"Workflow Job 1/\",[\"0\"]],\"jaUa4e\":[\"This data is used to enhance\\n future releases of the Tower Software and help\\n streamline customer experience and success.\"],\"jc86YO\":[\"Prompt for limit on launch.\"],\"ji-8F7\":[\"This credential is currently being used by other resources. Are you sure you want to delete it?\"],\"jiE6Vn\":[\"Organizations\"],\"jifz9m\":[\"None (run once)\"],\"jkQOCm\":[\"Add exceptions\"],\"jljuYN\":[\"Service that webhook requests will be accepted from.\"],\"jluR-N\":[\"Warning: \",[\"selectedValue\"],\" is a link to \",[\"0\"],\" and will be saved as that.\"],\"joAQQS\":[\"The inventories will be in a pending status until the final delete is processed.\"],\"jqVo_k\":[\"here.\"],\"jqzUyM\":[\"Unavailable\"],\"jrkyDn\":[\"Play Started\"],\"jrsFB3\":[\"Output tab\"],\"jsz-PY\":[\"Unknown Finish Date\"],\"jwmkq1\":[\"Machine Credential\"],\"jzD-D6\":[\"Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task. Use commas to separate multiple tags. Refer to the documentation for details on the usage of tags.\"],\"k020kO\":[\"Activity Stream\"],\"k2dzu3\":[\"Expires on UTC\"],\"k30JvV\":[\"Selected Category\"],\"k5nHqi\":[\"The execution environment that will be used when launching this job template. The resolved execution environment can be overridden by explicitly assigning a different one to this job template.\"],\"k6OGfu\":[\"Select the Ansible collection providing the inventory plugin used to sync from vCenter. The community.vmware collection is deprecated in favor of the newer vmware.vmware collection. The selection is saved as the \\\"plugin\\\" key in the source variables.\"],\"kALwhk\":[\"seconds\"],\"kDWprA\":[\"These arguments are used with the specified module.\"],\"kEhyki\":[\"Field ends with value.\"],\"kLja4m\":[\"Initiated By\"],\"kLk5bG\":[\"Start message\"],\"kNUkGV\":[\"Lookup type\"],\"kNfXib\":[\"Module Name\"],\"kODvZJ\":[\"First Name\"],\"kOVkPY\":[\"Toggle instance\"],\"kP-3Hw\":[\"Back to Inventories\"],\"kQerRU\":[\"This field must not contain spaces\"],\"kX-GZH\":[\"Relaunch Job\"],\"kXzl6Z\":[\"Source Variables\"],\"kYDvK4\":[\"Including File\"],\"kah1PX\":[\"View YAML examples at\"],\"kaux7o\":[\"Overwrite local groups and hosts from remote inventory source\"],\"kgtWJ0\":[\"Select the Instance Groups for this Job Template to run on.\"],\"kiMHN-\":[\"System Auditor\"],\"kjrq_8\":[\"More information\"],\"kkDQ8m\":[\"Thursday\"],\"kkc8HD\":[\"Enable simplified login for your \",[\"brandName\"],\" applications\"],\"kpRn7y\":[\"Delete Questions\"],\"kpnWnY\":[\"After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format.\"],\"ks-HYT\":[\"Add user permissions\"],\"ks71ra\":[\"Exceptions\"],\"kt8V8M\":[\"Select a branch for the workflow.\"],\"ktPOqw\":[\"Refer to the\"],\"kuIbuV\":[\"Health checks can only be run on execution nodes.\"],\"ku__5b\":[\"Second\"],\"kyAi7k\":[\"Instance\"],\"kyHUFI\":[\"Vault password | \",[\"credId\"]],\"kyfr2I\":[\"If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \\\"all\\\" default group for the inventory.\"],\"kz7G1W\":[\"Are you sure you want to remove \",[\"0\"],\" access from \",[\"1\"],\"? Doing so affects all members of the team.\"],\"l4MzBY\":[[\"update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" second\"],\"other\":[\"#\",\" seconds\"]}]],\"l4k9lc\":[\"First node\"],\"l5XUoS\":[\"Webhook Credentials\"],\"l75CjT\":[\"Yes\"],\"l9ZmWD\":[[\"scm_update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" second\"],\"other\":[\"#\",\" seconds\"]}]],\"lCF0wC\":[\"Refresh\"],\"lJFsGr\":[\"Create new instance group\"],\"lKxoCA\":[\"Expand job events\"],\"lM9cbX\":[\"Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly.\"],\"lURfHJ\":[\"Collapse section\"],\"lWkKSO\":[\"min\"],\"lWmv3p\":[\"Inventory Sources\"],\"lYDyXS\":[\"Smart Inventory\"],\"l_jRvf\":[\"Playbook Complete\"],\"lfoFSg\":[\"Delete Host\"],\"lgm7y2\":[\"edit\"],\"lgphOX\":[\"Expected value\"],\"lhgU4l\":[\"Template not found.\"],\"lhkaAC\":[\"Trial\"],\"ljGeYw\":[\"Normal User\"],\"lk5WJ7\":[\"host-name-\",[\"0\"]],\"lkgIYt\":[\"Pagerduty\"],\"lo-rJO\":[\"Pan Down\"],\"ltvmAF\":[\"Application not found.\"],\"lu2qW5\":[\"Any\"],\"lucaxq\":[\"Cannot enable log aggregator without providing logging aggregator host and logging aggregator type.\"],\"luxcrf\":[\"More information for \",[\"label\"]],\"lyjq5X\":[\"Slack\"],\"m-eV2_\":[\"Container group not found.\"],\"m16xKo\":[\"Add\"],\"m1tKEz\":[\"System administrators have unrestricted access to all resources.\"],\"m2ErDa\":[\"Failure\"],\"m3k6kn\":[\"Failed to cancel Constructed Inventory Source Sync\"],\"m5MOUX\":[\"Back to Hosts\"],\"mGJIOu\":[\"This constructed inventory input\\n creates a group for both of the categories and uses\\n the limit (host pattern) to only return hosts that\\n are in the intersection of those two groups.\"],\"mNBZ1R\":[\"Note: This field assumes the remote name is \\\"origin\\\".\"],\"mOFgdC\":[\"Maximum\"],\"mPiYpP\":[\"Node state types\"],\"mSv_7k\":[\"Past three years\"],\"mXRKES\":[\"LDAP4\"],\"mXfNlE\":[\"This schedule is missing required survey values\"],\"mYGY3B\":[\"Date\"],\"mZiQNk\":[\"Privilege escalation: If enabled, run this playbook as an administrator.\"],\"m_tELA\":[\"cancel remove\"],\"ma7cO9\":[\"Failed to delete group \",[\"0\"],\".\"],\"mahPLs\":[\"Privilege escalation password\"],\"mcGG2z\":[[\"minutes\"],\" min \",[\"seconds\"],\" sec\"],\"mdNruY\":[\"API Token\"],\"mgJ1oe\":[\"Confirm delete\"],\"mgjN5u\":[\"Disassociate instance from instance group?\"],\"mhg7Av\":[\"Run ad hoc command\"],\"mi9ffh\":[\"Host Details\"],\"mk4anB\":[\"Browser default\"],\"mlDUq3\":[\"Modified By (Username)\"],\"mnm1rs\":[\"GitHub Default\"],\"moZ0VP\":[\"Sync Status\"],\"momgZ_\":[\"Name of the workflow job template.\"],\"mqAOoN\":[\"Choose a Playbook Directory\"],\"n-37ya\":[\"Confirm Disable Local Authorization\"],\"n-LISx\":[\"There was an error saving the workflow.\"],\"n-ZioH\":[\"Error fetching updated project\"],\"n-qmM7\":[\"Select a JSON formatted service account key to autopopulate the following fields.\"],\"n12Go4\":[\"Failed to load related groups.\"],\"n60kiJ\":[\"* This field will be retrieved from an external secret management system using the specified credential.\"],\"n6mYYY\":[\"Workflow timed out message\"],\"n9Idrk\":[\"(Limited to first 10)\"],\"n9lz4A\":[\"Failed jobs\"],\"nBAIS_\":[\"View event details\"],\"nC35Na\":[\"Are you sure you want delete the group below?\"],\"nCU-1E\":[\"Enables creation of a provisioning\\n callback URL. Using the URL a host can contact \",[\"brandName\"],\"\\n and request a configuration update using this job\\n template\"],\"nCY9IL\":[\"Host Skipped\"],\"nDjIzD\":[\"View Project Details\"],\"nGbNEN\":[\"Time in seconds to consider a project to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest project update. If it is older than Cache Timeout, it is not considered current, and a new project update will be performed.\"],\"nI54lc\":[\"Delete the project before syncing\"],\"nJPBvA\":[\"File, directory or script\"],\"nJTOTZ\":[\"The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level.\"],\"nLGsp4\":[\"Enable a survey for this workflow job template.\"],\"nMiE53\":[\"Enabled Variable\"],\"nOhz3x\":[\"Logout\"],\"nPH1Cr\":[\"These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?\"],\"nQOwDS\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"dayOfWeek\"]],\"4\":[\"The fourth \",[\"dayOfWeek\"]],\"5\":[\"The fifth \",[\"dayOfWeek\"]],\"one\":[\"The first \",[\"dayOfWeek\"]],\"two\":[\"The second \",[\"dayOfWeek\"]]}]],\"nRXCOn\":[\"Failed Host Count\"],\"nSTT11\":[\"Relaunch from:\"],\"nTENWI\":[\"Return to subscription management.\"],\"nU16mp\":[\"Cache Timeout\"],\"nZPX7r\":[\"Warning: Unsaved Changes\"],\"nZW6P0\":[\"Local time zone\"],\"nZYB4j\":[\"No Status Available\"],\"nZYxse\":[\"Disassociate host from group?\"],\"n_qDNz\":[\"Switch to dark mode\"],\"naCW6Z\":[\"April\"],\"ncxIQL\":[\"Failed to disassociate one or more instances.\"],\"neiOWk\":[\"View constructed inventory documentation here\"],\"nfnm9D\":[\"Organization Name\"],\"ng00aZ\":[\"Host Filter\"],\"nhxAdQ\":[\"Keyword\"],\"nlsWzF\":[\"Please add survey questions.\"],\"nnY7VU\":[\"Pagerduty Subdomain\"],\"noGZlf\":[\"Cache timeout (seconds)\"],\"npGo-z\":[\"Sign in with \",[\"label\"]],\"nuh_Wq\":[\"Webhook URL\"],\"nvUq8j\":[\"1 (Verbose)\"],\"nzozOC\":[\"Delete User\"],\"nzr1qE\":[\"File upload rejected. Please select a single .json file.\"],\"o-JPE2\":[\"No survey questions found.\"],\"o0RwAq\":[\"Sign in with GitHub Enterprise\"],\"o0x5-R\":[\"Select a value for this field\"],\"o4NRE0\":[\"Advanced search value input\"],\"o5J6dR\":[\"Specify the conditions under which this node should be executed\"],\"o9R2tO\":[\"SSL Connection\"],\"oABS9f\":[\"Provide a value for this field or select the Prompt on launch option.\"],\"oB5EwG\":[\"External Secret Management System\"],\"oBmCtD\":[\"Are you sure you want delete the groups below?\"],\"oC5JSb\":[\"Failed to fetch the updated project data.\"],\"oCKCYp\":[\"Notification sent successfully\"],\"oEijQ7\":[\"Case-insensitive version of startswith.\"],\"oFtmtl\":[\"Select the inventory containing the hosts\\n you want this job to manage.\"],\"oGKq12\":[\"Construct 2 groups, limit to intersection\"],\"oH1Qle\":[\"Webhook URL for this workflow job template.\"],\"oHOOxn\":[\"By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page. Uncheck the following boxes to disable this feature.\"],\"oII7vS\":[\"GitHub settings\"],\"oKMFX4\":[\"Never Updated\"],\"oKbBFU\":[\"# source with sync failures.\"],\"oNOjE7\":[\"End date/time\"],\"oNZQUQ\":[\"Credential to authenticate with Kubernetes or OpenShift\"],\"oQqtoP\":[\"Back to management jobs\"],\"oRt7Uv\":[[\"interval\"],\" years\"],\"oTDA5P\":[[\"0\",\"plural\",{\"one\":[\"This instance is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deprovisioning these instances could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"oWvSIB\":[\"Sender Email\"],\"oX_mCH\":[\"Project Sync Error\"],\"oZvDsd\":[[\"interval\"],\" hours\"],\"ocUvR-\":[\"False\"],\"ofO19Q\":[\"Sign in with GitHub Enterprise Teams\"],\"ofcQVG\":[\"Unsaved changes modal\"],\"olEUh2\":[\"Successful\"],\"opS--k\":[\"Back to Instance Groups\"],\"orh4t6\":[\"Host OK\"],\"osCeRO\":[\"View Azure AD settings\"],\"ot7qsv\":[\"Clear all filters\"],\"ovBPCi\":[\"Default\"],\"owBGkJ\":[\"End did not match an expected value (\",[\"0\"],\")\"],\"owQ8JH\":[\"Add instance group\"],\"ozbhWy\":[\"Deletion Error\"],\"p-nfFx\":[\"Drag a file here or browse to upload\"],\"p-ngUo\":[\"Unfollow\"],\"p-pp9U\":[\"string\"],\"p2LEhJ\":[\"Personal access token\"],\"p2_GCq\":[\"Confirm Password\"],\"p3PM8G\":[\"Relaunch from first node\"],\"p6-JME\":[\"The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \\\"pull/62/head\\\".\"],\"pAtylB\":[\"Not Found\"],\"pCCQER\":[\"Globally Available\"],\"pH8j40\":[\"Active hosts previously deleted\"],\"pHyx6k\":[\"Multiple Choice (single select)\"],\"pKQcta\":[\"Customize pod specification\"],\"pOJNDA\":[\"command\"],\"pOd3wA\":[\"Press 'Enter' to add more answer choices. One answer\\nchoice per line.\"],\"pOhwkU\":[\"This action will disassociate the following role from \",[\"0\"],\":\"],\"pRZ6hs\":[\"Run on\"],\"pSypIG\":[\"Show description\"],\"pYENvg\":[\"Authorization grant type\"],\"pZJ0-s\":[\"Maximum number of forks to allow across all jobs running concurrently on this group. Zero means no limit will be enforced.\"],\"pa1SrG\":[[\"interval\"],\" days\"],\"peCAyQ\":[\"View RADIUS settings\"],\"pfw0Wr\":[\"ALL\"],\"pguZh2\":[\"Create vars from jinja2 expressions. This can be useful\\n if the constructed groups you define do not contain the expected\\n hosts. This can be used to add hostvars from expressions so\\n that you know what the resultant values of those expressions are.\"],\"phTgAm\":[\"It is hard to give a specification for\\n the inventory for Ansible facts, because to populate\\n the system facts you need to run a playbook against\\n the inventory that has `gather_facts: true`. The\\n actual facts will differ system-to-system.\"],\"pkY73W\":[\"Rocket.Chat\"],\"pn7Xy3\":[\"See Django\"],\"poMgBa\":[\"Prompt for SCM branch on launch.\"],\"ppcQy0\":[\"Set zoom to 100% and center graph\"],\"prydaE\":[\"Project sync failures\"],\"pw2VDK\":[\"The last \",[\"weekday\"],\" of \",[\"month\"]],\"q-Uk_P\":[\"Failed to delete one or more credential types.\"],\"q-hNag\":[\"Collection\"],\"q45OlW\":[\"Regions\"],\"q5tQBE\":[\"Set type disabled for related search field fuzzy searches\"],\"q67y3T\":[\"Notification Template not found.\"],\"qAlZNb\":[\"You are unable to act on the following workflow approvals: \",[\"itemsUnableToDeny\"]],\"qCUUnr\":[\"No Hosts Remaining\"],\"qChjCy\":[\"First Run\"],\"qD-pvR\":[\"ID of the dashboard (optional)\"],\"qEMgTP\":[\"Inventory Source Sync Error\"],\"qJK-de\":[\"Sign in with OIDC\"],\"qS0GhO\":[\"Execution Environment Missing\"],\"qSSVmd\":[\"Destination Channels or Users\"],\"qSSg1L\":[\"Link to an available node\"],\"qWD0iN\":[\"This data is used to enhance\\n future releases of the Software and to provide\\n Automation Analytics.\"],\"qXRYa2\":[\"Track submodules latest commit on branch\"],\"qYkrfg\":[\"Provisioning Callback details\"],\"qZ2MTC\":[\"These are the modules that \",[\"brandName\"],\" supports running commands against.\"],\"qgjtIt\":[\"Convergence\"],\"qlhQw_\":[\"Inventory sync\"],\"qliDbL\":[\"Remote Archive\"],\"qlwLcm\":[\"Troubleshooting\"],\"qmBmJJ\":[\"This is the only time the client secret will be shown.\"],\"qmYgP7\":[\"approved\"],\"qqeAJM\":[\"Never\"],\"qtFFSS\":[\"Update Revision on Launch\"],\"qtaMu8\":[\"Inventory (Name)\"],\"qvCD_i\":[\"Examples include:\"],\"qwaCoN\":[\"Source Control Update\"],\"qxZ5RX\":[\"hosts\"],\"qznBkw\":[\"Workflow link modal\"],\"r6Aglb\":[\"Enter injectors using either JSON or YAML syntax. Refer to the Ansible Controller documentation for example syntax.\"],\"r6y-jM\":[\"Warning\"],\"r6zgGo\":[\"December\"],\"r8ojWq\":[\"Confirm remove\"],\"r8oq0Y\":[\"Past 24 hours\"],\"rBdPPP\":[\"Failed to delete \",[\"name\"],\".\"],\"rE95l8\":[\"Client type\"],\"rG3WVm\":[\"Select\"],\"rHK_Sg\":[\"Custom virtual environment \",[\"virtualEnvironment\"],\" must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation.\"],\"rK7UBZ\":[\"Relaunch all hosts\"],\"rKS_55\":[\"Fact storage: If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime..\"],\"rKTFNB\":[\"Delete credential type\"],\"rLznGJ\":[\"A Jinja2 template rendered with upstream set_stats artifacts when the approval is created. Use this to show the approver relevant context from previous job steps. Available variables come from set_stats data of parent nodes.\"],\"rMrKOB\":[\"Failed to sync project.\"],\"rOZRCa\":[\"Workflow Link\"],\"rSYkIY\":[\"This field must be a number\"],\"rXhu41\":[\"2 (Debug)\"],\"rYHzDr\":[\"Items per page\"],\"r_IfWZ\":[\"Edit Inventory\"],\"rdUucN\":[\"Preview\"],\"rfYaVc\":[\"Answer variable name\"],\"rfpIXM\":[\"Prompt for instance groups on launch.\"],\"rfx2oA\":[\"Workflow pending message body\"],\"riBcU5\":[\"IRC Nick\"],\"rjVfy3\":[\"Workflow documentation\"],\"rjyWPb\":[\"January\"],\"rmb2GE\":[\"Denied by \",[\"0\"],\" - \",[\"1\"]],\"rmt9Tu\":[\"Total hosts\"],\"ruhGSG\":[\"Cancel Inventory Source Sync\"],\"rvia3m\":[\"Miscellaneous Authentication\"],\"rw1pRJ\":[\"Download bundle\"],\"rwWNpy\":[\"Inventories\"],\"s-MGs7\":[\"Resources\"],\"s2xYUy\":[\"Overwrite local variables from remote inventory source\"],\"s3KtlK\":[\"This schedule has no occurrences due to the selected exceptions.\"],\"s4Qnj2\":[\"Execution Environment\"],\"s4fge-\":[\"Past month\"],\"s5aIEB\":[\"Delete Workflow Job Template\"],\"s5mACA\":[\"Instance details\"],\"s5r5nt\":[[\"0\",\"plural\",{\"one\":[\"This instance group is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"s6F6Ks\":[\"No output found for this job.\"],\"s70SJY\":[\"Logging settings\"],\"s8hQty\":[\"View all Jobs.\"],\"s9EKbs\":[\"Disable SSL verification\"],\"sAz1tZ\":[\"confirm disassociate\"],\"sBJ5MF\":[\"Sources\"],\"sCEb_0\":[\"View all Inventory Hosts.\"],\"sGodAp\":[\"Pod spec override\"],\"sMDRa_\":[\"Back to Groups\"],\"sOMf4x\":[\"Recent Templates\"],\"sSFxX6\":[\"Update revision on job launch\"],\"sTkKoT\":[\"Select a row to deny\"],\"sUyFTB\":[\"Redirecting to dashboard\"],\"sV3kNp\":[\"This instance group is currently being by other resources. Are you sure you want to delete it?\"],\"sVh4-e\":[\"Delete this link\"],\"sW5OjU\":[\"required\"],\"sZif4m\":[\"Disassociate related group(s)?\"],\"s_XkZs\":[\"START\"],\"s_r4Az\":[\"This field must be an integer\"],\"sesAIn\":[\"Use custom messages to change the content of\\n notifications sent when a job starts, succeeds, or fails. Use\\n curly braces to access information about the job:\"],\"sgRZMG\":[\"Hybrid node\"],\"siJgSI\":[\"User not found.\"],\"sjMCOP\":[\"Last Modified\"],\"sjVfrA\":[\"Command\"],\"smFRaX\":[\"A job has already been launched\"],\"sqMsvU\":[[\"0\",\"plural\",{\"one\":[\"#\",\" source with sync failures.\"],\"other\":[\"#\",\" sources with sync failures.\"]}]],\"sr4LMa\":[\"Inventory Source\"],\"svR3aM\":[\"OpenStack\"],\"svy2x9\":[\"Returns results that satisfy this one or any other filters.\"],\"sxkWRg\":[\"Advanced\"],\"syupn5\":[\"Brand Image\"],\"syyeb9\":[\"First\"],\"t-R8-P\":[\"Execution\"],\"t2q1xO\":[\"Edit Schedule\"],\"t4v_7X\":[\"Select a Node Type\"],\"t9QlBd\":[\"November\"],\"tRm9qR\":[\"Tags are useful when you have a large playbook, and you want to run a specific part of a play or task. Use commas to separate multiple tags. Refer to the documentation for details on the usage of tags.\"],\"tVEot_\":[[\"0\",\"plural\",{\"one\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"other\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"]}]],\"tXkhj_\":[\"Start\"],\"t_YqKh\":[\"Remove\"],\"tbSVlt\":[\"Remove User Access\"],\"tfDRzk\":[\"Save\"],\"tfh2eq\":[\"Click to create a new link to this node.\"],\"tgPwON\":[\"Operator\"],\"tgSBSE\":[\"Remove Link\"],\"tgWuMB\":[\"Modified\"],\"thJljW\":[\"WARNING: \"],\"toJdZA\":[\"Reorder\"],\"tpCmSt\":[\"policy rules.\"],\"tqlcfo\":[\"Deprovisioning\"],\"trjiIV\":[\"Failed to associate peer.\"],\"tst44n\":[\"Events\"],\"twE5a9\":[\"Failed to delete credential.\"],\"txNbrI\":[\"Source Control Branch\"],\"ty2DZX\":[\"This organization is currently being by other resources. Are you sure you want to delete it?\"],\"tzgOKK\":[\"This has already been acted on\"],\"u-sh8m\":[\"/ (project root)\"],\"u4ex5r\":[\"July\"],\"u4n8Fm\":[\"Failed to remove peers.\"],\"u4x6Jy\":[\"Back to Jobs\"],\"u5AJST\":[\"The number of parallel or simultaneous processes to use while executing the playbook. Inputting no value will use the default value from the ansible configuration file. You can find more information\"],\"u7f6WK\":[\"View all Workflow Approvals.\"],\"u84wS1\":[\"Job Cancel Error\"],\"uAQUqI\":[\"Status\"],\"uAhZbx\":[\"Inventory sources with failures\"],\"uCjD1h\":[\"Your session has expired. Please log in to continue where you left off.\"],\"uImfEm\":[\"Workflow pending message\"],\"uJz8NJ\":[\"Search is disabled while the job is running\"],\"uPRp5U\":[\"Cancel lookup\"],\"uTDtiS\":[\"Fifth\"],\"uUehLT\":[\"Waiting\"],\"uVu1Yt\":[\"Set type select\"],\"uYtvvN\":[\"Select a project before editing the execution environment.\"],\"ucSTeu\":[\"Created by (username)\"],\"ucgZ0o\":[\"Organization\"],\"ugZpot\":[\"Test External Credential\"],\"ulRNXw\":[\"Dragging cancelled. List is unchanged.\"],\"upC07l\":[\"Survey Disabled\"],\"uuPCEU\":[\"If you want the Inventory Source to update on launch , click on Update on Launch, and also go to \"],\"uyJsf6\":[\"About\"],\"uzTiFQ\":[\"Back to Schedules\"],\"v-CZEv\":[\"Prompt on launch\"],\"v-EbDj\":[\"Troubleshooting settings\"],\"v-M-LP\":[\"Launch Template\"],\"v0urVb\":[\"If you do not have a subscription, you can visit\\n Red Hat to obtain a trial subscription.\"],\"v1kQyJ\":[\"Webhooks\"],\"v2dMHj\":[\"Relaunch using host parameters\"],\"v2gmVS\":[\"This action will soft delete the following:\"],\"v45yUL\":[\"disassociate\"],\"v7vAuj\":[\"Total Jobs\"],\"vCS_TJ\":[\"Failed to delete inventory source \",[\"name\"],\".\"],\"vEr6TL\":[\"These arguments are used with the specified module. You can find information about \",[\"0\"],\" by clicking \"],\"vF82C6\":[\"Execute when the parent node results in a successful state.\"],\"vFKI2e\":[\"Schedule Rules\"],\"vFVhzc\":[\"SOCIAL\"],\"vGVmd5\":[\"This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import.\"],\"vGjmyl\":[\"Deleted\"],\"vHAaZi\":[\"Skip every\"],\"vIb3RK\":[\"Create New Schedule\"],\"vKRQJB\":[\"Field for passing a custom Kubernetes or OpenShift Pod specification.\"],\"vLyv1R\":[\"Hide\"],\"vPrMqH\":[\"Revision #\"],\"vQHUI6\":[\"If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source.\"],\"vTL8gi\":[\"End time\"],\"vUOn9d\":[\"Return\"],\"vYFWsi\":[\"Select Teams\"],\"vYuE8q\":[\"Elapsed time that the job ran\"],\"vZbIkJ\":[\"GitLab\"],\"vcH-SH\":[\"Bitbucket Data Center\"],\"ve_jRy\":[\"On Condition\"],\"vgwVkd\":[\"UTC\"],\"vlHGDw\":[\"Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON. Refer to the documentation for example syntax.\"],\"voRH7M\":[\"Examples:\"],\"vq1XXv\":[\"Create a new Smart Inventory with the applied filter\"],\"vq2WxD\":[\"Tue\"],\"vq9gg6\":[\"You are unable to act on the following workflow approvals: \",[\"itemsUnableToApprove\"]],\"vqAmQC\":[\"Module\"],\"vvY8pz\":[\"Prompt for skip tags on launch.\"],\"vye-ip\":[\"Prompt for timeout on launch.\"],\"vzsN_5\":[[\"interval\"],\" day\"],\"w07pgp\":[\"Prompt for verbosity on launch.\"],\"w0kTk8\":[\"Relaunch from failed node\"],\"w14eW4\":[\"View all tokens.\"],\"w1RiT6\":[[\"0\",\"plural\",{\"one\":[\"This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?\"],\"other\":[\"Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete them anyway?\"]}]],\"w2VTLB\":[\"Less than comparison.\"],\"w3EE8S\":[\"Hosts automated\"],\"w4j7js\":[\"View Team Details\"],\"w6zx64\":[\"Use browser default\"],\"wCnaTT\":[\"Replace field with new value\"],\"wF-BAU\":[\"Add inventory\"],\"wFnb77\":[\"Inventory ID\"],\"wKEfMu\":[\"Events processing complete.\"],\"wO29qX\":[\"Organization not found.\"],\"wW08QA\":[\"Not equals\"],\"wX6sAX\":[\"Past two years\"],\"wXAVe-\":[\"Module Arguments\"],\"wXB7k5\":[\"Specify a notification color. Acceptable colors are hex\\n color code (example: #3af or #789abc).\"],\"waFx9W\":[\"Managed\"],\"wdxz7K\":[\"Source\"],\"wgNoIs\":[\"Select all\"],\"wkgHlv\":[\"Add a new node\"],\"wlQNTg\":[\"Members\"],\"wnizTi\":[\"Select a subscription\"],\"wpT1VN\":[\"Condition\"],\"wpt6vB\":[\"LDAP2\"],\"wqXiR2\":[\"Pass extra command line changes. There are two ansible command line parameters: \"],\"wsggVq\":[\"When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process.\"],\"x-a4Mr\":[\"Webhook Credential\"],\"x02hbg\":[\"Provisioning callbacks: Enables creation of a provisioning callback URL. Using the URL a host can contact Ansible AWX and request a configuration update using this job template.\"],\"x4Xp3c\":[\"updated\"],\"x5DnMs\":[\"Last modified\"],\"x6_dAC\":[\"Federated Inventory\"],\"x6oT_o\":[\"Hosts available\"],\"x7PDL5\":[\"Logging\"],\"x8uKc7\":[\"Instance status\"],\"x9WS62\":[\"Cancel \",[\"0\"]],\"xAYSEs\":[\"Start time\"],\"xAqth4\":[\"View Google OAuth 2.0 settings\"],\"xC9EVu\":[\"Canceled node\"],\"xCJdfg\":[\"Clear\"],\"xDr_ct\":[\"End\"],\"xESTou\":[\"Failed to delete job.\"],\"xF5tnT\":[\"Vault password\"],\"xGQZwx\":[\"Add container group\"],\"xGVfLh\":[\"Continue\"],\"xHZS6u\":[\"Successful jobs\"],\"xHokxV\":[[\"0\",\"plural\",{\"one\":[\"The selected job cannot be deleted due to insufficient permission or a running job status\"],\"other\":[\"The selected jobs cannot be deleted due to insufficient permissions or a running job status\"]}]],\"xHt036\":[\"Personal Access Token\"],\"xKQRBr\":[\"Maximum length\"],\"xM01Pk\":[\"Default answer\"],\"xONDaO\":[\"Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?\"],\"xOl1yT\":[\"Exact search on name field.\"],\"xPO5w7\":[\"Sign in with GitHub\"],\"xPpkbX\":[\"Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway\"],\"xPxMOJ\":[\"Invalid time format\"],\"xQioPk\":[\"Preconditions for running this node when there are multiple parents. Refer to the\"],\"xSytdh\":[\"FINISHED:\"],\"xUhTCP\":[\"Choose a source\"],\"xVhQZV\":[\"Fri\"],\"xY9DEq\":[\"The pattern used to target hosts in the inventory. Leaving the field blank, all, and * will all target all hosts in the inventory. You can find more information about Ansible's host patterns\"],\"xY9s5E\":[\"Timeout\"],\"x_Ej3K\":[\"Choose an answer type or format you want as the prompt for the user.\\n Refer to the Ascender Documentation for additional information about each option.\"],\"x_ugm_\":[\"Total groups\"],\"xa7N9Z\":[\"Edit login redirect override URL\"],\"xcaG5l\":[\"Edit workflow\"],\"xd2LI3\":[\"Expires on \",[\"0\"]],\"xdA_-p\":[\"Tools\"],\"xe5RvT\":[\"YAML tab\"],\"xefC7k\":[\"IRC server port\"],\"xeiujy\":[\"Text\"],\"xg771-\":[\"LDAP1\"],\"xhj1Rt\":[\"The page you requested could not be found.\"],\"xi4nE2\":[\"Error message\"],\"xnSIXG\":[\"Failed to delete one or more hosts.\"],\"xoCdYY\":[\"Check whether the given field's value is present in the list provided; expects a comma-separated list of items.\"],\"xoXoBo\":[\"Delete error\"],\"xrG8k4\":[\"Google Compute Engine\"],\"xtRU96\":[\"GitHub Enterprise Organization\"],\"xuYTJb\":[\"Failed to delete job template.\"],\"xw06rt\":[\"Setting matches factory default.\"],\"xxTtJH\":[\"Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied.\"],\"y11WBZ\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"Cancel selected job\"],\"other\":[\"Cancel selected jobs\"]}]],\"y8ibKI\":[\"Remove Instances\"],\"yCCaoF\":[\"Failed to update instance.\"],\"yDeNnS\":[\"Create new constructed inventory\"],\"yDifzB\":[\"Confirm selection\"],\"yGS9cI\":[\"Healthy\"],\"yGUKlf\":[\"Management jobs\"],\"yGfW7Y\":[\"Change PROJECTS_ROOT when deploying \",[\"brandName\"],\" to change this location.\"],\"yMIahh\":[\"Welcome to Red Hat Ansible Automation Platform!\\n Please complete the steps below to activate your subscription.\"],\"yMYuDg\":[\"Automation controller version\"],\"yMfU4O\":[\"Sender e-mail\"],\"yNcGa2\":[\"Access Token Expiration\"],\"yOXgbH\":[\"Note: When using SSH protocol for GitHub or Bitbucket, enter an SSH key only, do not enter a username (other than git). Additionally, GitHub and Bitbucket do not support password authentication when using SSH. GIT read only protocol (git://) does not use username or password information.\"],\"yQE2r9\":[\"Loading\"],\"yRiHPB\":[\"Please run a job to populate this list.\"],\"yRkqG9\":[\"Limit\"],\"yRsSBw\":[\"Approvals\"],\"yUlffE\":[\"Relaunch\"],\"yVgnJA\":[\"The maximum number of hosts allowed to be managed by this organization.\\n Value defaults to 0 which means no limit. Refer to the Ansible\\n documentation for more details.\"],\"yX3qAQ\":[\"Workflow Job Template Nodes\"],\"yaG1CX\":[\"LDAP\"],\"yaX9sM\":[\"Workflow Template\"],\"yb_fjw\":[\"Approval\"],\"ydoZpB\":[\"Team not found.\"],\"ydw9CW\":[\"Failed hosts\"],\"yfG3F2\":[\"Direct Keys\"],\"yjwMJ8\":[\"How many times was the host automated\"],\"yjyGja\":[\"Expand input\"],\"ylXj1N\":[\"Selected\"],\"yq6OqI\":[\"This is the only time the token value and associated refresh token value will be shown.\"],\"yqiwAW\":[\"Cancel Workflow\"],\"yrUyDQ\":[\"Sets the current life cycle stage of this instance. Default is \\\"installed.\\\"\"],\"yrwl2P\":[\"Compliant\"],\"yuXsFE\":[\"Failed to delete one or more workflow approval.\"],\"yuvDX_\":[[\"intervalValue\",\"plural\",{\"one\":[\"month\"],\"other\":[\"months\"]}]],\"ywSBEn\":[\"Associate role error\"],\"yxDqcD\":[\"Authorization Code Expiration\"],\"yy1cWw\":[\"Customize messages…\"],\"yz7wBu\":[\"Close\"],\"yzQhLU\":[\"Policy instance minimum\"],\"yzdDia\":[\"Delete Survey\"],\"z-BNGk\":[\"Delete User Token\"],\"z0DcIS\":[\"encrypted\"],\"z3XA1I\":[\"Host Retry\"],\"z409y8\":[\"Webhook Service\"],\"z7NLxJ\":[\"If you only want to remove access for this particular user, please remove them from the team.\"],\"z8mwbl\":[\"Minimum percentage of all instances that will be automatically assigned to this group when new instances come online.\"],\"zBO1TV\":[[\"numOccurrences\",\"plural\",{\"one\":[\"After \",\"#\",\" occurrence\"],\"other\":[\"After \",\"#\",\" occurrences\"]}]],\"zHcXAG\":[\"Leave this field blank to make the execution environment globally available.\"],\"zICM7E\":[\"Discard local changes before syncing\"],\"zJY4Uj\":[\"Playbook\"],\"zKJMiH\":[\"Playbook Directory\"],\"zK_63z\":[\"Invalid username or password. Please try again.\"],\"zLsDix\":[\"ldap user\"],\"zMKkOk\":[\"Back to Organizations\"],\"zN0nhk\":[\"Provide your Red Hat or Red Hat Satellite credentials to enable Automation Analytics.\"],\"zQRgi-\":[\"Toggle notification start\"],\"zTediT\":[\"This field must be a number and have a value between \",[\"min\"],\" and \",[\"max\"]],\"zUIPys\":[\"Add hosts to group based on Jinja2 conditionals.\"],\"z_PZxu\":[\"Failed to delete workflow approval.\"],\"zbLCH1\":[\"Inventory Type\"],\"zcQj5X\":[\"First, select a key\"],\"zdl7YZ\":[\"Select source path\"],\"zeEQd_\":[\"June\"],\"zf7FzC\":[\"Credential to authenticate with Kubernetes or OpenShift. Must be of type \\\"Kubernetes/OpenShift API Bearer Token\\\". If left blank, the underlying Pod's service account will be used.\"],\"zfZydd\":[\"Survey preview modal\"],\"zfsBaJ\":[\"Learn more about Automation Analytics\"],\"zgInnV\":[\"Workflow node view modal\"],\"zga9sT\":[\"OK\"],\"zhPLvU\":[\"Failed to associate.\"],\"zhrjek\":[\"Groups\"],\"zi_YNm\":[\"Failed to cancel \",[\"0\"]],\"zmu4-P\":[\"Account SID\"],\"znG7ed\":[\"Select a playbook\"],\"znTz5r\":[\"Schedule not found.\"],\"znuW_M\":[\"If yes make invalid entries a fatal error, otherwise skip and\\n continue.\"],\"zq0gmb\":[\"Select period\"],\"ztOzCj\":[\"Update on launch\"],\"ztw2L3\":[\"There must be a value in at least one input\"],\"zvfXp0\":[\"Toggle notification approvals\"],\"zx4BuL\":[\"Week\"],\"zzDlyQ\":[\"Success\"],\"{count, plural, one {# fork} other {# forks}}\":[[\"count\",\"plural\",{\"one\":[\"#\",\" fork\"],\"other\":[\"#\",\" forks\"]}]]}")}; \ No newline at end of file diff --git a/awx/ui/src/locales/en/messages.po b/awx/ui/src/locales/en/messages.po index 723dfd43..8d16ea83 100644 --- a/awx/ui/src/locales/en/messages.po +++ b/awx/ui/src/locales/en/messages.po @@ -57,7 +57,7 @@ msgid "TACACS+" msgstr "TACACS+" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:637 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:232 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:251 msgid "Workflow timed out message body" msgstr "Workflow timed out message body" @@ -115,6 +115,10 @@ msgstr "Select the Execution Environment you want this command to run inside." msgid "Add a new node between these two nodes" msgstr "Add a new node between these two nodes" +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:170 +msgid "Changed message" +msgstr "Changed message" + #: screens/Job/JobOutput/JobOutputSearch.js:120 msgid "Host Polling" msgstr "Host Polling" @@ -148,7 +152,7 @@ msgid "Maximum number of forks to allow across all jobs running concurrently on msgstr "Maximum number of forks to allow across all jobs running concurrently on this group.\n" " Zero means no limit will be enforced." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:341 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:349 #: screens/Inventory/InventorySources/InventorySourceListItem.js:89 msgid "Failed to cancel Inventory Source Sync" msgstr "Failed to cancel Inventory Source Sync" @@ -332,8 +336,8 @@ msgstr "Branch to checkout. In addition to branches, you can input tags, commit #: components/JobList/JobList.js:265 #: components/JobList/JobListItem.js:109 #: components/Lookup/ProjectLookup.js:134 -#: components/NotificationList/NotificationList.js:219 -#: components/NotificationList/NotificationListItem.js:34 +#: components/NotificationList/NotificationList.js:230 +#: components/NotificationList/NotificationListItem.js:36 #: components/PromptDetail/PromptDetail.js:125 #: components/RelatedTemplateList/RelatedTemplateList.js:200 #: components/TemplateList/TemplateList.js:219 @@ -433,7 +437,7 @@ msgstr "Click to view job details" msgid "Sync Project" msgstr "Sync Project" -#: components/NotificationList/NotificationList.js:194 +#: components/NotificationList/NotificationList.js:205 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:135 msgid "Grafana" msgstr "Grafana" @@ -513,7 +517,7 @@ msgstr "Event" msgid "Repeat Frequency" msgstr "Repeat Frequency" -#: screens/Inventory/shared/Inventory.helptext.js:171 +#: screens/Inventory/shared/Inventory.helptext.js:172 msgid "Variables used to configure the constructed inventory plugin. For a detailed description of how to configure this plugin, see" msgstr "Variables used to configure the constructed inventory plugin. For a detailed description of how to configure this plugin, see" @@ -575,8 +579,8 @@ msgstr "Container group" msgid "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" msgstr "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" -#: components/NotificationList/NotificationList.js:220 -#: components/NotificationList/NotificationListItem.js:35 +#: components/NotificationList/NotificationList.js:231 +#: components/NotificationList/NotificationListItem.js:38 #: screens/Credential/shared/TypeInputsSubForm.js:46 #: screens/InstanceGroup/shared/ContainerGroupForm.js:79 #: screens/Instances/Shared/InstanceForm.js:95 @@ -600,7 +604,7 @@ msgid "You cannot select multiple vault credentials with the same vault ID. Doin msgstr "You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID." #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:334 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:342 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:350 #: screens/Project/ProjectDetail/ProjectDetail.js:354 msgid "Cancel Sync" msgstr "Cancel Sync" @@ -713,8 +717,8 @@ msgstr "Host Metrics" msgid "Create new credential Type" msgstr "Create new credential Type" -#: screens/Inventory/shared/Inventory.helptext.js:103 -#: screens/Inventory/shared/Inventory.helptext.js:118 +#: screens/Inventory/shared/Inventory.helptext.js:104 +#: screens/Inventory/shared/Inventory.helptext.js:119 msgid "If you want the Inventory Source to update on launch, click on Update on Launch, and also go to " msgstr "If you want the Inventory Source to update on launch, click on Update on Launch, and also go to " @@ -732,7 +736,7 @@ msgid "Start Time" msgstr "Start Time" #: screens/Inventory/shared/Inventory.helptext.js:48 -#: screens/Inventory/shared/Inventory.helptext.js:184 +#: screens/Inventory/shared/Inventory.helptext.js:185 msgid "Variables must be in JSON or YAML syntax. Use the radio button to toggle between the two." msgstr "Variables must be in JSON or YAML syntax. Use the radio button to toggle between the two." @@ -748,7 +752,7 @@ msgstr "File Difference" msgid "Relaunch from canceled node" msgstr "Relaunch from canceled node" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:271 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:279 msgid "Cache timeout" msgstr "Cache timeout" @@ -828,7 +832,7 @@ msgstr "Please enter a number of occurrences." msgid "Fuzzy search on name field." msgstr "Fuzzy search on name field." -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:106 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:107 msgid "Ansible Controller Documentation." msgstr "Ansible Controller Documentation." @@ -836,7 +840,7 @@ msgstr "Ansible Controller Documentation." msgid "The Instance Groups to which this instance belongs." msgstr "The Instance Groups to which this instance belongs." -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:97 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:98 msgid "You may apply a number of possible variables in the\n" " message. For more information, refer to the" msgstr "You may apply a number of possible variables in the\n" @@ -885,7 +889,7 @@ msgstr "Workflow Nodes" msgid "Overwrite" msgstr "Overwrite" -#: components/NotificationList/NotificationList.js:195 +#: components/NotificationList/NotificationList.js:206 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:136 msgid "Hipchat" msgstr "Hipchat" @@ -920,7 +924,7 @@ msgstr "Source control branch" msgid "Tabs" msgstr "Tabs" -#: screens/Template/Template.js:273 +#: screens/Template/Template.js:274 #: screens/Template/WorkflowJobTemplate.js:286 msgid "View Template Details" msgstr "View Template Details" @@ -966,7 +970,7 @@ msgstr "{interval, plural, one {# year} other {# years}}" msgid "Inventory Source Sync" msgstr "Inventory Source Sync" -#: screens/Inventory/shared/Inventory.helptext.js:146 +#: screens/Inventory/shared/Inventory.helptext.js:147 msgid "Inventory Plugins" msgstr "Inventory Plugins" @@ -1036,7 +1040,7 @@ msgstr "1 (Info)" msgid "Set the instance enabled or disabled. If disabled, jobs will not be assigned to this instance." msgstr "Set the instance enabled or disabled. If disabled, jobs will not be assigned to this instance." -#: screens/Inventory/shared/Inventory.helptext.js:105 +#: screens/Inventory/shared/Inventory.helptext.js:106 msgid "and click on Update Revision on Launch." msgstr "and click on Update Revision on Launch." @@ -1525,8 +1529,8 @@ msgstr "Failed to delete one or more jobs." msgid "Run Command" msgstr "Run Command" -#: screens/Inventory/shared/Inventory.helptext.js:156 -#: screens/Inventory/shared/Inventory.helptext.js:179 +#: screens/Inventory/shared/Inventory.helptext.js:157 +#: screens/Inventory/shared/Inventory.helptext.js:180 msgid "plugin configuration guide." msgstr "plugin configuration guide." @@ -1637,9 +1641,9 @@ msgstr "Create new federated inventory" #: components/Lookup/OrganizationLookup.js:141 #: components/Lookup/ProjectLookup.js:129 #: components/Lookup/ProjectLookup.js:159 -#: components/NotificationList/NotificationList.js:181 -#: components/NotificationList/NotificationList.js:218 -#: components/NotificationList/NotificationListItem.js:29 +#: components/NotificationList/NotificationList.js:192 +#: components/NotificationList/NotificationList.js:229 +#: components/NotificationList/NotificationListItem.js:31 #: components/OptionsList/OptionsList.js:48 #: components/PaginatedTable/PaginatedTable.js:76 #: components/PromptDetail/PromptDetail.js:115 @@ -1753,14 +1757,14 @@ msgstr "Create new federated inventory" #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:182 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:197 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:238 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:204 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:205 #: screens/Inventory/InventorySources/InventorySourceList.js:212 #: screens/Inventory/InventorySources/InventorySourceListItem.js:60 #: screens/Inventory/shared/ConstructedInventoryForm.js:66 #: screens/Inventory/shared/FederatedInventoryForm.js:56 #: screens/Inventory/shared/InventoryForm.js:50 #: screens/Inventory/shared/InventoryGroupForm.js:33 -#: screens/Inventory/shared/InventorySourceForm.js:133 +#: screens/Inventory/shared/InventorySourceForm.js:139 #: screens/Inventory/shared/SmartInventoryForm.js:46 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:98 #: screens/ManagementJob/ManagementJobList/ManagementJobList.js:91 @@ -1883,7 +1887,7 @@ msgstr "{automatedInstancesCount} since {automatedInstancesSinceDateTime}" msgid "No job data available" msgstr "No job data available" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:309 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:317 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:22 msgid "Source variables" msgstr "Source variables" @@ -2020,7 +2024,7 @@ msgid "Confirm" msgstr "Confirm" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:526 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:142 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:143 msgid "Success message body" msgstr "Success message body" @@ -2295,7 +2299,7 @@ msgstr "Failed Hosts" msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?" msgstr "This execution environment is currently being used by other resources. Are you sure you want to delete it?" -#: components/NotificationList/NotificationList.js:196 +#: components/NotificationList/NotificationList.js:207 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:137 msgid "IRC" msgstr "IRC" @@ -2499,7 +2503,7 @@ msgstr "Enable external logging" #: components/Sparkline/Sparkline.js:30 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:51 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:181 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:182 #: screens/Inventory/InventorySources/InventorySourceListItem.js:31 #: screens/Project/ProjectDetail/ProjectDetail.js:134 #: screens/Project/ProjectList/ProjectListItem.js:56 @@ -2539,7 +2543,7 @@ msgstr "Enable log system tracking facts individually" msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" msgstr "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" -#: screens/Inventory/shared/Inventory.helptext.js:193 +#: screens/Inventory/shared/Inventory.helptext.js:194 msgid "If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on. Note: If this setting is enabled and you provided an empty list, the global instance groups will be applied." msgstr "If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on. Note: If this setting is enabled and you provided an empty list, the global instance groups will be applied." @@ -2676,7 +2680,7 @@ msgstr "Failed to disassociate one or more hosts." #: components/Sparkline/Sparkline.js:27 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:48 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:178 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:179 #: screens/Inventory/InventorySources/InventorySourceListItem.js:28 #: screens/Project/ProjectDetail/ProjectDetail.js:131 #: screens/Project/ProjectList/ProjectListItem.js:53 @@ -2763,7 +2767,7 @@ msgstr "Item OK" msgid "Icon URL" msgstr "Icon URL" -#: screens/Inventory/shared/InventorySourceForm.js:159 +#: screens/Inventory/shared/InventorySourceForm.js:165 msgid "Select the Instance Groups this inventory source sync should run on. If unset, the sync runs on the instance groups of the inventory or its organization." msgstr "Select the Instance Groups this inventory source sync should run on. If unset, the sync runs on the instance groups of the inventory or its organization." @@ -2772,7 +2776,7 @@ msgid "Select the port that Receptor will listen on for incoming connections, e. msgstr "Select the port that Receptor will listen on for incoming connections, e.g. 27199." #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:517 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:133 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:134 msgid "Success message" msgstr "Success message" @@ -2829,7 +2833,7 @@ msgstr "HTTP Method" msgid "The execution environment that will be used for jobs inside of this organization. This will be used as a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." msgstr "The execution environment that will be used for jobs inside of this organization. This will be used as a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." -#: components/NotificationList/NotificationList.js:190 +#: components/NotificationList/NotificationList.js:201 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:131 msgid "Notification type" msgstr "Notification type" @@ -2863,7 +2867,7 @@ msgstr "Cancel link removal" msgid "There was an error loading this content. Please reload the page." msgstr "There was an error loading this content. Please reload the page." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:292 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:300 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:135 msgid "Enabled Value" msgstr "Enabled Value" @@ -3176,7 +3180,7 @@ msgstr "<0>Note: Instances may be re-associated with this instance group if they msgid "Timeout minutes" msgstr "Timeout minutes" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:353 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:361 msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" msgstr "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" @@ -3332,7 +3336,7 @@ msgstr "Less than or equal to comparison." #: screens/Inventory/FederatedInventoryDetail/FederatedInventoryDetail.js:187 #: screens/Inventory/InventoryDetail/InventoryDetail.js:185 #: screens/Inventory/InventoryGroups/InventoryGroupsList.js:102 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:356 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:364 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:67 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:71 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:76 @@ -3355,6 +3359,7 @@ msgstr "Less than or equal to comparison." msgid "Delete" msgstr "Delete" +#: components/NotificationList/NotificationListItem.js:105 #: components/StatusLabel/StatusLabel.js:53 #: screens/Job/JobOutput/shared/HostStatusBar.js:43 msgid "Changed" @@ -3486,7 +3491,7 @@ msgstr "GitHub Team" #: screens/Inventory/InventoryDetail/InventoryDetail.js:157 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:43 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:78 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:317 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:325 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:133 #: screens/Job/JobDetail/JobDetail.js:578 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:425 @@ -3860,7 +3865,7 @@ msgstr "Default Execution Environment" #: components/PromptDetail/PromptJobTemplateDetail.js:122 #: components/PromptDetail/PromptJobTemplateDetail.js:130 #: components/TemplateList/TemplateListItem.js:263 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:245 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:246 #: screens/Job/JobDetail/JobDetail.js:180 #: screens/Job/JobDetail/JobDetail.js:214 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:216 @@ -3981,7 +3986,7 @@ msgstr "Topology View" msgid "Syncing" msgstr "Syncing" -#: screens/Inventory/shared/InventorySourceForm.js:192 +#: screens/Inventory/shared/InventorySourceForm.js:198 msgid "Source details" msgstr "Source details" @@ -4073,7 +4078,7 @@ msgstr "Delete Credential" #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:56 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:61 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:100 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:332 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:340 #: screens/Inventory/InventorySources/InventorySourceListItem.js:105 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:148 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:450 @@ -4155,7 +4160,7 @@ msgstr "No timeout specified" msgid "On Timeout" msgstr "On Timeout" -#: screens/Inventory/shared/Inventory.helptext.js:196 +#: screens/Inventory/shared/Inventory.helptext.js:197 msgid "Prevent Instance Group Fallback: If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on." msgstr "Prevent Instance Group Fallback: If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on." @@ -4497,7 +4502,7 @@ msgstr "content-loading-in-progress" msgid "Mon" msgstr "Mon" -#: screens/Organization/Organization.js:239 +#: screens/Organization/Organization.js:240 msgid "View Organization Details" msgstr "View Organization Details" @@ -4510,7 +4515,7 @@ msgstr "View Organization Details" #: components/JobList/JobList.js:345 #: components/LaunchButton/LaunchButton.js:248 #: components/LaunchPrompt/LaunchPrompt.js:99 -#: components/NotificationList/NotificationList.js:246 +#: components/NotificationList/NotificationList.js:259 #: components/PaginatedTable/ToolbarDeleteButton.js:148 #: components/RelatedTemplateList/RelatedTemplateList.js:254 #: components/ResourceAccessList/ResourceAccessList.js:249 @@ -4554,7 +4559,7 @@ msgstr "View Organization Details" #: screens/Inventory/InventoryHosts/InventoryHostList.js:204 #: screens/Inventory/InventoryList/InventoryList.js:300 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:270 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:363 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:371 #: screens/Inventory/InventorySources/InventorySourceList.js:240 #: screens/Inventory/InventorySources/InventorySourceList.js:252 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:155 @@ -4706,11 +4711,11 @@ msgid "Notification Templates" msgstr "Notification Templates" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:508 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:124 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:125 msgid "Start message body" msgstr "Start message body" -#: screens/Inventory/shared/Inventory.helptext.js:128 +#: screens/Inventory/shared/Inventory.helptext.js:129 msgid "Branch to use on inventory sync. Project default used if blank. Only allowed if project allow_override field is set to true." msgstr "Branch to use on inventory sync. Project default used if blank. Only allowed if project allow_override field is set to true." @@ -4819,7 +4824,7 @@ msgid "Failed to delete one or more user tokens." msgstr "Failed to delete one or more user tokens." #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:553 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:169 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:188 msgid "Workflow approved message" msgstr "Workflow approved message" @@ -5000,12 +5005,12 @@ msgstr "On timeout" msgid "Create New Team" msgstr "Create New Team" -#: screens/Inventory/shared/Inventory.helptext.js:148 +#: screens/Inventory/shared/Inventory.helptext.js:149 msgid "in the documentation and the" msgstr "in the documentation and the" #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:152 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:206 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:207 #: screens/Project/ProjectDetail/ProjectDetail.js:160 msgid "Last Job Status" msgstr "Last Job Status" @@ -5337,7 +5342,7 @@ msgid "Preferred Theme" msgstr "Preferred Theme" #: screens/Instances/Shared/InstanceForm.js:31 -#: screens/Inventory/shared/InventorySourceForm.js:92 +#: screens/Inventory/shared/InventorySourceForm.js:98 #: screens/Project/shared/ProjectForm.js:121 msgid "Set a value for this field" msgstr "Set a value for this field" @@ -5470,7 +5475,7 @@ msgid "Download Bundle" msgstr "Download Bundle" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:577 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:187 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:206 msgid "Workflow denied message" msgstr "Workflow denied message" @@ -5523,7 +5528,7 @@ msgstr "Node Type" msgid "View Credential Details" msgstr "View Credential Details" -#: components/NotificationList/NotificationList.js:177 +#: components/NotificationList/NotificationList.js:188 #: routeConfig.js:140 #: screens/Inventory/Inventories.js:119 #: screens/Inventory/InventorySource/InventorySource.js:101 @@ -5743,7 +5748,7 @@ msgstr "Test notification" #: screens/Credential/CredentialDetail/CredentialDetail.js:262 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:234 #: screens/Inventory/InventoryDetail/InventoryDetail.js:122 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:305 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:313 #: screens/Project/ProjectDetail/ProjectDetail.js:333 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:357 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:193 @@ -5792,7 +5797,7 @@ msgstr "source control branch" #: screens/Instances/InstanceDetail/InstanceDetail.js:248 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:225 #: screens/Inventory/InventoryDetail/InventoryDetail.js:107 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:239 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:240 #: screens/Organization/OrganizationDetail/OrganizationDetail.js:116 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:418 #: util/getRelatedResourceDeleteDetails.js:282 @@ -6122,7 +6127,7 @@ msgid "View YAML examples at" msgstr "View YAML examples at" #: components/PromptDetail/PromptInventorySourceDetail.js:35 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:142 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:143 msgid "Overwrite local groups and hosts from remote inventory source" msgstr "Overwrite local groups and hosts from remote inventory source" @@ -6131,7 +6136,7 @@ msgid "Resource deleted" msgstr "Resource deleted" #: screens/Inventory/shared/Inventory.helptext.js:54 -#: screens/Inventory/shared/Inventory.helptext.js:187 +#: screens/Inventory/shared/Inventory.helptext.js:188 msgid "YAML:" msgstr "YAML:" @@ -6218,7 +6223,7 @@ msgid "Initiated By" msgstr "Initiated By" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:499 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:115 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:116 msgid "Start message" msgstr "Start message" @@ -6282,7 +6287,7 @@ msgstr "Toggle instance" msgid "Back to Inventories" msgstr "Back to Inventories" -#: screens/Inventory/shared/Inventory.helptext.js:113 +#: screens/Inventory/shared/Inventory.helptext.js:114 msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format." msgstr "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format." @@ -6376,7 +6381,7 @@ msgstr "Instance" msgid "Including File" msgstr "Including File" -#: screens/Inventory/shared/Inventory.helptext.js:81 +#: screens/Inventory/shared/Inventory.helptext.js:82 msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." msgstr "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." @@ -6413,7 +6418,7 @@ msgstr "Details tab" #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:100 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:72 #: screens/InstanceGroup/shared/ContainerGroupForm.js:50 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:298 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:306 #: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:39 #: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:38 #: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:38 @@ -6424,7 +6429,7 @@ msgstr "Details tab" #: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:117 #: screens/Inventory/shared/InventorySourceSubForms/TerraformSubForm.js:38 #: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:39 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:39 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:44 msgid "Credential" msgstr "Credential" @@ -6433,7 +6438,7 @@ msgid "First node" msgstr "First node" #: components/PromptDetail/PromptInventorySourceDetail.js:97 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:273 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:281 msgid "{update_cache_timeout, plural, one {# second} other {# seconds}}" msgstr "{update_cache_timeout, plural, one {# second} other {# seconds}}" @@ -6497,7 +6502,7 @@ msgstr "View Jobs settings" #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:122 #: screens/Instances/InstanceDetail/InstanceDetail.js:349 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:96 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:329 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:337 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:145 #: screens/Project/ProjectDetail/ProjectDetail.js:340 #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:229 @@ -6551,7 +6556,7 @@ msgstr "Normal User" msgid "host-name-{0}" msgstr "host-name-{0}" -#: components/NotificationList/NotificationList.js:198 +#: components/NotificationList/NotificationList.js:209 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:139 msgid "Pagerduty" msgstr "Pagerduty" @@ -6610,7 +6615,7 @@ msgstr "Minimum number of instances that will be automatically assigned to this msgid "Launch | {0}" msgstr "Launch | {0}" -#: components/NotificationList/NotificationListItem.js:79 +#: components/NotificationList/NotificationListItem.js:84 msgid "Toggle notification success" msgstr "Toggle notification success" @@ -6703,7 +6708,7 @@ msgstr "Enable Concurrent Jobs" msgid "Smart Inventory" msgstr "Smart Inventory" -#: components/NotificationList/NotificationList.js:200 +#: components/NotificationList/NotificationList.js:211 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:141 msgid "Slack" msgstr "Slack" @@ -6739,7 +6744,7 @@ msgstr "Add" msgid "System administrators have unrestricted access to all resources." msgstr "System administrators have unrestricted access to all resources." -#: components/NotificationList/NotificationListItem.js:86 +#: components/NotificationList/NotificationListItem.js:91 msgid "Failure" msgstr "Failure" @@ -6884,7 +6889,7 @@ msgstr "Follow" #: components/Lookup/MultiCredentialsLookup.js:205 #: components/Lookup/OrganizationLookup.js:135 #: components/Lookup/ProjectLookup.js:149 -#: components/NotificationList/NotificationList.js:210 +#: components/NotificationList/NotificationList.js:221 #: components/RelatedTemplateList/RelatedTemplateList.js:183 #: components/Schedule/ScheduleList/ScheduleList.js:205 #: components/TemplateList/TemplateList.js:235 @@ -7096,7 +7101,7 @@ msgstr "This field must be a number and have a value greater than {min}" msgid "All" msgstr "All" -#: screens/Inventory/shared/Inventory.helptext.js:177 +#: screens/Inventory/shared/Inventory.helptext.js:178 msgid "constructed inventory" msgstr "constructed inventory" @@ -7110,7 +7115,7 @@ msgid "Confirm Delete" msgstr "Confirm Delete" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:625 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:223 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:242 msgid "Workflow timed out message" msgstr "Workflow timed out message" @@ -7206,7 +7211,7 @@ msgstr "Never" msgid "Organization Name" msgstr "Organization Name" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:282 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:290 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:149 msgid "Host Filter" msgstr "Host Filter" @@ -7258,7 +7263,7 @@ msgstr "{pluralizedItemName} List" msgid "Please add survey questions." msgstr "Please add survey questions." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:287 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:295 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:121 msgid "Enabled Variable" msgstr "Enabled Variable" @@ -7370,7 +7375,7 @@ msgstr "Sync" #: components/Lookup/ApplicationLookup.js:128 #: components/Lookup/HostFilterLookup.js:439 #: components/Lookup/HostListItem.js:10 -#: components/NotificationList/NotificationList.js:186 +#: components/NotificationList/NotificationList.js:197 #: components/PromptDetail/PromptDetail.js:120 #: components/Schedule/ScheduleDetail/ScheduleDetail.js:337 #: components/Schedule/ScheduleList/ScheduleList.js:197 @@ -7405,13 +7410,13 @@ msgstr "Sync" #: screens/Inventory/InventoryHosts/InventoryHostList.js:125 #: screens/Inventory/InventoryHosts/InventoryHostList.js:141 #: screens/Inventory/InventoryList/InventoryList.js:215 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:221 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:222 #: screens/Inventory/shared/ConstructedInventoryForm.js:74 #: screens/Inventory/shared/ConstructedInventoryHint.js:63 #: screens/Inventory/shared/FederatedInventoryForm.js:64 #: screens/Inventory/shared/InventoryForm.js:58 #: screens/Inventory/shared/InventoryGroupForm.js:41 -#: screens/Inventory/shared/InventorySourceForm.js:141 +#: screens/Inventory/shared/InventorySourceForm.js:147 #: screens/Inventory/shared/SmartInventoryForm.js:54 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:104 #: screens/Job/JobOutput/HostEventModal.js:118 @@ -7556,7 +7561,7 @@ msgstr "Sign in with GitHub Enterprise" #: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130 #: screens/Inventory/shared/InventorySourceSubForms/TerraformSubForm.js:46 #: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:47 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:47 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:52 #: screens/Inventory/shared/SmartInventoryForm.js:66 #: screens/NotificationTemplate/shared/NotificationTemplateForm.js:29 #: screens/NotificationTemplate/shared/NotificationTemplateForm.js:66 @@ -7589,7 +7594,7 @@ msgstr "Sign in with SAML {samlIDP}" msgid "Browse" msgstr "Browse" -#: components/NotificationList/NotificationList.js:193 +#: components/NotificationList/NotificationList.js:204 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:134 #: screens/User/shared/UserForm.js:104 #: screens/User/UserDetail/UserDetail.js:71 @@ -8012,7 +8017,7 @@ msgid "Sat" msgstr "Sat" #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:46 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:176 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:177 #: screens/Inventory/InventorySources/InventorySourceListItem.js:26 #: screens/Project/ProjectDetail/ProjectDetail.js:129 #: screens/Project/ProjectList/ProjectListItem.js:51 @@ -8049,7 +8054,7 @@ msgid "Specify HTTP Headers in JSON format. Refer to\n" msgstr "Specify HTTP Headers in JSON format. Refer to\n" " the Ansible Controller documentation for example syntax." -#: components/NotificationList/NotificationList.js:199 +#: components/NotificationList/NotificationList.js:210 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:140 msgid "Rocket.Chat" msgstr "Rocket.Chat" @@ -8108,7 +8113,7 @@ msgstr "Set zoom to 100% and center graph" msgid "Revert all to default" msgstr "Revert all to default" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:255 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:256 #: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:135 msgid "Inventory file" msgstr "Inventory file" @@ -8185,6 +8190,11 @@ msgstr "Prevent Instance Group Fallback" msgid "Maximum number of forks to allow across all jobs running concurrently on this group. Zero means no limit will be enforced." msgstr "Maximum number of forks to allow across all jobs running concurrently on this group. Zero means no limit will be enforced." +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:263 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:56 +msgid "Collection" +msgstr "Collection" + #: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:207 msgid "Failed to delete one or more credential types." msgstr "Failed to delete one or more credential types." @@ -8235,11 +8245,11 @@ msgstr "No Hosts Remaining" msgid "ID of the dashboard (optional)" msgstr "ID of the dashboard (optional)" -#: screens/Inventory/shared/Inventory.helptext.js:127 +#: screens/Inventory/shared/Inventory.helptext.js:128 msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'" msgstr "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:339 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:347 #: screens/Inventory/InventorySources/InventorySourceListItem.js:88 msgid "Inventory Source Sync Error" msgstr "Inventory Source Sync Error" @@ -8266,14 +8276,14 @@ msgstr "" #: components/VerbositySelectField/VerbositySelectField.js:35 #: components/VerbositySelectField/VerbositySelectField.js:45 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:217 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:261 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:269 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:47 #: screens/Job/JobDetail/JobDetail.js:369 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:257 msgid "Verbosity" msgstr "Verbosity" -#: components/NotificationList/NotificationList.js:197 +#: components/NotificationList/NotificationList.js:208 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:138 msgid "Mattermost" msgstr "Mattermost" @@ -8500,6 +8510,10 @@ msgstr "Back to Workflow Approvals" msgid "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Controller documentation for example syntax." msgstr "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Controller documentation for example syntax." +#: components/NotificationList/NotificationListItem.js:112 +msgid "Toggle notification changed" +msgstr "Toggle notification changed" + #: components/Workflow/WorkflowLegend.js:122 #: screens/Job/JobOutput/JobOutputSearch.js:140 msgid "Warning" @@ -8568,7 +8582,7 @@ msgid "Prompt for instance groups on launch." msgstr "Prompt for instance groups on launch." #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:613 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:214 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:233 msgid "Workflow pending message body" msgstr "Workflow pending message body" @@ -8610,7 +8624,7 @@ msgstr "IRC Nick" msgid "Expires on" msgstr "Expires on" -#: screens/Inventory/shared/Inventory.helptext.js:98 +#: screens/Inventory/shared/Inventory.helptext.js:99 msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." msgstr "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." @@ -8735,7 +8749,7 @@ msgstr "Enable webhook for this template." msgid "On date" msgstr "On date" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:340 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:348 #: screens/Inventory/InventorySources/InventorySourceListItem.js:90 msgid "Cancel Inventory Source Sync" msgstr "Cancel Inventory Source Sync" @@ -8812,7 +8826,7 @@ msgid "Greater than comparison." msgstr "Greater than comparison." #: components/PromptDetail/PromptInventorySourceDetail.js:40 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:148 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:149 msgid "Overwrite local variables from remote inventory source" msgstr "Overwrite local variables from remote inventory source" @@ -8884,7 +8898,7 @@ msgstr "Failed to delete one or more users." msgid "On Success" msgstr "On Success" -#: screens/Inventory/shared/Inventory.helptext.js:192 +#: screens/Inventory/shared/Inventory.helptext.js:193 msgid "The inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." msgstr "The inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." @@ -8949,7 +8963,7 @@ msgstr "Not configured" msgid "Workflow Job" msgstr "Workflow Job" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:82 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:83 msgid "Use custom messages to change the content of\n" " notifications sent when a job starts, succeeds, or fails. Use\n" " curly braces to access information about the job:" @@ -9153,7 +9167,7 @@ msgid "Go to previous page" msgstr "Go to previous page" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:565 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:178 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:197 msgid "Workflow approved message body" msgstr "Workflow approved message body" @@ -9170,7 +9184,7 @@ msgid "required" msgstr "required" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:589 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:196 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:215 msgid "Workflow denied message body" msgstr "Workflow denied message body" @@ -9272,7 +9286,7 @@ msgstr "docs.ansible.com" msgid "Edit Schedule" msgstr "Edit Schedule" -#: components/NotificationList/NotificationList.js:250 +#: components/NotificationList/NotificationList.js:263 msgid "Failed to toggle notification." msgstr "Failed to toggle notification." @@ -9361,6 +9375,10 @@ msgstr "Save" msgid "Click to create a new link to this node." msgstr "Click to create a new link to this node." +#: screens/Inventory/shared/Inventory.helptext.js:78 +msgid "Select the Ansible collection providing the inventory plugin used to sync from vCenter. The community.vmware collection is deprecated in favor of the newer vmware.vmware collection. The selection is applied via the \"plugin\" key in the source variables; when the key is absent, the default collection is used." +msgstr "Select the Ansible collection providing the inventory plugin used to sync from vCenter. The community.vmware collection is deprecated in favor of the newer vmware.vmware collection. The selection is applied via the \"plugin\" key in the source variables; when the key is absent, the default collection is used." + #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:167 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:136 msgid "Operator" @@ -9478,7 +9496,7 @@ msgid "Deprovisioning" msgstr "Deprovisioning" #: components/DetailList/LaunchedByDetail.js:27 -#: components/NotificationList/NotificationList.js:202 +#: components/NotificationList/NotificationList.js:213 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:143 msgid "Webhook" msgstr "Webhook" @@ -9519,7 +9537,7 @@ msgstr "Failed to delete credential." msgid "Private key passphrase" msgstr "Private key passphrase" -#: components/NotificationList/NotificationListItem.js:58 +#: components/NotificationList/NotificationListItem.js:63 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:47 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:53 msgid "Start" @@ -9539,7 +9557,7 @@ msgstr "An inventory must be selected" #: components/PromptDetail/PromptProjectDetail.js:100 #: components/PromptDetail/PromptWFJobTemplateDetail.js:81 #: components/Schedule/ScheduleDetail/ScheduleDetail.js:477 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:266 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:274 #: screens/Job/JobDetail/JobDetail.js:345 #: screens/Project/ProjectDetail/ProjectDetail.js:229 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 @@ -9593,7 +9611,7 @@ msgstr "Red Hat Insights" msgid "View GitHub Settings" msgstr "View GitHub Settings" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:257 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:258 msgid "/ (project root)" msgstr "/ (project root)" @@ -9622,7 +9640,7 @@ msgstr "The number of parallel or simultaneous processes to use while executing msgid "View all Workflow Approvals." msgstr "View all Workflow Approvals." -#: screens/Inventory/shared/Inventory.helptext.js:92 +#: screens/Inventory/shared/Inventory.helptext.js:93 msgid "When not checked, a merge will be performed, combining local variables with those found on the external source." msgstr "When not checked, a merge will be performed, combining local variables with those found on the external source." @@ -9716,7 +9734,7 @@ msgstr "Toggle Tools" #: screens/Inventory/InventoryList/InventoryList.js:211 #: screens/Inventory/InventoryList/InventoryList.js:241 #: screens/Inventory/InventoryList/InventoryListItem.js:121 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:225 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:226 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:107 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:153 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:163 @@ -9767,7 +9785,7 @@ msgid "Test External Credential" msgstr "Test External Credential" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:601 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:205 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:224 msgid "Workflow pending message" msgstr "Workflow pending message" @@ -9950,7 +9968,7 @@ msgstr "Navigation" msgid "If enabled, control nodes will peer to this instance automatically. If disabled, instance will be connected only to associated peers." msgstr "If enabled, control nodes will peer to this instance automatically. If disabled, instance will be connected only to associated peers." -#: screens/Inventory/shared/Inventory.helptext.js:120 +#: screens/Inventory/shared/Inventory.helptext.js:121 msgid "and click on Update Revision on Launch" msgstr "and click on Update Revision on Launch" @@ -9969,6 +9987,10 @@ msgstr "Select a project before editing the execution environment." msgid "Order" msgstr "Order" +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:179 +msgid "Changed message body" +msgstr "Changed message body" + #: components/Schedule/Schedule.js:65 msgid "Back to Schedules" msgstr "Back to Schedules" @@ -10087,7 +10109,7 @@ msgstr "Create new container group" msgid "Bitbucket Data Center" msgstr "Bitbucket Data Center" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:367 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:375 msgid "Failed to delete inventory source {name}." msgstr "Failed to delete inventory source {name}." @@ -10153,7 +10175,7 @@ msgstr "Edit details" msgid "Deleted" msgstr "Deleted" -#: screens/Inventory/shared/Inventory.helptext.js:129 +#: screens/Inventory/shared/Inventory.helptext.js:130 msgid "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import." msgstr "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import." @@ -10252,11 +10274,11 @@ msgstr "Module" msgid "Confirm revert all" msgstr "Confirm revert all" -#: screens/Inventory/shared/Inventory.helptext.js:89 +#: screens/Inventory/shared/Inventory.helptext.js:90 msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source." msgstr "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:350 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:358 msgid "Delete inventory source" msgstr "Delete inventory source" @@ -10327,7 +10349,7 @@ msgstr "Elapsed time that the job ran" msgid "GitLab" msgstr "GitLab" -#: components/NotificationList/NotificationListItem.js:93 +#: components/NotificationList/NotificationListItem.js:98 msgid "Toggle notification failure" msgstr "Toggle notification failure" @@ -10428,8 +10450,8 @@ msgstr "This field must be at least {0} characters" #: components/JobList/JobListItem.js:197 #: components/PromptDetail/PromptInventorySourceDetail.js:78 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:222 -#: screens/Inventory/shared/InventorySourceForm.js:162 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:223 +#: screens/Inventory/shared/InventorySourceForm.js:168 #: screens/Job/JobDetail/JobDetail.js:180 #: screens/Job/JobDetail/JobDetail.js:332 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:93 @@ -10513,7 +10535,7 @@ msgstr "Key select" msgid "Pass extra command line changes. There are two ansible command line parameters: " msgstr "Pass extra command line changes. There are two ansible command line parameters: " -#: screens/Inventory/shared/Inventory.helptext.js:84 +#: screens/Inventory/shared/Inventory.helptext.js:85 msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process." msgstr "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process." @@ -10556,7 +10578,7 @@ msgid "Specify a notification color. Acceptable colors are hex\n" msgstr "Specify a notification color. Acceptable colors are hex\n" " color code (example: #3af or #789abc)." -#: components/NotificationList/NotificationList.js:201 +#: components/NotificationList/NotificationList.js:212 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:142 msgid "Twilio" msgstr "Twilio" @@ -10596,7 +10618,7 @@ msgid "updated" msgstr "updated" #: screens/Inventory/AdvancedInventoryHostDetail/AdvancedInventoryHostDetail.js:50 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:320 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:328 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:135 #: screens/Project/ProjectList/ProjectListItem.js:274 #: screens/TopologyView/Tooltip.js:347 @@ -10797,7 +10819,7 @@ msgid "Successful jobs" msgstr "Successful jobs" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:535 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:151 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:152 msgid "Error message" msgstr "Error message" @@ -10926,7 +10948,7 @@ msgstr "Unknown Project" msgid "Preconditions for running this node when there are multiple parents. Refer to the" msgstr "Preconditions for running this node when there are multiple parents. Refer to the" -#: screens/Inventory/shared/Inventory.helptext.js:140 +#: screens/Inventory/shared/Inventory.helptext.js:141 msgid "Variables used to configure the inventory source. For a detailed description of how to configure this plugin, see" msgstr "Variables used to configure the inventory source. For a detailed description of how to configure this plugin, see" @@ -10936,7 +10958,7 @@ msgstr "Google Compute Engine" #: components/Sparkline/Sparkline.js:34 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:55 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:185 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:186 #: screens/Inventory/InventorySources/InventorySourceListItem.js:35 #: screens/Project/ProjectDetail/ProjectDetail.js:138 #: screens/Project/ProjectList/ProjectListItem.js:60 @@ -10958,7 +10980,7 @@ msgstr "All job types" msgid "GitHub Enterprise Organization" msgstr "GitHub Enterprise Organization" -#: screens/Inventory/shared/InventorySourceForm.js:170 +#: screens/Inventory/shared/InventorySourceForm.js:176 msgid "Choose a source" msgstr "Choose a source" @@ -10992,7 +11014,7 @@ msgstr "Simple key select" msgid "You have automated against more hosts than your subscription allows." msgstr "You have automated against more hosts than your subscription allows." -#: screens/Inventory/shared/Inventory.helptext.js:130 +#: screens/Inventory/shared/Inventory.helptext.js:131 msgid "Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied." msgstr "Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied." @@ -11118,7 +11140,7 @@ msgstr "LDAP" msgid "Workflow Template" msgstr "Workflow Template" -#: components/NotificationList/NotificationListItem.js:40 +#: components/NotificationList/NotificationListItem.js:45 #: components/Workflow/WorkflowLegend.js:118 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:76 msgid "Approval" @@ -11280,7 +11302,7 @@ msgstr "Provisioning fail" msgid "Whether the approval node is automatically approved or denied when the timeout expires." msgstr "Whether the approval node is automatically approved or denied when the timeout expires." -#: screens/Inventory/shared/Inventory.helptext.js:125 +#: screens/Inventory/shared/Inventory.helptext.js:126 msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed." msgstr "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed." @@ -11438,7 +11460,7 @@ msgstr "Insights system ID" msgid "Authorization Code Expiration" msgstr "Authorization Code Expiration" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:69 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:70 msgid "Customize messages…" msgstr "Customize messages…" @@ -11664,7 +11686,7 @@ msgid "{interval, plural, one {# week} other {# weeks}}" msgstr "{interval, plural, one {# week} other {# weeks}}" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:544 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:160 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:161 msgid "Error message body" msgstr "Error message body" @@ -11707,7 +11729,7 @@ msgstr "Managed nodes" #: components/Lookup/MultiCredentialsLookup.js:201 #: components/Lookup/OrganizationLookup.js:131 #: components/Lookup/ProjectLookup.js:153 -#: components/NotificationList/NotificationList.js:206 +#: components/NotificationList/NotificationList.js:217 #: components/RelatedTemplateList/RelatedTemplateList.js:179 #: components/Schedule/ScheduleList/ScheduleList.js:201 #: components/TemplateList/TemplateList.js:231 @@ -11823,7 +11845,7 @@ msgstr "Error deleting tokens" msgid "Select period" msgstr "Select period" -#: components/NotificationList/NotificationListItem.js:65 +#: components/NotificationList/NotificationListItem.js:70 msgid "Toggle notification start" msgstr "Toggle notification start" @@ -11871,7 +11893,7 @@ msgid "This field must be a number and have a value between {min} and {max}" msgstr "This field must be a number and have a value between {min} and {max}" #: components/PromptDetail/PromptInventorySourceDetail.js:45 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:154 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:155 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:93 msgid "Update on launch" msgstr "Update on launch" @@ -11888,7 +11910,7 @@ msgstr "Add hosts to group based on Jinja2 conditionals." msgid "Copy Template" msgstr "Copy Template" -#: components/NotificationList/NotificationListItem.js:51 +#: components/NotificationList/NotificationListItem.js:56 msgid "Toggle notification approvals" msgstr "Toggle notification approvals" @@ -11916,7 +11938,7 @@ msgstr "Past year" msgid "Week" msgstr "Week" -#: components/NotificationList/NotificationListItem.js:72 +#: components/NotificationList/NotificationListItem.js:77 #: components/StatusLabel/StatusLabel.js:39 msgid "Success" msgstr "Success" diff --git a/awx/ui/src/locales/es/messages.js b/awx/ui/src/locales/es/messages.js index 03f07414..f19c8160 100644 --- a/awx/ui/src/locales/es/messages.js +++ b/awx/ui/src/locales/es/messages.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"--iDlT\":[\"Eliminar proyecto\"],\"-0AkQd\":[[\"forks\",\"plural\",{\"one\":[\"#\",\" tenedor\"],\"other\":[\"#\",\" tenedores\"]}]],\"-0B-ue\":[\"Proyectos\"],\"-5kO8P\":[\"Sábado\"],\"-6EcFR\":[\"Presione Intro para modificar. Presione ESC para detener la edición.\"],\"-7M7WW\":[\"Haga clic para alternar el valor predeterminado\"],\"-7VWRl\":[\"RAM \",[\"0\"]],\"-8WGoO\":[\"El parámetro del plugin es obligatorio.\"],\"-9d7Ol\":[\"Subdominio Pagerduty\"],\"-9y9jy\":[\"Última comprobación de estado\"],\"-9yY_Q\":[\"No se pudo copiar el inventario.\"],\"-AZQnp\":[\"SAML\"],\"-FWz2-\":[\"Desplazarse hasta el anterior\"],\"-FjWgX\":[\"Jue\"],\"-GMFSa\":[\"No se pudo copiar el proyecto.\"],\"-GOG9X\":[\"Ocultar descripción\"],\"-NI2UI\":[\"Divida el trabajo realizado por esta plantilla de trabajo en el número especificado de segmentos de trabajo, cada uno de los cuales ejecuta las mismas tareas contra una parte del inventario.\"],\"-NezOR\":[\"Este tipo de credencial está siendo utilizado por algunas credenciales y no se puede eliminar\"],\"-OpL2l\":[\"Ejecutar independientemente del estado final del nodo primario.\"],\"-PyL32\":[\"¿Está seguro de que desea eliminar este nodo?\"],\"-RAMET\":[\"Modificar este enlace\"],\"-SAqJ3\":[\"No se pudo copiar la credencial.\"],\"-Uepfb\":[\"Control\"],\"-b3ghh\":[\"Elevación de privilegios\"],\"-cWxFz\":[\"Habilite la firma de contenido para verificar que el contenido ha permanecido seguro cuando se sincroniza un proyecto. Si el contenido ha sido manipulado, el trabajo no se ejecutará.\"],\"-hh3vo\":[\"No se puede cargar la última actualización del trabajo\"],\"-li8PK\":[\"Uso de suscripción\"],\"-nb9qF\":[\"(Preguntar al ejecutar)\"],\"-ohrPc\":[\"Escritura anticipada de la búsqueda\"],\"-rfqXD\":[\"Encuesta habilitada\"],\"-uOi7U\":[\"Haga clic para descargar el paquete\"],\"-vAlj5\":[\"No se pudo ejecutar la tarea.\"],\"-z0Ubz\":[\"Seleccionar los roles para aplicar\"],\"-zW4qj\":[\"Rama que se va a extraer. Además de las ramas, puede introducir etiquetas, hashes de commit y refs arbitrarias. Es posible que algunos hashes de commit y refs no estén disponibles a menos que también proporcione un refspec personalizado.\"],\"-zy2Nq\":[\"Tipo\"],\"0-31GV\":[\"Eliminación de\"],\"0-yjzX\":[\"El proyecto debe estar sincronizado antes de que una revisión esté disponible.\"],\"00_HDq\":[\"Tipo de política\"],\"00cteM\":[\"Este campo no debe superar los \",[\"0\"],\" caracteres\"],\"01Zgfk\":[\"Tiempo de espera agotado\"],\"02FGuS\":[\"Crear nuevo grupo\"],\"02ePaq\":[\"Seleccionar \",[\"0\"]],\"02o5A-\":[\"Crear nuevo proyecto\"],\"05TJDT\":[\"Haga clic para ver los detalles de la tarea\"],\"06Veq8\":[\"Sincronizar proyecto\"],\"08IuMU\":[\"Anular variables\"],\"08dX0o\":[\"Grafana\"],\"0Ca6Bi\":[[\"dateStr\"],\" por <0>\",[\"username\"],\"\"],\"0DRyjU\":[\"Handlers ejecutándose\"],\"0JjrTf\":[\"Se produjo un error al analizar el archivo. Compruebe el formato del archivo e inténtelo de nuevo.\"],\"0K8MzY\":[\"Este campo no debe superar los \",[\"max\"],\" caracteres\"],\"0LUj25\":[\"Eliminar grupo de instancias\"],\"0MFMD5\":[\"No se ha podido ejecutar una comprobación de estado en una o más instancias.\"],\"0Ohn6b\":[\"Ejecutado por\"],\"0PUWHV\":[\"Frecuencia de repetición\"],\"0Pz6gk\":[\"Variables utilizadas para configurar el plugin de inventario construido. Para obtener una descripción detallada de cómo configurar este complemento, consulte\"],\"0QsHpG\":[\"Esquema de entrada que define un conjunto de campos ordenados para ese tipo.\"],\"0Tddvz\":[\"La URL base del servidor de Grafana: el punto de acceso\\n /api/annotations se agregará automáticamente a la URL base\\n de Grafana.\"],\"0WL4_U\":[\"Eliminar todos los nodos\"],\"0WP27-\":[\"Esperando la salida de la tarea…\"],\"0YAsXQ\":[\"Grupo de contenedores\"],\"0ZdD1M\":[[\"0\",\"plural\",{\"one\":[\"You cannot cancel the following job because it is not running:\"],\"other\":[\"You cannot cancel the following jobs because they are not running:\"]}]],\"0ZqUtV\":[\"Para obtener más información, consulte la\"],\"0_ru-E\":[\"Copiar inventario\"],\"0cqIWs\":[\"Contraseña de autenticación básica\"],\"0d48JM\":[\"Opciones de selección múltiple\"],\"0eOoxo\":[\"Seleccione una fecha/hora de finalización que sea posterior a la fecha/hora de inicio.\"],\"0f7U0k\":[\"Mié\"],\"0gPQCa\":[\"Siempre\"],\"0lvFRT\":[\"No puede cambiar el tipo de credencial de una credencial, ya que puede romper la funcionalidad de los recursos que la utilizan.\"],\"0pC_y6\":[\"Evento\"],\"0qOaMt\":[\"Se ha producido un error en la solicitud para probar esta credencial y metadatos.\"],\"0rVzXl\":[\"Configuración de Google OAuth 2\"],\"0sNe72\":[\"Agregar roles\"],\"0tNXE8\":[\"COLOCAR\"],\"0tfvhT\":[\"Capacidad utilizada del grupo de instancias\"],\"0wlLcO\":[\"Establecer cuántos días de datos debería ser retenidos.\"],\"0zpgxV\":[\"Opciones\"],\"0zs8j5\":[\"Número máximo de veces que el trabajo de este nodo se reintenta automáticamente tras un fallo antes de seguir sus rutas de fallo. Los trabajos cancelados nunca se reintentan.\"],\"1-4GhF\":[\"Cancelar sincronización\"],\"10B0do\":[\"No se pudo enviar la notificación de prueba.\"],\"1280Tg\":[\"Nombre de Host\"],\"12j25_\":[\"Clave pública GPG\"],\"12kemj\":[\"URL de fuente de control\"],\"14KOyT\":[\"source ./ vars\"],\"15GcuU\":[\"Ver la configuración de la autenticación de varios\"],\"17TKua\":[\"Grupo de instancias\"],\"19zgn6\":[\"Tipo de instancia\"],\"1A3EXy\":[\"Expandir\"],\"1C5cFl\":[\"Siguiente ejecución\"],\"1Ey8My\":[\"Dirección IP\"],\"1F0IaT\":[\"Ver programaciones\"],\"1HMy92\":[\"JSON:\"],\"1I6UoR\":[\"Vistas\"],\"1L3KBl\":[\"Crear un nuevo tipo de credencial\"],\"1LRwvx\":[\"Si desea que la fuente de inventario se actualice al ejecutar, haga clic en Actualizar al ejecutar y también vaya a \"],\"1Ltnvs\":[\"Agregar nodo\"],\"1PQRWr\":[\"Hora de inicio\"],\"1QRNEs\":[\"Frecuencia de repetición\"],\"1RYzKu\":[\"Volver a ejecutar desde el nodo cancelado\"],\"1UJu6o\":[\"Seleccione un número de día entre 1 y 31.\"],\"1UjRxI\":[\"Tiempo de espera de la caché\"],\"1UzENP\":[\"No\"],\"1V4Yvg\":[\"Sistemas varios\"],\"1WlWk7\":[\"Ver detalles del host del inventario\"],\"1WsB5U\":[\"No pudimos localizar las suscripciones asociadas a esta cuenta.\"],\"1ZaQUH\":[\"Apellido\"],\"1_gTC7\":[\"No se pueden seleccionar varias credenciales con el mismo ID de Vault, ya que anulará automáticamente la selección de la otra con el mismo ID de Vault.\"],\"1abtmx\":[\"Promover grupos secundarios y hosts\"],\"1ahgeV\":[\"Google OAuth2\"],\"1cT4RU\":[\"Actualización de SCM\"],\"1fO-kL\":[\"No se pudo alternar la instancia.\"],\"1hCxP5\":[\"No se pudo eliminar uno o más grupos de instancias.\"],\"1kwHxg\":[\"Métricas\"],\"1n50PN\":[\"Pestaña JSON\"],\"1qd4yi\":[\"Ingrese variables con sintaxis JSON o YAML. Use el botón de selección para alternar entre los dos.\"],\"1rDBnp\":[\"Diferencias del fichero\"],\"1w2SCz\":[\"Elegir un tipo de fuente de control\"],\"1xdJD7\":[\"Ajustar a la pantalla\"],\"1yHVE-\":[\"Añadiendo\"],\"2-iKER\":[\"Ver el flujo de actividad\"],\"2B_v7Y\":[\"Porcentaje de instancias de políticas\"],\"2CTKOa\":[\"Volver a Proyectos\"],\"2FB7vv\":[\"Seleccione una organización antes de modificar el entorno de ejecución predeterminado.\"],\"2FeJcd\":[\"Elemento omitido\"],\"2H9REH\":[\"Búsqueda difusa en el campo del nombre.\"],\"2JV4mx\":[\"Los grupos de instancias a los que pertenece esta instancia.\"],\"2KlsJC\":[\"Puede aplicar una serie de variables posibles en el\\n mensaje. Para obtener más información, consulte la\"],\"2MSEkM\":[\"No se pudo eliminar el inventario.\"],\"2a07Yj\":[\"Copiar plantilla de notificaciones\"],\"2ekvhy\":[\"Frecuencia de las excepciones\"],\"2gDkH_\":[\"Por favor, introduzca un número de ocurrencias.\"],\"2iyx-2\":[\"Documentación del controlador Ansible.\"],\"2n41Wr\":[\"Agregar plantilla de flujo de trabajo\"],\"2nsB1O\":[\"Volver a Tokens\"],\"2ocqzE\":[\"Webhooks: Habilitar webhook para esta plantilla.\"],\"2ooR7j\":[\"LDAP 5\"],\"2p6eVk\":[\"Modal de búsqueda\"],\"2pNIxF\":[\"Nodos de flujo de trabajo\"],\"2pgi-L\":[\"Indica si un host está disponible y debe incluirse en la ejecución de\\n trabajos. Para los hosts que forman parte de un inventario externo, esto puede\\n restablecerse mediante el proceso de sincronización del inventario.\"],\"2qfwJn\":[\"Anular\"],\"2r06bV\":[\"HipChat\"],\"2rvMKg\":[\"Actualizar token\"],\"2w-INk\":[\"Detalles del host\"],\"2zs1kI\":[\"Este valor no coincide con la contraseña introducida anteriormente. Confirme la contraseña.\"],\"3-SkJA\":[\"¿Disociar grupo del host?\"],\"3-sY1p\":[\"Números SMS del destinatario\"],\"328Yxp\":[\"Rama de fuente de control\"],\"38Or-7\":[\"Pestañas\"],\"38VIWI\":[\"Ver detalles de la plantilla\"],\"39y5bn\":[\"Viernes\"],\"3A9ATS\":[\"No se encontró el entorno de ejecución.\"],\"3AOZPn\":[\"Ver y editar opciones de depuración\"],\"3FUtN9\":[\"Sincronización de fuentes de inventario\"],\"3IVQDN\":[\"Esta programación utiliza reglas complejas que no son compatibles con la\\n interfaz de usuario. Utilice la API para gestionar esta programación.\"],\"3JjdaA\":[\"Ejecutar\"],\"3JnvxN\":[\"Elija los recursos que recibirán nuevos roles. Podrá seleccionar los roles que se aplicarán en el siguiente paso. Tenga en cuenta que los recursos elegidos aquí recibirán todos los roles elegidos en el siguiente paso.\"],\"3JzsDb\":[\"Mayo\"],\"3LoUor\":[\"Canales destinatarios\"],\"3LqMX2\":[\"CIQ Ascender Automation Platform\"],\"3PAU4M\":[\"Año\"],\"3PZalO\":[\"No se encontró el host.\"],\"3Rke7L\":[\"1 (Información)\"],\"3WGwSW\":[\"Elimine el repositorio local en su totalidad antes de realizar una actualización. Según el tamaño del repositorio, esto puede aumentar significativamente la cantidad de tiempo necesario para completar una actualización.\"],\"3YSVMq\":[\"Error de eliminación\"],\"3aIe4Y\":[\"Crear nueva organización\"],\"3b24mY\":[\"CPU \",[\"0\"]],\"3fG1e7\":[\"Tiempo transcurrido\"],\"3fMc43\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" año\"],\"other\":[\"#\",\" años\"]}]],\"3hCQhK\":[\"Complementos de inventario\"],\"3hvUyZ\":[\"nueva elección\"],\"3mTiHp\":[\"No se pudo copiar la plantilla.\"],\"3pBNb0\":[\"Descargar salida\"],\"3sFvGC\":[\"Establezca la instancia habilitada o deshabilitada. Si se desactiva, los trabajos no se asignarán a esta instancia.\"],\"3sXZ-V\":[\"y haga clic en Actualizar revisión en Launch.\"],\"3uAM50\":[\"Acuerdo de licencia de usuario final\"],\"3wPA9L\":[\"Categoría de la configuración\"],\"3y7qi5\":[\"Volver a Credenciales\"],\"3yy_k-\":[\"Ver todos los equipos.\"],\"4-RjdJ\":[[\"interval\"],\" year\"],\"40lLFI\":[\"Ir a la página siguiente\"],\"41KRqu\":[\"Contraseñas de credenciales\"],\"45BzQy\":[\"Las comprobaciones de estado son tareas asincrónicas. Consulte la\"],\"45cx0B\":[\"Cancelar modificación de la suscripción\"],\"45gLaI\":[\"Preguntar por las credenciales al ejecutar.\"],\"46SUtl\":[\"Editar grupo\"],\"479kuh\":[\"Copie la revisión completa al portapapeles.\"],\"47e97a\":[\"Reintentos máximos\"],\"4BITzH\":[\"Error:\"],\"4LzLLz\":[\"Ver todas las configuraciones\"],\"4Q4HZp\":[\"No se ha encontrado \",[\"pluralizedItemName\"]],\"4QXpWJ\":[\"agotado\"],\"4QfhOe\":[\"Algunos modificadores de búsqueda como not__ y __search no se admiten en los filtros de host del Inventario Inteligente. Elimínelos para crear un nuevo inventario inteligente con este filtro.\"],\"4S2cNE\":[\"Ver la configuración del registro\"],\"4Wt2Ty\":[\"Seleccionar elementos de la lista\"],\"4_ESDh\":[\"Este campo debe ser una expresión regular\"],\"4_xiC_\":[\"Artefactos\"],\"4alXD6\":[\"Número máximo de trabajos que se ejecutarán simultáneamente en este grupo.\\n Cero significa que no se aplicará ningún límite.\"],\"4bhLaA\":[\"Seleccionar un tipo de credencial\"],\"4cWhxn\":[\"Controla si esta instancia está gestionada por la directiva o no. Si está habilitada, la instancia estará disponible para la asignación automática y la desasignación de grupos de instancias en función de las reglas de la política.\"],\"4dQFvz\":[\"Finalizado\"],\"4g1rw0\":[\"La cantidad de tiempo (en segundos) antes de que la notificación\\n de correo electrónico deje de intentar conectarse con el host\\n y caduque el tiempo de espera. Va de 1 a 120 segundos.\"],\"4hPyPF\":[\"Guardar y salir\"],\"4j2eOR\":[\"Seleccione el inventario al que pertenecerá este host.\"],\"4jnim6\":[\"Seleccione un servicio de webhook.\"],\"4km-Vu\":[\"No cumple con los requisitos\"],\"4kw_um\":[[\"interval\"],\" minute\"],\"4lCMxZ\":[\"Explicación del fallo:\"],\"4lgLew\":[\"Febrero\"],\"4mQyZf\":[\"Los servicios de webhook pueden usar esto como un secreto compartido.\"],\"4nLbTY\":[\"Ver todas las tareas de gestión\"],\"4o_cFL\":[\"Eliminar aplicación\"],\"4s0pSB\":[\"Proporcione un patrón de host para restringir aún más la lista de hosts que serán gestionados o afectados por el playbook. Se permiten varios patrones. Consulte la documentación de Ansible para obtener más información y ejemplos sobre patrones.\"],\"4uVADI\":[\"Clave secreta del cliente\"],\"4vFDZV\":[\"Crear nueva plantilla de trabajo\"],\"4vkbaA\":[\"El proyecto del que proviene esta actualización de inventario.\"],\"4yGeRr\":[\"Sincronización de inventario\"],\"4zue79\":[\"Copyright\"],\"5-qYGv\":[\"Editar instancia\"],\"54_SyV\":[[\"0\",\"plural\",{\"one\":[\"You do not have permission to cancel the following job:\"],\"other\":[\"You do not have permission to cancel the following jobs:\"]}]],\"56fd5u\":[\"¿Está seguro de que desea eliminar todos los nodos de este flujo de trabajo?\"],\"5B77Dm\":[\"Última tarea\"],\"5F5F4w\":[\"Aprobación del flujo de trabajo\"],\"5IhYoj\":[\"Tipos de nodo\"],\"5K7kGO\":[\"documentación\"],\"5KMGbn\":[\"¿Está seguro de que desea cancelar esta tarea?\"],\"5RMgCw\":[\"Servidores\"],\"5S4tZv\":[\"La frecuencia no coincide con un valor esperado\"],\"5Sa1Ss\":[\"Correo electrónico\"],\"5TnQp6\":[\"Tipo de trabajo\"],\"5WFDw4\":[\"Agrupar solo por\"],\"5X2wog\":[\"Hubo un problema al iniciar sesión. Inténtelo de nuevo.\"],\"5_vHPm\":[\"Ver la configuración de TACACS+\"],\"5ajaW1\":[\"Ejecutar cuando un artefacto del nodo primario cumpla la condición.\"],\"5dJK4M\":[\"Roles\"],\"5eHyY-\":[\"Probar notificación\"],\"5eL2KN\":[\"URL destino\"],\"5lqXf5\":[\"Revertir a los valores predeterminados de fábrica.\"],\"5n_soj\":[\"Preguntar por el número de segmentos de trabajo al ejecutar.\"],\"5p6-Mk\":[\"Filtrar por trabajos fallidos\"],\"5pDe2G\":[\"Remove \",[\"0\"],\" Access\"],\"5pa4JT\":[\"Playbook iniciado\"],\"5qauVA\":[\"Esta plantilla de trabajo del flujo de trabajo está siendo utilizada por otros recursos. ¿Está seguro de que desea eliminarla?\"],\"5vA8H0\":[\"Ningún servidor corresponde\"],\"5xzS8Q\":[\"Token que garantiza que se trata de un archivo de origen\\n para el plugin ‘construido’.\"],\"5y9wkB\":[\"Volver a Notificaciones\"],\"6-OdGi\":[\"Protocolo\"],\"6-ptnU\":[\"opción a\"],\"623gDt\":[\"No se pudo eliminar el usuario.\"],\"63C4Yo\":[\"Grupo de contenedores\"],\"66Zq7T\":[\"Guardar los cambios del enlace\"],\"66qTfS\":[\"Semana pasada\"],\"679-JR\":[\"Búsqueda difusa en los campos id, nombre o descripción.\"],\"68OTAn\":[\"This intance is currently being used by other resources. Are you sure you want to delete it?\"],\"68h6WG\":[\"Ejecutar tarea de gestión\"],\"69aXwM\":[\"Agregar grupo existente\"],\"69zuwn\":[\"Deprovisioning these instances could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"6ASSBg\":[\"LDAP 4\"],\"6BzDub\":[\"Eliminación Temporal\"],\"6GBt0m\":[\"Metadatos\"],\"6HLTEb\":[\"Filtrar...\"],\"6J-cs1\":[\"Tiempo de espera en segundos\"],\"6KhU4s\":[\"¿Está seguro de que desea salir del Creador de flujo de trabajo sin guardar los cambios?\"],\"6LTyxl\":[\"Revisión\"],\"6PmtyP\":[\"Alternar leyenda\"],\"6RDwJM\":[\"Tokens\"],\"6UYTy8\":[\"Minuto\"],\"6V3Ea3\":[\"Copiado\"],\"6WwHL3\":[\"Nodos totales\"],\"6XOI1I\":[\"Crear nuevo inventario federado\"],\"6XgEPi\":[\"Hora\"],\"6YtxFj\":[\"Nombre\"],\"6Z5ACo\":[\"Clave de configuración del servidor\"],\"6bpC9t\":[\"Nodo fallido\"],\"6cylr_\":[\"Stdout\"],\"6f961q\":[\"Solo si falta\"],\"6hEnxG\":[\"Habilitar elevación de privilegios\"],\"6j6_0F\":[\"Recursos relacionados\"],\"6kpN96\":[\"No se pudo eliminar la notificación.\"],\"6lGV3K\":[\"Mostrar menos\"],\"6msU0q\":[\"No se pudo eliminar una o más tareas.\"],\"6nsio_\":[\"Ejecutar comando\"],\"6oNH0E\":[\"guía de configuración del plugin.\"],\"6pMgh_\":[\"Ver la configuración de LDAP\"],\"6rSKy6\":[\"Seleccione los inventarios de origen para este inventario federado. Cuando se lanza un trabajo, los hosts se enrutarán automáticamente al grupo de instancias de cada inventario de origen.\"],\"6uvnKV\":[\"Servicio API/Clave de integración\"],\"6vrz8I\":[\"No se pudo cancelar una o varias tareas.\"],\"6zGHNM\":[\"Hosts restantes\"],\"74MNbw\":[\"Ctrl IQ, Inc.\"],\"764xeZ\":[\"No se pudo actualizar la encuesta.\"],\"7Bj3x9\":[\"Fallido\"],\"7ElOdS\":[\"ID del panel de control\"],\"7IUE9q\":[\"Variables de fuente\"],\"7JF9w9\":[\"Agregar pregunta\"],\"7L01XJ\":[\"Acciones\"],\"7O5TcN\":[\"Resumen del evento no disponible.\"],\"7PzzBU\":[\"User\"],\"7UZtKb\":[\"La organización propietaria de esta plantilla de trabajo del flujo de trabajo.\"],\"7VETeB\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"],\"7VpPHA\":[\"Confirmar\"],\"7Xk3M1\":[\"Seleccione el proyecto que contiene el playbook que desea que ejecute este trabajo.\"],\"7ZhNzL\":[\"Ir a la primera página\"],\"7b8TOD\":[\"Detalles\"],\"7bDeKc\":[\"Manifiesto de suscripción\"],\"7fJwmW\":[\"Lista de elementos seleccionados.\"],\"7hS02I\":[[\"automatedInstancesCount\"],\" desde \",[\"automatedInstancesSinceDateTime\"]],\"7icMBj\":[\"No hay datos de tareas disponibles.\"],\"7kb4LU\":[\"Aprobado\"],\"7p5kLi\":[\"Panel de control\"],\"7q256R\":[\"Permitir la invalidación de la rama\"],\"7qFdk8\":[\"Modificar credencial\"],\"7sMeHQ\":[\"Clave\"],\"7sNhEz\":[\"Usuario\"],\"7w3QvK\":[\"Cuerpo del mensaje de éxito\"],\"7wgt9A\":[\"Ejecución de playbook\"],\"7zmvk2\":[\"Elemento fallido\"],\"81eOdm\":[\"volver a ejecutar flujo de trabajo\"],\"82O8kJ\":[\"Este proyecto está actualmente en sincronización y no se puede hacer clic hasta que se complete el proceso de sincronización\"],\"82sWFi\":[\"Administración\"],\"84Usx_\":[\"No se pudo eliminar el proyecto.\"],\"87a_t_\":[\"Etiqueta\"],\"88ip8h\":[\"Revertir todo\"],\"8BkLPF\":[\"Lista de URI permitidos, separados por espacios\"],\"8F8HYs\":[\"Seleccione su suscripción a Ansible Automation Platform para utilizarla.\"],\"8H3Igx\":[[\"interval\"],\" month\"],\"8Oef5v\":[\"Ejemplos de URL para el control de código fuente GIT incluyen:\"],\"8XM8GW\":[\"No se pudieron asignar correctamente los roles\"],\"8Z236a\":[\"logotipo de la marca\"],\"8ZsakT\":[\"Contraseña\"],\"8_wZUD\":[\"Roles de equipo\"],\"8d57h8\":[\"Ver la configuración de sistemas varios\"],\"8gCRbU\":[\"Otros avisos\"],\"8gaTqG\":[\"Detalles del tipo\"],\"8kDNpI\":[\"Resultado del nodo primario necesario antes de evaluar la condición.\"],\"8l9yyw\":[\"Plantilla de trabajo\"],\"8lEjQX\":[\"Instalar el paquete\"],\"8lb4Do\":[\"Borrar suscripción\"],\"8oiwP_\":[\"Configuración de entrada\"],\"8p_xVT\":[[\"0\",\"plural\",{\"one\":[[\"1\"]],\"other\":[[\"2\"]]}]],\"8u5g0S\":[\"Eliminar inventario inteligente\"],\"8vETh9\":[\"Mostrar\"],\"8wxHsh\":[\"Clave de webhook para esta plantilla de trabajo del flujo de trabajo.\"],\"8yd882\":[\"No se pudo disociar uno o más equipos.\"],\"8zGO4o\":[\"El campo coincide con la expresión regular dada.\"],\"8zoIOi\":[[\"0\",\"plural\",{\"one\":[\"This credential type is currently being used by some credentials and cannot be deleted.\"],\"other\":[\"Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?\"]}]],\"8zvzWO\":[\"Permita ejecuciones simultáneas de esta plantilla de trabajo del flujo de trabajo.\"],\"9-wVFp\":[\"Ver detalles del inventario federado\"],\"91UHfE\":[\"Actualización del inventario\"],\"91lyAf\":[\"Tareas concurrentes\"],\"933cZy\":[\"Configuración de sistemas varios\"],\"954HqS\":[\"¿Cuándo se automatizó por primera vez el anfitrión?\"],\"95p1BK\":[\"Crear nuevo usuario\"],\"98Qtlu\":[\"Cada vez que se ejecuta un trabajo utilizando este proyecto, actualice la revisión del proyecto antes de iniciar el trabajo.\"],\"991Df5\":[\"a new webhook key will be generated on save.\"],\"99qC6z\":[[\"interval\"],\" week\"],\"9Ah95g\":[[\"0\",\"plural\",{\"one\":[\"Este inventario está siendo utilizado actualmente por algunas plantillas. ¿Está seguro de que desea eliminarlo?\"],\"other\":[\"Eliminar estos inventarios podría afectar a algunas plantillas que dependen de ellos. ¿Está seguro de que desea eliminarlos de todos modos?\"]}]],\"9BTNYL\":[\"Expected at least one of client_email, project_id or private_key to be present in the file.\"],\"9BpfLa\":[\"Seleccionar etiquetas\"],\"9DOXq6\":[\"Ver todas las plantillas.\"],\"9DugxF\":[\"Tipo de suscripción\"],\"9HhFQ8\":[\"Devuelve resultados que tienen valores distintos a este así como otros filtros.\"],\"9L1ngr\":[\"Tareas totales\"],\"9N-4tQ\":[\"Tipo de credencial\"],\"9NyAH9\":[\"Omitido\"],\"9PB0sF\":[\"IRC\"],\"9Rsklx\":[\"Quitar todos los nodos\"],\"9Tmez1\":[\"Ver detalles de la instancia\"],\"9UuGMQ\":[\"Eliminación pendiente\"],\"9V-Un3\":[\"Habilitar almacenamiento de eventos\"],\"9VMv7k\":[\"Inventario construido\"],\"9Wm-J4\":[\"Alternar contraseña\"],\"9XA1Rs\":[\"El proyecto se está sincronizando actualmente y la revisión estará disponible una vez que se haya completado la sincronización.\"],\"9Y3BQE\":[\"Eliminar organización\"],\"9YSB0Z\":[\"Falta un inventario en esta programación\"],\"9ZnrIx\":[\"Ver y modificar su información de suscripción\"],\"9fRa7M\":[\"Seleccionar una fila para denegar\"],\"9hmrEp\":[\"Volver a ejecutar el\"],\"9iX1S0\":[\"Esta acción eliminará la siguiente instancia y es posible que deba volver a ejecutar el paquete de instalación para cualquier instancia a la que se haya conectado anteriormente:\"],\"9jfn-S\":[\"No se expande\"],\"9l0RZY\":[\"Haga clic en un nodo disponible para crear un nuevo enlace. Haga clic fuera del gráfico para cancelar.\"],\"9m7jms\":[\"Inventarios de origen cuyos hosts se enrutarán a sus respectivos grupos de instancias cuando se lance un trabajo contra este inventario federado.\"],\"9mfJJf\":[\"Plantillas de trabajo\"],\"9nhhVW\":[\"páginas\"],\"9nypdt\":[\"Restaurar el valor inicial.\"],\"9odS2n\":[\"Servidores fallidos\"],\"9og-0c\":[\"Este entorno de ejecución está siendo utilizado por otros recursos. ¿Está seguro de que desea eliminarlo?\"],\"9rFgm2\":[\"Capacidad de suscripción\"],\"9rvzNA\":[\"Modal de asociación\"],\"9td1Wl\":[\"Comprobar\"],\"9uI_rE\":[\"Deshacer\"],\"9u_dDE\":[\"Recuento de hosts inaccesibles\"],\"9uxVdR\":[\"Credencial de fuente de control\"],\"9wvWk3\":[\"Esta entrada de inventario construida \\n crea un grupo para ambas categorías y utiliza \\n el límite (patrón de host) para devolver solo los hosts que \\n están en la intersección de esos dos grupos.\"],\"A1a8Ku\":[\"Error de ejecución de la tarea de gestión\"],\"A1taO8\":[\"Buscar\"],\"A3o0Xd\":[\"Seleccione los grupos de instancias en los que se ejecutará\\nesta organización.\"],\"A6paZd\":[\"Agregar inventario federado\"],\"A8lIi2\":[\"Sincronizar para revisión\"],\"A9-PUr\":[\"Solicitudes de chequeo enviadas. Por favor, espere y recargue la página.\"],\"AA2ASV\":[\"El entorno de ejecución se copió correctamente\"],\"ADVQ46\":[\"Iniciar sesión\"],\"ARAUFe\":[\"Eliminar inventario\"],\"AV22aU\":[\"Se produjo un error...\"],\"AWOSPo\":[\"Acercar\"],\"Ab1y_G\":[\"Cancelar sincronización de origen de inventario construido\"],\"AgTBbk\":[[\"intervalValue\",\"plural\",{\"one\":[\"week\"],\"other\":[\"weeks\"]}]],\"AgTuXC\":[\"No tiene permiso para borrar \",[\"pluralizedItemName\"],\": \",[\"itemsUnableToDelete\"]],\"Ai2U7L\":[\"Servidor\"],\"Aj3on1\":[\"Habilitar registro externo\"],\"AoCBvp\":[\"Fracción de tareas\"],\"Apl-Vf\":[\"Manifiesto de suscripción de Red Hat\"],\"Apv-R1\":[\"Si está listo para actualizar o renovar, <0>póngase en contacto con nosotros.\"],\"AqdlyH\":[\"Las plantillas de trabajo con credenciales que solicitan contraseñas no pueden seleccionarse al crear o modificar nodos\"],\"ArtxnQ\":[\"Refspec de fuente de control\"],\"AsLVdj\":[\"Use un canal de IRC o nombre de usuario por línea. El símbolo\\n numeral (#) para canales y el símbolo arroba (@) para usuarios no son\\n necesarios.\"],\"AwUsnG\":[\"Instancias\"],\"AxC8wb\":[\"Copiar salida\"],\"AxPAXW\":[\"No se encontraron resultados\"],\"Axi4f8\":[\"Dragging item \",[\"id\"],\". Item with index \",[\"oldIndex\"],\" in now \",[\"newIndex\"],\".\"],\"Azw0EZ\":[\"Crear nuevo inventario inteligente\"],\"B0HFJ8\":[\"No se pudo disociar uno o más hosts.\"],\"B0P3qo\":[\"ID DE TAREA:\"],\"B0dbFG\":[\"Eliminar planificación\"],\"B2Zb_F\":[\"JSON\"],\"B3ZzHO\":[\"Último automatizado\"],\"B4WcU9\":[\"Aprobado por \",[\"0\"],\" - \",[\"1\"]],\"B7FU4J\":[\"Host iniciado\"],\"B8bpYS\":[\"Cargue un manifiesto de suscripción de Red Hat que contenga su suscripción. Para generar su manifiesto de suscripción, vaya a las <0>asignaciones de suscripción en el Portal del Cliente de Red Hat.\"],\"BAmn8K\":[\"Seleccionar un tipo de recurso\"],\"BERhj_\":[\"Mensaje de éxito\"],\"BGNDgh\":[\"Alias del nodo\"],\"BH7upP\":[\"PUBLICAR\"],\"BIJ2_m\":[\"El entorno de ejecución que se utilizará para las tareas dentro de esta organización. Se utilizará como alternativa cuando no se haya asignado explícitamente un entorno de ejecución a nivel de proyecto, plantilla de trabajo o flujo de trabajo.\"],\"BNDplB\":[\"La plantilla se copió correctamente\"],\"BWTzAb\":[\"Manual\"],\"BaPk6N\":[\"Ruta base utilizada para localizar los playbooks. Los directorios encontrados dentro de esta ruta se mostrarán en la lista desplegable del directorio de playbooks. Juntos, la ruta base y el directorio de playbook seleccionado proporcionan la ruta completa utilizada para localizar los playbooks.\"],\"BfYq0G\":[\"Tipo de fuente de control\"],\"Bg7M6U\":[\"No se encontraron resultados\"],\"Bl2Djq\":[\"Ver tokens\"],\"Bl2eoO\":[\"CIFRADO\"],\"BskWMl\":[\"Servidor inaccesible\"],\"BsrdSv\":[\"Introduzca las variables de inventario utilizando la sintaxis JSON o YAML. Utilice el botón de opción para alternar entre los dos. Consulte la documentación de Ansible Controller, por ejemplo, sintaxis.\"],\"Bv8zdm\":[\"Existencias de insumos\"],\"BwJKBw\":[\"de\"],\"Bz7WRU\":[[\"0\",\"plural\",{\"one\":[\"Introduzca un número de teléfono válido.\"],\"other\":[\"Introduzca números de teléfono válidos.\"]}]],\"BzEFor\":[\"o\"],\"BzbzJb\":[\"Eventos\"],\"BzfzPK\":[\"Elementos\"],\"C-gr_n\":[\"Configuración de Azure AD\"],\"C0sUgI\":[\"Crear nuevo inventario\"],\"C2KEkR\":[\"Contraseña de SSH\"],\"C3Q1LZ\":[\"Ver la configuración de OIDC\"],\"C4C-qQ\":[\"Detalles de la programación\"],\"C6GAUT\":[\"Expandido\"],\"C7dP40\":[\"No se pudo eliminar \",[\"0\"],\".\"],\"C7s60U\":[\"Detalles de Webhook\"],\"CAL6E9\":[\"Equipos\"],\"CDOlBM\":[\"ID de instancia\"],\"CE-M2e\":[\"Información\"],\"CGOseh\":[\"Detalles de la programación\"],\"CGZgZY\":[\"Seleccionar una fila para disociar\"],\"CG_9l6\":[\"LDAP 1\"],\"CGwKKr\":[[\"0\",\"plural\",{\"one\":[\"¿Eliminar grupo?\"],\"other\":[\"¿Eliminar grupos?\"]}]],\"CIEoqM\":[\"Nombre de la instancia\"],\"CKc7jz\":[\"Modal de detalles del host\"],\"CL7QiF\":[\"Escriba la respuesta y marque la casilla de verificación a la derecha para seleccionar la respuesta predeterminada.\"],\"CLTHnk\":[\"Orden de las preguntas de la encuesta\"],\"CMmwQ-\":[\"Fecha de inicio desconocida\"],\"CNZ5h9\":[\"Período de conservación de datos\"],\"CS8u6E\":[\"Habilitar Webhook\"],\"CSvk3a\":[\"El número asociado al \\\"Servicio de\\n mensajería\\\" en Twilio con el formato +18005550199.\"],\"CW11B-\":[\"Mínimo\"],\"CXJHPJ\":[\"Modificado por (nombre de usuario)\"],\"CZDqWd\":[\"La revisión del proyecto está actualmente desactualizada. Actualice para obtener la revisión más reciente.\"],\"CZg9aH\":[\"Seleccionar hosts\"],\"C_Lu89\":[\"Ingrese entradas a través de la sintaxis JSON o YAML. Consulte la documentación de Ansible Tower para ver la sintaxis de ejemplo.\"],\"C_NnqT\":[\"Crear nuevo host\"],\"Cc8jO8\":[\"Seleccione la credencial que desea utilizar cuando acceda a los hosts remotos para ejecutar el comando. Elija una credencial que contenga el nombre de usuario y la clave SSH o la contraseña que Ansible necesitará para iniciar sesión en los hosts remotos.\"],\"CcKMRv\":[\"Esta plantilla de trabajo está siendo utilizada por otros recursos. ¿Está seguro de que desea eliminarla?\"],\"CczdmZ\":[\"Ver todas las credenciales.\"],\"CdGRti\":[\"Ver todas las plantillas de notificación.\"],\"Ce28nP\":[\"<0>Nota: Las instancias pueden volver a asociarse con este grupo de instancias si son administradas por <1> reglas de política.\"],\"Cev3QF\":[\"Tiempo de espera en minutos\"],\"ChTa9Z\":[[\"intervalValue\",\"plural\",{\"one\":[\"hour\"],\"other\":[\"hours\"]}]],\"CoPs3y\":[\"Este flujo de trabajo no tiene ningún nodo configurado.\"],\"CoTqdo\":[\"\\n Note that you may still see the group in the list after\\n disassociating if the host is also a member of that group’s\\n children. This list shows all groups the host is associated\\n with directly and indirectly.\\n \"],\"Coyxic\":[\"Haga clic en este botón para verificar la conexión con el sistema de gestión de claves secretas con la credencial seleccionada y las entradas especificadas.\"],\"Cs0oSA\":[\"Ver configuración\"],\"Csvbqs\":[\"ver los documentos del plugin de inventario construido aquí.\"],\"Cx8SDk\":[\"Actualizar expiración del token\"],\"D-NlUC\":[\"Sistema\"],\"D1JWCq\":[[\"interval\"],\" minutes\"],\"D4euEu\":[\"Varios ajustes de autenticación\"],\"D89zck\":[\"Dom\"],\"DBBU2q\":[\"Debe seleccionar al menos un valor para este campo.\"],\"DBC3t5\":[\"Domingo\"],\"DBHTm_\":[\"Agosto\"],\"DFNPK8\":[\"Comprobación de estado\"],\"DGZ08x\":[\"Sincronizar todo\"],\"DHf0mx\":[\"Crear nuevo grupo de instancias\"],\"DHrOgD\":[\"Actualización del proyecto\"],\"DIKUI7\":[\"Longitud mínima\"],\"DIX823\":[\"Este campo debe ser un número y tener un valor menor que \",[\"max\"]],\"DJIazz\":[\"Aprobado con éxito\"],\"DNLiC8\":[\"Revertir configuración\"],\"DNqHaO\":[\"Esta tabla proporciona algunos parámetros útiles del plugin de\\n inventario construido. Para la lista completa de parámetros \"],\"DPfwMq\":[\"Finalizado\"],\"DV-Xbw\":[\"Idioma preferido\"],\"DVIUId\":[\"Anulaciones de avisos\"],\"DZNGtI\":[\"Resultados de la extracción del proyecto\"],\"D_oBkC\":[\"Equipo GitHub\"],\"DdlJTq\":[\"Coincidencia exacta (búsqueda predeterminada si no se especifica).\"],\"De2WsK\":[\"Esta acción disociará todos los roles de este usuario de los equipos seleccionados.\"],\"DhSza7\":[\"Nombre del controlador\"],\"DnkUe2\":[\"Elegir un servicio de Webhook\"],\"DqnAO4\":[\"Primer automatizado\"],\"Du6bPw\":[\"Dirección\"],\"Dug0C-\":[\"Después del número de ocurrencias\"],\"DyYigF\":[\"Configuración de TACACS+\"],\"Dz7fsq\":[\"Acercar\"],\"E6Z4zF\":[\"Formato de archivo no válido. Cargue un manifiesto de suscripción de Red Hat válido.\"],\"E86aJB\":[\"Disociar rol\"],\"E9wN_Q\":[\"Última comprobación de estado\"],\"EH6-2h\":[\"Vista de topología\"],\"EHu0x2\":[\"Sincronización\"],\"EIBcgD\":[\"Extraído de un proyecto\"],\"EIkRy0\":[\"Canales destinatarios\"],\"EJQLCT\":[\"No se pudo eliminar la plantilla de trabajo del flujo de trabajo.\"],\"ENDbv1\":[\"Ver todos los hosts.\"],\"ENRWp9\":[\"Etiquetas para la anotación\"],\"ENyw54\":[\"Grupos relacionados\"],\"EP-eCv\":[\"Configuración de SAML\"],\"EQ-qsg\":[\"Plantillas de trabajo del flujo de trabajo\"],\"ES0WE_\":[\"En el tiempo de espera\"],\"ETUQuF\":[\"No se pudo eliminar uno o más inventarios.\"],\"EWL-h4\":[\"host-description-\",[\"0\"]],\"E_QGRL\":[\"Deshabilitados\"],\"E_tJey\":[\"Entorno de ejecución predeterminado\"],\"Eb5CN1\":[[\"0\",\"plural\",{\"one\":[\"This organization is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"EdQY6l\":[\"Ninguno\"],\"Eff_76\":[\"Huso horario local\"],\"Eg4kGP\":[\"Respuesta(s) por defecto\"],\"EmSrGB\":[\"Antes\"],\"EmfKjn\":[\"Ver la configuración de solución de problemas\"],\"Emna_v\":[\"Modificar fuente\"],\"EmzUsN\":[\"Ver detalles del nodo\"],\"EnC3hS\":[\"Especificaciones del pod personalizado\"],\"EpH7Cd\":[\"Eliminar credencial\"],\"Eq6_y5\":[\"this Tower documentation page\"],\"Eqp9wv\":[\"Ver ejemplos de JSON en\"],\"EwxKbE\":[\"ELIMINADO\"],\"EzwCw7\":[\"Editar pregunta\"],\"F-0xxR\":[\"Faltan recursos de esta plantilla.\"],\"F-LGli\":[\"No tiene permiso para desvincular lo siguiente: \",[\"itemsUnableToDisassociate\"]],\"F-_-es\":[\"Seleccionar instancias\"],\"F0xJYs\":[\"No se pudo actualizar el ajuste de capacidad.\"],\"F2l57P\":[\"Porcentaje mínimo de todas las instancias que se asignarán automáticamente\\n a este grupo cuando se conecten nuevas instancias.\"],\"FCnKmF\":[\"Crear token de usuario\"],\"FD8Y9V\":[\"Haga clic en el icono de un nodo para mostrar los detalles.\"],\"FEr96N\":[\"Tema\"],\"FFv0Vh\":[\"Automatización\"],\"FG2mko\":[\"Seleccionar elementos de la lista\"],\"FGnH0p\":[\"Esto cancelará todos los nodos posteriores de este flujo de trabajo\"],\"FMpB-A\":[\"<0>Nota: Las instancias asociadas manualmente pueden disociarse automáticamente de un grupo de instancias si la instancia es administrada por <1> reglas de política.\"],\"FO7Rwo\":[\"¿Eliminar compañeros?\"],\"FQto51\":[\"Desplegar todas las filas\"],\"FTuS3P\":[\"Este campo no puede estar en blanco\"],\"FV5MUV\":[\"Si los usuarios necesitan comentarios sobre la corrección\\n de sus grupos construidos, es muy recomendable\\n usar strict: true en la configuración del plugin.\"],\"FXmp8Q\":[\"No se pudo asociar el rol\"],\"FYJRCY\":[\"No se pudo eliminar uno o más proyectos.\"],\"F_Nk65\":[\"Descargar salida\"],\"F_c3Jb\":[\"Campo para pasar una especificación personalizada de Kubernetes u OpenShift Pod.\"],\"Failed\":[\"Fallido\"],\"Fanpmj\":[\"Variables solicitadas\"],\"FblMFO\":[\"Seleccionar una métrica\"],\"FclH3w\":[\"Guardado correctamente\"],\"FfGhiE\":[\"Error al guardar el flujo de trabajo\"],\"FhTYgi\":[\"No se pudo eliminar una o más plantillas de trabajo.\"],\"FhhvWu\":[\"Esto cancelará todos los nodos posteriores de este flujo de trabajo.\"],\"FiyMaa\":[\"Elegir un archivo .json\"],\"FjVFQ-\":[\"Elegir un módulo\"],\"FjkaiT\":[\"Alejar\"],\"FkQvI0\":[\"Modificar plantilla\"],\"FlvpdU\":[\"If enabled, show the changes made\\n by Ansible tasks, where supported. This is equivalent to Ansible’s\\n --diff mode.\"],\"FnSb-y\":[\"Cancelar tarea\"],\"FnZzou\":[\"Estado de instancia\"],\"FncCci\":[\"RADIUS\"],\"Fo2bwm\":[\"Actor\"],\"Fo6qAq\":[\"Ejemplos de URL para el control de código fuente Subversion incluyen:\"],\"Fp0Rk4\":[\"Etiquetas opcionales que describen este inventario,\\n como 'dev' o 'test'. Las etiquetas se pueden usar para agrupar y filtrar\\n inventarios y trabajos completados.\"],\"FqW8E0\":[\"Capacidad usada\"],\"FsGJXJ\":[\"Limpiar\"],\"Fx2-x_\":[\"Agregar roles de usuario\"],\"G-jHgL\":[\"Establecer la ruta de origen en\"],\"G2KpGE\":[\"Modificar proyecto\"],\"G3myU-\":[\"Martes\"],\"G768_0\":[\"denegado\"],\"G8jcl6\":[\"Plantillas de notificación\"],\"G9MOps\":[\"Rama para usar en la sincronización del inventario. Se utiliza el valor predeterminado del proyecto si está en blanco. Solo se permite si el campo allow_override del proyecto está establecido en true.\"],\"GDvlUT\":[\"Rol\"],\"GGWsTU\":[\"Cancelado\"],\"GGuAXg\":[\"Ver la configuración de SAML\"],\"GHDQ7i\":[\"No se pudo eliminar una o más organizaciones.\"],\"GJKwN0\":[\"Programaciones\"],\"GLZDtF\":[\"Advertencia del sistema\"],\"GLwo_j\":[\"0 (Advertencia)\"],\"GMaU6_\":[\"Preguntar por el tipo de trabajo al ejecutar.\"],\"GO6s6F\":[\"Configuración de las tareas\"],\"GRwtth\":[\"Ejecutar una comprobación de la salud de la instancia\"],\"GSYBQc\":[\"Servicio API/clave de integración\"],\"GTOcxw\":[\"Modificar usuario\"],\"GU9vaV\":[\"Hosts inaccesibles\"],\"GXiLKo\":[\"Área de texto\"],\"GZIG7_\":[\"El inventario se copió correctamente\"],\"G_Dwo_\":[\"Choose an answer type or format you want as the prompt for the user.\\n Refer to the Ansible Controller Documentation for more additional\\n information about each option.\"],\"GaJLE6\":[\"Inicializado por\"],\"Gd-B71\":[\"No se encontró el tipo de credencial.\"],\"Ge5ecx\":[\"Número máximo de hosts\"],\"GeIrWJ\":[[\"brandName\"],\" Logotipo\"],\"Gf3vm8\":[\"por página\"],\"GiXRTS\":[\"No se pudo eliminar uno o más tokens de usuario.\"],\"Gix1h_\":[\"Ver todas las tareas\"],\"GkbHM9\":[\"Ver todos los proyectos.\"],\"Gn7TK5\":[\"Alternar herramientas\"],\"GpNoVG\":[\"Añada un horario para rellenar esta lista.\"],\"GpWp6E\":[\"Defina características y funciones a nivel del sistema\"],\"GtycJ_\":[\"Tareas\"],\"H0z3JJ\":[\"Estos argumentos se utilizan con el módulo especificado. Puede encontrar información sobre \",[\"moduleName\"],\" haciendo clic \"],\"H1M6a6\":[\"Ver todas las instancias.\"],\"H3kCln\":[\"Nombre de host\"],\"H6jbKn\":[\"Configuración de la interfaz de usuario\"],\"H7OUPr\":[\"Día\"],\"H7e4dl\":[\"Proporcione pares de clave/valor utilizando\\n YAML o JSON.\"],\"H86f9p\":[\"Contraer\"],\"H9MIed\":[\"Nodo de ejecución\"],\"HAi1aX\":[\"Actualizar clave de Webhook\"],\"HAzhV7\":[\"Credenciales\"],\"HDULRt\":[\"Anfitriones únicos\"],\"HGOtRu\":[\"Error en la prueba de notificación.\"],\"HIfMSF\":[\"Opciones de selección múltiple\"],\"HLAK2g\":[\"This action will cancel the following jobs:\"],\"HODq3s\":[\"No se ha podido denegar la aprobación de uno o más flujos de trabajo.\"],\"HQ7e8y\":[\"Versión de exact que no distingue mayúsculas de minúsculas.\"],\"HQ7oEt\":[\"Volver a Equipos\"],\"HUx6pW\":[\"Configuración del inyector\"],\"HajiZl\":[\"Mes\"],\"HbaQks\":[\"Ingrese una dirección de correo electrónico por línea\\npara crear una lista de destinatarios para este tipo de notificación.\"],\"HbnjOn\":[[\"interval\"],\" weeks\"],\"HcznyH\":[\"No se pudieron sincronizar algunas o todas las fuentes de inventario.\"],\"HdE1If\":[\"Canal\"],\"HdErwL\":[\"Selecciona una fila para aprobar\"],\"Hf0QDK\":[\"El proyecto se copió correctamente\"],\"Hhnh8d\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" día\"],\"other\":[\"#\",\" días\"]}]],\"HiTf1W\":[\"Cancelar reversión\"],\"HjxnnB\":[\"seleccionar módulo\"],\"HlhZ5D\":[\"Utilizar TLS\"],\"HoHveO\":[\"Devuelve resultados que satisfacen este filtro así como otros filtros. Este es el tipo de conjunto predeterminado si no se selecciona nada.\"],\"HpK_8d\":[\"Recarga\"],\"Ht1JWm\":[\"Color de notificación\"],\"HwpTx4\":[\"Controle el nivel de salida que producirá ansible mientras se ejecuta el playbook.\"],\"I0LRRn\":[\"Descargar paquete\"],\"I7Epp-\":[\"Detalles de la opción\"],\"I9NouQ\":[\"No se encontraron suscripciones\"],\"ICi4pv\":[\"Automatización\"],\"ICt7Id\":[\"Tipo de nodo\"],\"IEKPuq\":[\"Desplazarse hasta el siguiente\"],\"IGQ11b\":[\"Secreto compartido con el servicio de webhook. El servicio lo utiliza para firmar sus solicitudes, de modo que solo su repositorio pueda desencadenar una sincronización del proyecto. Escriba su propio secreto para gestionarlo como configuración, o deje el campo en blanco para que se genere uno al guardar.\"],\"IJAVcb\":[\"Volver a las aplicaciones\"],\"IKg_un\":[\"Usuarios o canales destinatarios\"],\"IMJYui\":[\"Use un número de teléfono por línea para especificar dónde\\n enrutar los mensajes SMS. Los números de teléfono deben tener el formato +11231231234. Para obtener más información, consulte la documentación de Twilio\"],\"IN6gbp\":[\"Haga clic para cambiar el orden de las preguntas de la encuesta\"],\"IPusY8\":[\"Elimine cualquier modificación local antes de realizar una actualización.\"],\"ISuwrJ\":[\"Modificar entorno de ejecución\"],\"IV0EjT\":[\"Probar notificación\"],\"IVvM2B\":[\"Opciones habilitadas\"],\"IWoF_f\":[\"Mostrar el cuestionario\"],\"IZfe0p\":[\"rama de fuente de control\"],\"Igz8MU\":[\"Últimas dos semanas\"],\"IiR1sT\":[\"Tipo de nodo\"],\"IjDwKK\":[\"tipo de inicio de sesión\"],\"Ikhk0q\":[\"Servicio de webhook para esta plantilla de trabajo del flujo de trabajo.\"],\"Iqm2E5\":[\"Añada \",[\"pluralizedItemName\"],\" para poblar esta lista\"],\"IrC12v\":[\"Aplicación\"],\"IrI9pg\":[\"Fecha de terminación\"],\"IsJ8i6\":[\"Seleccione una rama para el flujo de trabajo. Esta rama se aplica a todos los nodos de la plantilla de trabajo que solicitan una rama.\"],\"IspLSK\":[\"No se encontró la tarea de gestión.\"],\"J0zi6q\":[\"Omitir etiquetas\"],\"J2HgCR\":[\"Red Hat, Inc.\"],\"J2d1y8\":[\"Trabajos exitosos recientes\"],\"J4y7Uk\":[\"Flujo de trabajo cancelado \"],\"J8VgfD\":[\"Comprobar si el campo dado o el objeto relacionado son nulos; se espera un valor booleano.\"],\"JEGlfK\":[\"Iniciado\"],\"JFnJqF\":[\"Tiempo transcurrido\"],\"JFphCp\":[\"3 (Depurar)\"],\"JGvwnU\":[\"Última utilización\"],\"JIX50w\":[\"Impedir el respaldo del grupo de instancias: si está habilitado, la plantilla de trabajo impedirá agregar grupos de instancias de inventario u organización a la lista de grupos de instancias preferidos en los que ejecutarse.\"],\"JJwEMx\":[\"Anfitriones eliminados\"],\"JKZTiL\":[\"Estos son los niveles de detalle para la ejecución de comandos estándar que se admiten.\"],\"JL3si7\":[\"Actualizando\"],\"JLjfEs\":[\"No se pudo eliminar una o más programaciones.\"],\"JOmgRg\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" mes\"],\"other\":[\"#\",\" meses\"]}]],\"JRa4kV\":[\"Sincronice el proyecto cuando se produzca un push en el repositorio de control de código fuente, de modo que la copia local esté siempre actualizada sin sondeo ni actualización en cada inicio de trabajo.\"],\"JTHoCu\":[\"alternar cambios\"],\"JUwjsw\":[\"Select an activity type\"],\"JXgd33\":[\"Volver al panel de control.\"],\"J_2nGO\":[\"The execution environment that will be used for jobs\\n inside of this organization. This will be used a fallback when\\n an execution environment has not been explicitly assigned at the\\n project, job template or workflow level.\"],\"J_DUZt\":[\"Grupos de instancias\"],\"Ja4VHl\":[[\"0\"],\" más\"],\"JgP090\":[\"Seguimiento de submódulos\"],\"JjcTk5\":[\"inicio de sesión social\"],\"JjfsZM\":[\"Eliminar la aprobación del flujo de trabajo\"],\"JppQoT\":[\"Última fecha de recálculo:\"],\"JsY1p5\":[\"Denegado\"],\"Jvv6rS\":[\"Selección múltiple\"],\"JwqOfG\":[\"Evaluar en\"],\"Jy9qCv\":[\"cancelar la edición de la redirección de inicio de sesión\"],\"K5AykR\":[\"Eliminar equipo\"],\"K93j4j\":[\"Nombre de la etiqueta\"],\"KC2nS5\":[\"Recurso eliminado\"],\"KDcLJ6\":[\"YAML:\"],\"KEY0qH\":[\"Prueba \"],\"KM6m8p\":[\"Team\"],\"KNOsJ0\":[\"Etiquetas opcionales que describen esta plantilla de trabajo, como «dev» o «test». Las etiquetas se pueden utilizar para agrupar y filtrar plantillas de trabajo y trabajos completados.\"],\"KQ9EQm\":[\"Cómo usar el plugin de inventario construido\"],\"KR9Aiy\":[\"This inventory is currently being used by some templates. Are you sure you want to delete it?\"],\"KRf0wm\":[\"Tipos de credencial\"],\"KTvwHj\":[\"Fuentes de entrada de credenciales\"],\"KVbzjm\":[\"Visualizador\"],\"KXFYp9\":[\"Obtener suscripción\"],\"KXnokb\":[\"El entorno de ejecución disponible globalmente no puede reasignarse a una organización específica\"],\"KZp4lW\":[\"Lookup select\"],\"K_MYeX\":[\"Ver detalles del usuario\"],\"KeRkFA\":[\"Borrar selección de la suscripción\"],\"KeqCdz\":[\"Compañeros de nodos de control\"],\"Ki_j_-\":[\"Deje en blanco para generar una nueva clave de webhook al guardar\"],\"KjBkMe\":[\"Este grupo de contenedores está siendo utilizado por otros recursos. ¿Está seguro de que desea eliminarlo?\"],\"KjVvNP\":[\"ID de panel\"],\"KkMfgW\":[\"Plantillas de trabajo\"],\"KkzJWF\":[\"Primera automatización\"],\"KlQd8_\":[\"Especifique un alcance para el acceso al token\"],\"KnN1Tu\":[\"Expira\"],\"KoCnPE\":[\"Cancelar tarea\"],\"KopV8H\":[\"Mostrar solo los grupos raíz\"],\"KxIA0h\":[\"Alternar host\"],\"Kz9DSl\":[\"Agregar host existente\"],\"KzQFvE\":[\"Editar organización\"],\"L1Ob4t\":[\"Pestaña de detalles\"],\"L3ooU6\":[\"Credencial\"],\"L7Nz3F\":[\"Recurso no encontrado\"],\"L8fEEm\":[\"Grupo\"],\"L973Qq\":[\"Solicitar subscripción\"],\"LCl8Ck\":[\"Entrada de búsqueda de fecha\"],\"LGl_pR\":[\"Ver la configuración de las tareas\"],\"LGryaQ\":[\"Crear nueva credencial\"],\"LQ29yc\":[\"Iniciar sincronización de origen de inventario\"],\"LQRys9\":[\"Los submódulos rastrearán el último commit en su rama master (u otra rama especificada en .gitmodules). Si no, los submódulos se mantendrán en la revisión especificada por el proyecto principal. Esto equivale a especificar el indicador --remote en git submodule update.\"],\"LQTgjH\":[\"No se encontró el proyecto.\"],\"LRePxk\":[\"Número mínimo de instancias que se asignarán automáticamente a este grupo cuando se conecten nuevas instancias.\"],\"LSUePQ\":[\"Ejecutar | \",[\"0\"]],\"LULLsO\":[\"Ver todas las organizaciones.\"],\"LV5a9V\":[\"Colegas\"],\"LVecP9\":[\"Roles de los usuarios\"],\"LYAQ1X\":[\"Activar los trabajos concurrentes\"],\"LZr1lR\":[\"No se encontró el grupo de instancias.\"],\"Lc0RHh\":[\"Alternar programaciones\"],\"LgD0Cy\":[\"Nombre de la aplicación\"],\"LhMjLm\":[\"Duración\"],\"Ll7Jei\":[\"LDAP3\"],\"LnYbGj\":[\"Editar el cuestionario\"],\"Lnnjmk\":[\"<0><1/> Puede encontrar una vista previa técnica de la nueva interfaz de usuario de \",[\"brandName\"],\" <2>aquí.\"],\"Lqygiq\":[\"Callbacks de aprovisionamiento\"],\"LtBtED\":[\"Éxito de alternancia de notificaciones\"],\"LuXP9q\":[\"Acceso\"],\"LwHwt1\":[\"Subscripción de \",[\"brandName\"]],\"Lwovp8\":[\"Si está habilitado, se permitirán ejecuciones simultáneas de esta plantilla de trabajo.\"],\"M0okDw\":[\"Establezca preferencias para la recopilación de datos, los logotipos y los inicios de sesión\"],\"M73whl\":[\"Contexto\"],\"MA-mp9\":[\"Filtro de referencia de Webhook\"],\"MA7cMf\":[\"Tabla DE parámetros DE inventario construido\"],\"MAI_nw\":[\"Intente otra búsqueda con el filtro de arriba\"],\"MAV-SQ\":[\"No se encontró la credencial.\"],\"MApRef\":[\"¿Está seguro de que quiere editar la URL de redirección de inicio de sesión? Hacerlo podría afectar a la capacidad de los usuarios para iniciar sesión en el sistema una vez que la autenticación local también esté desactivada.\"],\"MD0-Al\":[\"Su sesión está a punto de expirar\"],\"MDQLec\":[\"Controlar el nivel de salida que Ansible producirá para los trabajos de actualización de la fuente de inventario.\"],\"MGpavd\":[\"Escritura anticipada de la clave\"],\"MHM-bv\":[\"Objetivo de enlace no válido. No se puede enlazar con nodos secundarios o ancestros. Los ciclos del gráfico no son compatibles.\"],\"MHbbol\":[\" Fraccionamiento de trabajos\"],\"MKEPCY\":[\"Seguir\"],\"MP1v-1\":[\"Leyenda\"],\"MP8dU9\":[\"La ubicación completa de la imagen, que incluye el registro de contenedores, el nombre de la imagen y la etiqueta de la versión.\"],\"MQPvAa\":[\"Preguntar por las etiquetas al ejecutar.\"],\"MQoyj6\":[\"Plantilla de trabajo para flujo de trabajo\"],\"MTLPCv\":[\"Ejecutar cuando el nodo primario se encuentre en estado de error.\"],\"MVw5um\":[\"2 (Más nivel de detalle)\"],\"MZU5bt\":[\"No se pudo eliminar uno o varios grupos.\"],\"M_gXds\":[\"Note: This instance may be re-associated with this instance group if it is managed by \"],\"MdhgLT\":[\"Contraseña del servidor IRC\"],\"MfCEiB\":[\"Credenciales de Galaxy\"],\"MfQHgE\":[\"Días para guardar\"],\"Mfk6hJ\":[\"No se pudo eliminar una o más plantillas.\"],\"Mhn5m4\":[\"Credencial de registro\"],\"Mn45Gz\":[\"Volver a los grupos de instancias\"],\"MnbH31\":[\"página\"],\"MofjBu\":[\"El entorno de ejecución que se utilizará para los trabajos que usan este proyecto. Se utilizará como alternativa cuando no se haya asignado explícitamente un entorno de ejecución a nivel de plantilla de trabajo o flujo de trabajo.\"],\"MpLngK\":[\"El punto de conexión de webhook de este proyecto. Agréguelo a la configuración de webhook del repositorio para que los push desencadenen una sincronización del proyecto.\"],\"MpZRQy\":[\"Git\"],\"MuhG5I\":[[\"0\",\"plural\",{\"one\":[\"This approval cannot be deleted due to insufficient permissions or a pending job status\"],\"other\":[\"These approvals cannot be deleted due to insufficient permissions or a pending job status\"]}]],\"MwCc2O\":[\"Credencial de webhook para esta plantilla de trabajo del flujo de trabajo.\"],\"Mwf3Mw\":[\"Complete los hosts para este inventario utilizando un filtro de\\n búsqueda. Ejemplo: ansible_facts__ansible_distribution:\\\"RedHat\\\".\\n Consulte la documentación para obtener más sintaxis y\\n ejemplos. Consulte la documentación de Ansible Controller para obtener más sintaxis y\\n ejemplos.\"],\"MzcRa_\":[\"Usuario y Automation Analytics\"],\"Mzqo60\":[\"Valor con el que se compara el artefacto. Se interpreta como JSON cuando es posible (p. ej. true, 3); en caso contrario, como texto plano.\"],\"N1U4ZG\":[\"Cumplimiento de suscripciones\"],\"N36GRB\":[\"Este campo debe ser un número y tener un valor mayor que \",[\"min\"]],\"N40H-G\":[\"Todos\"],\"N5vmCy\":[\"inventario construido\"],\"N6GBcC\":[\"Confirmar eliminación\"],\"N7wOty\":[\"Seleccione el playbook que ejecutará este trabajo.\"],\"NAKA53\":[\"Fallo del servidor\"],\"NBONaK\":[\"Obteniendo facts\"],\"NCVKhy\":[\"Trabajos recientes\"],\"NDQvUO\":[\"Preguntar por las etiquetas (tags) al ejecutar.\"],\"NIuIk1\":[\"Ilimitado\"],\"NLKsgx\":[[\"pluralizedItemName\"],\" Lista\"],\"NO1ZxL\":[\"Nombre de la aplicación\"],\"NPfgIB\":[\"seg\"],\"NQHZnb\":[\"Entero\"],\"NRn4V6\":[[\"interval\"],\" months\"],\"NUNUrW\":[\"Etiquetas para anotación (opcional)\"],\"NW-xDQ\":[\"Esto revertirá todos los valores de configuración de esta página a\\n sus valores predeterminados de fábrica. ¿Está seguro de que desea continuar?\"],\"NX18CF\":[\"En o después de\"],\"NYxilo\":[\"Máximo de trabajos simultáneos\"],\"Na9fIV\":[\"No se encontraron elementos.\"],\"NcVaYu\":[\"Hora de finalización\"],\"NeA1eI\":[\"Desplazar hacia la derecha\"],\"Never\":[\"Nunca\"],\"NgD4On\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"Esta acción cancelará el siguiente trabajo:\"],\"other\":[\"Esta acción cancelará los siguientes trabajos:\"]}]],\"NjnDuY\":[\"Dragging started for item id: \",[\"newId\"],\".\"],\"NjqMGF\":[\"Agregar tipo de recurso\"],\"NnH3pK\":[\"Probar\"],\"No Jobs\":[\"No hay tareas\"],\"NpJHAp\":[\"Las plantillas de trabajo en las que falta un inventario o un proyecto no pueden seleccionarse al crear o modificar nodos. Seleccione otra plantilla o corrija los campos que faltan para continuar.\"],\"NqIlWb\":[\"Último ejecutado\"],\"NrGRF4\":[\"Modal de selección de suscripción\"],\"NsXTPu\":[\"Para crear un inventario inteligente con los hechos de ansible, vaya a la pantalla de inventario inteligente.\"],\"NtD3hJ\":[\"Teclas relacionadas\"],\"Nu4DdT\":[\"Sincronizar\"],\"Nu4oKW\":[\"Descripción\"],\"Nu7VHX\":[\"Elija los roles que se aplicarán a los recursos seleccionados. Tenga en cuenta que todos los roles seleccionados se aplicarán a todos los recursos seleccionados.\"],\"O-OYOe\":[\"Modificar equipo\"],\"O06Rp6\":[\"Interfaz de usuario\"],\"O1Aswy\":[\"Nunca expira\"],\"O28qFz\":[\"Ver tarea \",[\"0\"]],\"O2EuOK\":[\"Iniciar sesión con SAML \",[\"samlIDP\"]],\"O2UpM1\":[\"Navegar\"],\"O3oNi5\":[\"Correo electrónico\"],\"O4ilec\":[\"Versión de regex que no distingue mayúsculas de minúsculas.\"],\"O5pAaX\":[\"Seleccionar una instancia y una métrica para mostrar el gráfico\"],\"O78b13\":[\"Seleccione la aplicación a la que pertenecerá este token, o deje este campo vacío para crear un token de acceso personal.\"],\"O8_96D\":[\"Puerto de escucha\"],\"O9VQlh\":[\"Frecuencia de repetición\"],\"OA8xiA\":[\"Desplazar hacia la izquierda\"],\"OA99Nq\":[\"¿Cuándo fue automatizado el anfitrión por última vez?\"],\"OC4Tzv\":[\"aquí\"],\"OGoqLy\":[\"# sources with sync failures.\"],\"OHGMM6\":[\"Fecha/hora de inicio\"],\"OIv5hN\":[\"Redirigir al detalle de la suscripción\"],\"OJ9bHy\":[\"No se pudo disociar uno o más grupos.\"],\"OOq_rD\":[\"Ejecución de playbook\"],\"OPTWH4\":[\"Habilitar verificación del certificado HTTPS\"],\"ORxrw7\":[\"Días restantes\"],\"OSH8xi\":[\"Salto\"],\"OcRJRt\":[\"Confirmar cancelación de la tarea\"],\"Oe_VOY\":[\"No se pudo disociar una o más instancias.\"],\"OgB1k4\":[\"Argumentos\"],\"OiCz65\":[\"URL de Grafana\"],\"Oiqdmc\":[\"Iniciar sesión con las organizaciones GitHub\"],\"Oj2Ix6\":[\"La cantidad de tiempo (en segundos) que se ejecutará antes de que se cancele el trabajo. El valor predeterminado es 0 para que no haya tiempo de espera del trabajo.\"],\"OjwX8k\":[\"Información del token\"],\"OlpaBt\":[\"Trabajos simultáneos: si está habilitado, se permitirán ejecuciones simultáneas de esta plantilla de trabajo.\"],\"OmbooC\":[\"Tarea iniciada\"],\"OogRLI\":[\"No se encontró el inventario federado.\"],\"OqE3G-\":[\"Búsqueda exacta en el campo de identificación.\"],\"Osn70z\":[\"Debug\"],\"OvBnOM\":[\"Volver a Configuración\"],\"OyGPiW\":[\"Configuración de la suscripción\"],\"OzssJK\":[\"Ejecutar comando\"],\"P3spiP\":[\"Volver a Plantillas\"],\"P7d85D\":[\"Eliminar el acceso del equipo\"],\"P8fBlG\":[\"Identificación\"],\"PByO0X\":[\"Votos\"],\"PCEmEr\":[\"Tokens de usuario\"],\"PJ1B0S\":[[\"0\",\"plural\",{\"one\":[\"This project is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"PJf54Q\":[\"Volver a Fuentes\"],\"PKTjJ3\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"weekday\"],\" de \",[\"month\"]],\"4\":[\"The fourth \",[\"weekday\"],\" de \",[\"month\"]],\"5\":[\"The fifth \",[\"weekday\"],\" de \",[\"month\"]],\"one\":[\"The first \",[\"weekday\"],\" de \",[\"month\"]],\"two\":[\"The second \",[\"weekday\"],\" de \",[\"month\"]]}]],\"PLzYyl\":[\"Frecuencia Detalles de la excepción\"],\"PMk2Wg\":[\"Fallo de desaprovisionamiento\"],\"POKy-m\":[\"Copiar entorno de ejecución\"],\"PPsHsC\":[\"Revertir todo a valores por defecto\"],\"PQPOpT\":[\"Archivo de inventario\"],\"PRuZiQ\":[\"Actualizar para revisión\"],\"PUnovD\":[\"Amazon EC2\"],\"PVCOQE\":[\"Compañero eliminado. Asegúrese de ejecutar el paquete de instalación para \",[\"0\"],\" de nuevo para que los cambios surtan efecto.\"],\"PWwwY2\":[\"Disociar\"],\"PYPqaM\":[\"ID del panel (opcional)\"],\"PZBWpL\":[\"Switch to light mode\"],\"P_s0vy\":[\"No se puede buscar el tipo de credencial para este servicio de webhook, por lo que el campo de credencial de webhook no está disponible.\"],\"PaTL2O\":[\"Lista de destinatarios\"],\"PhufXn\":[\"Fraccionamiento de los trabajos principales\"],\"Pi5vnX\":[\"Error al sincronizar el origen del inventario construido\"],\"PiK6Ld\":[\"Sáb\"],\"PiRb8z\":[\"ÚLTIMA SINCRONIZACIÓN\"],\"PjkoCm\":[\"¿Está seguro de que desea eliminar el siguiente nodo:\"],\"PkVlOm\":[\"Especifique los encabezados HTTP en formato JSON. Consulte\\n la documentación de Ansible Controller para ver ejemplos de sintaxis.\"],\"Po1btV\":[\"Navegación global\"],\"Po7y5X\":[\"No se pudo copiar el entorno de ejecución\"],\"PvgcEq\":[\"Draggable list to reorder and remove selected items.\"],\"PwAMWD\":[\"Contraer todos los eventos de trabajos\"],\"PyV1wC\":[\"Evitar el retroceso del grupo de instancias\"],\"Q3P_4s\":[\"Tarea\"],\"Q4hWRC\":[\"Workflow Jobs (\",[\"total\"],\")\"],\"Q5ZW8j\":[\"Tabla de suscripciones\"],\"QF_MpS\":[\"\\n Tenga en cuenta que solo se pueden disociar los hosts que están\\n directamente en este grupo. Los hosts en subgrupos deben disociarse\\n directamente desde el nivel del subgrupo al que pertenecen.\\n \"],\"QFdBqu\":[\"Mattermost\"],\"QGbLBK\":[\"Identificación del trabajo\"],\"QHF6CU\":[\"Jugadas\"],\"QIOH6p\":[\"Inicializado por (nombre de usuario)\"],\"QIpNLR\":[\"No hay errores de sincronización de inventario.\"],\"QIq3_3\":[\"Nota: El orden en que se seleccionan establece la precedencia de ejecución. Seleccione más de uno para habilitar el arrastre.\"],\"QJbMvX\":[\"No se permiten credenciales que requieran contraseñas al iniciar. Elimine o reemplace las siguientes credenciales por una del mismo tipo para continuar: \",[\"0\"]],\"QJowYS\":[\"confirmar eliminación\"],\"QKUQw1\":[\"Crear nuevo host\"],\"QKbQTN\":[\"Selector de tipo de flujo de actividad\"],\"QOF7Jg\":[\"No se aprueba \",[\"0\"],\".\"],\"QPRWww\":[\"Tipo de ejecución\"],\"QR908H\":[\"Nombre de la configuración\"],\"QT1rDU\":[\"GitHub Enterprise\"],\"QTwM6Y\":[\"El proyecto que contiene el playbook que ejecutará este trabajo.\"],\"QYKS3D\":[\"Tareas recientes\"],\"QamIPZ\":[\"Haga clic en el botón de inicio para comenzar.\"],\"Qay_5h\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"Qd2E32\":[\"Recupere el estado habilitado del dictado dado de las variables del host. La variable habilitada se puede especificar usando notación de puntos, por ejemplo: 'foo.bar'\"],\"Qf36YE\":[\"Nivel de detalle\"],\"QgnNyZ\":[\"Error de sincronización\"],\"Qhb8lT\":[\"Crear una nueva aplicación\"],\"QmvYrA\":[\"Descripción opcional para la plantilla de trabajo del flujo de trabajo.\"],\"QnJn75\":[\"Última ejecución\"],\"Qv59HG\":[\"Seleccionar tipo de credencial\"],\"Qv91_c\":[\"LDAP 2\"],\"QyjCeq\":[\"Capacidad\"],\"R-uZ8Y\":[\"Iniciar sesión con SAML\"],\"R633QG\":[\"Volver a Aprobaciones del flujo de trabajo\"],\"R7s3iG\":[\"Volver\"],\"R9Khdg\":[\"Auto\"],\"R9sZsA\":[\"Eliminar todos los grupos y hosts\"],\"RBDHUE\":[\"Preguntar por el entorno de ejecución al ejecutar.\"],\"RI8cIw\":[\"El número máximo de hosts que se permite gestionar a\\n esta organización. El valor predeterminado es 0, lo que significa sin límite.\\n Consulte la documentación de Ansible para obtener más detalles.\"],\"RIcSTA\":[\"Fecha de expiración\"],\"RIeAlp\":[\"Cada vez que se ejecute un trabajo utilizando este inventario, actualice el inventario de la fuente seleccionada antes de ejecutar las tareas del trabajo.\"],\"RK1gDV\":[\"Iniciar sesión con Azure AD\"],\"RMdd1C\":[\"Ninguno (se ejecuta una vez)\"],\"RO9G1f\":[\"Este campo debe ser mayor que 0\"],\"RPnV2o\":[\"El filtro de búsqueda no arrojó resultados…\"],\"RThfvh\":[\"¿Disociar equipos relacionados?\"],\"R_mzhp\":[\"Error en el token de usuario.\"],\"RbIaa9\":[\"No se encontró el token.\"],\"RdLvW9\":[\"volver a ejecutar las tareas\"],\"Rguqao\":[\"Seleccionar una fila para eliminar\"],\"RhOukN\":[[\"interval\"],\" hour\"],\"RiQMUh\":[\"Ejecutándose\"],\"RjIKOw\":[\"Imposible modificar el inventario en un servidor.\"],\"RjkhdY\":[\"El campo comienza con un valor.\"],\"RkXlPZ\":[\"GitHub\"],\"RlsPz7\":[\"¿Está seguro de que desea eliminar este enlace?\"],\"Rm1iI_\":[\"Preguntar por variables al ejecutar.\"],\"Roaswv\":[\"User Guide\"],\"RpKSl3\":[\"La credencial se copió correctamente\"],\"RsZ4BA\":[\"Desplazarse hasta el final\"],\"RtKKbA\":[\"Último\"],\"Ru59oZ\":[\"Habilitar webhook para esta plantilla.\"],\"RuEWFx\":[\"En la fecha\"],\"RuiOO0\":[\"No se pudo eliminar una o más aplicaciones.\"],\"Rw1xwN\":[\"Carga de contenido\"],\"RxzN1M\":[\"Habilitado\"],\"RyPas1\":[\"Cancel selected jobs\"],\"S0kLOH\":[\"ID\"],\"S2nsEw\":[\"Mayor que la comparación.\"],\"S5gO6Y\":[\"Pase variables adicionales de línea de comandos al flujo de trabajo.\"],\"S6zj7M\":[\"Para las plantillas de trabajo, seleccione «run» para ejecutar el playbook. Seleccione «check» para comprobar únicamente la sintaxis del playbook, probar la configuración del entorno e informar de problemas sin ejecutar el playbook.\"],\"S7kN8O\":[\"No se pudo eliminar uno o más usuarios.\"],\"S7tNdv\":[\"Con éxito\"],\"S8FW2i\":[\"El archivo de inventario a sincronizar por esta fuente. Puede seleccionar desde el menú desplegable o introducir un archivo dentro de la entrada.\"],\"SA-KXq\":[\"Desplazar hacia arriba\"],\"SAw-Ux\":[\"¿Está seguro de que quiere eliminar el acceso de \",[\"0\"],\" a \",[\"username\"],\"?\"],\"SBfnbf\":[\"Ver todos los entornos de ejecución\"],\"SC1Cur\":[\"Estado desconocido\"],\"SDND4q\":[\"No configurado\"],\"SIJDi3\":[\"Ajuste de la capacidad\"],\"SJjggI\":[\"Actualizar opciones\"],\"SJmHMo\":[\"Documentación.\"],\"SLm_0U\":[\"Puerto del servidor IRC\"],\"SODyJ3\":[\"Servidor Async OK\"],\"SRiPhD\":[\"Cancelar eliminación del nodo\"],\"SV5nA1\":[\"Algunos de los pasos anteriores tienen errores\"],\"SVG6MY\":[\"Revertir el campo al valor guardado anteriormente\"],\"SYbJcn\":[\"Modificar plantilla de notificación\"],\"SZvybZ\":[\"LDAP predeterminado\"],\"SZw9tS\":[\"Ver detalles\"],\"SbRHme\":[\"Área de texto\"],\"Se_E0z\":[\"Tarea en flujo de trabajo\"],\"Sgr5NW\":[\"Seleccione una instancia para ejecutar una comprobación de estado.\"],\"Sh2XTJ\":[\"Tipo de notificación\"],\"SiexHs\":[\"Panel de control (toda la actividad)\"],\"Sja7f-\":[\"¿Cuántas veces se ha eliminado al anfitrión?\"],\"Sjoj4f\":[\"Nombre de la credencial\"],\"SlfejT\":[\"Error\"],\"SoREmD\":[\"Aplicaciones y tokens\"],\"SqA8uD\":[\"Ejecuciones de trabajo\"],\"SqLEdN\":[\"No se pudo eliminar el inventario inteligente.\"],\"SqYo9m\":[\"Volver a las instancias\"],\"Ssdrw4\":[\"Obsoleto\"],\"Successful\":[\"Correctamente\"],\"SvPvEX\":[\"Cuerpo del mensaje de flujo de trabajo aprobado\"],\"Svkela\":[\"Ir a la página anterior\"],\"SwJLlZ\":[\"Cuerpo del mensaje de flujo de trabajo denegado\"],\"SxGqey\":[\"Ajustes genéricos de OIDC\"],\"Sxm8rQ\":[\"Usuarios\"],\"SzFxHC\":[\"Configuración de LDAP\"],\"SzQMpA\":[\"Forks\"],\"T2M20E\":[\"El\"],\"T2mGOG\":[\"docs.ansible.com\"],\"T2x15z\":[\"No se pudo alternar la notificación.\"],\"T4a4A4\":[\"Clave de Webhook\"],\"T7yEGN\":[\"El tipo de concesión que el usuario debe usar para adquirir tokens para esta aplicación\"],\"T91vKp\":[\"Jugada\"],\"T9hZ3D\":[\"Equipo de GitHub Enterprise\"],\"TAnffV\":[\"Modificar este nodo\"],\"TBH48u\":[\"No se pudo eliminar el equipo.\"],\"TC32CH\":[\"Días de datos a conservar\"],\"TD1APv\":[\"Obtener suscripciones\"],\"TJVvMD\":[\"Tipo de búsqueda relacionada\"],\"TLomdD\":[[\"sessionCountdown\",\"plural\",{\"one\":[\"You will be logged out in \",\"#\",\" second due to inactivity\"],\"other\":[\"You will be logged out in \",\"#\",\" seconds due to inactivity\"]}]],\"TMJ39S\":[\"Disociar rol\"],\"TMLAx2\":[\"Obligatorio\"],\"TO3h59\":[\"Completar el campo desde un sistema externo de gestión de claves secretas\"],\"TO4OtU\":[\"Credencial de Insights\"],\"TOjYb_\":[\"Ver los detalles del anfitrión del inventario construido\"],\"TP9_K5\":[\"Token\"],\"TRDppN\":[\"Webhook\"],\"TTMvf7\":[\"Tipo de grupo\"],\"TU6IDa\":[\"Tipo de usuario\"],\"TXKmNM\":[\"Debe seleccionar un inventario\"],\"TZEuIE\":[\"Volver a los tipos de credenciales\"],\"T_87By\":[\"Parámetro\"],\"Ta0ts5\":[\"Mostrar cambios\"],\"TcnG-2\":[\"Crear un nuevo entorno de ejecución\"],\"TgSxH9\":[\"Dirección URL para las llamadas callback\"],\"TkiN8D\":[\"Detalles del usuario\"],\"Tmh24b\":[\"Si está habilitado, la plantilla de trabajo impedirá agregar grupos de instancias de inventario u organización a la lista de grupos de instancias preferidos en los que ejecutarse. Nota: si esta configuración está habilitada y proporcionó una lista vacía, se aplicarán los grupos de instancias globales.\"],\"Tmuvry\":[\"Establecer escritura anticipada del tipo\"],\"ToOoEw\":[\"Copiar credencial\"],\"Tof7pX\":[\"Trabajos\"],\"Tq71UT\":[\"día laborable\"],\"Tx3NMN\":[\"Frase de paso para llave privada\"],\"TxKKED\":[\"Ver detalles del inventario construido\"],\"TyaPAx\":[\"Administrador del sistema\"],\"Tz0i8g\":[\"Ajustes\"],\"U-nEJl\":[\"Ver la configuración de GitHub\"],\"U011Uh\":[\"Última sincronización\"],\"U7rA2a\":[\"Si no se marca, se realizará una fusión, combinando las variables locales con las que se encuentran en la fuente externa.\"],\"UDf-wR\":[\"Suscripciones consumidas\"],\"UEaj7U\":[\"Errores de sincronización de inventario\"],\"UJpDop\":[\"Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"UJsNNk\":[\"Revisión de fuente de control\"],\"UPasE4\":[\"Azure AD predeterminado\"],\"UPmrRI\":[\"Versión de endswith que no distingue mayúsculas de minúsculas.\"],\"URmyfc\":[\"Detalles\"],\"UX2wV1\":[[\"0\",\"plural\",{\"one\":[\"This credential is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"UXBCwc\":[\"Apellido\"],\"UY6iPZ\":[\"Si está habilitado, los nodos de control examinarán esta instancia automáticamente. Si se desactiva, la instancia se conectará solo a los compañeros asociados.\"],\"UYD5ld\":[\"y haga clic en Actualizar revisión al ejecutar\"],\"UYUgdb\":[\"Pedir\"],\"U_JUCL\":[\"Red Hat Insights\"],\"Ua-Kc6\":[\"www.json.org\"],\"UbOul8\":[\"¿Está seguro de que desea eliminar:\"],\"UbRKMZ\":[\"Pendiente\"],\"UbqhuT\":[\"No se pudo recuperar el objeto de recurso de nodo completo.\"],\"Uc_tSU\":[\"Alternar herramientas\"],\"UgFDh3\":[\"Este inventario está siendo utilizado por otros recursos. ¿Está seguro de que desea eliminarlo?\"],\"UirGxE\":[\"Errores\"],\"UlykKR\":[\"Tercero\"],\"Uo1S9q\":[\"Iniciar sesión con Azure AD Tenant\"],\"UueF8b\":[\"Falta el entorno de ejecución o se ha eliminado.\"],\"UvGjRK\":[\"Si está habilitado, ejecute este playbook como administrador.\"],\"UwJJCk\":[\"Volver a ejecutar hosts fallidos\"],\"UxKoFf\":[\"Navegación\"],\"V-7saq\":[\"¿Eliminar \",[\"pluralizedItemName\"],\"?\"],\"V-rJKF\":[\"Seconds\"],\"V0Xv3_\":[[\"intervalValue\",\"plural\",{\"one\":[\"day\"],\"other\":[\"days\"]}]],\"V0fM4k\":[\"Análisis de usuarios\"],\"V1EGGU\":[\"Nombre\"],\"V2-omF\":[[\"0\",\"plural\",{\"one\":[\"El inventario estará en estado pendiente hasta que se procese la eliminación final.\"],\"other\":[\"Los inventarios estarán en estado pendiente hasta que se procese la eliminación final.\"]}]],\"V2RwJr\":[\"Direcciones del oyente\"],\"V2q9w9\":[\"If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode.\"],\"V3z83V\":[\"LDAP 3\"],\"V4WsyL\":[\"Agregar enlace\"],\"V5RUpn\":[\"Lista de destinatarios\"],\"V7qsYh\":[\"Nota: El orden de estas credenciales establece la precedencia para la sincronización y búsqueda del contenido. Seleccione más de una para habilitar el arrastre.\"],\"V9xR6T\":[\"Expandir sección\"],\"VAI2fh\":[\"Crear nuevo grupo de contenedores\"],\"VAcXNz\":[\"Miércoles\"],\"VEj6_Y\":[\"Aprobaciones del flujo de trabajo\"],\"VFvVc6\":[\"Modificar detalles\"],\"VJUm9p\":[\"Página actual\"],\"VK2gzi\":[\"El número de procesos paralelos o simultáneos que se utilizarán al ejecutar el playbook. Un valor vacío, o un valor inferior a 1, utilizará el valor predeterminado de Ansible, que suele ser 5. El número predeterminado de forks se puede sobrescribir con un cambio en\"],\"VL2WkJ\":[\"El último \",[\"dayOfWeek\"]],\"VLdRt2\":[\"Iniciar fuente de sincronización\"],\"VNUs2y\":[\"Horquillas\"],\"VSJ6r5\":[\"La programación está activa\"],\"VSim_H\":[\"Eliminar fuente de inventario\"],\"VTDO7X\":[\"Modal de detalles del evento\"],\"VU3Nrn\":[\"No encontrado\"],\"VWL2DK\":[\"Organización de GitHub\"],\"VXFjd8\":[\"Métrica\"],\"VZfXhQ\":[\"Nodo de salto\"],\"VdcFUD\":[\"Acuerdo de licencia de usuario final\"],\"ViDr6F\":[\"Agregar nuevo grupo\"],\"VmClsw\":[\"Se ha eliminado el recurso asociado a este nodo.\"],\"VmvLj9\":[\"Establezca en Público o Confidencial según la seguridad del dispositivo cliente.\"],\"Vqd-tq\":[\"Confirmar la reversión de todo\"],\"Vqgeac\":[\"Press space or enter to begin dragging,\\n and use the arrow keys to navigate up or down.\\n Press enter to confirm the drag, or any other key to\\n cancel the drag operation.\"],\"Vvbbn2\":[\"No se pudo eliminar el rol.\"],\"Vw8l6h\":[\"Se ha producido un error\"],\"VzE_M-\":[\"No se pudieron alternar las notificaciones\"],\"W-O1E9\":[\"Copiar proyecto\"],\"W1iIqa\":[\"Ver grupos de inventario\"],\"W3TNvn\":[\"Volver a Usuarios\"],\"W3pOzF\":[\"Permita cambiar la rama o revisión del control de código fuente en una plantilla de trabajo que utilice este proyecto.\"],\"W6uTJi\":[\"No se pudo obtener el tablero:\"],\"W7DGsV\":[\"Ejecutado por (nombre de usuario)\"],\"W9XAF4\":[\"Día de la semana\"],\"W9uQXX\":[\"Aviso\"],\"WAjFYI\":[\"Fecha de inicio\"],\"WD8djW\":[\"Confirmar eliminación de enlace\"],\"WL91Ms\":[\"Delete Groups?\"],\"WPM2RV\":[\"Tipo de respuesta\"],\"WQJduu\":[\"Seleccionar clave\"],\"WTN9YX\":[\"Cuenta token\"],\"WTV15I\":[\"Editar la URL de redirección de inicio de sesión\"],\"WVzGc2\":[\"Subscripción\"],\"WX9-kf\":[\"NIC de IRC\"],\"Wc6m4J\":[\"Un refspec para obtener (pasado al módulo git de Ansible). Este parámetro permite el acceso a referencias a través del campo de rama que de otro modo no estarían disponibles.\"],\"Wdl2f2\":[\"Este campo debe tener al menos \",[\"0\"],\" caracteres\"],\"WgsBEi\":[\"Ingresar al menos un filtro de búsqueda para crear un nuevo inventario inteligente\"],\"WhSFGl\":[\"Filtrar por \",[\"name\"]],\"Wi1pUG\":[[\"numJobsToCancel\",\"plural\",{\"one\":[[\"0\"]],\"other\":[[\"1\"]]}]],\"Wk1rOS\":[\"Ajustar el gráfico al tamaño de la pantalla disponible\"],\"Wm7XbF\":[\"No se pudo eliminar una o más credenciales.\"],\"WqaDMq\":[\"El campo contiene un valor.\"],\"Wy25yg\":[\"Twilio\"],\"X03-eC\":[\"Por favor introduzca un valor.\"],\"X5V9DW\":[\"Haga clic en el botón Edit (Modificar) para volver a configurar el nodo.\"],\"X6d3Zy\":[\"No se pudo eliminar la organización.\"],\"X97mbf\":[\"Seleccionar un tipo de tarea\"],\"XA12d8\":[\"Lista opcional de nombres de host separados por comas para incluir en cada segmento de trabajo, además de los hosts del propio segmento. Útil cuando un play tiene como objetivo un host de coordinación, como localhost, del que dependen todos los segmentos. Los nombres se comparan exactamente con los hosts del inventario; no se admiten grupos ni patrones. Los hosts fijados ejecutan sus plays una vez por segmento.\"],\"XBROpk\":[\"Proporcione un patrón de host para restringir aún más la lista de hosts que serán gestionados o afectados por el flujo de trabajo.\"],\"XCCkju\":[\"Modificar nodo\"],\"XFRygA\":[\"Ejemplos de URL para el control de código fuente de archivo remoto incluyen:\"],\"XHxwBV\":[\"El intervalo de fechas seleccionado debe tener al menos 1 ocurrencia de horario.\"],\"XILg0L\":[\"Dirección de correo electrónico no válida\"],\"XJOV1Y\":[\"Actividad\"],\"XKp83s\":[\"No se pueden copiar los inventarios con fuentes\"],\"XLMJ7O\":[\"Nube\"],\"XLpxoj\":[\"Opciones de correo electrónico\"],\"XM-gTv\":[\"Consulte la documentación de Ansible para obtener detalles sobre el archivo de configuración.\"],\"XOD7tz\":[\"Mostrar cambios\"],\"XOaZX3\":[\"Paginación\"],\"XP6TQ-\":[\"Si se especifica, este campo se mostrará en el nodo en lugar del nombre del recurso cuando se vea el flujo de trabajo\"],\"XREJvl\":[\"Variables utilizadas para configurar el origen del inventario. Para obtener una descripción detallada de cómo configurar este complemento, consulte\"],\"XViLWZ\":[\"Con error\"],\"XWDz5f\":[\"Selección de clave simple\"],\"X_5TsL\":[\"Alternancia de encuestas\"],\"XaxYwV\":[\"Valores solicitados\"],\"XbIM8f\":[\"Fuentes de inventario total\"],\"XdyHT-\":[\"Hosts importados\"],\"XfmfOA\":[\"Ejecutar cada\"],\"Xg3aVa\":[\"Utilizar SSL\"],\"XgTa_2\":[\"The inventory will be in a pending status until the final delete is processed.\"],\"XilEsm\":[\"Grupo de instancias\"],\"Xm7ruy\":[\"5 (Depuración de WinRM)\"],\"XmJfZT\":[\"nombre\"],\"XmVvzl\":[\"Seleccionar los roles para aplicar\"],\"XnxCSh\":[\"Error estándar\"],\"XozZ38\":[\"No se pudo eliminar una o más fuentes de inventario.\"],\"Xq9A0U\":[\"Proyecto desconocido\"],\"Xt4N6V\":[\"Aviso | \",[\"0\"]],\"XtpZSU\":[\"Todos los tipos de tarea\"],\"Xx-ftH\":[\"Has automatizado contra más hosts de los que permite tu suscripción.\"],\"XyTWuQ\":[\"Espere hasta que se complete la vista de topología...\"],\"XyW2nH\":[[\"0\",\"plural\",{\"one\":[\"¿Está seguro de que desea eliminar el grupo siguiente?\"],\"other\":[\"¿Está seguro de que desea eliminar los grupos siguientes?\"]}]],\"XzD7xj\":[\"Seleccionar elementos\"],\"Y1YKad\":[\"Modificar detalles\"],\"Y296GK\":[\"No se pudo eliminar el rol\"],\"Y2ml-n\":[\"Aprobado - \",[\"0\"],\". Consulte el Flujo de actividad para obtener más información.\"],\"Y5VrmH\":[\"No configurado para la sincronización de inventario.\"],\"Y5vgVF\":[\"Denegado con éxito\"],\"Y5xJ7I\":[\"Nombre del playbook\"],\"Y60pX3\":[\"Añadir inventario construido\"],\"YA4I45\":[\"Seleccionar un módulo\"],\"YFmVSY\":[\"¿Disociar?\"],\"YJddb4\":[\"tipo de instancia\"],\"YLMfol\":[\"Elija el tipo de recurso que recibirá los nuevos roles. Por ejemplo, si desea agregar nuevos roles a un conjunto de usuarios, elija Users (Usuarios) y haga clic en Next (Siguiente). Podrá seleccionar los recursos específicos en el siguiente paso.\"],\"YM06Nm\":[\"Editar el tipo de credencial\"],\"YMLB2b\":[\"Determina si el nodo de aprobación se aprueba o se deniega automáticamente cuando expira el tiempo de espera.\"],\"YMpSlP\":[\"Tiempo en segundos para considerar que una sincronización de inventario es actual. Durante las ejecuciones de trabajos y las devoluciones de llamada, el sistema de tareas evaluará la marca de tiempo de la última sincronización. Si es anterior al tiempo de espera de la caché, no se considera actual y se realizará una nueva sincronización del inventario.\"],\"YOOdGq\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" minuto\"],\"other\":[\"#\",\" minutos\"]}]],\"YOh7Aw\":[\"Workflow Job \",[\"currentPosition\"],\"/\",[\"total\"]],\"YP5KRj\":[\"se generará una nueva URL de Webhook al guardar.\"],\"YPDLLX\":[\"Volver a los entornos de ejecución\"],\"YQqM-5\":[\"La imagen de contenedor que se utilizará para la ejecución.\"],\"Yd45Xn\":[\"Anfitriones por tipo de procesador\"],\"Yfw7TK\":[\"Caducó el tiempo de la notificación\"],\"YgqgXs\":[[\"intervalValue\",\"plural\",{\"one\":[\"minute\"],\"other\":[\"minutes\"]}]],\"YiQ03p\":[\"No se pudo eliminar la programación.\"],\"YiUAZm\":[\"<0>Nota: Esta instancia puede volver a asociarse con este grupo de instancias si es administrada por <1>reglas de política.\"],\"YlGAPh\":[\"Hosts fijados de la fracción de trabajos\"],\"Ym7-mu\":[\"Un canal de Slack por línea. El símbolo numeral (#)\\n es obligatorio para los canales. Para responder o iniciar un hilo en un mensaje específico, agregue el Id del mensaje principal al canal, donde el Id del mensaje principal tiene 16 dígitos. Debe insertarse un punto (.) manualmente después del décimo dígito. por ejemplo:#canal-destino, 1231257890.006423. Consulte Slack\"],\"YmEWZH\":[\"Ejecutar plantilla\"],\"YmjTf2\":[\"Fallo de aprovisionamiento\"],\"YoXjSs\":[\"Preguntar por el inventario al ejecutar.\"],\"Yq4Eaf\":[\"La información de estado del host para esta tarea no se encuentra disponible.\"],\"YsN-3o\":[\"Ver detalles de la fuente de inventario\"],\"Yt-rBv\":[\"Este proyecto está siendo utilizado actualmente por otros recursos. ¿Está seguro de que desea eliminarlo?\"],\"YuC9dj\":[\"Asociar\"],\"YxDLmM\":[\"ID del sistema de Insights\"],\"Z17FAa\":[\"Inventario desconocido\"],\"Z1Vtl5\":[\"No se pudo cancelar la sincronización de proyectos\"],\"Z25_RC\":[\"Seleccionar entrada\"],\"Z2hVSb\":[\"Híbrido\"],\"Z40J8D\":[\"Habilita la creación de una URL de devolución de llamada de aprovisionamiento. Mediante la URL, un host puede contactar con \",[\"brandName\"],\" y solicitar una actualización de configuración utilizando esta plantilla de trabajo.\"],\"Z5HWHd\":[\"On\"],\"Z7ZXbT\":[\"Aprobar\"],\"Z88yEl\":[\"Mayor o igual que la comparación.\"],\"Z9EFpE\":[\"Panel de control de Automation Analytics\"],\"ZAWGCX\":[[\"0\"],\" segundos\"],\"ZEP8tT\":[\"Ejecutar\"],\"ZGDCzb\":[\"Instancia no encontrada.\"],\"ZJjKDg\":[\"Nodos gestionados\"],\"ZKKnVf\":[\"Crear plantilla de flujo de trabajo\"],\"ZL3d6Z\":[\"Dirección del servidor IRC\"],\"ZO4CYH\":[\"Tareas en ejecución\"],\"ZOLfb2\":[\"Este campo no debe estar en blanco\"],\"ZWhZbs\":[\"Confirmar eliminación de nodo\"],\"ZajTWA\":[\"Número de teléfono de la fuente\"],\"Zf6u-6\":[\"Explicación\"],\"ZfrRb0\":[\"Seleccione un inventario o marque la opción Preguntar al ejecutar.\"],\"ZhUwVw\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" semana\"],\"other\":[\"#\",\" semanas\"]}]],\"ZhxwOq\":[\"Cuerpo del mensaje de error\"],\"Zikd-1\":[\"El número de hosts que tiene automatizados es inferior al número de suscripciones.\"],\"ZjC8QM\":[\"No se pudo eliminar el host.\"],\"ZjvPb1\":[\"Creado por (nombre de usuario)\"],\"Zkh5np\":[\"Los compañeros se actualizan el \",[\"0\"],\". Asegúrese de ejecutar el paquete de instalación para \",[\"1\"],\" de nuevo para que los cambios surtan efecto.\"],\"ZpdX6R\":[\"Error al eliminar tokens\"],\"ZrsGjm\":[\"Inventario\"],\"ZumtuZ\":[\"Copiar plantilla\"],\"ZvVF4C\":[\"Eliminar la pregunta de la encuesta\"],\"ZwCTcT\":[\"Pestaña de la lista de tareas recientes\"],\"ZwujDQ\":[\"Año pasado\"],\"_-NKbo\":[\"No se pudo alternar la programación.\"],\"_2LfCe\":[\"Para reordenar las preguntas de la encuesta, arrástrelas y suéltelas en el lugar deseado.\"],\"_4gGIX\":[\"Copiar al portapapeles\"],\"_5REdR\":[\"Seleccione Input Inventories para el plugin de inventario construido.\"],\"_Fg1cM\":[\"Cuerpo del mensaje de tiempo de espera agotado del flujo de trabajo\"],\"_ITcnz\":[\"día\"],\"_Ia62Q\":[\"Ejemplos de inventario construido\"],\"_JN1gB\":[\"Recuento de tareas\"],\"_K2CvV\":[\"Plantilla\"],\"_LQZpR\":[[\"intervalValue\",\"plural\",{\"one\":[\"year\"],\"other\":[\"years\"]}]],\"_LVfwJ\":[\"Error de sincronización de origen de inventario construido\"],\"_M4FeF\":[\"Seleccione el entorno de ejecución en el que desea que se ejecute este comando.\"],\"_MdgrM\":[\"Agregar un nuevo nodo entre estos dos nodos\"],\"_PRaan\":[\"No se pudo eliminar una o más plantillas de notificación.\"],\"_Pz_QH\":[\"Gestionado por la política\"],\"_W3ZAw\":[[\"selectedItemsCount\",\"plural\",{\"one\":[\"Click to run a health check on the selected instance.\"],\"other\":[\"Click to run a health check on the selected instances.\"]}]],\"_WBq2_\":[\"Denegado - \",[\"0\"],\". Consulte el Flujo de actividad para obtener más información.\"],\"_Yq4TU\":[\"Número máximo de horquillas para permitir en todos los trabajos que se ejecutan simultáneamente en este grupo.\\n Cero significa que no se aplicará ningún límite.\"],\"_ZBhqw\":[\"No se pudo cancelar la sincronización de fuentes de inventario\"],\"_bAUGi\":[\"Elegir un método HTTP\"],\"_bE0AS\":[\"Seleccione una instancia\"],\"_cV6Mf\":[\"Navegar\"],\"_cq4Aa\":[\"No se encontró la aprobación del flujo de trabajo.\"],\"_ereyb\":[\"TACACS+\"],\"_gCD76\":[\"Modificar grupo de instancias\"],\"_ismew\":[\"Clave del artefacto\"],\"_kYJq6\":[\"Días de datos para mantener\"],\"_khNCh\":[\"Las credenciales predeterminadas de la plantilla de trabajo deben reemplazarse por una del mismo tipo. Seleccione una credencial para los siguientes tipos para continuar: \",[\"0\"]],\"_oeZtS\":[\"Sondeo al servidor\"],\"_rCRcH\":[\"Documentación de búsqueda avanzada\"],\"_vI8Rx\":[\"Delete Group?\"],\"a02Xjc\":[\"Dirección del servidor IRC\"],\"a3AD0M\":[\"confirmar la redirección del acceso a la edición\"],\"a5zD9f\":[\"Cambios\"],\"a6E-_p\":[\"Versión de contains que no distingue mayúsculas de minúsculas\"],\"a8AgQY\":[\"Ver detalles del host\"],\"a8nooQ\":[\"Cuarto\"],\"a9BTUD\":[\"día de fin de semana\"],\"aBgwis\":[\"Ámbito\"],\"aLlb3-\":[\"boolean\"],\"aNxqSL\":[\"Eliminar entorno de ejecución\"],\"aQ4XJX\":[\"Habilitar eventos de seguimiento del sistema de registro de forma individual\"],\"aSuBiU\":[\"Microsoft Azure Resource Manager\"],\"aTK0Fh\":[\"En los días\"],\"aUNPq3\":[\"Nodo de ejecución\"],\"aVoVcG\":[\"Selección múltiple\"],\"aXBrSq\":[\"Virtualización de Red Hat\"],\"a_vlog\":[\"Eliminar el chip de \",[\"0\"]],\"adPhRK\":[\"Seleccione el inventario al que pertenecerá este host.\"],\"adjqlB\":[[\"0\"],\" (eliminado)\"],\"aht2s_\":[\"Color de la notificación\"],\"aiejXq\":[\"Agregar tipo de recurso\"],\"ajDpGH\":[\"ESTADO:\"],\"anfIXl\":[\"Detalles del usuario\"],\"aqqAbL\":[\"Si se activa, el inventario impedirá que se añadan grupos de instancias de la organización a la lista de grupos de instancias preferidos para ejecutar plantillas de trabajo asociadas. Nota: si esta opción está activada y ha proporcionado una lista vacía, se aplicarán los grupos de instancias globales.\"],\"ar5AA2\":[\"para obtener más información.\"],\"ataY5Z\":[\"Error en la eliminación de tareas\"],\"ax6e8j\":[\"Seleccione una organización antes de modificar el filtro del host\"],\"az8lvo\":[\"Off\"],\"b1CAkh\":[\"Trabajos de gestión\"],\"b2Z0Zq\":[\"Cancelar cambios de enlace\"],\"b433OF\":[\"Modificar grupo\"],\"b4SLah\":[\"Ver errores a la izquierda\"],\"b9Y4up\":[\"ID del cliente\"],\"bDa_hW\":[\"Seleccione los grupos de instancias en los que se debe ejecutar la sincronización de esta fuente de inventario. Si no se establece, la sincronización se ejecuta en los grupos de instancias del inventario o de su organización.\"],\"bE4zYn\":[\"Seleccione el puerto en el que el receptor escuchará las conexiones entrantes, por ejemplo, 27199.\"],\"bHXYoC\":[\"Método HTTP\"],\"bKR18T\":[\"Un manifiesto de suscripción es una exportación de una suscripción de Red Hat. Para generar un manifiesto de suscripción, vaya a <0>access.redhat.com. Para obtener más información, consulte la <1>Guía del usuario.\"],\"bLt_0J\":[\"Flujo de trabajo\"],\"bPq357\":[\"Valor habilitado\"],\"bQZByw\":[\"Ingrese una etiqueta de anotación por línea sin comas.\"],\"bTu5jX\":[\"Nombre de usuario/contraseña\"],\"bWr6j5\":[\"Este campo debe tener al menos \",[\"min\"],\" caracteres\"],\"bY8C86\":[\"Ver todos los usuarios.\"],\"bYXbel\":[\"clave de Webhook de la plantilla de trabajo del flujo de trabajo\"],\"baP8gx\":[\"4 (Depuración de la conexión)\"],\"baqrhc\":[\"Cabeceras HTTP\"],\"bbJ-VR\":[\"Alejar\"],\"bcyJXs\":[\"Elemento OK\"],\"bd1Kuw\":[\"URL de icono\"],\"bf7UKi\":[\"Tiempo de espera de la caché de actualización\"],\"bfgr_e\":[\"Pregunta\"],\"bgjTnp\":[\"0 (Normal)\"],\"bgq1rW\":[\"Botón de envío de la búsqueda\"],\"bhxnLH\":[\"No tiene permiso para eliminar los siguientes Grupos: \",[\"itemsUnableToDelete\"]],\"bkPO0d\":[\"Tipo de notificación\"],\"bpECfE\":[\"Cancelar eliminación del enlace\"],\"bpnj1H\":[\"Se produjo un error al cargar este contenido. Vuelva a cargar la página.\"],\"bwRvnp\":[\"Acción\"],\"bx2rrL\":[\"Inventario inteligente\"],\"bxaVlf\":[\"Crear un nuevo tipo de credencial\"],\"byXCTu\":[\"Ocurrencias\"],\"bznJUg\":[\"Seleccione el inventario que contiene los hosts que desea que gestione este flujo de trabajo.\"],\"bzv8Dv\":[\"Error de eliminación\"],\"c-xCSz\":[\"Verdadero\"],\"c0n4p3\":[\"Almacenamiento de datos\"],\"c1Rsz1\":[\"Ver detalles de la aprobación del flujo de trabajo\"],\"c3XJ18\":[\"Ayuda\"],\"c4kHK7\":[\"Cerrar modal de suscripción\"],\"c6IFRs\":[\"Archivo JSON de la cuenta de servicio\"],\"c6u6gk\":[\"Seleccione los grupos de instancias en los que se ejecutará esta organización.\"],\"c7-Adk\":[\"No se pudo sincronizar la fuente de inventario.\"],\"c8HyJq\":[\"Seleccione los grupos de instancias en los que se ejecutará este inventario.\"],\"c8sV0t\":[\"Esta función está obsoleta y se eliminará en una futura versión.\"],\"c9V3Yo\":[\"Servidor fallido\"],\"c9iw51\":[\"Tareas en ejecución\"],\"c9pF61\":[\"Identificador del cliente\"],\"cFC8w7\":[\"Esta fuente de inventario está siendo utilizada por otros recursos que dependen de ella. ¿Está seguro de que desea eliminarla?\"],\"cFCKYZ\":[\"Denegar\"],\"cFOXv9\":[\"OIDC genérico\"],\"cGRiaP\":[\"Detalles del evento\"],\"cIdUma\":[\"\\n No hay directorios de playbook disponibles en \",[\"project_base_dir\"],\".\\n O ese directorio está vacío, o todo su contenido ya está\\n asignado a otros proyectos. Cree un nuevo directorio ahí y asegúrese\\n de que el usuario del sistema \\\"awx\\\" pueda leer los archivos del playbook,\\n o haga que \",[\"brandName\"],\" recupere directamente sus playbooks desde\\n el control de código fuente utilizando la opción Tipo de fuente de control anterior.\"],\"cNsIJf\":[\"Cambiado\"],\"cPTnDL\":[\"Sincronización del proyecto\"],\"cQIQa2\":[\"Seleccionar grupos\"],\"cQlPDN\":[\"Lectura\"],\"cUKLzq\":[\"Orden de edición\"],\"cYir0h\":[\"Seleccione la(s) opción(es)\"],\"c_PGsA\":[\"Ver detalles de la tarea\"],\"cbSPfq\":[\"Este flujo de trabajo ya ha sido actuado\"],\"ccA_Bz\":[\"El formato sugerido para los nombres de variables es minúsculas y\\n separados por guiones bajos (por ejemplo, foo_bar, user_id, host_name,\\n etc.). No se permiten los nombres de variables con espacios.\"],\"cdm6_X\":[\"Capacidad usada\"],\"chbm2W\":[\"Filtros de instancias\"],\"ci3mwY\":[\"Este campo no debe estar en blanco\"],\"cit9TY\":[\"Nombre de un artefacto producido por el nodo primario mediante set_stats. El enlace solo se sigue cuando el trabajo primario coincide con el resultado elegido y la condición es verdadera. Una clave inexistente nunca coincide.\"],\"cj1KTQ\":[\"Ver todos los inventarios.\"],\"cjJXKx\":[\"Servidor Async fallido\"],\"ckH3fT\":[\"Listo\"],\"ckdiAB\":[\"Eliminar notificación\"],\"cmWTxn\":[\"Menor o igual que la comparación.\"],\"cnGeoo\":[\"ELIMINAR\"],\"cnnWD0\":[\"By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>\",[\"0\"],\". Uncheck the following boxes to disable this feature.\"],\"ct_Puj\":[\"Este campo se recuperará de un sistema externo de gestión de claves secretas utilizando la credencial especificada.\"],\"cucDBz\":[\"Plantilla de contexto\"],\"cucG_7\":[\"No hay YAML disponible\"],\"cxjfgY\":[\"No se puede ejecutar la comprobación de estado en los nodos de salto.\"],\"cy3yJa\":[\"Establecido\"],\"d-F6q9\":[\"Creado\"],\"d-zGjA\":[\"Esta acción eliminará lo siguiente:\"],\"d1BVnY\":[\"A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>\",[\"0\"],\".\"],\"d5zxa4\":[\"Local\"],\"d6in1T\":[\"Seleccione el inventario que contiene los hosts que desea que gestione este trabajo.\"],\"d73flf\":[\"Modal de alerta\"],\"d75lEw\":[\"Establecer tipo\"],\"d7VUIS\":[\"Eliminar nodo \",[\"nodeName\"]],\"d8B-tr\":[\"Pestaña del gráfico de estado de la tarea\"],\"dAZObA\":[\"Redirigir URI\"],\"dBNZkl\":[\"Ver detalles del host de inventario inteligente\"],\"dCcO-F\":[\"No se pudo recuperar la configuración.\"],\"dELxuP\":[\"No se encontró el inventario.\"],\"dEgA5A\":[\"Cancelar\"],\"dH6aQY\":[\"Azure AD Tenant\"],\"dIb9tv\":[\"Ver todas las aplicaciones.\"],\"dJcvVX\":[\"Filtro de host inteligente\"],\"dNAHKF\":[\"Fraccionamiento de trabajos\"],\"dOjocz\":[\"Selección de convergencia\"],\"dPGRd8\":[\"Si está habilitado, muestra los cambios realizados por las tareas de Ansible, cuando es compatible. Esto equivale al modo --diff de Ansible.\"],\"dPY1x1\":[\"para obtener más información.\"],\"dQFAgv\":[\"Este proyecto debe actualizarse\"],\"dQjRO3\":[\"Iniciar proceso de sincronización\"],\"dbWo0h\":[\"Iniciar sesión con Google\"],\"dcGoCm\":[\"Archivo de inventario\"],\"ddIcfH\":[\"Ir a la última página\"],\"dfWFox\":[\"Recuento de hosts\"],\"dk7qNl\":[\"Nodo de control\"],\"dkGxGj\":[\"Subversion\"],\"dlHFy7\":[\"No se pudo eliminar uno o más entornos de ejecución\"],\"dnCwNB\":[\"¡Copiado correctamente en el portapapeles!\"],\"dov9kY\":[\"Este campo debe ser un número y tener un valor entre \",[\"0\"],\" y \",[\"1\"]],\"dqxQzB\":[\"diccionario\"],\"dzQfDY\":[\"Octubre\"],\"e0NrBM\":[\"Proyecto\"],\"e3pQqT\":[\"Elegir un tipo de notificación\"],\"e4GHWP\":[\"Extraer\"],\"e5CMOi\":[\"Variables de entorno o variables extra que especifican los valores que un tipo de credencial puede inyectar.\"],\"e5VbKq\":[\"Plantillas de trabajo para flujo de trabajo\"],\"e6BtDv\":[\"<0>\",[\"0\"],\"<1>\",[\"1\"],\"\"],\"e70-_3\":[\"Alternar leyenda\"],\"e8GyQg\":[\"Métrica\"],\"e8U63Z\":[\"Sincronice el proyecto solo cuando la referencia enviada coincida con este patrón, por ejemplo refs/heads/main o refs/heads/release-*. Deje en blanco para sincronizar en cualquier evento de push o etiqueta.\"],\"e91aLH\":[\"Ver todos los tipos de credencial\"],\"e9k5zp\":[\"Añada un horario para rellenar esta lista. Las programaciones pueden añadirse a una plantilla, un proyecto o una fuente de inventario.\"],\"eAR1n4\":[\"Tipo de búsqueda relacionado typeahead\"],\"eD_0Fo\":[\"No se pudo eliminar uno o más equipos.\"],\"eDjsWq\":[\"Crear nueva plantilla de notificación\"],\"eGkahQ\":[\"Eliminar plantilla de trabajo\"],\"eHx-29\":[\"Detalles de la fuente\"],\"ePK91l\":[\"Editar\"],\"ePS9As\":[\"Configuración de RADIUS\"],\"eQkgKV\":[\"Instalado\"],\"eRV9Z3\":[\"No se ha especificado el tiempo de espera\"],\"eRlz2Q\":[\"Números SMS del destinatario\"],\"eSXF_i\":[\"No se pudo eliminar la aplicación.\"],\"eTsJYJ\":[\"descripción\"],\"eVJ2lo\":[\"Decimal corto\"],\"eXOp7I\":[\"No tiene permisos para los recursos relacionados: \",[\"itemsUnableToremove\"]],\"eXWuGz\":[\"Pestaña de la lista de plantillas recientes\"],\"eYJ4TK\":[\"Inventario construido no encontrado.\"],\"eeke40\":[\"Automation Analytics\"],\"ekUnNJ\":[\"Seleccionar etiquetas\"],\"el9nUc\":[\"La programación está inactiva\"],\"emqNXf\":[\"Comprobación del playbook\"],\"eqiT7d\":[\"Establece el papel que desempeñará esta instancia dentro de la topología de malla. Por defecto es \\\"ejecución\\\".\"],\"espHeZ\":[\"Impedir la retroalimentación del grupo de instancias: Si se habilita, el inventario impedirá añadir cualquier grupo de instancias de la organización a la lista de grupos de instancias preferidos para ejecutar las plantillas de trabajo asociadas.\"],\"etQEqZ\":[\"Si quita este enlace, el resto de la rama quedará huérfano y hará que se ejecute inmediatamente en el lanzamiento.\"],\"ewSXyG\":[\"Eliminación Temporal\"],\"f-fQK9\":[\"Clave API de Grafana\"],\"f2o-xB\":[\"Confirmar cancelación\"],\"f6Hub0\":[\"Ordenar\"],\"f9yJNM\":[\"Igual a\"],\"fCZSgU\":[\"Ver todos los grupos de instancias\"],\"fDzxi_\":[\"Salir sin guardar\"],\"fE2kOY\":[\"Selección de operador de fecha\"],\"fGEOCn\":[\"Estado de la tarea\"],\"fGLpQj\":[\"Rama/etiqueta/commit de fuente de control\"],\"fGQ9Ug\":[\"Seleccione las credenciales para acceder a los nodos contra los que se ejecutará este trabajo. Solo puede seleccionar una credencial de cada tipo. Para las credenciales de máquina (SSH), marcar «Preguntar al iniciar» sin seleccionar credenciales le obligará a seleccionar una credencial de máquina en el momento de la ejecución. Si selecciona credenciales y marca «Preguntar al iniciar», las credenciales seleccionadas se convierten en los valores predeterminados que se pueden actualizar en el momento de la ejecución.\"],\"fJ9xam\":[\"Alternar instancia\"],\"fKew5B\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"Cancelar trabajo\"],\"other\":[\"Cancelar trabajos\"]}]],\"fL7WXr\":[\"Aplicaciones\"],\"fMUEsk\":[\"Día \",[\"0\"]],\"fMulwN\":[\"Actualizar la revisión del proyecto\"],\"fOAyP5\":[\"Entrada de texto de búsqueda\"],\"fODqV4\":[\"No se encontró ese valor. Ingrese o seleccione un valor válido.\"],\"fQCM-p\":[\"Ver detalles de la organización\"],\"fQGOXc\":[\"¡Error!\"],\"fR8DDt\":[\"Confirmar eliminación de todos los nodos\"],\"fVjyJ4\":[\"Confirmar disociación\"],\"f_Xpp2\":[\"Esta acción disociará lo siguiente:\"],\"fcTDCh\":[\"Proporcione sus credenciales de Red Hat o de Red Hat Satellite\\n a continuación y podrá elegir de una lista de sus suscripciones disponibles.\\n Las credenciales que utilice se almacenarán para su uso futuro\\n en la recuperación de suscripciones de renovación o ampliadas.\"],\"ff_JYN\":[\"Filtrar por nombre de grupo anidado\"],\"fgrmWn\":[\"Preguntar por el modo de diferencias al ejecutar.\"],\"fhFmMp\":[\"Identificador del cliente\"],\"fjX9i5\":[\"No se encontró el inventario inteligente.\"],\"fk1WEw\":[\"Cifrado\"],\"fld-O4\":[\"Todas las tareas\"],\"fnbZWe\":[\"Opcionalmente, seleccione la credencial que se utilizará para enviar actualizaciones de estado al servicio de webhook.\"],\"foItBN\":[\"Día del fin de semana\"],\"fp4RS1\":[\"content-loading-in-progress\"],\"fpMgHS\":[\"Lun\"],\"fqSfXY\":[\"Reemplazar\"],\"fqmP_m\":[\"Servidor no alcanzable\"],\"fthJP1\":[\"Los servicios de webhook pueden lanzar trabajos con esta plantilla de trabajo de flujo de trabajo realizando una solicitud POST a esta URL.\"],\"fwX7gC\":[\"VMware vCenter\"],\"g4o5Lr\":[\"Nivel de detalle\"],\"g6ekO4\":[\"No se pudo alternar el host.\"],\"g7CZ-8\":[\"Iniciar sesión con organizaciones GitHub Enterprise\"],\"g9d3sF\":[\"Iniciar cuerpo del mensaje\"],\"gALXcv\":[\"Eliminar este nodo\"],\"gBnBJa\":[\"Tarea del flujo de trabajo de origen\"],\"gDx5MG\":[\"Modificar enlace\"],\"gIGcbR\":[\"Número máximo de trabajos que se ejecutarán simultáneamente en este grupo. Cero significa que no se aplicará ningún límite.\"],\"gJccsJ\":[\"Mensaje de flujo de trabajo aprobado\"],\"gK06zh\":[\"Agregar plantilla de trabajo\"],\"gM3pS9\":[\"Entornos de ejecución\"],\"gN3aF4\":[\"LDAP5\"],\"gSVH9P\":[\"Sincronizar todas las fuentes\"],\"gUaMtt\":[\"En el tiempo de espera\"],\"gVYePj\":[\"Crear nuevo equipo\"],\"gWlcwd\":[\"Último estado de la tarea\"],\"gYWK-5\":[\"Ver la configuración de la interfaz de usuario\"],\"gZXc5U\":[\"El número de usuarios distintos que deben aprobar antes de que el flujo de trabajo continúe. Una única denegación siempre deniega el nodo.\"],\"gZaMqy\":[\"Iniciar sesión con equipos GitHub\"],\"gZkstf\":[\"Si está habilitado, esto almacenará los hechos recopilados para que puedan verse a nivel de host. Los hechos se conservan y se inyectan en la caché de hechos en tiempo de ejecución.\"],\"gcFnpl\":[\"Estado de la tarea\"],\"geTfDb\":[\"Ver detalles de la tarea\"],\"ged_ZE\":[\"Oragnización\"],\"gezukD\":[\"Seleccionar una tarea para cancelar\"],\"gfyddN\":[\"Cargar un archivo .zip\"],\"gh06VD\":[\"Salida\"],\"ghJsq8\":[\"Desplazarse hasta el primero\"],\"gmB6oO\":[\"Planificar\"],\"gmBQqV\":[\"Actualización del proyecto\"],\"gnveFZ\":[\"Pestaña de error estándar\"],\"goVc-x\":[\"Modificar configuración del complemento de credenciales\"],\"go_DGX\":[\"Agregar roles de equipo\"],\"gpKdxJ\":[\"Seleccione una pregunta para eliminar\"],\"gpmbqk\":[\"Variables\"],\"gpnvle\":[\"error de eliminación\"],\"gsj32g\":[\"Cancelar sincronización del proyecto\"],\"gtB4z-\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" hora\"],\"other\":[\"#\",\" horas\"]}]],\"gwKtbI\":[\"en la documentación y la\"],\"h25sKn\":[\"Administración de suscripciones\"],\"h51QFW\":[\"YAML\"],\"h8DugX\":[\"Etiquetas\"],\"hAjDQy\":[\"Seleccionar estado\"],\"hBHRCF\":[\"Número mínimo de instancias que se asignarán automáticamente\\n a este grupo cuando se conecten nuevas instancias.\"],\"hEBjSg\":[\"Red Hat Satellite 6\"],\"hEnNCI\":[\"Elimine la búsqueda actual relacionada con los hechos factibles para habilitar otra búsqueda usando esta clave.\"],\"hG89Ed\":[\"Imagen\"],\"hHKoQD\":[\"Seleccionar direcciones de pares\"],\"hLDu5N\":[\"Modificar aplicación\"],\"hNudM0\":[\"Establecer un valor para este campo\"],\"hPa_zN\":[\"Organización (Nombre)\"],\"hQ0dMQ\":[\"Agregar nuevo host\"],\"hQRttt\":[\"Enviar\"],\"hVPa4O\":[\"Seleccione una opción\"],\"hX8KyU\":[\"Este trabajo ha fallado y no tiene salida.\"],\"hXDKWN\":[\"Información sobre la frecuencia\"],\"hXzOVo\":[\"Siguiente\"],\"hYH0cE\":[\"¿Está seguro de que desea enviar la solicitud para cancelar este trabajo?\"],\"hYgDIe\":[\"Crear\"],\"hZ6znB\":[\"Puerto\"],\"hZke6f\":[\"¿Está seguro de que desea deshabilitar la autenticación local? Esto podría afectar la capacidad de los usuarios para iniciar sesión y la capacidad del administrador del sistema para revertir este cambio.\"],\"hc_ufD\":[\"Etiquetas de trabajo\"],\"hdyeZ0\":[\"Eliminar tarea\"],\"he3ygx\":[\"Copiar\"],\"heqHpI\":[\"Ruta base del proyecto\"],\"hg6l4j\":[\"Marzo\"],\"hgJ0FN\":[\"Realice una búsqueda para definir un filtro de host\"],\"hgr8eo\":[\"elementos\"],\"hgvbYY\":[\"Septiembre\"],\"hhzh14\":[\"No pudimos localizar las licencias asociadas a esta cuenta.\"],\"hi1n6B\":[\"Actualizar la configuración de los trabajos en \",[\"brandName\"]],\"hiDMCa\":[\"Aprovisionamiento\"],\"hjsbgA\":[\"Variables adicionales\"],\"hjwN_s\":[\"Nombre del recurso\"],\"hlbQEq\":[\"Credencial de validación de la firma del contenido\"],\"hmEecN\":[\"Trabajo de gestión\"],\"hmjNLv\":[\"Tema preferido\"],\"hty0d5\":[\"Lunes\"],\"hvs-Js\":[\"Información de la aplicación\"],\"i0VMLn\":[\"Mensaje de flujo de trabajo denegado\"],\"i2izXk\":[\"Falta una regla de programación\"],\"i4_LY_\":[\"Escribir\"],\"i9sC0B\":[\"Agregar permisos de equipo\"],\"iASwqf\":[\"This action will cancel the following job:\"],\"iCFhEl\":[\"Número de teléfono de la fuente\"],\"iDNBZe\":[\"Notificación\"],\"iDWfOR\":[\"Error al aprobar una o más aprobaciones de flujo de trabajo.\"],\"iDjyID\":[\"Ver detalles de la credencial\"],\"iE1s1P\":[\"Ejecutar flujo de trabajo\"],\"iEUzMn\":[\"sistema\"],\"iH8pgl\":[\"Volver\"],\"iI4bLJ\":[\"Último inicio de sesión\"],\"iIVceM\":[\"Copiar error\"],\"iJWOeZ\":[\"No hay ningún JSON disponible\"],\"iJiCFw\":[\"Detalles del grupo\"],\"iLO3nG\":[\"Recuento de jugadas\"],\"iMaC2H\":[\"Grupos de instancias\"],\"iPp22p\":[\"Esta programación utiliza reglas complejas que no son compatibles con la\\n interfaz de usuario. Utilice la API para gestionar esta programación.\"],\"iQdYL_\":[\"Agregar inventario inteligente\"],\"iRWxmA\":[\"Deshabilite la verificación de SSL\"],\"iTylMl\":[\"Plantillas\"],\"iWKCzl\":[\"Seleccione de la lista de directorios encontrados en la ruta base del proyecto. Juntos, la ruta base y el directorio de playbook proporcionan la ruta completa utilizada para localizar los playbooks.\"],\"iXmHtI\":[\"Seleccionar el tipo de tarea\"],\"iZBwau\":[\"Este paso contiene errores\"],\"i_CDGy\":[\"Permitir la anulación de la rama\"],\"i_Kv21\":[\"Crear nueva fuente\"],\"ifckL-\":[\"Selección de fila\"],\"ifdViT\":[\"Ver detalles del inventario\"],\"ig0q8s\":[\"Este inventario se aplica a todos los nodos de este flujo de trabajo (\",[\"0\"],\") que solicitan un inventario.\"],\"inP0J5\":[\"Detalles de la suscripción\"],\"isRobC\":[\"Nuevo\"],\"itlxml\":[\"Tarea de gestión\"],\"ittbfT\":[\"La búsqueda por ansible_facts requiere sintaxis especial. Consulte el\"],\"itu2NQ\":[\"Tipos de estado de los enlaces\"],\"j1a5f1\":[\"Modificar host\"],\"j6gqC6\":[\"Rama que se utilizará en la ejecución del trabajo. Se utiliza la predeterminada del proyecto si está en blanco. Solo se permite si el campo allow_override del proyecto está establecido en true.\"],\"j7zAEo\":[\"Estados del flujo de trabajo\"],\"j8QfHv\":[\"Editar el servidor\"],\"jAxdt7\":[\"cancelar eliminación\"],\"jBGh4u\":[\"Definición de inventario de grupos anidados:\"],\"jCVu9g\":[\"Cancel selected job\"],\"jEJtMA\":[\"Aprobaciones de flujos de trabajo pendientes\"],\"jEw0Mr\":[\"Introduzca una URL válida\"],\"jFaaUJ\":[\"Canónico\"],\"jGUu_G\":[\"Aprobaciones requeridas\"],\"jIaeJK\":[\"Encuesta\"],\"jJdwCB\":[\"Revertir\"],\"jKibyt\":[\"Restablecer zoom\"],\"jMyq_x\":[\"Workflow Job 1/\",[\"0\"]],\"jaUa4e\":[\"Estos datos se utilizan para mejorar\\n futuras versiones del software Tower y para ayudar a\\n optimizar la experiencia y el éxito del cliente.\"],\"jc86YO\":[\"Preguntar por el límite al ejecutar.\"],\"ji-8F7\":[\"Esta credencial está siendo utilizada por otros recursos. ¿Está seguro de que desea eliminarla?\"],\"jiE6Vn\":[\"Organizaciones\"],\"jifz9m\":[\"Ninguno (se ejecuta una vez)\"],\"jkQOCm\":[\"Añadir excepciones\"],\"jljuYN\":[\"Servicio desde el que se aceptarán las solicitudes de webhook.\"],\"jluR-N\":[\"Advertencia: \",[\"selectedValue\"],\" es un enlace a \",[\"0\"],\" y se guardará así.\"],\"joAQQS\":[\"The inventories will be in a pending status until the final delete is processed.\"],\"jqVo_k\":[\"aquí.\"],\"jqzUyM\":[\"No disponible\"],\"jrkyDn\":[\"Jugada iniciada\"],\"jrsFB3\":[\"Salida\"],\"jsz-PY\":[\"Fecha de finalización desconocida\"],\"jwmkq1\":[\"Credenciales de máquina\"],\"jzD-D6\":[\"Las etiquetas para omitir son útiles cuando tiene un playbook grande y desea omitir partes específicas de un play o una tarea. Utilice comas para separar varias etiquetas. Consulte la documentación para obtener detalles sobre el uso de las etiquetas.\"],\"k020kO\":[\"Flujo de actividad\"],\"k2dzu3\":[\"Fecha de expiración (UTC):\"],\"k30JvV\":[\"Categoría seleccionada\"],\"k5nHqi\":[\"El entorno de ejecución que se utilizará al iniciar esta plantilla de trabajo. El entorno de ejecución resuelto puede anularse asignando explícitamente uno diferente a esta plantilla de trabajo.\"],\"kALwhk\":[\"seconds\"],\"kDWprA\":[\"Estos argumentos se utilizan con el módulo especificado.\"],\"kEhyki\":[\"El campo termina con un valor.\"],\"kLja4m\":[\"Inicializado por\"],\"kLk5bG\":[\"Iniciar mensaje\"],\"kNUkGV\":[\"Tipo de búsqueda\"],\"kNfXib\":[\"Nombre del módulo\"],\"kODvZJ\":[\"Nombre\"],\"kOVkPY\":[\"Alternar instancia\"],\"kP-3Hw\":[\"Volver a Inventarios\"],\"kQerRU\":[\"Este campo no debe contener espacios\"],\"kX-GZH\":[\"Volver a ejecutar la tarea\"],\"kXzl6Z\":[\"Variables de fuente\"],\"kYDvK4\":[\"Incluyendo fichero\"],\"kah1PX\":[\"Ver ejemplos de YAML en\"],\"kaux7o\":[\"Sobrescribir grupos locales y servidores desde una fuente remota del inventario.\"],\"kgtWJ0\":[\"Seleccione los grupos de instancias en los que se ejecutará esta plantilla de trabajo.\"],\"kiMHN-\":[\"Auditor del sistema\"],\"kjrq_8\":[\"Más información\"],\"kkDQ8m\":[\"Jueves\"],\"kkc8HD\":[\"Habilite el inicio de sesión simplificado para sus aplicaciones \",[\"brandName\"]],\"kpRn7y\":[\"Eliminar pregunta\"],\"kpnWnY\":[\"Después de cada actualización del proyecto en la que cambie la revisión de SCM, actualice el inventario de la fuente seleccionada antes de ejecutar las tareas del trabajo. Esto está destinado a contenido estático, como el formato de archivo .ini de inventario de Ansible.\"],\"ks-HYT\":[\"Agregar permisos de usuario\"],\"ks71ra\":[\"Excepciones\"],\"kt8V8M\":[\"Seleccione una rama para el flujo de trabajo.\"],\"ktPOqw\":[\"Consulte\"],\"kuIbuV\":[\"Las comprobaciones de estado solo se pueden ejecutar en los nodos de ejecución.\"],\"ku__5b\":[\"Segundo\"],\"kyAi7k\":[\"Instancia\"],\"kyHUFI\":[\"Contraseña Vault | \",[\"credId\"]],\"kyfr2I\":[\"Si se marca, todos los hosts y grupos que estaban presentes anteriormente en la fuente externa pero que ahora se han eliminado se eliminarán del inventario. Los hosts y grupos que no eran gestionados por la fuente de inventario se promoverán al siguiente grupo creado manualmente o, si no hay ningún grupo creado manualmente al que promoverlos, se dejarán en el grupo predeterminado \\\"all\\\" del inventario.\"],\"kz7G1W\":[\"¿Está seguro de que desea eliminar el acceso de \",[\"0\"],\" a \",[\"1\"],\"? Esto afecta a todos los miembros del equipo.\"],\"l4MzBY\":[[\"update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" segundo\"],\"other\":[\"#\",\" segundos\"]}]],\"l4k9lc\":[\"Primer nodo\"],\"l5XUoS\":[\"Credenciales de Webhook\"],\"l75CjT\":[\"SÍ\"],\"l9ZmWD\":[[\"scm_update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" segundo\"],\"other\":[\"#\",\" segundos\"]}]],\"lCF0wC\":[\"Actualizar\"],\"lJFsGr\":[\"Crear nuevo grupo de instancias\"],\"lKxoCA\":[\"Expandir eventos de trabajo\"],\"lM9cbX\":[\"Ten en cuenta que es posible que sigas viendo el grupo en la lista después de disociarlo si el anfitrión también es miembro de los hijos de ese grupo. Esta lista muestra todos los grupos con los que el anfitrión está asociado directa e indirectamente.\"],\"lURfHJ\":[\"Contraer sección\"],\"lWkKSO\":[\"min\"],\"lWmv3p\":[\"Fuentes de inventario\"],\"lYDyXS\":[\"Inventario inteligente\"],\"l_jRvf\":[\"Playbook terminado\"],\"lfoFSg\":[\"Borrar un host\"],\"lgm7y2\":[\"modificar\"],\"lgphOX\":[\"Valor esperado\"],\"lhgU4l\":[\"No se encontró la plantilla.\"],\"lhkaAC\":[\"Prueba\"],\"ljGeYw\":[\"Usuario normal\"],\"lk5WJ7\":[\"host-name-\",[\"0\"]],\"lkgIYt\":[\"Pagerduty\"],\"lo-rJO\":[\"Desplazar hacia abajo\"],\"ltvmAF\":[\"No se encontró la aplicación.\"],\"lu2qW5\":[\"Cualquiera\"],\"lucaxq\":[\"No se puede habilitar el agregador de registros sin proporcionar el host del agregador de registros y el tipo de agregador de registros.\"],\"luxcrf\":[\"Más información para \",[\"label\"]],\"lyjq5X\":[\"Slack\"],\"m-eV2_\":[\"No se encontró el grupo de contenedores.\"],\"m16xKo\":[\"Añadir\"],\"m1tKEz\":[\"Los administradores del sistema tienen acceso ilimitado a todos los recursos.\"],\"m2ErDa\":[\"Fallo\"],\"m3k6kn\":[\"No se ha podido cancelar la sincronización de origen de inventario construido\"],\"m5MOUX\":[\"Volver a Hosts\"],\"mGJIOu\":[\"Esta entrada de inventario construida\\n crea un grupo para ambas categorías y utiliza\\n el límite (patrón de host) para devolver solo los hosts que\\n están en la intersección de esos dos grupos.\"],\"mNBZ1R\":[\"Nota: Este campo asume que el nombre del repositorio remoto es «origin».\"],\"mOFgdC\":[\"Máximo\"],\"mPiYpP\":[\"Tipos de estado de los nodos\"],\"mSv_7k\":[\"Formulación 2:\"],\"mXRKES\":[\"LDAP4\"],\"mXfNlE\":[\"Faltan los valores de la encuesta requeridos en esta programación\"],\"mYGY3B\":[\"Fecha\"],\"mZiQNk\":[\"Escalada de privilegios: si está habilitado, ejecute este playbook como administrador.\"],\"m_tELA\":[\"Cancelar reversión\"],\"ma7cO9\":[\"No se pudo eliminar el grupo \",[\"0\"],\".\"],\"mahPLs\":[\"Contraseña para la elevación de privilegios\"],\"mcGG2z\":[[\"minutes\"],\" min. \",[\"seconds\"],\" seg\"],\"mdNruY\":[\"Token API\"],\"mgJ1oe\":[\"Confirmar eliminación\"],\"mgjN5u\":[\"¿Disociar instancia del grupo de instancias?\"],\"mhg7Av\":[\"Ejecutar comando ad hoc\"],\"mi9ffh\":[\"Detalles del host\"],\"mk4anB\":[\"Predeterminado del navegador\"],\"mlDUq3\":[\"Modificado por (nombre de usuario)\"],\"mnm1rs\":[\"GitHub predeterminado\"],\"moZ0VP\":[\"Estado de sincronización\"],\"momgZ_\":[\"Nombre de la plantilla de trabajo del flujo de trabajo.\"],\"mqAOoN\":[\"Elegir un directorio de playbook\"],\"n-37ya\":[\"Confirmar deshabilitación de la autorización local\"],\"n-LISx\":[\"Se produjo un error al guardar el flujo de trabajo.\"],\"n-ZioH\":[\"Error al recuperar el proyecto actualizado\"],\"n-qmM7\":[\"Seleccione una clave de cuenta de servicio con formato JSON para autocompletar los siguientes campos.\"],\"n12Go4\":[\"No se han podido cargar los grupos relacionados.\"],\"n60kiJ\":[\"* Este campo se recuperará de un sistema de gestión de claves secretas externo con la credencial especificada.\"],\"n6mYYY\":[\"Mensaje de tiempo de espera agotado del flujo de trabajo\"],\"n9Idrk\":[\"(Limitado a los primeros 10)\"],\"n9lz4A\":[\"Tareas fallidas\"],\"nBAIS_\":[\"Mostrar detalles del evento\"],\"nC35Na\":[\"Are you sure you want delete the group below?\"],\"nCU-1E\":[\"Permite la creación de una URL de devolución\\n de llamada de aprovisionamiento. A través de esta URL, un host puede ponerse en contacto con \",[\"brandName\"],\"\\n y solicitar una actualización de la configuración utilizando esta plantilla\\n de trabajo\"],\"nCY9IL\":[\"Servidor omitido\"],\"nDjIzD\":[\"Ver detalles del proyecto\"],\"nGbNEN\":[\"Tiempo en segundos para considerar que un proyecto está actualizado. Durante las ejecuciones de trabajos y las devoluciones de llamada, el sistema de tareas evaluará la marca de tiempo de la última actualización del proyecto. Si es anterior al tiempo de espera de la caché, no se considera actual y se realizará una nueva actualización del proyecto.\"],\"nI54lc\":[\"Eliminar el proyecto antes de la sincronización\"],\"nJPBvA\":[\"Archivo, directorio o script\"],\"nJTOTZ\":[\"El entorno de ejecución que se utilizará para las tareas dentro de esta organización. Se utilizará como reserva cuando no se haya asignado explícitamente un entorno de ejecución en el nivel de proyecto, plantilla de trabajo o flujo de trabajo.\"],\"nLGsp4\":[\"Habilite una encuesta para esta plantilla de trabajo del flujo de trabajo.\"],\"nMiE53\":[\"Variable habilitada\"],\"nOhz3x\":[\"Finalización de la sesión\"],\"nPH1Cr\":[\"Estos entornos de ejecución podrían ser utilizados por otros recursos que dependen de ellos. ¿Está seguro de que desea eliminarlos de todos modos?\"],\"nQOwDS\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"dayOfWeek\"]],\"4\":[\"The fourth \",[\"dayOfWeek\"]],\"5\":[\"The fifth \",[\"dayOfWeek\"]],\"one\":[\"The first \",[\"dayOfWeek\"]],\"two\":[\"The second \",[\"dayOfWeek\"]]}]],\"nRXCOn\":[\"Recuento de hosts fallidos\"],\"nSTT11\":[\"Volver a ejecutar desde:\"],\"nTENWI\":[\"Volver a la gestión de suscripciones.\"],\"nU16mp\":[\"Tiempo de espera de la caché\"],\"nZPX7r\":[\"Aviso: modificaciones no guardadas\"],\"nZW6P0\":[\"Huso horario local\"],\"nZYB4j\":[\"No hay estado disponible\"],\"nZYxse\":[\"¿Disociar host del grupo?\"],\"n_qDNz\":[\"Switch to dark mode\"],\"naCW6Z\":[\"Abril\"],\"ncxIQL\":[\"No se pudo disociar una o más instancias.\"],\"neiOWk\":[\"Ver documentación del inventario construido aquí\"],\"nfnm9D\":[\"Nombre de la organización\"],\"ng00aZ\":[\"Filtro de host\"],\"nhxAdQ\":[\"Palabra clave\"],\"nlsWzF\":[\"Agregue preguntas de la encuesta.\"],\"nnY7VU\":[\"Subdominio Pagerduty\"],\"noGZlf\":[\"Tiempo de espera de la caché (segundos)\"],\"npGo-z\":[\"Iniciar sesión con \",[\"label\"]],\"nuh_Wq\":[\"URL de Webhook\"],\"nvUq8j\":[\"1 (Nivel de detalle)\"],\"nzozOC\":[\"Eliminar usuario\"],\"nzr1qE\":[\"Se rechazó la carga de archivos. Seleccione un único archivo .json.\"],\"o-JPE2\":[\"No se encontraron preguntas de la encuesta.\"],\"o0RwAq\":[\"Iniciar sesión con GitHub Enterprise\"],\"o0x5-R\":[\"Seleccionar un valor para este campo\"],\"o4NRE0\":[\"Entrada de valores de búsqueda avanzada\"],\"o5J6dR\":[\"Especificar las condiciones en las que debe ejecutarse este nodo\"],\"o9R2tO\":[\"Conexión SSL\"],\"oABS9f\":[\"Proporcione un valor para este campo o seleccione la opción Preguntar al ejecutar.\"],\"oB5EwG\":[\"Sistema externo de gestión de claves secretas\"],\"oBmCtD\":[\"Are you sure you want delete the groups below?\"],\"oC5JSb\":[\"No se han podido obtener los datos actualizados del proyecto.\"],\"oCKCYp\":[\"Notificación enviada correctamente\"],\"oEijQ7\":[\"Versión de startswith que no distingue mayúsculas de minúsculas.\"],\"oFtmtl\":[\"Select the inventory containing the hosts\\n you want this job to manage.\"],\"oGKq12\":[\"Construir 2 grupos, límite de intersección\"],\"oH1Qle\":[\"URL de webhook para esta plantilla de trabajo del flujo de trabajo.\"],\"oHOOxn\":[\"De forma predeterminada, recopilamos y transmitimos datos analíticos sobre el uso del servicio a Red Hat. Hay dos categorías de datos recopilados por el servicio. Para obtener más información, consulte <0>esta página de documentación de la Torre. Desmarque las siguientes casillas para desactivar esta función.\"],\"oII7vS\":[\"Configuración de GitHub\"],\"oKMFX4\":[\"Nunca actualizado\"],\"oKbBFU\":[\"# source with sync failures.\"],\"oNOjE7\":[\"Fecha/hora de finalización\"],\"oNZQUQ\":[\"Credencial para autenticarse con Kubernetes u OpenShift\"],\"oQqtoP\":[\"Volver a las tareas de gestión\"],\"oRt7Uv\":[[\"interval\"],\" years\"],\"oTDA5P\":[[\"0\",\"plural\",{\"one\":[\"Esta instancia está siendo utilizada actualmente por otros recursos. ¿Está seguro de que desea eliminarla?\"],\"other\":[\"Desaprovisionar estas instancias podría afectar a otros recursos que dependen de ellas. ¿Está seguro de que desea eliminarlas de todos modos?\"]}]],\"oWvSIB\":[\"Dirección de correo del remitente\"],\"oX_mCH\":[\"Error en la sincronización del proyecto\"],\"oZvDsd\":[[\"interval\"],\" hours\"],\"ocUvR-\":[\"Falso\"],\"ofO19Q\":[\"Iniciar sesión con equipos de GitHub Enterprise\"],\"ofcQVG\":[\"Modal de cambios no guardados\"],\"olEUh2\":[\"Correctamente\"],\"opS--k\":[\"Volver a los grupos de instancias\"],\"orh4t6\":[\"Servidor OK\"],\"osCeRO\":[\"Ver la configuración de Azure AD\"],\"ot7qsv\":[\"Borrar todos los filtros\"],\"ovBPCi\":[\"Predeterminado\"],\"owBGkJ\":[\"El final no coincide con un valor esperado (\",[\"0\"],\")\"],\"owQ8JH\":[\"Agregar grupo de instancias\"],\"ozbhWy\":[\"Error de eliminación\"],\"p-nfFx\":[\"Arrastre un archivo aquí o navegue para cargarlo\"],\"p-ngUo\":[\"Dejar de seguir a\"],\"p-pp9U\":[\"cadena\"],\"p2LEhJ\":[\"Token de acceso personal\"],\"p2_GCq\":[\"Confirmar la contraseña\"],\"p3PM8G\":[\"Volver a ejecutar desde el primer nodo\"],\"p6-JME\":[\"El primero obtiene todas las referencias. El segundo obtiene la pull request de Github número 62; en este ejemplo, la rama debe ser «pull/62/head».\"],\"pAtylB\":[\"No encontrado\"],\"pCCQER\":[\"Disponible globalmente\"],\"pH8j40\":[\"Anfitriones activos eliminados anteriormente\"],\"pHyx6k\":[\"Selección múltiple\"],\"pKQcta\":[\"Personalizar especificaciones del pod\"],\"pOJNDA\":[\"comando\"],\"pOd3wA\":[\"Presione 'Intro' para agregar más opciones de respuesta. Una opción de respuesta por línea.\"],\"pOhwkU\":[\"Esta acción disociará el siguiente rol de \",[\"0\"],\":\"],\"pRZ6hs\":[\"Ejecutar el\"],\"pSypIG\":[\"Mostrar descripción\"],\"pYENvg\":[\"Tipo de autorización\"],\"pZJ0-s\":[\"Número máximo de horquillas para permitir que todos los trabajos se ejecuten simultáneamente en este grupo. Cero significa que no se aplicará ningún límite.\"],\"pa1SrG\":[[\"interval\"],\" days\"],\"peCAyQ\":[\"Ver la configuración de RADIUS\"],\"pfw0Wr\":[\"TODOS\"],\"pguZh2\":[\"Cree vars a partir de expresiones jinja2. Esto puede ser útil\\n si los grupos construidos que define no contienen los hosts\\n esperados. Esto se puede usar para añadir hostvars a partir de expresiones para\\n que sepa cuáles son los valores resultantes de esas expresiones.\"],\"phTgAm\":[\"Es difícil dar una especificación para\\n el inventario de los hechos de Ansible, porque para rellenar\\n los hechos del sistema es necesario ejecutar un playbook contra\\n el inventario que tiene `gather_facts: true`. Los\\n hechos reales diferirán de un sistema a otro.\"],\"pkY73W\":[\"Rocket.Chat\"],\"pn7Xy3\":[\"Ver Django\"],\"poMgBa\":[\"Preguntar por la rama de SCM al ejecutar.\"],\"ppcQy0\":[\"Establecer zoom al 100% y centrar el gráfico\"],\"prydaE\":[\"Errores de sincronización del proyecto\"],\"pw2VDK\":[\"El último \",[\"weekday\"],\" de \",[\"month\"]],\"q-Uk_P\":[\"No se pudo eliminar uno o más tipos de credenciales.\"],\"q45OlW\":[\"Regiones\"],\"q5tQBE\":[\"Establecer el tipo deshabilitado para las búsquedas difusas de campos de búsqueda relacionados\"],\"q67y3T\":[\"No se encontró ninguna plantilla de notificación.\"],\"qAlZNb\":[\"No puede actuar en las siguientes aprobaciones de flujo de trabajo: \",[\"itemsUnableToDeny\"]],\"qCUUnr\":[\"No más servidores\"],\"qChjCy\":[\"Primera ejecución\"],\"qD-pvR\":[\"ID del panel de control (opcional)\"],\"qEMgTP\":[\"Error en la sincronización de fuentes de inventario\"],\"qJK-de\":[\"Iniciar sesión con SAML \"],\"qS0GhO\":[\"Falta el entorno de ejecución\"],\"qSSVmd\":[\"Canales destinatarios o usuarios\"],\"qSSg1L\":[\"Enlace a un nodo disponible\"],\"qWD0iN\":[\"Estos datos se utilizan para mejorar\\n futuras versiones del software y para proporcionar\\n Automation Analytics.\"],\"qXRYa2\":[\"Seguimiento del último commit de los submódulos en la rama\"],\"qYkrfg\":[\"Detalles de callback de aprovisionamiento\"],\"qZ2MTC\":[\"Estos son los módulos que \",[\"brandName\"],\" admite para ejecutar comandos.\"],\"qgjtIt\":[\"Convergencia\"],\"qlhQw_\":[\"Sincronización de inventario\"],\"qliDbL\":[\"Archivo remoto\"],\"qlwLcm\":[\"Solución de problemas\"],\"qmBmJJ\":[\"Esta es la única vez que se mostrará la clave secreta del cliente.\"],\"qmYgP7\":[\"aprobado\"],\"qqeAJM\":[\"Nunca\"],\"qtFFSS\":[\"Revisión de actualización durante el lanzamiento\"],\"qtaMu8\":[\"Inventario (Nombre)\"],\"qvCD_i\":[\"Los ejemplos incluyen:\"],\"qwaCoN\":[\"Actualización de fuente de control\"],\"qxZ5RX\":[\"hosts\"],\"qznBkw\":[\"Modal de enlace del flujo de trabajo\"],\"r6Aglb\":[\"Ingrese inyectores a través de la sintaxis JSON o YAML. Consulte la documentación de Ansible Tower para ver la sintaxis de ejemplo.\"],\"r6y-jM\":[\"Advertencia\"],\"r6zgGo\":[\"Diciembre\"],\"r8ojWq\":[\"Confirmar la reinicialización\"],\"r8oq0Y\":[\"Últimas 24 horas\"],\"rBdPPP\":[\"No se pudo eliminar \",[\"name\"],\".\"],\"rE95l8\":[\"Tipo de cliente\"],\"rG3WVm\":[\"Seleccionar\"],\"rHK_Sg\":[\"El entorno virtual personalizado \",[\"virtualEnvironment\"],\" debe ser sustituido por un entorno de ejecución. Para más información sobre la migración a entornos de ejecución, consulte la <0>documentación.\"],\"rK7UBZ\":[\"Volver a ejecutar todos los hosts\"],\"rKS_55\":[\"Almacenamiento de hechos: si está habilitado, esto almacenará los hechos recopilados para que puedan verse a nivel de host. Los hechos se conservan y se inyectan en la caché de hechos en tiempo de ejecución.\"],\"rKTFNB\":[\"Eliminar tipo de credencial\"],\"rLznGJ\":[\"Una plantilla Jinja2 renderizada con los artefactos set_stats anteriores cuando se crea la aprobación. Use esto para mostrar al aprobador el contexto relevante de los pasos de trabajo anteriores. Las variables disponibles provienen de los datos set_stats de los nodos primarios.\"],\"rMrKOB\":[\"No se pudo sincronizar el proyecto.\"],\"rOZRCa\":[\"Enlace del flujo de trabajo\"],\"rSYkIY\":[\"Este campo debe ser un número\"],\"rXhu41\":[\"2 (Depurar)\"],\"rYHzDr\":[\"Elementos por página\"],\"r_IfWZ\":[\"Editar inventario\"],\"rdUucN\":[\"Vista previa\"],\"rfYaVc\":[\"Nombre de la variable de respuesta\"],\"rfpIXM\":[\"Preguntar por los grupos de instancias al ejecutar.\"],\"rfx2oA\":[\"Cuerpo del mensaje de flujo de trabajo pendiente\"],\"riBcU5\":[\"Alias en IRC\"],\"rjVfy3\":[\"Documentación del flujo de trabajo\"],\"rjyWPb\":[\"Enero\"],\"rmb2GE\":[\"Denegado por \",[\"0\"],\" - \",[\"1\"]],\"rmt9Tu\":[\"Total de anfitriones\"],\"ruhGSG\":[\"Cancelar sincronización de la fuente del inventario\"],\"rvia3m\":[\"Autenticación diversa\"],\"rw1pRJ\":[\"Descargar el paquete\"],\"rwWNpy\":[\"Inventarios\"],\"s-MGs7\":[\"Recursos\"],\"s2xYUy\":[\"Sobrescribir las variables locales desde una fuente remota del inventario.\"],\"s3KtlK\":[\"Este horario no tiene ocurrencias debido a las excepciones seleccionadas.\"],\"s4Qnj2\":[\"Entorno de ejecución\"],\"s4fge-\":[\"Mes pasado\"],\"s5aIEB\":[\"Eliminar plantilla de trabajo del flujo de trabajo\"],\"s5mACA\":[\"Detalles de la instancia\"],\"s5r5nt\":[[\"0\",\"plural\",{\"one\":[\"Este grupo de instancias está siendo utilizado actualmente por otros recursos. ¿Está seguro de que desea eliminarlo?\"],\"other\":[\"Eliminar estos grupos de instancias podría afectar a otros recursos que dependen de ellos. ¿Está seguro de que desea eliminarlos de todos modos?\"]}]],\"s6F6Ks\":[\"No se encontró una salida para este trabajo.\"],\"s70SJY\":[\"Configuración del registro\"],\"s8hQty\":[\"Ver todas las tareas.\"],\"s9EKbs\":[\"Deshabilitar verificación SSL\"],\"sAz1tZ\":[\"confirmar disociación\"],\"sBJ5MF\":[\"Fuentes\"],\"sCEb_0\":[\"Ver todos los hosts de inventario.\"],\"sGodAp\":[\"Anulación de las especificaciones del pod\"],\"sMDRa_\":[\"Volver a Grupos\"],\"sOMf4x\":[\"Plantillas recientes\"],\"sSFxX6\":[\"Revisión de la actualización en el lanzamiento del trabajo\"],\"sTkKoT\":[\"Selecciona una fila para rechazar\"],\"sUyFTB\":[\"Redirigir al panel de control\"],\"sV3kNp\":[\"Este grupo de instancias está siendo utilizado por otros recursos. ¿Está seguro de que desea eliminarlo?\"],\"sVh4-e\":[\"Eliminar este enlace\"],\"sW5OjU\":[\"requerido\"],\"sZif4m\":[\"¿Disociar grupos relacionados?\"],\"s_XkZs\":[\"INICIAR\"],\"s_r4Az\":[\"Este campo debe ser un número entero\"],\"sesAIn\":[\"Use mensajes personalizados para cambiar el contenido de las\\n notificaciones enviadas cuando un trabajo se inicia, tiene éxito o falla. Use\\n llaves para acceder a la información sobre el trabajo:\"],\"sgRZMG\":[\"Nodo híbrido\"],\"siJgSI\":[\"No se encontró el usuario.\"],\"sjMCOP\":[\"Último modificado\"],\"sjVfrA\":[\"Comando\"],\"smFRaX\":[\"Ya se ha lanzado un trabajo\"],\"sqMsvU\":[[\"0\",\"plural\",{\"one\":[\"#\",\" fuente con fallos de sincronización.\"],\"other\":[\"#\",\" fuentes con fallos de sincronización.\"]}]],\"sr4LMa\":[\"Fuente de inventario\"],\"svR3aM\":[\"OpenStack\"],\"svy2x9\":[\"Devuelve resultados que satisfacen este filtro o cualquier otro filtro.\"],\"sxkWRg\":[\"Avanzado\"],\"syupn5\":[\"Imagen de marca\"],\"syyeb9\":[\"Primero\"],\"t-R8-P\":[\"Ejecución\"],\"t2q1xO\":[\"Modificar programación\"],\"t4v_7X\":[\"Seleccionar un tipo de nodo\"],\"t9QlBd\":[\"Noviembre\"],\"tRm9qR\":[\"Las etiquetas son útiles cuando tiene un playbook grande y desea ejecutar una parte específica de un play o una tarea. Utilice comas para separar varias etiquetas. Consulte la documentación para obtener detalles sobre el uso de las etiquetas.\"],\"tVEot_\":[[\"0\",\"plural\",{\"one\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"other\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"]}]],\"tXkhj_\":[\"Iniciar\"],\"t_YqKh\":[\"Eliminar\"],\"tbSVlt\":[\"Eliminar el acceso del usuario\"],\"tfDRzk\":[\"Guardar\"],\"tfh2eq\":[\"Haga clic para crear un nuevo enlace a este nodo.\"],\"tgPwON\":[\"Operador\"],\"tgSBSE\":[\"Quitar enlace\"],\"tgWuMB\":[\"Modificado\"],\"thJljW\":[\"ADVERTENCIA: \"],\"toJdZA\":[\"Reorder\"],\"tpCmSt\":[\"policy rules.\"],\"tqlcfo\":[\"Desaprovisionamiento\"],\"trjiIV\":[\"Error al asociar a un compañero.\"],\"tst44n\":[\"Eventos\"],\"twE5a9\":[\"No se pudo eliminar la credencial.\"],\"txNbrI\":[\"Rama de fuente de control\"],\"ty2DZX\":[\"Esta organización está siendo utilizada por otros recursos. ¿Está seguro de que desea eliminarla?\"],\"tzgOKK\":[\"Ya se ha actuado al respecto\"],\"u-sh8m\":[\"/ (raíz del proyecto)\"],\"u4ex5r\":[\"Julio\"],\"u4n8Fm\":[\"No se han podido eliminar los compañeros.\"],\"u4x6Jy\":[\"Volver a Tareas\"],\"u5AJST\":[\"La cantidad de procesos paralelos o simultáneos para utilizar durante la ejecución del playbook. Si no ingresa un valor, se utilizará el valor predeterminado del archivo de configuración de Ansible. Para obtener más información,\"],\"u7f6WK\":[\"Ver todas las aprobaciones del flujo de trabajo.\"],\"u84wS1\":[\"Error en la cancelación de tarea\"],\"uAQUqI\":[\"Estado\"],\"uAhZbx\":[\"Fuentes de inventario con fallas\"],\"uCjD1h\":[\"Su sesión ha expirado. Inicie sesión para continuar.\"],\"uImfEm\":[\"Mensaje de flujo de trabajo pendiente\"],\"uJz8NJ\":[\"La búsqueda se desactiva durante la ejecución de la tarea\"],\"uPRp5U\":[\"Cancelar búsqueda\"],\"uTDtiS\":[\"Quinto\"],\"uUehLT\":[\"Esperando\"],\"uVu1Yt\":[\"Establecer selección del tipo\"],\"uYtvvN\":[\"Seleccione un proyecto antes de modificar el entorno de ejecución.\"],\"ucSTeu\":[\"Creado por (nombre de usuario)\"],\"ucgZ0o\":[\"Organización\"],\"ugZpot\":[\"Prueba de credenciales externas\"],\"ulRNXw\":[\"Dragging cancelled. List is unchanged.\"],\"upC07l\":[\"Survey Disabled\"],\"uuPCEU\":[\"If you want the Inventory Source to update on launch , click on Update on Launch, and also go to \"],\"uyJsf6\":[\"Acerca de\"],\"uzTiFQ\":[\"Volver a Programaciones\"],\"v-CZEv\":[\"Preguntar al ejecutar\"],\"v-EbDj\":[\"Configuración de solución de problemas\"],\"v-M-LP\":[\"Ejecutar plantilla\"],\"v0urVb\":[\"Si no tiene una suscripción, puede visitar\\n Red Hat para obtener una suscripción de prueba.\"],\"v1kQyJ\":[\"Webhooks\"],\"v2dMHj\":[\"Relanzar utilizando los parámetros de host\"],\"v2gmVS\":[\"Esta acción eliminará suavemente lo siguiente:\"],\"v45yUL\":[\"disociar\"],\"v7vAuj\":[\"Tareas totales\"],\"vCS_TJ\":[\"No se pudo eliminar la fuente del inventario \",[\"name\"],\".\"],\"vEr6TL\":[\"Estos argumentos se utilizan con el módulo especificado. Puede encontrar información sobre \",[\"0\"],\" haciendo clic en \"],\"vF82C6\":[\"Ejecutar cuando el nodo primario se encuentre en estado correcto.\"],\"vFKI2e\":[\"Reglas de programación\"],\"vFVhzc\":[\"SOCIAL\"],\"vGVmd5\":[\"Este campo se ignora a menos que se establezca una variable habilitada. Si la variable habilitada coincide con este valor, el host se habilitará en la importación.\"],\"vGjmyl\":[\"Eliminado\"],\"vHAaZi\":[\"Saltar cada\"],\"vIb3RK\":[\"Crear nuevo planificador\"],\"vKRQJB\":[\"Campo para pasar una especificación personalizada de Kubernetes u OpenShift Pod.\"],\"vLyv1R\":[\"Ocultar\"],\"vPrMqH\":[\"Revisión n°\"],\"vQHUI6\":[\"Si está marcada, todas las variables para grupos secundarios y hosts se eliminarán y reemplazarán por las que se encuentran en la fuente externa.\"],\"vTL8gi\":[\"Hora de terminación\"],\"vUOn9d\":[\"Volver\"],\"vYFWsi\":[\"Seleccionar equipos\"],\"vYuE8q\":[\"Tiempo transcurrido de la ejecución de la tarea \"],\"vZbIkJ\":[\"GitLab\"],\"vcH-SH\":[\"Centro de datos de Bitbucket\"],\"ve_jRy\":[\"Con condición\"],\"vgwVkd\":[\"UTC\"],\"vlHGDw\":[\"Pase variables de línea de comandos adicionales al playbook. Este es el parámetro de línea de comandos -e o --extra-vars para ansible-playbook. Proporcione pares clave/valor utilizando YAML o JSON. Consulte la documentación para ver un ejemplo de sintaxis.\"],\"voRH7M\":[\"Ejemplos:\"],\"vq1XXv\":[\"Crear un nuevo inventario inteligente con el filtro aplicado\"],\"vq2WxD\":[\"Mar\"],\"vq9gg6\":[\"No puede actuar en las siguientes aprobaciones de flujo de trabajo: \",[\"itemsUnableToApprove\"]],\"vqAmQC\":[\"Módulo\"],\"vvY8pz\":[\"Preguntar por las etiquetas omitidas al ejecutar.\"],\"vye-ip\":[\"Preguntar por el tiempo de espera al ejecutar.\"],\"vzsN_5\":[[\"interval\"],\" day\"],\"w07pgp\":[\"Preguntar por la verbosidad al ejecutar.\"],\"w0kTk8\":[\"Volver a ejecutar desde el nodo fallido\"],\"w14eW4\":[\"Ver todos los tokens.\"],\"w1RiT6\":[[\"0\",\"plural\",{\"one\":[\"Esta fuente de inventario está siendo utilizada actualmente por otros recursos que dependen de ella. ¿Está seguro de que desea eliminarla?\"],\"other\":[\"Eliminar estas fuentes de inventario podría afectar a otros recursos que dependen de ellas. ¿Está seguro de que desea eliminarlas de todos modos?\"]}]],\"w2VTLB\":[\"Menor que la comparación.\"],\"w3EE8S\":[\"Hosts automatizados\"],\"w4j7js\":[\"Ver detalles del equipo\"],\"w6zx64\":[\"Usar predeterminado del navegador\"],\"wCnaTT\":[\"Reemplazar el campo con un valor nuevo\"],\"wF-BAU\":[\"Agregar inventario\"],\"wFnb77\":[\"ID de inventario\"],\"wKEfMu\":[\"Procesamiento de eventos completo.\"],\"wO29qX\":[\"No se encontró la organización.\"],\"wW08QA\":[\"Distinto de\"],\"wX6sAX\":[\"Últimos dos años\"],\"wXAVe-\":[\"Argumentos del módulo\"],\"wXB7k5\":[\"Especifique un color de notificación. Los colores aceptables son el código\\n de color hexadecimal (ejemplo: #3af o #789abc).\"],\"waFx9W\":[\"Gestionado\"],\"wdxz7K\":[\"Fuente\"],\"wgNoIs\":[\"Seleccionar todo\"],\"wkgHlv\":[\"Agregar un nuevo nodo\"],\"wlQNTg\":[\"Miembros\"],\"wnizTi\":[\"Seleccionar una suscripción\"],\"wpT1VN\":[\"Condición\"],\"wpt6vB\":[\"LDAP2\"],\"wqXiR2\":[\"Transfiera cambios adicionales de línea de comandos. Hay dos parámetros de línea de comandos de ansible: \"],\"wsggVq\":[\"Si no se marca, los anfitriones secundarios locales y los grupos que no se encuentren en la fuente externa no se verán afectados por el proceso de actualización del inventario.\"],\"x-a4Mr\":[\"Credencial de Webhook\"],\"x02hbg\":[\"Devoluciones de llamada de aprovisionamiento: habilita la creación de una URL de devolución de llamada de aprovisionamiento. Mediante la URL, un host puede contactar con Ansible AWX y solicitar una actualización de configuración utilizando esta plantilla de trabajo.\"],\"x4Xp3c\":[\"actualizado\"],\"x5DnMs\":[\"Última modificación\"],\"x6_dAC\":[\"Inventario federado\"],\"x6oT_o\":[\"Hosts disponibles\"],\"x7PDL5\":[\"Registros\"],\"x8uKc7\":[\"Estado de instancia\"],\"x9WS62\":[\"Cancelar \",[\"0\"]],\"xAYSEs\":[\"Hora de inicio\"],\"xAqth4\":[\"Ver la configuración de Google OAuth 2.0\"],\"xC9EVu\":[\"Nodo cancelado\"],\"xCJdfg\":[\"Borrar\"],\"xDr_ct\":[\"Fin\"],\"xESTou\":[\"No se pudo eliminar la tarea.\"],\"xF5tnT\":[\"Contraseña Vault\"],\"xGQZwx\":[\"Agregar grupo de contenedores\"],\"xGVfLh\":[\"Continuar\"],\"xHZS6u\":[\"Tareas exitosas\"],\"xHokxV\":[[\"0\",\"plural\",{\"one\":[\"The selected job cannot be deleted due to insufficient permission or a running job status\"],\"other\":[\"The selected jobs cannot be deleted due to insufficient permissions or a running job status\"]}]],\"xHt036\":[\"Token de acceso personal\"],\"xKQRBr\":[\"Longitud máxima\"],\"xM01Pk\":[\"Respuesta predeterminada\"],\"xONDaO\":[\"Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?\"],\"xOl1yT\":[\"Búsqueda exacta en el campo de nombre.\"],\"xPO5w7\":[\"Iniciar sesión con GitHub\"],\"xPpkbX\":[\"Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway\"],\"xPxMOJ\":[\"Formato de hora no válido\"],\"xQioPk\":[\"Condiciones previas para ejecutar este nodo cuando hay varios elementos primarios. Consulte\"],\"xSytdh\":[\"FINALIZADO:\"],\"xUhTCP\":[\"Elegir una fuente\"],\"xVhQZV\":[\"Vie\"],\"xY9DEq\":[\"El patrón utilizado para dirigir los hosts en el inventario. Si se deja el campo en blanco, todos y * se dirigirán a todos los hosts del inventario. Para encontrar más información sobre los patrones de hosts de Ansible,\"],\"xY9s5E\":[\"Tiempo de espera\"],\"x_Ej3K\":[\"Elija un tipo o formato de respuesta que desee como indicación para el usuario.\\n Consulte la documentación de Ascender para obtener información adicional sobre cada opción.\"],\"x_ugm_\":[\"Grupos totales\"],\"xa7N9Z\":[\"Editar la URL de redirección de inicio de sesión\"],\"xcaG5l\":[\"Editar el flujo de trabajo\"],\"xd2LI3\":[\"Expira el \",[\"0\"]],\"xdA_-p\":[\"Herramientas\"],\"xe5RvT\":[\"Pestaña YAML\"],\"xefC7k\":[\"Puerto del servidor IRC\"],\"xeiujy\":[\"Texto\"],\"xg771-\":[\"LDAP1\"],\"xhj1Rt\":[\"No se pudo encontrar la página solicitada.\"],\"xi4nE2\":[\"Mensaje de error\"],\"xnSIXG\":[\"No se pudo eliminar uno o más hosts.\"],\"xoCdYY\":[\"Comprobar si el valor del campo dado está presente en la lista proporcionada; se espera una lista de elementos separada por comas.\"],\"xoXoBo\":[\"Eliminar el error\"],\"xrG8k4\":[\"Google Compute Engine\"],\"xtRU96\":[\"Organización de GitHub Enterprise\"],\"xuYTJb\":[\"No se pudo eliminar la plantilla de trabajo.\"],\"xw06rt\":[\"La configuración coincide con los valores predeterminados de fábrica.\"],\"xxTtJH\":[\"Expresión regular en la que solo se importarán los nombres de host que coincidan. El filtro se aplica como un paso posterior al procesamiento después de que se aplique cualquier filtro de complemento de inventario.\"],\"y11WBZ\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"Cancelar el trabajo seleccionado\"],\"other\":[\"Cancelar los trabajos seleccionados\"]}]],\"y8ibKI\":[\"Eliminar instancias\"],\"yCCaoF\":[\"No se pudo actualizar la encuesta.\"],\"yDeNnS\":[\"Crear nuevo inventario construido\"],\"yDifzB\":[\"Confirmar selección\"],\"yGS9cI\":[\"Saludable\"],\"yGUKlf\":[\"Tareas de gestión\"],\"yGfW7Y\":[\"Cambie PROJECTS_ROOT al implementar \",[\"brandName\"],\" para cambiar esta ubicación.\"],\"yMIahh\":[\"¡Bienvenido a Red Hat Ansible Automation Platform!\\n Complete los pasos a continuación para activar su suscripción.\"],\"yMYuDg\":[\"Versión del controlador de automatización\"],\"yMfU4O\":[\"Correo electrónico del remitente\"],\"yNcGa2\":[\"Expiración del token de acceso\"],\"yOXgbH\":[\"Nota: Cuando utilice el protocolo SSH para GitHub o Bitbucket, introduzca únicamente una clave SSH, no introduzca un nombre de usuario (que no sea git). Además, GitHub y Bitbucket no admiten la autenticación por contraseña cuando se utiliza SSH. El protocolo GIT de solo lectura (git://) no utiliza información de nombre de usuario ni de contraseña.\"],\"yQE2r9\":[\"Cargando\"],\"yRiHPB\":[\"Ejecute un trabajo para rellenar esta lista.\"],\"yRkqG9\":[\"Límite\"],\"yRsSBw\":[\"Aprobaciones\"],\"yUlffE\":[\"Relanzar\"],\"yVgnJA\":[\"El número máximo de hosts que se permite gestionar a esta organización.\\n El valor predeterminado es 0, lo que significa sin límite. Consulte la documentación\\n de Ansible para obtener más detalles.\"],\"yX3qAQ\":[\"Nodos de plantilla de trabajo para flujo de trabajo\"],\"yaG1CX\":[\"LDAP\"],\"yaX9sM\":[\"Plantilla de flujo de trabajo\"],\"yb_fjw\":[\"Aprobación\"],\"ydoZpB\":[\"No se encontró la tarea.\"],\"ydw9CW\":[\"Hosts fallidos\"],\"yfG3F2\":[\"Teclas directas\"],\"yjwMJ8\":[\"¿Cuántas veces se ha automatizado el anfitrión?\"],\"yjyGja\":[\"Expandir la entrada\"],\"ylXj1N\":[\"Seleccionado\"],\"yq6OqI\":[\"Esta es la única vez que se mostrará el valor del token y el valor del token de actualización asociado.\"],\"yqiwAW\":[\"Cancelar el flujo de trabajo\"],\"yrUyDQ\":[\"Establece la etapa actual del ciclo de vida de esta instancia. Por defecto es \\\"instalado\\\".\"],\"yrwl2P\":[\"Compatible\"],\"yuXsFE\":[\"No se pudo eliminar una o más aprobaciones del flujo de trabajo.\"],\"yuvDX_\":[[\"intervalValue\",\"plural\",{\"one\":[\"month\"],\"other\":[\"months\"]}]],\"ywSBEn\":[\"Asociar error del rol\"],\"yxDqcD\":[\"Expiración del código de autorización\"],\"yy1cWw\":[\"Personalizar mensajes.\"],\"yz7wBu\":[\"Cerrar\"],\"yzQhLU\":[\"Mínimo de instancias de políticas\"],\"yzdDia\":[\"Eliminar encuesta\"],\"z-BNGk\":[\"Eliminar token de usuario\"],\"z0DcIS\":[\"cifrado\"],\"z3XA1I\":[\"Reintentar servidor\"],\"z409y8\":[\"Servicio de Webhook\"],\"z7NLxJ\":[\"Si solo desea eliminar el acceso de este usuario específico, elimínelo del equipo.\"],\"z8mwbl\":[\"Porcentaje mínimo de todas las instancias que se asignarán automáticamente a este grupo cuando se conecten nuevas instancias.\"],\"zBO1TV\":[[\"numOccurrences\",\"plural\",{\"one\":[\"Después de \",\"#\",\" ocurrencia\"],\"other\":[\"Después de \",\"#\",\" ocurrencias\"]}]],\"zHcXAG\":[\"Deje este campo en blanco para que el entorno de ejecución esté disponible globalmente.\"],\"zICM7E\":[\"Descartar los cambios locales antes de la sincronización\"],\"zJY4Uj\":[\"Playbook\"],\"zKJMiH\":[\"Directorio de playbook\"],\"zK_63z\":[\"Nombre de usuario o contraseña no válidos. Intente de nuevo.\"],\"zLsDix\":[\"usuario ldap\"],\"zMKkOk\":[\"Volver a Organizaciones\"],\"zN0nhk\":[\"Proporcione sus credenciales de Red Hat o Red Hat Satellite para habilitar Automation Analytics.\"],\"zQRgi-\":[\"Iniciar alternancia de notificaciones\"],\"zTediT\":[\"Este campo debe ser un número y tener un valor entre \",[\"min\"],\" y \",[\"max\"]],\"zUIPys\":[\"Añade anfitriones al grupo según las condiciones de Jinja2.\"],\"z_PZxu\":[\"No se pudo eliminar la aprobación del flujo de trabajo.\"],\"zbLCH1\":[\"Tipo de inventario\"],\"zcQj5X\":[\"Primero, seleccione una clave\"],\"zdl7YZ\":[\"Seleccionar la ruta de origen\"],\"zeEQd_\":[\"Junio\"],\"zf7FzC\":[\"Credencial para autenticarse con Kubernetes u OpenShift. Debe ser del tipo \\\"Kubernetes/OpenShift API Bearer Token\\\". Si se deja en blanco, se usará la cuenta de servicio del Pod subyacente.\"],\"zfZydd\":[\"Modal de vista previa de la encuesta\"],\"zfsBaJ\":[\"Obtenga más información sobre Automation Analytics\"],\"zgInnV\":[\"Modal de vista del nodo de flujo de trabajo\"],\"zga9sT\":[\"OK\"],\"zhPLvU\":[\"No se pudo asociar.\"],\"zhrjek\":[\"Grupos\"],\"zi_YNm\":[\"No se ha podido cancelar \",[\"0\"]],\"zmu4-P\":[\"Cuenta SID\"],\"znG7ed\":[\"Seleccionar un playbook\"],\"znTz5r\":[\"Programación no encontrada.\"],\"znuW_M\":[\"En caso afirmativo, haga que las entradas no válidas sean un error fatal; de lo contrario, omita y\\n continúe.\"],\"zq0gmb\":[\"Seleccionar periodo\"],\"ztOzCj\":[\"Actualizar al ejecutar\"],\"ztw2L3\":[\"Debe haber un valor en al menos una entrada\"],\"zvfXp0\":[\"Aprobaciones para alternar las notificaciones\"],\"zx4BuL\":[\"Semana\"],\"zzDlyQ\":[\"Correcto\"],\"{count, plural, one {# fork} other {# forks}}\":[[\"count\",\"plural\",{\"one\":[\"#\",\" fork\"],\"other\":[\"#\",\" forks\"]}]]}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"--iDlT\":[\"Eliminar proyecto\"],\"-0AkQd\":[[\"forks\",\"plural\",{\"one\":[\"#\",\" tenedor\"],\"other\":[\"#\",\" tenedores\"]}]],\"-0B-ue\":[\"Proyectos\"],\"-5kO8P\":[\"Sábado\"],\"-6EcFR\":[\"Presione Intro para modificar. Presione ESC para detener la edición.\"],\"-7M7WW\":[\"Haga clic para alternar el valor predeterminado\"],\"-7VWRl\":[\"RAM \",[\"0\"]],\"-8WGoO\":[\"El parámetro del plugin es obligatorio.\"],\"-9d7Ol\":[\"Subdominio Pagerduty\"],\"-9y9jy\":[\"Última comprobación de estado\"],\"-9yY_Q\":[\"No se pudo copiar el inventario.\"],\"-AZQnp\":[\"SAML\"],\"-FWz2-\":[\"Desplazarse hasta el anterior\"],\"-FjWgX\":[\"Jue\"],\"-GMFSa\":[\"No se pudo copiar el proyecto.\"],\"-GOG9X\":[\"Ocultar descripción\"],\"-NI2UI\":[\"Divida el trabajo realizado por esta plantilla de trabajo en el número especificado de segmentos de trabajo, cada uno de los cuales ejecuta las mismas tareas contra una parte del inventario.\"],\"-NezOR\":[\"Este tipo de credencial está siendo utilizado por algunas credenciales y no se puede eliminar\"],\"-OpL2l\":[\"Ejecutar independientemente del estado final del nodo primario.\"],\"-PyL32\":[\"¿Está seguro de que desea eliminar este nodo?\"],\"-RAMET\":[\"Modificar este enlace\"],\"-SAqJ3\":[\"No se pudo copiar la credencial.\"],\"-Uepfb\":[\"Control\"],\"-b3ghh\":[\"Elevación de privilegios\"],\"-cWxFz\":[\"Habilite la firma de contenido para verificar que el contenido ha permanecido seguro cuando se sincroniza un proyecto. Si el contenido ha sido manipulado, el trabajo no se ejecutará.\"],\"-hh3vo\":[\"No se puede cargar la última actualización del trabajo\"],\"-li8PK\":[\"Uso de suscripción\"],\"-nb9qF\":[\"(Preguntar al ejecutar)\"],\"-ohrPc\":[\"Escritura anticipada de la búsqueda\"],\"-rfqXD\":[\"Encuesta habilitada\"],\"-uOi7U\":[\"Haga clic para descargar el paquete\"],\"-vAlj5\":[\"No se pudo ejecutar la tarea.\"],\"-z0Ubz\":[\"Seleccionar los roles para aplicar\"],\"-zW4qj\":[\"Rama que se va a extraer. Además de las ramas, puede introducir etiquetas, hashes de commit y refs arbitrarias. Es posible que algunos hashes de commit y refs no estén disponibles a menos que también proporcione un refspec personalizado.\"],\"-zy2Nq\":[\"Tipo\"],\"0-31GV\":[\"Eliminación de\"],\"0-yjzX\":[\"El proyecto debe estar sincronizado antes de que una revisión esté disponible.\"],\"00_HDq\":[\"Tipo de política\"],\"00cteM\":[\"Este campo no debe superar los \",[\"0\"],\" caracteres\"],\"01Zgfk\":[\"Tiempo de espera agotado\"],\"02FGuS\":[\"Crear nuevo grupo\"],\"02ePaq\":[\"Seleccionar \",[\"0\"]],\"02o5A-\":[\"Crear nuevo proyecto\"],\"05TJDT\":[\"Haga clic para ver los detalles de la tarea\"],\"06Veq8\":[\"Sincronizar proyecto\"],\"08IuMU\":[\"Anular variables\"],\"08dX0o\":[\"Grafana\"],\"0Ca6Bi\":[[\"dateStr\"],\" por <0>\",[\"username\"],\"\"],\"0DRyjU\":[\"Handlers ejecutándose\"],\"0JjrTf\":[\"Se produjo un error al analizar el archivo. Compruebe el formato del archivo e inténtelo de nuevo.\"],\"0K8MzY\":[\"Este campo no debe superar los \",[\"max\"],\" caracteres\"],\"0LUj25\":[\"Eliminar grupo de instancias\"],\"0MFMD5\":[\"No se ha podido ejecutar una comprobación de estado en una o más instancias.\"],\"0Ohn6b\":[\"Ejecutado por\"],\"0PUWHV\":[\"Frecuencia de repetición\"],\"0Pz6gk\":[\"Variables utilizadas para configurar el plugin de inventario construido. Para obtener una descripción detallada de cómo configurar este complemento, consulte\"],\"0QsHpG\":[\"Esquema de entrada que define un conjunto de campos ordenados para ese tipo.\"],\"0Tddvz\":[\"La URL base del servidor de Grafana: el punto de acceso\\n /api/annotations se agregará automáticamente a la URL base\\n de Grafana.\"],\"0WL4_U\":[\"Eliminar todos los nodos\"],\"0WP27-\":[\"Esperando la salida de la tarea…\"],\"0YAsXQ\":[\"Grupo de contenedores\"],\"0ZdD1M\":[[\"0\",\"plural\",{\"one\":[\"You cannot cancel the following job because it is not running:\"],\"other\":[\"You cannot cancel the following jobs because they are not running:\"]}]],\"0ZqUtV\":[\"Para obtener más información, consulte la\"],\"0_ru-E\":[\"Copiar inventario\"],\"0cqIWs\":[\"Contraseña de autenticación básica\"],\"0d48JM\":[\"Opciones de selección múltiple\"],\"0eOoxo\":[\"Seleccione una fecha/hora de finalización que sea posterior a la fecha/hora de inicio.\"],\"0f7U0k\":[\"Mié\"],\"0gPQCa\":[\"Siempre\"],\"0lvFRT\":[\"No puede cambiar el tipo de credencial de una credencial, ya que puede romper la funcionalidad de los recursos que la utilizan.\"],\"0pC_y6\":[\"Evento\"],\"0qOaMt\":[\"Se ha producido un error en la solicitud para probar esta credencial y metadatos.\"],\"0rVzXl\":[\"Configuración de Google OAuth 2\"],\"0sNe72\":[\"Agregar roles\"],\"0tNXE8\":[\"COLOCAR\"],\"0tfvhT\":[\"Capacidad utilizada del grupo de instancias\"],\"0wlLcO\":[\"Establecer cuántos días de datos debería ser retenidos.\"],\"0zpgxV\":[\"Opciones\"],\"0zs8j5\":[\"Número máximo de veces que el trabajo de este nodo se reintenta automáticamente tras un fallo antes de seguir sus rutas de fallo. Los trabajos cancelados nunca se reintentan.\"],\"1-4GhF\":[\"Cancelar sincronización\"],\"10B0do\":[\"No se pudo enviar la notificación de prueba.\"],\"1280Tg\":[\"Nombre de Host\"],\"12j25_\":[\"Clave pública GPG\"],\"12kemj\":[\"URL de fuente de control\"],\"14KOyT\":[\"source ./ vars\"],\"15GcuU\":[\"Ver la configuración de la autenticación de varios\"],\"17TKua\":[\"Grupo de instancias\"],\"19zgn6\":[\"Tipo de instancia\"],\"1A3EXy\":[\"Expandir\"],\"1C5cFl\":[\"Siguiente ejecución\"],\"1Ey8My\":[\"Dirección IP\"],\"1F0IaT\":[\"Ver programaciones\"],\"1HMy92\":[\"JSON:\"],\"1I6UoR\":[\"Vistas\"],\"1L3KBl\":[\"Crear un nuevo tipo de credencial\"],\"1LRwvx\":[\"Si desea que la fuente de inventario se actualice al ejecutar, haga clic en Actualizar al ejecutar y también vaya a \"],\"1Ltnvs\":[\"Agregar nodo\"],\"1PQRWr\":[\"Hora de inicio\"],\"1QRNEs\":[\"Frecuencia de repetición\"],\"1RYzKu\":[\"Volver a ejecutar desde el nodo cancelado\"],\"1UJu6o\":[\"Seleccione un número de día entre 1 y 31.\"],\"1UjRxI\":[\"Tiempo de espera de la caché\"],\"1UzENP\":[\"No\"],\"1V4Yvg\":[\"Sistemas varios\"],\"1WlWk7\":[\"Ver detalles del host del inventario\"],\"1WsB5U\":[\"No pudimos localizar las suscripciones asociadas a esta cuenta.\"],\"1ZaQUH\":[\"Apellido\"],\"1_gTC7\":[\"No se pueden seleccionar varias credenciales con el mismo ID de Vault, ya que anulará automáticamente la selección de la otra con el mismo ID de Vault.\"],\"1abtmx\":[\"Promover grupos secundarios y hosts\"],\"1ahgeV\":[\"Google OAuth2\"],\"1cT4RU\":[\"Actualización de SCM\"],\"1fO-kL\":[\"No se pudo alternar la instancia.\"],\"1hCxP5\":[\"No se pudo eliminar uno o más grupos de instancias.\"],\"1kwHxg\":[\"Métricas\"],\"1n50PN\":[\"Pestaña JSON\"],\"1qd4yi\":[\"Ingrese variables con sintaxis JSON o YAML. Use el botón de selección para alternar entre los dos.\"],\"1rDBnp\":[\"Diferencias del fichero\"],\"1w2SCz\":[\"Elegir un tipo de fuente de control\"],\"1xdJD7\":[\"Ajustar a la pantalla\"],\"1yHVE-\":[\"Añadiendo\"],\"2-iKER\":[\"Ver el flujo de actividad\"],\"2B_v7Y\":[\"Porcentaje de instancias de políticas\"],\"2CTKOa\":[\"Volver a Proyectos\"],\"2FB7vv\":[\"Seleccione una organización antes de modificar el entorno de ejecución predeterminado.\"],\"2FeJcd\":[\"Elemento omitido\"],\"2H9REH\":[\"Búsqueda difusa en el campo del nombre.\"],\"2JV4mx\":[\"Los grupos de instancias a los que pertenece esta instancia.\"],\"2KlsJC\":[\"Puede aplicar una serie de variables posibles en el\\n mensaje. Para obtener más información, consulte la\"],\"2MSEkM\":[\"No se pudo eliminar el inventario.\"],\"2a07Yj\":[\"Copiar plantilla de notificaciones\"],\"2ekvhy\":[\"Frecuencia de las excepciones\"],\"2gDkH_\":[\"Por favor, introduzca un número de ocurrencias.\"],\"2iyx-2\":[\"Documentación del controlador Ansible.\"],\"2n41Wr\":[\"Agregar plantilla de flujo de trabajo\"],\"2nsB1O\":[\"Volver a Tokens\"],\"2ocqzE\":[\"Webhooks: Habilitar webhook para esta plantilla.\"],\"2ooR7j\":[\"LDAP 5\"],\"2p6eVk\":[\"Modal de búsqueda\"],\"2pNIxF\":[\"Nodos de flujo de trabajo\"],\"2pgi-L\":[\"Indica si un host está disponible y debe incluirse en la ejecución de\\n trabajos. Para los hosts que forman parte de un inventario externo, esto puede\\n restablecerse mediante el proceso de sincronización del inventario.\"],\"2qfwJn\":[\"Anular\"],\"2r06bV\":[\"HipChat\"],\"2rvMKg\":[\"Actualizar token\"],\"2w-INk\":[\"Detalles del host\"],\"2zs1kI\":[\"Este valor no coincide con la contraseña introducida anteriormente. Confirme la contraseña.\"],\"3-SkJA\":[\"¿Disociar grupo del host?\"],\"3-sY1p\":[\"Números SMS del destinatario\"],\"328Yxp\":[\"Rama de fuente de control\"],\"38Or-7\":[\"Pestañas\"],\"38VIWI\":[\"Ver detalles de la plantilla\"],\"39y5bn\":[\"Viernes\"],\"3A9ATS\":[\"No se encontró el entorno de ejecución.\"],\"3AOZPn\":[\"Ver y editar opciones de depuración\"],\"3FUtN9\":[\"Sincronización de fuentes de inventario\"],\"3IVQDN\":[\"Esta programación utiliza reglas complejas que no son compatibles con la\\n interfaz de usuario. Utilice la API para gestionar esta programación.\"],\"3JjdaA\":[\"Ejecutar\"],\"3JnvxN\":[\"Elija los recursos que recibirán nuevos roles. Podrá seleccionar los roles que se aplicarán en el siguiente paso. Tenga en cuenta que los recursos elegidos aquí recibirán todos los roles elegidos en el siguiente paso.\"],\"3JzsDb\":[\"Mayo\"],\"3LoUor\":[\"Canales destinatarios\"],\"3LqMX2\":[\"CIQ Ascender Automation Platform\"],\"3PAU4M\":[\"Año\"],\"3PZalO\":[\"No se encontró el host.\"],\"3Rke7L\":[\"1 (Información)\"],\"3WGwSW\":[\"Elimine el repositorio local en su totalidad antes de realizar una actualización. Según el tamaño del repositorio, esto puede aumentar significativamente la cantidad de tiempo necesario para completar una actualización.\"],\"3YSVMq\":[\"Error de eliminación\"],\"3aIe4Y\":[\"Crear nueva organización\"],\"3b24mY\":[\"CPU \",[\"0\"]],\"3fG1e7\":[\"Tiempo transcurrido\"],\"3fMc43\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" año\"],\"other\":[\"#\",\" años\"]}]],\"3hCQhK\":[\"Complementos de inventario\"],\"3hvUyZ\":[\"nueva elección\"],\"3mTiHp\":[\"No se pudo copiar la plantilla.\"],\"3pBNb0\":[\"Descargar salida\"],\"3sFvGC\":[\"Establezca la instancia habilitada o deshabilitada. Si se desactiva, los trabajos no se asignarán a esta instancia.\"],\"3sXZ-V\":[\"y haga clic en Actualizar revisión en Launch.\"],\"3uAM50\":[\"Acuerdo de licencia de usuario final\"],\"3wPA9L\":[\"Categoría de la configuración\"],\"3y7qi5\":[\"Volver a Credenciales\"],\"3yy_k-\":[\"Ver todos los equipos.\"],\"4-RjdJ\":[[\"interval\"],\" year\"],\"40lLFI\":[\"Ir a la página siguiente\"],\"41KRqu\":[\"Contraseñas de credenciales\"],\"45BzQy\":[\"Las comprobaciones de estado son tareas asincrónicas. Consulte la\"],\"45cx0B\":[\"Cancelar modificación de la suscripción\"],\"45gLaI\":[\"Preguntar por las credenciales al ejecutar.\"],\"46SUtl\":[\"Editar grupo\"],\"479kuh\":[\"Copie la revisión completa al portapapeles.\"],\"47e97a\":[\"Reintentos máximos\"],\"4BITzH\":[\"Error:\"],\"4LzLLz\":[\"Ver todas las configuraciones\"],\"4Q4HZp\":[\"No se ha encontrado \",[\"pluralizedItemName\"]],\"4QXpWJ\":[\"agotado\"],\"4QfhOe\":[\"Algunos modificadores de búsqueda como not__ y __search no se admiten en los filtros de host del Inventario Inteligente. Elimínelos para crear un nuevo inventario inteligente con este filtro.\"],\"4S2cNE\":[\"Ver la configuración del registro\"],\"4Wt2Ty\":[\"Seleccionar elementos de la lista\"],\"4_ESDh\":[\"Este campo debe ser una expresión regular\"],\"4_xiC_\":[\"Artefactos\"],\"4alXD6\":[\"Número máximo de trabajos que se ejecutarán simultáneamente en este grupo.\\n Cero significa que no se aplicará ningún límite.\"],\"4bhLaA\":[\"Seleccionar un tipo de credencial\"],\"4cWhxn\":[\"Controla si esta instancia está gestionada por la directiva o no. Si está habilitada, la instancia estará disponible para la asignación automática y la desasignación de grupos de instancias en función de las reglas de la política.\"],\"4dQFvz\":[\"Finalizado\"],\"4g1rw0\":[\"La cantidad de tiempo (en segundos) antes de que la notificación\\n de correo electrónico deje de intentar conectarse con el host\\n y caduque el tiempo de espera. Va de 1 a 120 segundos.\"],\"4hPyPF\":[\"Guardar y salir\"],\"4j2eOR\":[\"Seleccione el inventario al que pertenecerá este host.\"],\"4jnim6\":[\"Seleccione un servicio de webhook.\"],\"4km-Vu\":[\"No cumple con los requisitos\"],\"4kw_um\":[[\"interval\"],\" minute\"],\"4lCMxZ\":[\"Explicación del fallo:\"],\"4lgLew\":[\"Febrero\"],\"4mQyZf\":[\"Los servicios de webhook pueden usar esto como un secreto compartido.\"],\"4nLbTY\":[\"Ver todas las tareas de gestión\"],\"4o_cFL\":[\"Eliminar aplicación\"],\"4s0pSB\":[\"Proporcione un patrón de host para restringir aún más la lista de hosts que serán gestionados o afectados por el playbook. Se permiten varios patrones. Consulte la documentación de Ansible para obtener más información y ejemplos sobre patrones.\"],\"4uVADI\":[\"Clave secreta del cliente\"],\"4vFDZV\":[\"Crear nueva plantilla de trabajo\"],\"4vkbaA\":[\"El proyecto del que proviene esta actualización de inventario.\"],\"4yGeRr\":[\"Sincronización de inventario\"],\"4zue79\":[\"Copyright\"],\"5-qYGv\":[\"Editar instancia\"],\"54_SyV\":[[\"0\",\"plural\",{\"one\":[\"You do not have permission to cancel the following job:\"],\"other\":[\"You do not have permission to cancel the following jobs:\"]}]],\"56fd5u\":[\"¿Está seguro de que desea eliminar todos los nodos de este flujo de trabajo?\"],\"5B77Dm\":[\"Última tarea\"],\"5F5F4w\":[\"Aprobación del flujo de trabajo\"],\"5IhYoj\":[\"Tipos de nodo\"],\"5K7kGO\":[\"documentación\"],\"5KMGbn\":[\"¿Está seguro de que desea cancelar esta tarea?\"],\"5RMgCw\":[\"Servidores\"],\"5S4tZv\":[\"La frecuencia no coincide con un valor esperado\"],\"5Sa1Ss\":[\"Correo electrónico\"],\"5TnQp6\":[\"Tipo de trabajo\"],\"5WFDw4\":[\"Agrupar solo por\"],\"5X2wog\":[\"Hubo un problema al iniciar sesión. Inténtelo de nuevo.\"],\"5_vHPm\":[\"Ver la configuración de TACACS+\"],\"5ajaW1\":[\"Ejecutar cuando un artefacto del nodo primario cumpla la condición.\"],\"5dJK4M\":[\"Roles\"],\"5eHyY-\":[\"Probar notificación\"],\"5eL2KN\":[\"URL destino\"],\"5lqXf5\":[\"Revertir a los valores predeterminados de fábrica.\"],\"5n_soj\":[\"Preguntar por el número de segmentos de trabajo al ejecutar.\"],\"5p6-Mk\":[\"Filtrar por trabajos fallidos\"],\"5pDe2G\":[\"Remove \",[\"0\"],\" Access\"],\"5pa4JT\":[\"Playbook iniciado\"],\"5qauVA\":[\"Esta plantilla de trabajo del flujo de trabajo está siendo utilizada por otros recursos. ¿Está seguro de que desea eliminarla?\"],\"5vA8H0\":[\"Ningún servidor corresponde\"],\"5xzS8Q\":[\"Token que garantiza que se trata de un archivo de origen\\n para el plugin ‘construido’.\"],\"5y9wkB\":[\"Volver a Notificaciones\"],\"6-OdGi\":[\"Protocolo\"],\"6-ptnU\":[\"opción a\"],\"623gDt\":[\"No se pudo eliminar el usuario.\"],\"63C4Yo\":[\"Grupo de contenedores\"],\"66Zq7T\":[\"Guardar los cambios del enlace\"],\"66qTfS\":[\"Semana pasada\"],\"679-JR\":[\"Búsqueda difusa en los campos id, nombre o descripción.\"],\"68OTAn\":[\"This intance is currently being used by other resources. Are you sure you want to delete it?\"],\"68h6WG\":[\"Ejecutar tarea de gestión\"],\"69aXwM\":[\"Agregar grupo existente\"],\"69zuwn\":[\"Deprovisioning these instances could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"6ASSBg\":[\"LDAP 4\"],\"6BzDub\":[\"Eliminación Temporal\"],\"6GBt0m\":[\"Metadatos\"],\"6HLTEb\":[\"Filtrar...\"],\"6J-cs1\":[\"Tiempo de espera en segundos\"],\"6KhU4s\":[\"¿Está seguro de que desea salir del Creador de flujo de trabajo sin guardar los cambios?\"],\"6LTyxl\":[\"Revisión\"],\"6PmtyP\":[\"Alternar leyenda\"],\"6RDwJM\":[\"Tokens\"],\"6UYTy8\":[\"Minuto\"],\"6V3Ea3\":[\"Copiado\"],\"6WwHL3\":[\"Nodos totales\"],\"6XOI1I\":[\"Crear nuevo inventario federado\"],\"6XgEPi\":[\"Hora\"],\"6YtxFj\":[\"Nombre\"],\"6Z5ACo\":[\"Clave de configuración del servidor\"],\"6bpC9t\":[\"Nodo fallido\"],\"6cylr_\":[\"Stdout\"],\"6f961q\":[\"Solo si falta\"],\"6hEnxG\":[\"Habilitar elevación de privilegios\"],\"6j6_0F\":[\"Recursos relacionados\"],\"6kpN96\":[\"No se pudo eliminar la notificación.\"],\"6lGV3K\":[\"Mostrar menos\"],\"6msU0q\":[\"No se pudo eliminar una o más tareas.\"],\"6nsio_\":[\"Ejecutar comando\"],\"6oNH0E\":[\"guía de configuración del plugin.\"],\"6pMgh_\":[\"Ver la configuración de LDAP\"],\"6rSKy6\":[\"Seleccione los inventarios de origen para este inventario federado. Cuando se lanza un trabajo, los hosts se enrutarán automáticamente al grupo de instancias de cada inventario de origen.\"],\"6uvnKV\":[\"Servicio API/Clave de integración\"],\"6vrz8I\":[\"No se pudo cancelar una o varias tareas.\"],\"6zGHNM\":[\"Hosts restantes\"],\"74MNbw\":[\"Ctrl IQ, Inc.\"],\"764xeZ\":[\"No se pudo actualizar la encuesta.\"],\"7Bj3x9\":[\"Fallido\"],\"7ElOdS\":[\"ID del panel de control\"],\"7IUE9q\":[\"Variables de fuente\"],\"7JF9w9\":[\"Agregar pregunta\"],\"7L01XJ\":[\"Acciones\"],\"7O5TcN\":[\"Resumen del evento no disponible.\"],\"7PzzBU\":[\"User\"],\"7UZtKb\":[\"La organización propietaria de esta plantilla de trabajo del flujo de trabajo.\"],\"7VETeB\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"],\"7VpPHA\":[\"Confirmar\"],\"7Xk3M1\":[\"Seleccione el proyecto que contiene el playbook que desea que ejecute este trabajo.\"],\"7ZhNzL\":[\"Ir a la primera página\"],\"7b8TOD\":[\"Detalles\"],\"7bDeKc\":[\"Manifiesto de suscripción\"],\"7fJwmW\":[\"Lista de elementos seleccionados.\"],\"7hS02I\":[[\"automatedInstancesCount\"],\" desde \",[\"automatedInstancesSinceDateTime\"]],\"7icMBj\":[\"No hay datos de tareas disponibles.\"],\"7kb4LU\":[\"Aprobado\"],\"7p5kLi\":[\"Panel de control\"],\"7q256R\":[\"Permitir la invalidación de la rama\"],\"7qFdk8\":[\"Modificar credencial\"],\"7sMeHQ\":[\"Clave\"],\"7sNhEz\":[\"Usuario\"],\"7w3QvK\":[\"Cuerpo del mensaje de éxito\"],\"7wgt9A\":[\"Ejecución de playbook\"],\"7zmvk2\":[\"Elemento fallido\"],\"81eOdm\":[\"volver a ejecutar flujo de trabajo\"],\"82O8kJ\":[\"Este proyecto está actualmente en sincronización y no se puede hacer clic hasta que se complete el proceso de sincronización\"],\"82sWFi\":[\"Administración\"],\"84Usx_\":[\"No se pudo eliminar el proyecto.\"],\"87a_t_\":[\"Etiqueta\"],\"88ip8h\":[\"Revertir todo\"],\"8BkLPF\":[\"Lista de URI permitidos, separados por espacios\"],\"8F8HYs\":[\"Seleccione su suscripción a Ansible Automation Platform para utilizarla.\"],\"8H3Igx\":[[\"interval\"],\" month\"],\"8Oef5v\":[\"Ejemplos de URL para el control de código fuente GIT incluyen:\"],\"8XM8GW\":[\"No se pudieron asignar correctamente los roles\"],\"8Z236a\":[\"logotipo de la marca\"],\"8ZsakT\":[\"Contraseña\"],\"8_wZUD\":[\"Roles de equipo\"],\"8d57h8\":[\"Ver la configuración de sistemas varios\"],\"8gCRbU\":[\"Otros avisos\"],\"8gaTqG\":[\"Detalles del tipo\"],\"8kDNpI\":[\"Resultado del nodo primario necesario antes de evaluar la condición.\"],\"8l9yyw\":[\"Plantilla de trabajo\"],\"8lEjQX\":[\"Instalar el paquete\"],\"8lb4Do\":[\"Borrar suscripción\"],\"8oiwP_\":[\"Configuración de entrada\"],\"8p_xVT\":[[\"0\",\"plural\",{\"one\":[[\"1\"]],\"other\":[[\"2\"]]}]],\"8u5g0S\":[\"Eliminar inventario inteligente\"],\"8vETh9\":[\"Mostrar\"],\"8wxHsh\":[\"Clave de webhook para esta plantilla de trabajo del flujo de trabajo.\"],\"8yd882\":[\"No se pudo disociar uno o más equipos.\"],\"8zGO4o\":[\"El campo coincide con la expresión regular dada.\"],\"8zoIOi\":[[\"0\",\"plural\",{\"one\":[\"This credential type is currently being used by some credentials and cannot be deleted.\"],\"other\":[\"Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?\"]}]],\"8zvzWO\":[\"Permita ejecuciones simultáneas de esta plantilla de trabajo del flujo de trabajo.\"],\"9-wVFp\":[\"Ver detalles del inventario federado\"],\"91UHfE\":[\"Actualización del inventario\"],\"91lyAf\":[\"Tareas concurrentes\"],\"933cZy\":[\"Configuración de sistemas varios\"],\"954HqS\":[\"¿Cuándo se automatizó por primera vez el anfitrión?\"],\"95p1BK\":[\"Crear nuevo usuario\"],\"98Qtlu\":[\"Cada vez que se ejecuta un trabajo utilizando este proyecto, actualice la revisión del proyecto antes de iniciar el trabajo.\"],\"991Df5\":[\"a new webhook key will be generated on save.\"],\"99qC6z\":[[\"interval\"],\" week\"],\"9Ah95g\":[[\"0\",\"plural\",{\"one\":[\"Este inventario está siendo utilizado actualmente por algunas plantillas. ¿Está seguro de que desea eliminarlo?\"],\"other\":[\"Eliminar estos inventarios podría afectar a algunas plantillas que dependen de ellos. ¿Está seguro de que desea eliminarlos de todos modos?\"]}]],\"9BTNYL\":[\"Expected at least one of client_email, project_id or private_key to be present in the file.\"],\"9BpfLa\":[\"Seleccionar etiquetas\"],\"9DOXq6\":[\"Ver todas las plantillas.\"],\"9DugxF\":[\"Tipo de suscripción\"],\"9HhFQ8\":[\"Devuelve resultados que tienen valores distintos a este así como otros filtros.\"],\"9L1ngr\":[\"Tareas totales\"],\"9N-4tQ\":[\"Tipo de credencial\"],\"9NyAH9\":[\"Omitido\"],\"9PB0sF\":[\"IRC\"],\"9Rsklx\":[\"Quitar todos los nodos\"],\"9Tmez1\":[\"Ver detalles de la instancia\"],\"9UuGMQ\":[\"Eliminación pendiente\"],\"9V-Un3\":[\"Habilitar almacenamiento de eventos\"],\"9VMv7k\":[\"Inventario construido\"],\"9Wm-J4\":[\"Alternar contraseña\"],\"9XA1Rs\":[\"El proyecto se está sincronizando actualmente y la revisión estará disponible una vez que se haya completado la sincronización.\"],\"9Y3BQE\":[\"Eliminar organización\"],\"9YSB0Z\":[\"Falta un inventario en esta programación\"],\"9ZnrIx\":[\"Ver y modificar su información de suscripción\"],\"9fRa7M\":[\"Seleccionar una fila para denegar\"],\"9hmrEp\":[\"Volver a ejecutar el\"],\"9iX1S0\":[\"Esta acción eliminará la siguiente instancia y es posible que deba volver a ejecutar el paquete de instalación para cualquier instancia a la que se haya conectado anteriormente:\"],\"9jfn-S\":[\"No se expande\"],\"9l0RZY\":[\"Haga clic en un nodo disponible para crear un nuevo enlace. Haga clic fuera del gráfico para cancelar.\"],\"9m7jms\":[\"Inventarios de origen cuyos hosts se enrutarán a sus respectivos grupos de instancias cuando se lance un trabajo contra este inventario federado.\"],\"9mfJJf\":[\"Plantillas de trabajo\"],\"9nhhVW\":[\"páginas\"],\"9nypdt\":[\"Restaurar el valor inicial.\"],\"9odS2n\":[\"Servidores fallidos\"],\"9og-0c\":[\"Este entorno de ejecución está siendo utilizado por otros recursos. ¿Está seguro de que desea eliminarlo?\"],\"9rFgm2\":[\"Capacidad de suscripción\"],\"9rvzNA\":[\"Modal de asociación\"],\"9td1Wl\":[\"Comprobar\"],\"9uI_rE\":[\"Deshacer\"],\"9u_dDE\":[\"Recuento de hosts inaccesibles\"],\"9uxVdR\":[\"Credencial de fuente de control\"],\"9wvWk3\":[\"Esta entrada de inventario construida \\n crea un grupo para ambas categorías y utiliza \\n el límite (patrón de host) para devolver solo los hosts que \\n están en la intersección de esos dos grupos.\"],\"A1a8Ku\":[\"Error de ejecución de la tarea de gestión\"],\"A1taO8\":[\"Buscar\"],\"A3o0Xd\":[\"Seleccione los grupos de instancias en los que se ejecutará\\nesta organización.\"],\"A6paZd\":[\"Agregar inventario federado\"],\"A8lIi2\":[\"Sincronizar para revisión\"],\"A9-PUr\":[\"Solicitudes de chequeo enviadas. Por favor, espere y recargue la página.\"],\"AA2ASV\":[\"El entorno de ejecución se copió correctamente\"],\"ADVQ46\":[\"Iniciar sesión\"],\"ARAUFe\":[\"Eliminar inventario\"],\"AV22aU\":[\"Se produjo un error...\"],\"AWOSPo\":[\"Acercar\"],\"Ab1y_G\":[\"Cancelar sincronización de origen de inventario construido\"],\"AgTBbk\":[[\"intervalValue\",\"plural\",{\"one\":[\"week\"],\"other\":[\"weeks\"]}]],\"AgTuXC\":[\"No tiene permiso para borrar \",[\"pluralizedItemName\"],\": \",[\"itemsUnableToDelete\"]],\"Ai2U7L\":[\"Servidor\"],\"Aj3on1\":[\"Habilitar registro externo\"],\"AoCBvp\":[\"Fracción de tareas\"],\"Apl-Vf\":[\"Manifiesto de suscripción de Red Hat\"],\"Apv-R1\":[\"Si está listo para actualizar o renovar, <0>póngase en contacto con nosotros.\"],\"AqdlyH\":[\"Las plantillas de trabajo con credenciales que solicitan contraseñas no pueden seleccionarse al crear o modificar nodos\"],\"ArtxnQ\":[\"Refspec de fuente de control\"],\"AsLVdj\":[\"Use un canal de IRC o nombre de usuario por línea. El símbolo\\n numeral (#) para canales y el símbolo arroba (@) para usuarios no son\\n necesarios.\"],\"AwUsnG\":[\"Instancias\"],\"AxC8wb\":[\"Copiar salida\"],\"AxPAXW\":[\"No se encontraron resultados\"],\"Axi4f8\":[\"Dragging item \",[\"id\"],\". Item with index \",[\"oldIndex\"],\" in now \",[\"newIndex\"],\".\"],\"Azw0EZ\":[\"Crear nuevo inventario inteligente\"],\"B0HFJ8\":[\"No se pudo disociar uno o más hosts.\"],\"B0P3qo\":[\"ID DE TAREA:\"],\"B0dbFG\":[\"Eliminar planificación\"],\"B2Zb_F\":[\"JSON\"],\"B3ZzHO\":[\"Último automatizado\"],\"B4WcU9\":[\"Aprobado por \",[\"0\"],\" - \",[\"1\"]],\"B7FU4J\":[\"Host iniciado\"],\"B8bpYS\":[\"Cargue un manifiesto de suscripción de Red Hat que contenga su suscripción. Para generar su manifiesto de suscripción, vaya a las <0>asignaciones de suscripción en el Portal del Cliente de Red Hat.\"],\"BAmn8K\":[\"Seleccionar un tipo de recurso\"],\"BERhj_\":[\"Mensaje de éxito\"],\"BGNDgh\":[\"Alias del nodo\"],\"BH7upP\":[\"PUBLICAR\"],\"BIJ2_m\":[\"El entorno de ejecución que se utilizará para las tareas dentro de esta organización. Se utilizará como alternativa cuando no se haya asignado explícitamente un entorno de ejecución a nivel de proyecto, plantilla de trabajo o flujo de trabajo.\"],\"BNDplB\":[\"La plantilla se copió correctamente\"],\"BWTzAb\":[\"Manual\"],\"BaPk6N\":[\"Ruta base utilizada para localizar los playbooks. Los directorios encontrados dentro de esta ruta se mostrarán en la lista desplegable del directorio de playbooks. Juntos, la ruta base y el directorio de playbook seleccionado proporcionan la ruta completa utilizada para localizar los playbooks.\"],\"BfYq0G\":[\"Tipo de fuente de control\"],\"Bg7M6U\":[\"No se encontraron resultados\"],\"Bl2Djq\":[\"Ver tokens\"],\"Bl2eoO\":[\"CIFRADO\"],\"BskWMl\":[\"Servidor inaccesible\"],\"BsrdSv\":[\"Introduzca las variables de inventario utilizando la sintaxis JSON o YAML. Utilice el botón de opción para alternar entre los dos. Consulte la documentación de Ansible Controller, por ejemplo, sintaxis.\"],\"Bv8zdm\":[\"Existencias de insumos\"],\"BwJKBw\":[\"de\"],\"Bz7WRU\":[[\"0\",\"plural\",{\"one\":[\"Introduzca un número de teléfono válido.\"],\"other\":[\"Introduzca números de teléfono válidos.\"]}]],\"BzEFor\":[\"o\"],\"BzbzJb\":[\"Eventos\"],\"BzfzPK\":[\"Elementos\"],\"C-gr_n\":[\"Configuración de Azure AD\"],\"C0sUgI\":[\"Crear nuevo inventario\"],\"C2KEkR\":[\"Contraseña de SSH\"],\"C3Q1LZ\":[\"Ver la configuración de OIDC\"],\"C4C-qQ\":[\"Detalles de la programación\"],\"C6GAUT\":[\"Expandido\"],\"C7dP40\":[\"No se pudo eliminar \",[\"0\"],\".\"],\"C7s60U\":[\"Detalles de Webhook\"],\"CAL6E9\":[\"Equipos\"],\"CDOlBM\":[\"ID de instancia\"],\"CE-M2e\":[\"Información\"],\"CGOseh\":[\"Detalles de la programación\"],\"CGZgZY\":[\"Seleccionar una fila para disociar\"],\"CG_9l6\":[\"LDAP 1\"],\"CGwKKr\":[[\"0\",\"plural\",{\"one\":[\"¿Eliminar grupo?\"],\"other\":[\"¿Eliminar grupos?\"]}]],\"CIEoqM\":[\"Nombre de la instancia\"],\"CKc7jz\":[\"Modal de detalles del host\"],\"CL7QiF\":[\"Escriba la respuesta y marque la casilla de verificación a la derecha para seleccionar la respuesta predeterminada.\"],\"CLTHnk\":[\"Orden de las preguntas de la encuesta\"],\"CMmwQ-\":[\"Fecha de inicio desconocida\"],\"CNZ5h9\":[\"Período de conservación de datos\"],\"CS8u6E\":[\"Habilitar Webhook\"],\"CSvk3a\":[\"El número asociado al \\\"Servicio de\\n mensajería\\\" en Twilio con el formato +18005550199.\"],\"CW11B-\":[\"Mínimo\"],\"CXJHPJ\":[\"Modificado por (nombre de usuario)\"],\"CZDqWd\":[\"La revisión del proyecto está actualmente desactualizada. Actualice para obtener la revisión más reciente.\"],\"CZg9aH\":[\"Seleccionar hosts\"],\"C_Lu89\":[\"Ingrese entradas a través de la sintaxis JSON o YAML. Consulte la documentación de Ansible Tower para ver la sintaxis de ejemplo.\"],\"C_NnqT\":[\"Crear nuevo host\"],\"Cc8jO8\":[\"Seleccione la credencial que desea utilizar cuando acceda a los hosts remotos para ejecutar el comando. Elija una credencial que contenga el nombre de usuario y la clave SSH o la contraseña que Ansible necesitará para iniciar sesión en los hosts remotos.\"],\"CcKMRv\":[\"Esta plantilla de trabajo está siendo utilizada por otros recursos. ¿Está seguro de que desea eliminarla?\"],\"CczdmZ\":[\"Ver todas las credenciales.\"],\"CdGRti\":[\"Ver todas las plantillas de notificación.\"],\"Ce28nP\":[\"<0>Nota: Las instancias pueden volver a asociarse con este grupo de instancias si son administradas por <1> reglas de política.\"],\"Cev3QF\":[\"Tiempo de espera en minutos\"],\"ChTa9Z\":[[\"intervalValue\",\"plural\",{\"one\":[\"hour\"],\"other\":[\"hours\"]}]],\"CoPs3y\":[\"Este flujo de trabajo no tiene ningún nodo configurado.\"],\"CoTqdo\":[\"\\n Note that you may still see the group in the list after\\n disassociating if the host is also a member of that group’s\\n children. This list shows all groups the host is associated\\n with directly and indirectly.\\n \"],\"Coyxic\":[\"Haga clic en este botón para verificar la conexión con el sistema de gestión de claves secretas con la credencial seleccionada y las entradas especificadas.\"],\"Cs0oSA\":[\"Ver configuración\"],\"Csvbqs\":[\"ver los documentos del plugin de inventario construido aquí.\"],\"Cx8SDk\":[\"Actualizar expiración del token\"],\"D-NlUC\":[\"Sistema\"],\"D1JWCq\":[[\"interval\"],\" minutes\"],\"D4euEu\":[\"Varios ajustes de autenticación\"],\"D89zck\":[\"Dom\"],\"DBBU2q\":[\"Debe seleccionar al menos un valor para este campo.\"],\"DBC3t5\":[\"Domingo\"],\"DBHTm_\":[\"Agosto\"],\"DFNPK8\":[\"Comprobación de estado\"],\"DGZ08x\":[\"Sincronizar todo\"],\"DHf0mx\":[\"Crear nuevo grupo de instancias\"],\"DHrOgD\":[\"Actualización del proyecto\"],\"DIKUI7\":[\"Longitud mínima\"],\"DIX823\":[\"Este campo debe ser un número y tener un valor menor que \",[\"max\"]],\"DJIazz\":[\"Aprobado con éxito\"],\"DNLiC8\":[\"Revertir configuración\"],\"DNqHaO\":[\"Esta tabla proporciona algunos parámetros útiles del plugin de\\n inventario construido. Para la lista completa de parámetros \"],\"DPfwMq\":[\"Finalizado\"],\"DV-Xbw\":[\"Idioma preferido\"],\"DVIUId\":[\"Anulaciones de avisos\"],\"DZNGtI\":[\"Resultados de la extracción del proyecto\"],\"D_oBkC\":[\"Equipo GitHub\"],\"DdlJTq\":[\"Coincidencia exacta (búsqueda predeterminada si no se especifica).\"],\"De2WsK\":[\"Esta acción disociará todos los roles de este usuario de los equipos seleccionados.\"],\"DhSza7\":[\"Nombre del controlador\"],\"DnkUe2\":[\"Elegir un servicio de Webhook\"],\"DqnAO4\":[\"Primer automatizado\"],\"Du6bPw\":[\"Dirección\"],\"Dug0C-\":[\"Después del número de ocurrencias\"],\"DyYigF\":[\"Configuración de TACACS+\"],\"Dz7fsq\":[\"Acercar\"],\"E6Z4zF\":[\"Formato de archivo no válido. Cargue un manifiesto de suscripción de Red Hat válido.\"],\"E86aJB\":[\"Disociar rol\"],\"E9wN_Q\":[\"Última comprobación de estado\"],\"EH6-2h\":[\"Vista de topología\"],\"EHu0x2\":[\"Sincronización\"],\"EIBcgD\":[\"Extraído de un proyecto\"],\"EIkRy0\":[\"Canales destinatarios\"],\"EJQLCT\":[\"No se pudo eliminar la plantilla de trabajo del flujo de trabajo.\"],\"ENDbv1\":[\"Ver todos los hosts.\"],\"ENRWp9\":[\"Etiquetas para la anotación\"],\"ENyw54\":[\"Grupos relacionados\"],\"EP-eCv\":[\"Configuración de SAML\"],\"EQ-qsg\":[\"Plantillas de trabajo del flujo de trabajo\"],\"ES0WE_\":[\"En el tiempo de espera\"],\"ETUQuF\":[\"No se pudo eliminar uno o más inventarios.\"],\"EWL-h4\":[\"host-description-\",[\"0\"]],\"E_QGRL\":[\"Deshabilitados\"],\"E_tJey\":[\"Entorno de ejecución predeterminado\"],\"Eb5CN1\":[[\"0\",\"plural\",{\"one\":[\"This organization is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"EdQY6l\":[\"Ninguno\"],\"Eff_76\":[\"Huso horario local\"],\"Eg4kGP\":[\"Respuesta(s) por defecto\"],\"EmSrGB\":[\"Antes\"],\"EmfKjn\":[\"Ver la configuración de solución de problemas\"],\"Emna_v\":[\"Modificar fuente\"],\"EmzUsN\":[\"Ver detalles del nodo\"],\"EnC3hS\":[\"Especificaciones del pod personalizado\"],\"EpH7Cd\":[\"Eliminar credencial\"],\"Eq6_y5\":[\"this Tower documentation page\"],\"Eqp9wv\":[\"Ver ejemplos de JSON en\"],\"EwxKbE\":[\"ELIMINADO\"],\"EzwCw7\":[\"Editar pregunta\"],\"F-0xxR\":[\"Faltan recursos de esta plantilla.\"],\"F-LGli\":[\"No tiene permiso para desvincular lo siguiente: \",[\"itemsUnableToDisassociate\"]],\"F-_-es\":[\"Seleccionar instancias\"],\"F0xJYs\":[\"No se pudo actualizar el ajuste de capacidad.\"],\"F2l57P\":[\"Porcentaje mínimo de todas las instancias que se asignarán automáticamente\\n a este grupo cuando se conecten nuevas instancias.\"],\"FCnKmF\":[\"Crear token de usuario\"],\"FD8Y9V\":[\"Haga clic en el icono de un nodo para mostrar los detalles.\"],\"FEr96N\":[\"Tema\"],\"FFv0Vh\":[\"Automatización\"],\"FG2mko\":[\"Seleccionar elementos de la lista\"],\"FGnH0p\":[\"Esto cancelará todos los nodos posteriores de este flujo de trabajo\"],\"FMpB-A\":[\"<0>Nota: Las instancias asociadas manualmente pueden disociarse automáticamente de un grupo de instancias si la instancia es administrada por <1> reglas de política.\"],\"FO7Rwo\":[\"¿Eliminar compañeros?\"],\"FQto51\":[\"Desplegar todas las filas\"],\"FTuS3P\":[\"Este campo no puede estar en blanco\"],\"FV5MUV\":[\"Si los usuarios necesitan comentarios sobre la corrección\\n de sus grupos construidos, es muy recomendable\\n usar strict: true en la configuración del plugin.\"],\"FXmp8Q\":[\"No se pudo asociar el rol\"],\"FYJRCY\":[\"No se pudo eliminar uno o más proyectos.\"],\"F_Nk65\":[\"Descargar salida\"],\"F_c3Jb\":[\"Campo para pasar una especificación personalizada de Kubernetes u OpenShift Pod.\"],\"Failed\":[\"Fallido\"],\"Fanpmj\":[\"Variables solicitadas\"],\"FblMFO\":[\"Seleccionar una métrica\"],\"FclH3w\":[\"Guardado correctamente\"],\"FfGhiE\":[\"Error al guardar el flujo de trabajo\"],\"FhTYgi\":[\"No se pudo eliminar una o más plantillas de trabajo.\"],\"FhhvWu\":[\"Esto cancelará todos los nodos posteriores de este flujo de trabajo.\"],\"FiyMaa\":[\"Elegir un archivo .json\"],\"FjVFQ-\":[\"Elegir un módulo\"],\"FjkaiT\":[\"Alejar\"],\"FkQvI0\":[\"Modificar plantilla\"],\"FlvpdU\":[\"If enabled, show the changes made\\n by Ansible tasks, where supported. This is equivalent to Ansible’s\\n --diff mode.\"],\"FnSb-y\":[\"Cancelar tarea\"],\"FnZzou\":[\"Estado de instancia\"],\"FncCci\":[\"RADIUS\"],\"Fo2bwm\":[\"Actor\"],\"Fo6qAq\":[\"Ejemplos de URL para el control de código fuente Subversion incluyen:\"],\"Fp0Rk4\":[\"Etiquetas opcionales que describen este inventario,\\n como 'dev' o 'test'. Las etiquetas se pueden usar para agrupar y filtrar\\n inventarios y trabajos completados.\"],\"FqW8E0\":[\"Capacidad usada\"],\"FsGJXJ\":[\"Limpiar\"],\"Fx2-x_\":[\"Agregar roles de usuario\"],\"G-jHgL\":[\"Establecer la ruta de origen en\"],\"G2KpGE\":[\"Modificar proyecto\"],\"G3myU-\":[\"Martes\"],\"G768_0\":[\"denegado\"],\"G8jcl6\":[\"Plantillas de notificación\"],\"G9MOps\":[\"Rama para usar en la sincronización del inventario. Se utiliza el valor predeterminado del proyecto si está en blanco. Solo se permite si el campo allow_override del proyecto está establecido en true.\"],\"GDvlUT\":[\"Rol\"],\"GGWsTU\":[\"Cancelado\"],\"GGuAXg\":[\"Ver la configuración de SAML\"],\"GHDQ7i\":[\"No se pudo eliminar una o más organizaciones.\"],\"GJKwN0\":[\"Programaciones\"],\"GLZDtF\":[\"Advertencia del sistema\"],\"GLwo_j\":[\"0 (Advertencia)\"],\"GMaU6_\":[\"Preguntar por el tipo de trabajo al ejecutar.\"],\"GO6s6F\":[\"Configuración de las tareas\"],\"GRwtth\":[\"Ejecutar una comprobación de la salud de la instancia\"],\"GSYBQc\":[\"Servicio API/clave de integración\"],\"GTOcxw\":[\"Modificar usuario\"],\"GU9vaV\":[\"Hosts inaccesibles\"],\"GXiLKo\":[\"Área de texto\"],\"GZIG7_\":[\"El inventario se copió correctamente\"],\"G_Dwo_\":[\"Choose an answer type or format you want as the prompt for the user.\\n Refer to the Ansible Controller Documentation for more additional\\n information about each option.\"],\"GaJLE6\":[\"Inicializado por\"],\"Gd-B71\":[\"No se encontró el tipo de credencial.\"],\"Ge5ecx\":[\"Número máximo de hosts\"],\"GeIrWJ\":[[\"brandName\"],\" Logotipo\"],\"Gf3vm8\":[\"por página\"],\"GiXRTS\":[\"No se pudo eliminar uno o más tokens de usuario.\"],\"Gix1h_\":[\"Ver todas las tareas\"],\"GkbHM9\":[\"Ver todos los proyectos.\"],\"Gn7TK5\":[\"Alternar herramientas\"],\"GpNoVG\":[\"Añada un horario para rellenar esta lista.\"],\"GpWp6E\":[\"Defina características y funciones a nivel del sistema\"],\"GtycJ_\":[\"Tareas\"],\"H0z3JJ\":[\"Estos argumentos se utilizan con el módulo especificado. Puede encontrar información sobre \",[\"moduleName\"],\" haciendo clic \"],\"H1M6a6\":[\"Ver todas las instancias.\"],\"H3kCln\":[\"Nombre de host\"],\"H6jbKn\":[\"Configuración de la interfaz de usuario\"],\"H7OUPr\":[\"Día\"],\"H7e4dl\":[\"Proporcione pares de clave/valor utilizando\\n YAML o JSON.\"],\"H86f9p\":[\"Contraer\"],\"H9MIed\":[\"Nodo de ejecución\"],\"HAi1aX\":[\"Actualizar clave de Webhook\"],\"HAzhV7\":[\"Credenciales\"],\"HDULRt\":[\"Anfitriones únicos\"],\"HGOtRu\":[\"Error en la prueba de notificación.\"],\"HIfMSF\":[\"Opciones de selección múltiple\"],\"HLAK2g\":[\"This action will cancel the following jobs:\"],\"HODq3s\":[\"No se ha podido denegar la aprobación de uno o más flujos de trabajo.\"],\"HQ7e8y\":[\"Versión de exact que no distingue mayúsculas de minúsculas.\"],\"HQ7oEt\":[\"Volver a Equipos\"],\"HUx6pW\":[\"Configuración del inyector\"],\"HajiZl\":[\"Mes\"],\"HbaQks\":[\"Ingrese una dirección de correo electrónico por línea\\npara crear una lista de destinatarios para este tipo de notificación.\"],\"HbnjOn\":[[\"interval\"],\" weeks\"],\"HcznyH\":[\"No se pudieron sincronizar algunas o todas las fuentes de inventario.\"],\"HdE1If\":[\"Canal\"],\"HdErwL\":[\"Selecciona una fila para aprobar\"],\"Hf0QDK\":[\"El proyecto se copió correctamente\"],\"Hhnh8d\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" día\"],\"other\":[\"#\",\" días\"]}]],\"HiTf1W\":[\"Cancelar reversión\"],\"HjxnnB\":[\"seleccionar módulo\"],\"HlhZ5D\":[\"Utilizar TLS\"],\"HoHveO\":[\"Devuelve resultados que satisfacen este filtro así como otros filtros. Este es el tipo de conjunto predeterminado si no se selecciona nada.\"],\"HpK_8d\":[\"Recarga\"],\"Ht1JWm\":[\"Color de notificación\"],\"HwpTx4\":[\"Controle el nivel de salida que producirá ansible mientras se ejecuta el playbook.\"],\"I0LRRn\":[\"Descargar paquete\"],\"I7Epp-\":[\"Detalles de la opción\"],\"I9NouQ\":[\"No se encontraron suscripciones\"],\"ICi4pv\":[\"Automatización\"],\"ICt7Id\":[\"Tipo de nodo\"],\"IEKPuq\":[\"Desplazarse hasta el siguiente\"],\"IGQ11b\":[\"Secreto compartido con el servicio de webhook. El servicio lo utiliza para firmar sus solicitudes, de modo que solo su repositorio pueda desencadenar una sincronización del proyecto. Escriba su propio secreto para gestionarlo como configuración, o deje el campo en blanco para que se genere uno al guardar.\"],\"IJAVcb\":[\"Volver a las aplicaciones\"],\"IKg_un\":[\"Usuarios o canales destinatarios\"],\"IMJYui\":[\"Use un número de teléfono por línea para especificar dónde\\n enrutar los mensajes SMS. Los números de teléfono deben tener el formato +11231231234. Para obtener más información, consulte la documentación de Twilio\"],\"IN6gbp\":[\"Haga clic para cambiar el orden de las preguntas de la encuesta\"],\"IPusY8\":[\"Elimine cualquier modificación local antes de realizar una actualización.\"],\"ISuwrJ\":[\"Modificar entorno de ejecución\"],\"IV0EjT\":[\"Probar notificación\"],\"IVvM2B\":[\"Opciones habilitadas\"],\"IWoF_f\":[\"Mostrar el cuestionario\"],\"IZfe0p\":[\"rama de fuente de control\"],\"Igz8MU\":[\"Últimas dos semanas\"],\"IiR1sT\":[\"Tipo de nodo\"],\"IjDwKK\":[\"tipo de inicio de sesión\"],\"Ikhk0q\":[\"Servicio de webhook para esta plantilla de trabajo del flujo de trabajo.\"],\"Iqm2E5\":[\"Añada \",[\"pluralizedItemName\"],\" para poblar esta lista\"],\"IrC12v\":[\"Aplicación\"],\"IrI9pg\":[\"Fecha de terminación\"],\"IsJ8i6\":[\"Seleccione una rama para el flujo de trabajo. Esta rama se aplica a todos los nodos de la plantilla de trabajo que solicitan una rama.\"],\"IspLSK\":[\"No se encontró la tarea de gestión.\"],\"J0zi6q\":[\"Omitir etiquetas\"],\"J2HgCR\":[\"Red Hat, Inc.\"],\"J2d1y8\":[\"Trabajos exitosos recientes\"],\"J4y7Uk\":[\"Flujo de trabajo cancelado \"],\"J8VgfD\":[\"Comprobar si el campo dado o el objeto relacionado son nulos; se espera un valor booleano.\"],\"JEGlfK\":[\"Iniciado\"],\"JFnJqF\":[\"Tiempo transcurrido\"],\"JFphCp\":[\"3 (Depurar)\"],\"JGvwnU\":[\"Última utilización\"],\"JIX50w\":[\"Impedir el respaldo del grupo de instancias: si está habilitado, la plantilla de trabajo impedirá agregar grupos de instancias de inventario u organización a la lista de grupos de instancias preferidos en los que ejecutarse.\"],\"JJwEMx\":[\"Anfitriones eliminados\"],\"JKZTiL\":[\"Estos son los niveles de detalle para la ejecución de comandos estándar que se admiten.\"],\"JL3si7\":[\"Actualizando\"],\"JLjfEs\":[\"No se pudo eliminar una o más programaciones.\"],\"JOmgRg\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" mes\"],\"other\":[\"#\",\" meses\"]}]],\"JRa4kV\":[\"Sincronice el proyecto cuando se produzca un push en el repositorio de control de código fuente, de modo que la copia local esté siempre actualizada sin sondeo ni actualización en cada inicio de trabajo.\"],\"JTHoCu\":[\"alternar cambios\"],\"JUwjsw\":[\"Select an activity type\"],\"JXgd33\":[\"Volver al panel de control.\"],\"J_2nGO\":[\"The execution environment that will be used for jobs\\n inside of this organization. This will be used a fallback when\\n an execution environment has not been explicitly assigned at the\\n project, job template or workflow level.\"],\"J_DUZt\":[\"Grupos de instancias\"],\"Ja4VHl\":[[\"0\"],\" más\"],\"JgP090\":[\"Seguimiento de submódulos\"],\"JjcTk5\":[\"inicio de sesión social\"],\"JjfsZM\":[\"Eliminar la aprobación del flujo de trabajo\"],\"JppQoT\":[\"Última fecha de recálculo:\"],\"JsY1p5\":[\"Denegado\"],\"Jvv6rS\":[\"Selección múltiple\"],\"JwqOfG\":[\"Evaluar en\"],\"Jy9qCv\":[\"cancelar la edición de la redirección de inicio de sesión\"],\"K5AykR\":[\"Eliminar equipo\"],\"K93j4j\":[\"Nombre de la etiqueta\"],\"KC2nS5\":[\"Recurso eliminado\"],\"KDcLJ6\":[\"YAML:\"],\"KEY0qH\":[\"Prueba \"],\"KM6m8p\":[\"Team\"],\"KNOsJ0\":[\"Etiquetas opcionales que describen esta plantilla de trabajo, como «dev» o «test». Las etiquetas se pueden utilizar para agrupar y filtrar plantillas de trabajo y trabajos completados.\"],\"KQ9EQm\":[\"Cómo usar el plugin de inventario construido\"],\"KR9Aiy\":[\"This inventory is currently being used by some templates. Are you sure you want to delete it?\"],\"KRf0wm\":[\"Tipos de credencial\"],\"KTvwHj\":[\"Fuentes de entrada de credenciales\"],\"KVbzjm\":[\"Visualizador\"],\"KXFYp9\":[\"Obtener suscripción\"],\"KXnokb\":[\"El entorno de ejecución disponible globalmente no puede reasignarse a una organización específica\"],\"KZp4lW\":[\"Lookup select\"],\"K_MYeX\":[\"Ver detalles del usuario\"],\"KeRkFA\":[\"Borrar selección de la suscripción\"],\"KeqCdz\":[\"Compañeros de nodos de control\"],\"Ki_j_-\":[\"Deje en blanco para generar una nueva clave de webhook al guardar\"],\"KjBkMe\":[\"Este grupo de contenedores está siendo utilizado por otros recursos. ¿Está seguro de que desea eliminarlo?\"],\"KjVvNP\":[\"ID de panel\"],\"KkMfgW\":[\"Plantillas de trabajo\"],\"KkzJWF\":[\"Primera automatización\"],\"KlQd8_\":[\"Especifique un alcance para el acceso al token\"],\"KnN1Tu\":[\"Expira\"],\"KoCnPE\":[\"Cancelar tarea\"],\"KopV8H\":[\"Mostrar solo los grupos raíz\"],\"KxIA0h\":[\"Alternar host\"],\"Kz9DSl\":[\"Agregar host existente\"],\"KzQFvE\":[\"Editar organización\"],\"L1Ob4t\":[\"Pestaña de detalles\"],\"L3ooU6\":[\"Credencial\"],\"L7Nz3F\":[\"Recurso no encontrado\"],\"L8fEEm\":[\"Grupo\"],\"L973Qq\":[\"Solicitar subscripción\"],\"LCl8Ck\":[\"Entrada de búsqueda de fecha\"],\"LGl_pR\":[\"Ver la configuración de las tareas\"],\"LGryaQ\":[\"Crear nueva credencial\"],\"LQ29yc\":[\"Iniciar sincronización de origen de inventario\"],\"LQRys9\":[\"Los submódulos rastrearán el último commit en su rama master (u otra rama especificada en .gitmodules). Si no, los submódulos se mantendrán en la revisión especificada por el proyecto principal. Esto equivale a especificar el indicador --remote en git submodule update.\"],\"LQTgjH\":[\"No se encontró el proyecto.\"],\"LRePxk\":[\"Número mínimo de instancias que se asignarán automáticamente a este grupo cuando se conecten nuevas instancias.\"],\"LSUePQ\":[\"Ejecutar | \",[\"0\"]],\"LULLsO\":[\"Ver todas las organizaciones.\"],\"LV5a9V\":[\"Colegas\"],\"LVecP9\":[\"Roles de los usuarios\"],\"LYAQ1X\":[\"Activar los trabajos concurrentes\"],\"LZr1lR\":[\"No se encontró el grupo de instancias.\"],\"Lc0RHh\":[\"Alternar programaciones\"],\"LgD0Cy\":[\"Nombre de la aplicación\"],\"LhMjLm\":[\"Duración\"],\"Ll7Jei\":[\"LDAP3\"],\"LnYbGj\":[\"Editar el cuestionario\"],\"Lnnjmk\":[\"<0><1/> Puede encontrar una vista previa técnica de la nueva interfaz de usuario de \",[\"brandName\"],\" <2>aquí.\"],\"Lqygiq\":[\"Callbacks de aprovisionamiento\"],\"LtBtED\":[\"Éxito de alternancia de notificaciones\"],\"LuXP9q\":[\"Acceso\"],\"LwHwt1\":[\"Subscripción de \",[\"brandName\"]],\"Lwovp8\":[\"Si está habilitado, se permitirán ejecuciones simultáneas de esta plantilla de trabajo.\"],\"M0okDw\":[\"Establezca preferencias para la recopilación de datos, los logotipos y los inicios de sesión\"],\"M73whl\":[\"Contexto\"],\"MA-mp9\":[\"Filtro de referencia de Webhook\"],\"MA7cMf\":[\"Tabla DE parámetros DE inventario construido\"],\"MAI_nw\":[\"Intente otra búsqueda con el filtro de arriba\"],\"MAV-SQ\":[\"No se encontró la credencial.\"],\"MApRef\":[\"¿Está seguro de que quiere editar la URL de redirección de inicio de sesión? Hacerlo podría afectar a la capacidad de los usuarios para iniciar sesión en el sistema una vez que la autenticación local también esté desactivada.\"],\"MD0-Al\":[\"Su sesión está a punto de expirar\"],\"MDQLec\":[\"Controlar el nivel de salida que Ansible producirá para los trabajos de actualización de la fuente de inventario.\"],\"MGpavd\":[\"Escritura anticipada de la clave\"],\"MHM-bv\":[\"Objetivo de enlace no válido. No se puede enlazar con nodos secundarios o ancestros. Los ciclos del gráfico no son compatibles.\"],\"MHbbol\":[\" Fraccionamiento de trabajos\"],\"MKEPCY\":[\"Seguir\"],\"MP1v-1\":[\"Leyenda\"],\"MP8dU9\":[\"La ubicación completa de la imagen, que incluye el registro de contenedores, el nombre de la imagen y la etiqueta de la versión.\"],\"MQPvAa\":[\"Preguntar por las etiquetas al ejecutar.\"],\"MQoyj6\":[\"Plantilla de trabajo para flujo de trabajo\"],\"MTLPCv\":[\"Ejecutar cuando el nodo primario se encuentre en estado de error.\"],\"MVw5um\":[\"2 (Más nivel de detalle)\"],\"MZU5bt\":[\"No se pudo eliminar uno o varios grupos.\"],\"M_gXds\":[\"Note: This instance may be re-associated with this instance group if it is managed by \"],\"MdhgLT\":[\"Contraseña del servidor IRC\"],\"MfCEiB\":[\"Credenciales de Galaxy\"],\"MfQHgE\":[\"Días para guardar\"],\"Mfk6hJ\":[\"No se pudo eliminar una o más plantillas.\"],\"Mhn5m4\":[\"Credencial de registro\"],\"Mn45Gz\":[\"Volver a los grupos de instancias\"],\"MnbH31\":[\"página\"],\"MofjBu\":[\"El entorno de ejecución que se utilizará para los trabajos que usan este proyecto. Se utilizará como alternativa cuando no se haya asignado explícitamente un entorno de ejecución a nivel de plantilla de trabajo o flujo de trabajo.\"],\"MpLngK\":[\"El punto de conexión de webhook de este proyecto. Agréguelo a la configuración de webhook del repositorio para que los push desencadenen una sincronización del proyecto.\"],\"MpZRQy\":[\"Git\"],\"MuhG5I\":[[\"0\",\"plural\",{\"one\":[\"This approval cannot be deleted due to insufficient permissions or a pending job status\"],\"other\":[\"These approvals cannot be deleted due to insufficient permissions or a pending job status\"]}]],\"MwCc2O\":[\"Credencial de webhook para esta plantilla de trabajo del flujo de trabajo.\"],\"Mwf3Mw\":[\"Complete los hosts para este inventario utilizando un filtro de\\n búsqueda. Ejemplo: ansible_facts__ansible_distribution:\\\"RedHat\\\".\\n Consulte la documentación para obtener más sintaxis y\\n ejemplos. Consulte la documentación de Ansible Controller para obtener más sintaxis y\\n ejemplos.\"],\"MzcRa_\":[\"Usuario y Automation Analytics\"],\"Mzqo60\":[\"Valor con el que se compara el artefacto. Se interpreta como JSON cuando es posible (p. ej. true, 3); en caso contrario, como texto plano.\"],\"N1U4ZG\":[\"Cumplimiento de suscripciones\"],\"N36GRB\":[\"Este campo debe ser un número y tener un valor mayor que \",[\"min\"]],\"N40H-G\":[\"Todos\"],\"N5vmCy\":[\"inventario construido\"],\"N6GBcC\":[\"Confirmar eliminación\"],\"N7wOty\":[\"Seleccione el playbook que ejecutará este trabajo.\"],\"NAKA53\":[\"Fallo del servidor\"],\"NBONaK\":[\"Obteniendo facts\"],\"NCVKhy\":[\"Trabajos recientes\"],\"NDQvUO\":[\"Preguntar por las etiquetas (tags) al ejecutar.\"],\"NIuIk1\":[\"Ilimitado\"],\"NLKsgx\":[[\"pluralizedItemName\"],\" Lista\"],\"NO1ZxL\":[\"Nombre de la aplicación\"],\"NPfgIB\":[\"seg\"],\"NQHZnb\":[\"Entero\"],\"NRn4V6\":[[\"interval\"],\" months\"],\"NUNUrW\":[\"Etiquetas para anotación (opcional)\"],\"NW-xDQ\":[\"Esto revertirá todos los valores de configuración de esta página a\\n sus valores predeterminados de fábrica. ¿Está seguro de que desea continuar?\"],\"NX18CF\":[\"En o después de\"],\"NYxilo\":[\"Máximo de trabajos simultáneos\"],\"Na9fIV\":[\"No se encontraron elementos.\"],\"NcVaYu\":[\"Hora de finalización\"],\"NeA1eI\":[\"Desplazar hacia la derecha\"],\"Never\":[\"Nunca\"],\"NgD4On\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"Esta acción cancelará el siguiente trabajo:\"],\"other\":[\"Esta acción cancelará los siguientes trabajos:\"]}]],\"NjnDuY\":[\"Dragging started for item id: \",[\"newId\"],\".\"],\"NjqMGF\":[\"Agregar tipo de recurso\"],\"NnH3pK\":[\"Probar\"],\"No Jobs\":[\"No hay tareas\"],\"NpJHAp\":[\"Las plantillas de trabajo en las que falta un inventario o un proyecto no pueden seleccionarse al crear o modificar nodos. Seleccione otra plantilla o corrija los campos que faltan para continuar.\"],\"NqIlWb\":[\"Último ejecutado\"],\"NrGRF4\":[\"Modal de selección de suscripción\"],\"NsXTPu\":[\"Para crear un inventario inteligente con los hechos de ansible, vaya a la pantalla de inventario inteligente.\"],\"NtD3hJ\":[\"Teclas relacionadas\"],\"Nu4DdT\":[\"Sincronizar\"],\"Nu4oKW\":[\"Descripción\"],\"Nu7VHX\":[\"Elija los roles que se aplicarán a los recursos seleccionados. Tenga en cuenta que todos los roles seleccionados se aplicarán a todos los recursos seleccionados.\"],\"O-OYOe\":[\"Modificar equipo\"],\"O06Rp6\":[\"Interfaz de usuario\"],\"O1Aswy\":[\"Nunca expira\"],\"O28qFz\":[\"Ver tarea \",[\"0\"]],\"O2EuOK\":[\"Iniciar sesión con SAML \",[\"samlIDP\"]],\"O2UpM1\":[\"Navegar\"],\"O3oNi5\":[\"Correo electrónico\"],\"O4ilec\":[\"Versión de regex que no distingue mayúsculas de minúsculas.\"],\"O5pAaX\":[\"Seleccionar una instancia y una métrica para mostrar el gráfico\"],\"O78b13\":[\"Seleccione la aplicación a la que pertenecerá este token, o deje este campo vacío para crear un token de acceso personal.\"],\"O8_96D\":[\"Puerto de escucha\"],\"O9VQlh\":[\"Frecuencia de repetición\"],\"OA8xiA\":[\"Desplazar hacia la izquierda\"],\"OA99Nq\":[\"¿Cuándo fue automatizado el anfitrión por última vez?\"],\"OC4Tzv\":[\"aquí\"],\"OGoqLy\":[\"# sources with sync failures.\"],\"OHGMM6\":[\"Fecha/hora de inicio\"],\"OIv5hN\":[\"Redirigir al detalle de la suscripción\"],\"OJ9bHy\":[\"No se pudo disociar uno o más grupos.\"],\"OOq_rD\":[\"Ejecución de playbook\"],\"OPTWH4\":[\"Habilitar verificación del certificado HTTPS\"],\"ORxrw7\":[\"Días restantes\"],\"OSH8xi\":[\"Salto\"],\"OcRJRt\":[\"Confirmar cancelación de la tarea\"],\"Oe_VOY\":[\"No se pudo disociar una o más instancias.\"],\"OgB1k4\":[\"Argumentos\"],\"OiCz65\":[\"URL de Grafana\"],\"Oiqdmc\":[\"Iniciar sesión con las organizaciones GitHub\"],\"Oj2Ix6\":[\"La cantidad de tiempo (en segundos) que se ejecutará antes de que se cancele el trabajo. El valor predeterminado es 0 para que no haya tiempo de espera del trabajo.\"],\"OjwX8k\":[\"Información del token\"],\"OlpaBt\":[\"Trabajos simultáneos: si está habilitado, se permitirán ejecuciones simultáneas de esta plantilla de trabajo.\"],\"OmbooC\":[\"Tarea iniciada\"],\"OogRLI\":[\"No se encontró el inventario federado.\"],\"OqE3G-\":[\"Búsqueda exacta en el campo de identificación.\"],\"Osn70z\":[\"Debug\"],\"OvBnOM\":[\"Volver a Configuración\"],\"OyGPiW\":[\"Configuración de la suscripción\"],\"OzssJK\":[\"Ejecutar comando\"],\"P3spiP\":[\"Volver a Plantillas\"],\"P7d85D\":[\"Eliminar el acceso del equipo\"],\"P8fBlG\":[\"Identificación\"],\"PByO0X\":[\"Votos\"],\"PCEmEr\":[\"Tokens de usuario\"],\"PJ1B0S\":[[\"0\",\"plural\",{\"one\":[\"This project is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"PJf54Q\":[\"Volver a Fuentes\"],\"PKTjJ3\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"weekday\"],\" de \",[\"month\"]],\"4\":[\"The fourth \",[\"weekday\"],\" de \",[\"month\"]],\"5\":[\"The fifth \",[\"weekday\"],\" de \",[\"month\"]],\"one\":[\"The first \",[\"weekday\"],\" de \",[\"month\"]],\"two\":[\"The second \",[\"weekday\"],\" de \",[\"month\"]]}]],\"PLzYyl\":[\"Frecuencia Detalles de la excepción\"],\"PMk2Wg\":[\"Fallo de desaprovisionamiento\"],\"POKy-m\":[\"Copiar entorno de ejecución\"],\"PPsHsC\":[\"Revertir todo a valores por defecto\"],\"PQPOpT\":[\"Archivo de inventario\"],\"PRuZiQ\":[\"Actualizar para revisión\"],\"PUnovD\":[\"Amazon EC2\"],\"PVCOQE\":[\"Compañero eliminado. Asegúrese de ejecutar el paquete de instalación para \",[\"0\"],\" de nuevo para que los cambios surtan efecto.\"],\"PWwwY2\":[\"Disociar\"],\"PYPqaM\":[\"ID del panel (opcional)\"],\"PZBWpL\":[\"Switch to light mode\"],\"P_s0vy\":[\"No se puede buscar el tipo de credencial para este servicio de webhook, por lo que el campo de credencial de webhook no está disponible.\"],\"PaTL2O\":[\"Lista de destinatarios\"],\"PhufXn\":[\"Fraccionamiento de los trabajos principales\"],\"Pi5vnX\":[\"Error al sincronizar el origen del inventario construido\"],\"PiK6Ld\":[\"Sáb\"],\"PiRb8z\":[\"ÚLTIMA SINCRONIZACIÓN\"],\"PjkoCm\":[\"¿Está seguro de que desea eliminar el siguiente nodo:\"],\"PkVlOm\":[\"Especifique los encabezados HTTP en formato JSON. Consulte\\n la documentación de Ansible Controller para ver ejemplos de sintaxis.\"],\"Po1btV\":[\"Navegación global\"],\"Po7y5X\":[\"No se pudo copiar el entorno de ejecución\"],\"PvgcEq\":[\"Draggable list to reorder and remove selected items.\"],\"PwAMWD\":[\"Contraer todos los eventos de trabajos\"],\"PyV1wC\":[\"Evitar el retroceso del grupo de instancias\"],\"Q3P_4s\":[\"Tarea\"],\"Q4hWRC\":[\"Tareas en flujo de trabajo (\",[\"total\"],\")\"],\"Q5ZW8j\":[\"Tabla de suscripciones\"],\"QF_MpS\":[\"\\n Tenga en cuenta que solo se pueden disociar los hosts que están\\n directamente en este grupo. Los hosts en subgrupos deben disociarse\\n directamente desde el nivel del subgrupo al que pertenecen.\\n \"],\"QFdBqu\":[\"Mattermost\"],\"QGbLBK\":[\"Identificación del trabajo\"],\"QHF6CU\":[\"Jugadas\"],\"QIOH6p\":[\"Inicializado por (nombre de usuario)\"],\"QIpNLR\":[\"No hay errores de sincronización de inventario.\"],\"QIq3_3\":[\"Nota: El orden en que se seleccionan establece la precedencia de ejecución. Seleccione más de uno para habilitar el arrastre.\"],\"QJbMvX\":[\"No se permiten credenciales que requieran contraseñas al iniciar. Elimine o reemplace las siguientes credenciales por una del mismo tipo para continuar: \",[\"0\"]],\"QJowYS\":[\"confirmar eliminación\"],\"QKUQw1\":[\"Crear nuevo host\"],\"QKbQTN\":[\"Selector de tipo de flujo de actividad\"],\"QOF7Jg\":[\"No se aprueba \",[\"0\"],\".\"],\"QPRWww\":[\"Tipo de ejecución\"],\"QR908H\":[\"Nombre de la configuración\"],\"QT1rDU\":[\"GitHub Enterprise\"],\"QTwM6Y\":[\"El proyecto que contiene el playbook que ejecutará este trabajo.\"],\"QYKS3D\":[\"Tareas recientes\"],\"QamIPZ\":[\"Haga clic en el botón de inicio para comenzar.\"],\"Qay_5h\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"Qd2E32\":[\"Recupere el estado habilitado del dictado dado de las variables del host. La variable habilitada se puede especificar usando notación de puntos, por ejemplo: 'foo.bar'\"],\"Qf36YE\":[\"Nivel de detalle\"],\"QgnNyZ\":[\"Error de sincronización\"],\"Qhb8lT\":[\"Crear una nueva aplicación\"],\"QmvYrA\":[\"Descripción opcional para la plantilla de trabajo del flujo de trabajo.\"],\"QnJn75\":[\"Última ejecución\"],\"Qv59HG\":[\"Seleccionar tipo de credencial\"],\"Qv91_c\":[\"LDAP 2\"],\"QyjCeq\":[\"Capacidad\"],\"R-uZ8Y\":[\"Iniciar sesión con SAML\"],\"R633QG\":[\"Volver a Aprobaciones del flujo de trabajo\"],\"R6Gueb\":[\"Cambio de alternancia de notificaciones\"],\"R7s3iG\":[\"Volver\"],\"R9Khdg\":[\"Auto\"],\"R9sZsA\":[\"Eliminar todos los grupos y hosts\"],\"RBDHUE\":[\"Preguntar por el entorno de ejecución al ejecutar.\"],\"RI8cIw\":[\"El número máximo de hosts que se permite gestionar a\\n esta organización. El valor predeterminado es 0, lo que significa sin límite.\\n Consulte la documentación de Ansible para obtener más detalles.\"],\"RIcSTA\":[\"Fecha de expiración\"],\"RIeAlp\":[\"Cada vez que se ejecute un trabajo utilizando este inventario, actualice el inventario de la fuente seleccionada antes de ejecutar las tareas del trabajo.\"],\"RK1gDV\":[\"Iniciar sesión con Azure AD\"],\"RMdd1C\":[\"Ninguno (se ejecuta una vez)\"],\"RO9G1f\":[\"Este campo debe ser mayor que 0\"],\"RPnV2o\":[\"El filtro de búsqueda no arrojó resultados…\"],\"RThfvh\":[\"¿Disociar equipos relacionados?\"],\"R_mzhp\":[\"Error en el token de usuario.\"],\"RbIaa9\":[\"No se encontró el token.\"],\"RdLvW9\":[\"volver a ejecutar las tareas\"],\"Rguqao\":[\"Seleccionar una fila para eliminar\"],\"RhOukN\":[[\"interval\"],\" hour\"],\"RiQMUh\":[\"Ejecutándose\"],\"RjIKOw\":[\"Imposible modificar el inventario en un servidor.\"],\"RjkhdY\":[\"El campo comienza con un valor.\"],\"RkXlPZ\":[\"GitHub\"],\"RlsPz7\":[\"¿Está seguro de que desea eliminar este enlace?\"],\"Rm1iI_\":[\"Preguntar por variables al ejecutar.\"],\"Roaswv\":[\"User Guide\"],\"RpKSl3\":[\"La credencial se copió correctamente\"],\"RsZ4BA\":[\"Desplazarse hasta el final\"],\"RtKKbA\":[\"Último\"],\"Ru59oZ\":[\"Habilitar webhook para esta plantilla.\"],\"RuEWFx\":[\"En la fecha\"],\"RuiOO0\":[\"No se pudo eliminar una o más aplicaciones.\"],\"Rw1xwN\":[\"Carga de contenido\"],\"RxzN1M\":[\"Habilitado\"],\"RyPas1\":[\"Cancel selected jobs\"],\"S0kLOH\":[\"ID\"],\"S2nsEw\":[\"Mayor que la comparación.\"],\"S5gO6Y\":[\"Pase variables adicionales de línea de comandos al flujo de trabajo.\"],\"S6zj7M\":[\"Para las plantillas de trabajo, seleccione «run» para ejecutar el playbook. Seleccione «check» para comprobar únicamente la sintaxis del playbook, probar la configuración del entorno e informar de problemas sin ejecutar el playbook.\"],\"S7kN8O\":[\"No se pudo eliminar uno o más usuarios.\"],\"S7tNdv\":[\"Con éxito\"],\"S8FW2i\":[\"El archivo de inventario a sincronizar por esta fuente. Puede seleccionar desde el menú desplegable o introducir un archivo dentro de la entrada.\"],\"SA-KXq\":[\"Desplazar hacia arriba\"],\"SAw-Ux\":[\"¿Está seguro de que quiere eliminar el acceso de \",[\"0\"],\" a \",[\"username\"],\"?\"],\"SBfnbf\":[\"Ver todos los entornos de ejecución\"],\"SC1Cur\":[\"Estado desconocido\"],\"SDND4q\":[\"No configurado\"],\"SIJDi3\":[\"Ajuste de la capacidad\"],\"SJjggI\":[\"Actualizar opciones\"],\"SJmHMo\":[\"Documentación.\"],\"SLm_0U\":[\"Puerto del servidor IRC\"],\"SODyJ3\":[\"Servidor Async OK\"],\"SRiPhD\":[\"Cancelar eliminación del nodo\"],\"SV5nA1\":[\"Algunos de los pasos anteriores tienen errores\"],\"SVG6MY\":[\"Revertir el campo al valor guardado anteriormente\"],\"SYbJcn\":[\"Modificar plantilla de notificación\"],\"SZvybZ\":[\"LDAP predeterminado\"],\"SZw9tS\":[\"Ver detalles\"],\"SbRHme\":[\"Área de texto\"],\"Se_E0z\":[\"Tarea en flujo de trabajo\"],\"Sgr5NW\":[\"Seleccione una instancia para ejecutar una comprobación de estado.\"],\"Sh2XTJ\":[\"Tipo de notificación\"],\"SiexHs\":[\"Panel de control (toda la actividad)\"],\"Sja7f-\":[\"¿Cuántas veces se ha eliminado al anfitrión?\"],\"Sjoj4f\":[\"Nombre de la credencial\"],\"SlfejT\":[\"Error\"],\"SoREmD\":[\"Aplicaciones y tokens\"],\"SqA8uD\":[\"Ejecuciones de trabajo\"],\"SqLEdN\":[\"No se pudo eliminar el inventario inteligente.\"],\"SqYo9m\":[\"Volver a las instancias\"],\"Ssdrw4\":[\"Obsoleto\"],\"Successful\":[\"Correctamente\"],\"SvPvEX\":[\"Cuerpo del mensaje de flujo de trabajo aprobado\"],\"Svkela\":[\"Ir a la página anterior\"],\"SwJLlZ\":[\"Cuerpo del mensaje de flujo de trabajo denegado\"],\"SxGqey\":[\"Ajustes genéricos de OIDC\"],\"Sxm8rQ\":[\"Usuarios\"],\"SzFxHC\":[\"Configuración de LDAP\"],\"SzQMpA\":[\"Forks\"],\"T2M20E\":[\"El\"],\"T2mGOG\":[\"docs.ansible.com\"],\"T2x15z\":[\"No se pudo alternar la notificación.\"],\"T4a4A4\":[\"Clave de Webhook\"],\"T7yEGN\":[\"El tipo de concesión que el usuario debe usar para adquirir tokens para esta aplicación\"],\"T91vKp\":[\"Jugada\"],\"T9hZ3D\":[\"Equipo de GitHub Enterprise\"],\"TAnffV\":[\"Modificar este nodo\"],\"TBH48u\":[\"No se pudo eliminar el equipo.\"],\"TC32CH\":[\"Días de datos a conservar\"],\"TD1APv\":[\"Obtener suscripciones\"],\"TFr1UR\":[\"Seleccione la colección de Ansible que proporciona el plugin de inventario utilizado para sincronizar desde vCenter. La colección community.vmware está obsoleta en favor de la colección más reciente vmware.vmware. La selección se aplica mediante la clave \\\"plugin\\\" en las variables de fuente; cuando la clave está ausente, se utiliza la colección predeterminada.\"],\"TJVvMD\":[\"Tipo de búsqueda relacionada\"],\"TLomdD\":[[\"sessionCountdown\",\"plural\",{\"one\":[\"You will be logged out in \",\"#\",\" second due to inactivity\"],\"other\":[\"You will be logged out in \",\"#\",\" seconds due to inactivity\"]}]],\"TMJ39S\":[\"Disociar rol\"],\"TMLAx2\":[\"Obligatorio\"],\"TO3h59\":[\"Completar el campo desde un sistema externo de gestión de claves secretas\"],\"TO4OtU\":[\"Credencial de Insights\"],\"TOjYb_\":[\"Ver los detalles del anfitrión del inventario construido\"],\"TP9_K5\":[\"Token\"],\"TRDppN\":[\"Webhook\"],\"TTMvf7\":[\"Tipo de grupo\"],\"TU6IDa\":[\"Tipo de usuario\"],\"TXKmNM\":[\"Debe seleccionar un inventario\"],\"TZEuIE\":[\"Volver a los tipos de credenciales\"],\"T_87By\":[\"Parámetro\"],\"Ta0ts5\":[\"Mostrar cambios\"],\"TcnG-2\":[\"Crear un nuevo entorno de ejecución\"],\"TgSxH9\":[\"Dirección URL para las llamadas callback\"],\"TkiN8D\":[\"Detalles del usuario\"],\"Tmh24b\":[\"Si está habilitado, la plantilla de trabajo impedirá agregar grupos de instancias de inventario u organización a la lista de grupos de instancias preferidos en los que ejecutarse. Nota: si esta configuración está habilitada y proporcionó una lista vacía, se aplicarán los grupos de instancias globales.\"],\"Tmuvry\":[\"Establecer escritura anticipada del tipo\"],\"ToOoEw\":[\"Copiar credencial\"],\"Tof7pX\":[\"Trabajos\"],\"Tq71UT\":[\"día laborable\"],\"Tx3NMN\":[\"Frase de paso para llave privada\"],\"TxKKED\":[\"Ver detalles del inventario construido\"],\"TyaPAx\":[\"Administrador del sistema\"],\"Tz0i8g\":[\"Ajustes\"],\"U-nEJl\":[\"Ver la configuración de GitHub\"],\"U011Uh\":[\"Última sincronización\"],\"U7rA2a\":[\"Si no se marca, se realizará una fusión, combinando las variables locales con las que se encuentran en la fuente externa.\"],\"UDf-wR\":[\"Suscripciones consumidas\"],\"UEaj7U\":[\"Errores de sincronización de inventario\"],\"UJpDop\":[\"Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"UJsNNk\":[\"Revisión de fuente de control\"],\"UPasE4\":[\"Azure AD predeterminado\"],\"UPmrRI\":[\"Versión de endswith que no distingue mayúsculas de minúsculas.\"],\"URmyfc\":[\"Detalles\"],\"UX2wV1\":[[\"0\",\"plural\",{\"one\":[\"This credential is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"UXBCwc\":[\"Apellido\"],\"UY6iPZ\":[\"Si está habilitado, los nodos de control examinarán esta instancia automáticamente. Si se desactiva, la instancia se conectará solo a los compañeros asociados.\"],\"UYD5ld\":[\"y haga clic en Actualizar revisión al ejecutar\"],\"UYUgdb\":[\"Pedir\"],\"U_JUCL\":[\"Red Hat Insights\"],\"Ua-Kc6\":[\"www.json.org\"],\"UbOul8\":[\"¿Está seguro de que desea eliminar:\"],\"UbRKMZ\":[\"Pendiente\"],\"UbqhuT\":[\"No se pudo recuperar el objeto de recurso de nodo completo.\"],\"Uc_tSU\":[\"Alternar herramientas\"],\"UgFDh3\":[\"Este inventario está siendo utilizado por otros recursos. ¿Está seguro de que desea eliminarlo?\"],\"UirGxE\":[\"Errores\"],\"UlykKR\":[\"Tercero\"],\"Uo1S9q\":[\"Iniciar sesión con Azure AD Tenant\"],\"UueF8b\":[\"Falta el entorno de ejecución o se ha eliminado.\"],\"UvGjRK\":[\"Si está habilitado, ejecute este playbook como administrador.\"],\"UwJJCk\":[\"Volver a ejecutar hosts fallidos\"],\"UxKoFf\":[\"Navegación\"],\"UyZ7HQ\":[\"Cuerpo del mensaje de cambio\"],\"V-7saq\":[\"¿Eliminar \",[\"pluralizedItemName\"],\"?\"],\"V-rJKF\":[\"Seconds\"],\"V0Xv3_\":[[\"intervalValue\",\"plural\",{\"one\":[\"day\"],\"other\":[\"days\"]}]],\"V0fM4k\":[\"Análisis de usuarios\"],\"V1EGGU\":[\"Nombre\"],\"V2-omF\":[[\"0\",\"plural\",{\"one\":[\"El inventario estará en estado pendiente hasta que se procese la eliminación final.\"],\"other\":[\"Los inventarios estarán en estado pendiente hasta que se procese la eliminación final.\"]}]],\"V2RwJr\":[\"Direcciones del oyente\"],\"V2q9w9\":[\"If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode.\"],\"V3z83V\":[\"LDAP 3\"],\"V4WsyL\":[\"Agregar enlace\"],\"V5RUpn\":[\"Lista de destinatarios\"],\"V7qsYh\":[\"Nota: El orden de estas credenciales establece la precedencia para la sincronización y búsqueda del contenido. Seleccione más de una para habilitar el arrastre.\"],\"V9xR6T\":[\"Expandir sección\"],\"VAI2fh\":[\"Crear nuevo grupo de contenedores\"],\"VAcXNz\":[\"Miércoles\"],\"VEj6_Y\":[\"Aprobaciones del flujo de trabajo\"],\"VFvVc6\":[\"Modificar detalles\"],\"VJUm9p\":[\"Página actual\"],\"VK2gzi\":[\"El número de procesos paralelos o simultáneos que se utilizarán al ejecutar el playbook. Un valor vacío, o un valor inferior a 1, utilizará el valor predeterminado de Ansible, que suele ser 5. El número predeterminado de forks se puede sobrescribir con un cambio en\"],\"VL2WkJ\":[\"El último \",[\"dayOfWeek\"]],\"VLdRt2\":[\"Iniciar fuente de sincronización\"],\"VNUs2y\":[\"Horquillas\"],\"VSJ6r5\":[\"La programación está activa\"],\"VSim_H\":[\"Eliminar fuente de inventario\"],\"VTDO7X\":[\"Modal de detalles del evento\"],\"VU3Nrn\":[\"No encontrado\"],\"VWL2DK\":[\"Organización de GitHub\"],\"VXFjd8\":[\"Métrica\"],\"VZfXhQ\":[\"Nodo de salto\"],\"VdcFUD\":[\"Acuerdo de licencia de usuario final\"],\"ViDr6F\":[\"Agregar nuevo grupo\"],\"VmClsw\":[\"Se ha eliminado el recurso asociado a este nodo.\"],\"VmvLj9\":[\"Establezca en Público o Confidencial según la seguridad del dispositivo cliente.\"],\"Vqd-tq\":[\"Confirmar la reversión de todo\"],\"Vqgeac\":[\"Press space or enter to begin dragging,\\n and use the arrow keys to navigate up or down.\\n Press enter to confirm the drag, or any other key to\\n cancel the drag operation.\"],\"Vvbbn2\":[\"No se pudo eliminar el rol.\"],\"Vw8l6h\":[\"Se ha producido un error\"],\"VzE_M-\":[\"No se pudieron alternar las notificaciones\"],\"W-O1E9\":[\"Copiar proyecto\"],\"W1iIqa\":[\"Ver grupos de inventario\"],\"W3TNvn\":[\"Volver a Usuarios\"],\"W3pOzF\":[\"Permita cambiar la rama o revisión del control de código fuente en una plantilla de trabajo que utilice este proyecto.\"],\"W6uTJi\":[\"No se pudo obtener el tablero:\"],\"W7DGsV\":[\"Ejecutado por (nombre de usuario)\"],\"W9XAF4\":[\"Día de la semana\"],\"W9uQXX\":[\"Aviso\"],\"WAjFYI\":[\"Fecha de inicio\"],\"WD8djW\":[\"Confirmar eliminación de enlace\"],\"WL91Ms\":[\"Delete Groups?\"],\"WPM2RV\":[\"Tipo de respuesta\"],\"WQJduu\":[\"Seleccionar clave\"],\"WTN9YX\":[\"Cuenta token\"],\"WTV15I\":[\"Editar la URL de redirección de inicio de sesión\"],\"WVzGc2\":[\"Subscripción\"],\"WX9-kf\":[\"NIC de IRC\"],\"Wc6m4J\":[\"Un refspec para obtener (pasado al módulo git de Ansible). Este parámetro permite el acceso a referencias a través del campo de rama que de otro modo no estarían disponibles.\"],\"Wdl2f2\":[\"Este campo debe tener al menos \",[\"0\"],\" caracteres\"],\"WgsBEi\":[\"Ingresar al menos un filtro de búsqueda para crear un nuevo inventario inteligente\"],\"WhSFGl\":[\"Filtrar por \",[\"name\"]],\"Wi1pUG\":[[\"numJobsToCancel\",\"plural\",{\"one\":[[\"0\"]],\"other\":[[\"1\"]]}]],\"Wk1rOS\":[\"Ajustar el gráfico al tamaño de la pantalla disponible\"],\"Wm7XbF\":[\"No se pudo eliminar una o más credenciales.\"],\"WqaDMq\":[\"El campo contiene un valor.\"],\"Wy25yg\":[\"Twilio\"],\"X03-eC\":[\"Por favor introduzca un valor.\"],\"X5V9DW\":[\"Haga clic en el botón Edit (Modificar) para volver a configurar el nodo.\"],\"X6d3Zy\":[\"No se pudo eliminar la organización.\"],\"X97mbf\":[\"Seleccionar un tipo de tarea\"],\"XA12d8\":[\"Lista opcional de nombres de host separados por comas para incluir en cada segmento de trabajo, además de los hosts del propio segmento. Útil cuando un play tiene como objetivo un host de coordinación, como localhost, del que dependen todos los segmentos. Los nombres se comparan exactamente con los hosts del inventario; no se admiten grupos ni patrones. Los hosts fijados ejecutan sus plays una vez por segmento.\"],\"XBROpk\":[\"Proporcione un patrón de host para restringir aún más la lista de hosts que serán gestionados o afectados por el flujo de trabajo.\"],\"XCCkju\":[\"Modificar nodo\"],\"XFRygA\":[\"Ejemplos de URL para el control de código fuente de archivo remoto incluyen:\"],\"XHxwBV\":[\"El intervalo de fechas seleccionado debe tener al menos 1 ocurrencia de horario.\"],\"XILg0L\":[\"Dirección de correo electrónico no válida\"],\"XJOV1Y\":[\"Actividad\"],\"XKp83s\":[\"No se pueden copiar los inventarios con fuentes\"],\"XLMJ7O\":[\"Nube\"],\"XLpxoj\":[\"Opciones de correo electrónico\"],\"XM-gTv\":[\"Consulte la documentación de Ansible para obtener detalles sobre el archivo de configuración.\"],\"XOD7tz\":[\"Mostrar cambios\"],\"XOaZX3\":[\"Paginación\"],\"XP6TQ-\":[\"Si se especifica, este campo se mostrará en el nodo en lugar del nombre del recurso cuando se vea el flujo de trabajo\"],\"XREJvl\":[\"Variables utilizadas para configurar el origen del inventario. Para obtener una descripción detallada de cómo configurar este complemento, consulte\"],\"XViLWZ\":[\"Con error\"],\"XWDz5f\":[\"Selección de clave simple\"],\"X_5TsL\":[\"Alternancia de encuestas\"],\"XaxYwV\":[\"Valores solicitados\"],\"XbIM8f\":[\"Fuentes de inventario total\"],\"XdyHT-\":[\"Hosts importados\"],\"XfmfOA\":[\"Ejecutar cada\"],\"Xg3aVa\":[\"Utilizar SSL\"],\"XgTa_2\":[\"The inventory will be in a pending status until the final delete is processed.\"],\"XilEsm\":[\"Grupo de instancias\"],\"Xm7ruy\":[\"5 (Depuración de WinRM)\"],\"XmJfZT\":[\"nombre\"],\"XmVvzl\":[\"Seleccionar los roles para aplicar\"],\"XnxCSh\":[\"Error estándar\"],\"XozZ38\":[\"No se pudo eliminar una o más fuentes de inventario.\"],\"Xq9A0U\":[\"Proyecto desconocido\"],\"Xt4N6V\":[\"Aviso | \",[\"0\"]],\"XtpZSU\":[\"Todos los tipos de tarea\"],\"Xx-ftH\":[\"Has automatizado contra más hosts de los que permite tu suscripción.\"],\"XyTWuQ\":[\"Espere hasta que se complete la vista de topología...\"],\"XyW2nH\":[[\"0\",\"plural\",{\"one\":[\"¿Está seguro de que desea eliminar el grupo siguiente?\"],\"other\":[\"¿Está seguro de que desea eliminar los grupos siguientes?\"]}]],\"XzD7xj\":[\"Seleccionar elementos\"],\"Y1YKad\":[\"Modificar detalles\"],\"Y296GK\":[\"No se pudo eliminar el rol\"],\"Y2ml-n\":[\"Aprobado - \",[\"0\"],\". Consulte el Flujo de actividad para obtener más información.\"],\"Y5VrmH\":[\"No configurado para la sincronización de inventario.\"],\"Y5vgVF\":[\"Denegado con éxito\"],\"Y5xJ7I\":[\"Nombre del playbook\"],\"Y60pX3\":[\"Añadir inventario construido\"],\"YA4I45\":[\"Seleccionar un módulo\"],\"YFmVSY\":[\"¿Disociar?\"],\"YJddb4\":[\"tipo de instancia\"],\"YLMfol\":[\"Elija el tipo de recurso que recibirá los nuevos roles. Por ejemplo, si desea agregar nuevos roles a un conjunto de usuarios, elija Users (Usuarios) y haga clic en Next (Siguiente). Podrá seleccionar los recursos específicos en el siguiente paso.\"],\"YM06Nm\":[\"Editar el tipo de credencial\"],\"YMLB2b\":[\"Determina si el nodo de aprobación se aprueba o se deniega automáticamente cuando expira el tiempo de espera.\"],\"YMpSlP\":[\"Tiempo en segundos para considerar que una sincronización de inventario es actual. Durante las ejecuciones de trabajos y las devoluciones de llamada, el sistema de tareas evaluará la marca de tiempo de la última sincronización. Si es anterior al tiempo de espera de la caché, no se considera actual y se realizará una nueva sincronización del inventario.\"],\"YOOdGq\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" minuto\"],\"other\":[\"#\",\" minutos\"]}]],\"YOh7Aw\":[\"Tarea en flujo de trabajo \",[\"currentPosition\"],\"/\",[\"total\"]],\"YP5KRj\":[\"se generará una nueva URL de Webhook al guardar.\"],\"YPDLLX\":[\"Volver a los entornos de ejecución\"],\"YQqM-5\":[\"La imagen de contenedor que se utilizará para la ejecución.\"],\"Yd45Xn\":[\"Anfitriones por tipo de procesador\"],\"Yfw7TK\":[\"Caducó el tiempo de la notificación\"],\"YgqgXs\":[[\"intervalValue\",\"plural\",{\"one\":[\"minute\"],\"other\":[\"minutes\"]}]],\"YiQ03p\":[\"No se pudo eliminar la programación.\"],\"YiUAZm\":[\"<0>Nota: Esta instancia puede volver a asociarse con este grupo de instancias si es administrada por <1>reglas de política.\"],\"YlGAPh\":[\"Hosts fijados de la fracción de trabajos\"],\"Ym7-mu\":[\"Un canal de Slack por línea. El símbolo numeral (#)\\n es obligatorio para los canales. Para responder o iniciar un hilo en un mensaje específico, agregue el Id del mensaje principal al canal, donde el Id del mensaje principal tiene 16 dígitos. Debe insertarse un punto (.) manualmente después del décimo dígito. por ejemplo:#canal-destino, 1231257890.006423. Consulte Slack\"],\"YmEWZH\":[\"Ejecutar plantilla\"],\"YmjTf2\":[\"Fallo de aprovisionamiento\"],\"YoXjSs\":[\"Preguntar por el inventario al ejecutar.\"],\"Yq4Eaf\":[\"La información de estado del host para esta tarea no se encuentra disponible.\"],\"YsN-3o\":[\"Ver detalles de la fuente de inventario\"],\"Yt-rBv\":[\"Este proyecto está siendo utilizado actualmente por otros recursos. ¿Está seguro de que desea eliminarlo?\"],\"YuC9dj\":[\"Asociar\"],\"YxDLmM\":[\"ID del sistema de Insights\"],\"Z17FAa\":[\"Inventario desconocido\"],\"Z1Vtl5\":[\"No se pudo cancelar la sincronización de proyectos\"],\"Z25_RC\":[\"Seleccionar entrada\"],\"Z2hVSb\":[\"Híbrido\"],\"Z40J8D\":[\"Habilita la creación de una URL de devolución de llamada de aprovisionamiento. Mediante la URL, un host puede contactar con \",[\"brandName\"],\" y solicitar una actualización de configuración utilizando esta plantilla de trabajo.\"],\"Z5HWHd\":[\"On\"],\"Z7ZXbT\":[\"Aprobar\"],\"Z88yEl\":[\"Mayor o igual que la comparación.\"],\"Z9EFpE\":[\"Panel de control de Automation Analytics\"],\"ZAWGCX\":[[\"0\"],\" segundos\"],\"ZEP8tT\":[\"Ejecutar\"],\"ZGDCzb\":[\"Instancia no encontrada.\"],\"ZJjKDg\":[\"Nodos gestionados\"],\"ZKKnVf\":[\"Crear plantilla de flujo de trabajo\"],\"ZL3d6Z\":[\"Dirección del servidor IRC\"],\"ZO4CYH\":[\"Tareas en ejecución\"],\"ZOLfb2\":[\"Este campo no debe estar en blanco\"],\"ZWhZbs\":[\"Confirmar eliminación de nodo\"],\"ZajTWA\":[\"Número de teléfono de la fuente\"],\"Zf6u-6\":[\"Explicación\"],\"ZfrRb0\":[\"Seleccione un inventario o marque la opción Preguntar al ejecutar.\"],\"ZhUwVw\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" semana\"],\"other\":[\"#\",\" semanas\"]}]],\"ZhxwOq\":[\"Cuerpo del mensaje de error\"],\"Zikd-1\":[\"El número de hosts que tiene automatizados es inferior al número de suscripciones.\"],\"ZjC8QM\":[\"No se pudo eliminar el host.\"],\"ZjvPb1\":[\"Creado por (nombre de usuario)\"],\"Zkh5np\":[\"Los compañeros se actualizan el \",[\"0\"],\". Asegúrese de ejecutar el paquete de instalación para \",[\"1\"],\" de nuevo para que los cambios surtan efecto.\"],\"ZpdX6R\":[\"Error al eliminar tokens\"],\"ZrsGjm\":[\"Inventario\"],\"ZumtuZ\":[\"Copiar plantilla\"],\"ZvVF4C\":[\"Eliminar la pregunta de la encuesta\"],\"ZwCTcT\":[\"Pestaña de la lista de tareas recientes\"],\"ZwujDQ\":[\"Año pasado\"],\"_-NKbo\":[\"No se pudo alternar la programación.\"],\"_2LfCe\":[\"Para reordenar las preguntas de la encuesta, arrástrelas y suéltelas en el lugar deseado.\"],\"_4gGIX\":[\"Copiar al portapapeles\"],\"_5REdR\":[\"Seleccione Input Inventories para el plugin de inventario construido.\"],\"_Fg1cM\":[\"Cuerpo del mensaje de tiempo de espera agotado del flujo de trabajo\"],\"_ITcnz\":[\"día\"],\"_Ia62Q\":[\"Ejemplos de inventario construido\"],\"_JN1gB\":[\"Recuento de tareas\"],\"_K2CvV\":[\"Plantilla\"],\"_LQZpR\":[[\"intervalValue\",\"plural\",{\"one\":[\"year\"],\"other\":[\"years\"]}]],\"_LVfwJ\":[\"Error de sincronización de origen de inventario construido\"],\"_M4FeF\":[\"Seleccione el entorno de ejecución en el que desea que se ejecute este comando.\"],\"_MTBwI\":[\"Mensaje de cambio\"],\"_MdgrM\":[\"Agregar un nuevo nodo entre estos dos nodos\"],\"_PRaan\":[\"No se pudo eliminar una o más plantillas de notificación.\"],\"_Pz_QH\":[\"Gestionado por la política\"],\"_W3ZAw\":[[\"selectedItemsCount\",\"plural\",{\"one\":[\"Click to run a health check on the selected instance.\"],\"other\":[\"Click to run a health check on the selected instances.\"]}]],\"_WBq2_\":[\"Denegado - \",[\"0\"],\". Consulte el Flujo de actividad para obtener más información.\"],\"_Yq4TU\":[\"Número máximo de horquillas para permitir en todos los trabajos que se ejecutan simultáneamente en este grupo.\\n Cero significa que no se aplicará ningún límite.\"],\"_ZBhqw\":[\"No se pudo cancelar la sincronización de fuentes de inventario\"],\"_bAUGi\":[\"Elegir un método HTTP\"],\"_bE0AS\":[\"Seleccione una instancia\"],\"_cV6Mf\":[\"Navegar\"],\"_cq4Aa\":[\"No se encontró la aprobación del flujo de trabajo.\"],\"_ereyb\":[\"TACACS+\"],\"_gCD76\":[\"Modificar grupo de instancias\"],\"_ismew\":[\"Clave del artefacto\"],\"_kYJq6\":[\"Días de datos para mantener\"],\"_khNCh\":[\"Las credenciales predeterminadas de la plantilla de trabajo deben reemplazarse por una del mismo tipo. Seleccione una credencial para los siguientes tipos para continuar: \",[\"0\"]],\"_oeZtS\":[\"Sondeo al servidor\"],\"_rCRcH\":[\"Documentación de búsqueda avanzada\"],\"_vI8Rx\":[\"Delete Group?\"],\"a02Xjc\":[\"Dirección del servidor IRC\"],\"a3AD0M\":[\"confirmar la redirección del acceso a la edición\"],\"a5zD9f\":[\"Cambios\"],\"a6E-_p\":[\"Versión de contains que no distingue mayúsculas de minúsculas\"],\"a8AgQY\":[\"Ver detalles del host\"],\"a8nooQ\":[\"Cuarto\"],\"a9BTUD\":[\"día de fin de semana\"],\"aBgwis\":[\"Ámbito\"],\"aLlb3-\":[\"boolean\"],\"aNxqSL\":[\"Eliminar entorno de ejecución\"],\"aQ4XJX\":[\"Habilitar eventos de seguimiento del sistema de registro de forma individual\"],\"aSuBiU\":[\"Microsoft Azure Resource Manager\"],\"aTK0Fh\":[\"En los días\"],\"aUNPq3\":[\"Nodo de ejecución\"],\"aVoVcG\":[\"Selección múltiple\"],\"aXBrSq\":[\"Virtualización de Red Hat\"],\"a_vlog\":[\"Eliminar el chip de \",[\"0\"]],\"adPhRK\":[\"Seleccione el inventario al que pertenecerá este host.\"],\"adjqlB\":[[\"0\"],\" (eliminado)\"],\"aht2s_\":[\"Color de la notificación\"],\"aiejXq\":[\"Agregar tipo de recurso\"],\"ajDpGH\":[\"ESTADO:\"],\"anfIXl\":[\"Detalles del usuario\"],\"aqqAbL\":[\"Si se activa, el inventario impedirá que se añadan grupos de instancias de la organización a la lista de grupos de instancias preferidos para ejecutar plantillas de trabajo asociadas. Nota: si esta opción está activada y ha proporcionado una lista vacía, se aplicarán los grupos de instancias globales.\"],\"ar5AA2\":[\"para obtener más información.\"],\"ataY5Z\":[\"Error en la eliminación de tareas\"],\"ax6e8j\":[\"Seleccione una organización antes de modificar el filtro del host\"],\"az8lvo\":[\"Off\"],\"b1CAkh\":[\"Trabajos de gestión\"],\"b2Z0Zq\":[\"Cancelar cambios de enlace\"],\"b433OF\":[\"Modificar grupo\"],\"b4SLah\":[\"Ver errores a la izquierda\"],\"b9Y4up\":[\"ID del cliente\"],\"bDa_hW\":[\"Seleccione los grupos de instancias en los que se debe ejecutar la sincronización de esta fuente de inventario. Si no se establece, la sincronización se ejecuta en los grupos de instancias del inventario o de su organización.\"],\"bE4zYn\":[\"Seleccione el puerto en el que el receptor escuchará las conexiones entrantes, por ejemplo, 27199.\"],\"bHXYoC\":[\"Método HTTP\"],\"bKR18T\":[\"Un manifiesto de suscripción es una exportación de una suscripción de Red Hat. Para generar un manifiesto de suscripción, vaya a <0>access.redhat.com. Para obtener más información, consulte la <1>Guía del usuario.\"],\"bLt_0J\":[\"Flujo de trabajo\"],\"bPq357\":[\"Valor habilitado\"],\"bQZByw\":[\"Ingrese una etiqueta de anotación por línea sin comas.\"],\"bTu5jX\":[\"Nombre de usuario/contraseña\"],\"bWr6j5\":[\"Este campo debe tener al menos \",[\"min\"],\" caracteres\"],\"bY8C86\":[\"Ver todos los usuarios.\"],\"bYXbel\":[\"clave de Webhook de la plantilla de trabajo del flujo de trabajo\"],\"baP8gx\":[\"4 (Depuración de la conexión)\"],\"baqrhc\":[\"Cabeceras HTTP\"],\"bbJ-VR\":[\"Alejar\"],\"bcyJXs\":[\"Elemento OK\"],\"bd1Kuw\":[\"URL de icono\"],\"bf7UKi\":[\"Tiempo de espera de la caché de actualización\"],\"bfgr_e\":[\"Pregunta\"],\"bgjTnp\":[\"0 (Normal)\"],\"bgq1rW\":[\"Botón de envío de la búsqueda\"],\"bhxnLH\":[\"No tiene permiso para eliminar los siguientes Grupos: \",[\"itemsUnableToDelete\"]],\"bkPO0d\":[\"Tipo de notificación\"],\"bpECfE\":[\"Cancelar eliminación del enlace\"],\"bpnj1H\":[\"Se produjo un error al cargar este contenido. Vuelva a cargar la página.\"],\"bwRvnp\":[\"Acción\"],\"bx2rrL\":[\"Inventario inteligente\"],\"bxaVlf\":[\"Crear un nuevo tipo de credencial\"],\"byXCTu\":[\"Ocurrencias\"],\"bznJUg\":[\"Seleccione el inventario que contiene los hosts que desea que gestione este flujo de trabajo.\"],\"bzv8Dv\":[\"Error de eliminación\"],\"c-xCSz\":[\"Verdadero\"],\"c0n4p3\":[\"Almacenamiento de datos\"],\"c1Rsz1\":[\"Ver detalles de la aprobación del flujo de trabajo\"],\"c3XJ18\":[\"Ayuda\"],\"c4kHK7\":[\"Cerrar modal de suscripción\"],\"c6IFRs\":[\"Archivo JSON de la cuenta de servicio\"],\"c6u6gk\":[\"Seleccione los grupos de instancias en los que se ejecutará esta organización.\"],\"c7-Adk\":[\"No se pudo sincronizar la fuente de inventario.\"],\"c8HyJq\":[\"Seleccione los grupos de instancias en los que se ejecutará este inventario.\"],\"c8sV0t\":[\"Esta función está obsoleta y se eliminará en una futura versión.\"],\"c9V3Yo\":[\"Servidor fallido\"],\"c9iw51\":[\"Tareas en ejecución\"],\"c9pF61\":[\"Identificador del cliente\"],\"cFC8w7\":[\"Esta fuente de inventario está siendo utilizada por otros recursos que dependen de ella. ¿Está seguro de que desea eliminarla?\"],\"cFCKYZ\":[\"Denegar\"],\"cFOXv9\":[\"OIDC genérico\"],\"cGRiaP\":[\"Detalles del evento\"],\"cIdUma\":[\"\\n No hay directorios de playbook disponibles en \",[\"project_base_dir\"],\".\\n O ese directorio está vacío, o todo su contenido ya está\\n asignado a otros proyectos. Cree un nuevo directorio ahí y asegúrese\\n de que el usuario del sistema \\\"awx\\\" pueda leer los archivos del playbook,\\n o haga que \",[\"brandName\"],\" recupere directamente sus playbooks desde\\n el control de código fuente utilizando la opción Tipo de fuente de control anterior.\"],\"cNsIJf\":[\"Cambiado\"],\"cPTnDL\":[\"Sincronización del proyecto\"],\"cQIQa2\":[\"Seleccionar grupos\"],\"cQlPDN\":[\"Lectura\"],\"cUKLzq\":[\"Orden de edición\"],\"cYir0h\":[\"Seleccione la(s) opción(es)\"],\"c_PGsA\":[\"Ver detalles de la tarea\"],\"cbSPfq\":[\"Este flujo de trabajo ya ha sido actuado\"],\"ccA_Bz\":[\"El formato sugerido para los nombres de variables es minúsculas y\\n separados por guiones bajos (por ejemplo, foo_bar, user_id, host_name,\\n etc.). No se permiten los nombres de variables con espacios.\"],\"cdm6_X\":[\"Capacidad usada\"],\"chbm2W\":[\"Filtros de instancias\"],\"ci3mwY\":[\"Este campo no debe estar en blanco\"],\"cit9TY\":[\"Nombre de un artefacto producido por el nodo primario mediante set_stats. El enlace solo se sigue cuando el trabajo primario coincide con el resultado elegido y la condición es verdadera. Una clave inexistente nunca coincide.\"],\"cj1KTQ\":[\"Ver todos los inventarios.\"],\"cjJXKx\":[\"Servidor Async fallido\"],\"ckH3fT\":[\"Listo\"],\"ckdiAB\":[\"Eliminar notificación\"],\"cmWTxn\":[\"Menor o igual que la comparación.\"],\"cnGeoo\":[\"ELIMINAR\"],\"cnnWD0\":[\"By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>\",[\"0\"],\". Uncheck the following boxes to disable this feature.\"],\"ct_Puj\":[\"Este campo se recuperará de un sistema externo de gestión de claves secretas utilizando la credencial especificada.\"],\"cucDBz\":[\"Plantilla de contexto\"],\"cucG_7\":[\"No hay YAML disponible\"],\"cxjfgY\":[\"No se puede ejecutar la comprobación de estado en los nodos de salto.\"],\"cy3yJa\":[\"Establecido\"],\"d-F6q9\":[\"Creado\"],\"d-zGjA\":[\"Esta acción eliminará lo siguiente:\"],\"d1BVnY\":[\"A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>\",[\"0\"],\".\"],\"d5zxa4\":[\"Local\"],\"d6in1T\":[\"Seleccione el inventario que contiene los hosts que desea que gestione este trabajo.\"],\"d73flf\":[\"Modal de alerta\"],\"d75lEw\":[\"Establecer tipo\"],\"d7VUIS\":[\"Eliminar nodo \",[\"nodeName\"]],\"d8B-tr\":[\"Pestaña del gráfico de estado de la tarea\"],\"dAZObA\":[\"Redirigir URI\"],\"dBNZkl\":[\"Ver detalles del host de inventario inteligente\"],\"dCcO-F\":[\"No se pudo recuperar la configuración.\"],\"dELxuP\":[\"No se encontró el inventario.\"],\"dEgA5A\":[\"Cancelar\"],\"dH6aQY\":[\"Azure AD Tenant\"],\"dIb9tv\":[\"Ver todas las aplicaciones.\"],\"dJcvVX\":[\"Filtro de host inteligente\"],\"dNAHKF\":[\"Fraccionamiento de trabajos\"],\"dOjocz\":[\"Selección de convergencia\"],\"dPGRd8\":[\"Si está habilitado, muestra los cambios realizados por las tareas de Ansible, cuando es compatible. Esto equivale al modo --diff de Ansible.\"],\"dPY1x1\":[\"para obtener más información.\"],\"dQFAgv\":[\"Este proyecto debe actualizarse\"],\"dQjRO3\":[\"Iniciar proceso de sincronización\"],\"dbWo0h\":[\"Iniciar sesión con Google\"],\"dcGoCm\":[\"Archivo de inventario\"],\"ddIcfH\":[\"Ir a la última página\"],\"dfWFox\":[\"Recuento de hosts\"],\"dk7qNl\":[\"Nodo de control\"],\"dkGxGj\":[\"Subversion\"],\"dlHFy7\":[\"No se pudo eliminar uno o más entornos de ejecución\"],\"dnCwNB\":[\"¡Copiado correctamente en el portapapeles!\"],\"dov9kY\":[\"Este campo debe ser un número y tener un valor entre \",[\"0\"],\" y \",[\"1\"]],\"dqxQzB\":[\"diccionario\"],\"dzQfDY\":[\"Octubre\"],\"e0NrBM\":[\"Proyecto\"],\"e3pQqT\":[\"Elegir un tipo de notificación\"],\"e4GHWP\":[\"Extraer\"],\"e5CMOi\":[\"Variables de entorno o variables extra que especifican los valores que un tipo de credencial puede inyectar.\"],\"e5VbKq\":[\"Plantillas de trabajo para flujo de trabajo\"],\"e6BtDv\":[\"<0>\",[\"0\"],\"<1>\",[\"1\"],\"\"],\"e70-_3\":[\"Alternar leyenda\"],\"e8GyQg\":[\"Métrica\"],\"e8U63Z\":[\"Sincronice el proyecto solo cuando la referencia enviada coincida con este patrón, por ejemplo refs/heads/main o refs/heads/release-*. Deje en blanco para sincronizar en cualquier evento de push o etiqueta.\"],\"e91aLH\":[\"Ver todos los tipos de credencial\"],\"e9k5zp\":[\"Añada un horario para rellenar esta lista. Las programaciones pueden añadirse a una plantilla, un proyecto o una fuente de inventario.\"],\"eAR1n4\":[\"Tipo de búsqueda relacionado typeahead\"],\"eD_0Fo\":[\"No se pudo eliminar uno o más equipos.\"],\"eDjsWq\":[\"Crear nueva plantilla de notificación\"],\"eGkahQ\":[\"Eliminar plantilla de trabajo\"],\"eHx-29\":[\"Detalles de la fuente\"],\"ePK91l\":[\"Editar\"],\"ePS9As\":[\"Configuración de RADIUS\"],\"eQkgKV\":[\"Instalado\"],\"eRV9Z3\":[\"No se ha especificado el tiempo de espera\"],\"eRlz2Q\":[\"Números SMS del destinatario\"],\"eSXF_i\":[\"No se pudo eliminar la aplicación.\"],\"eTsJYJ\":[\"descripción\"],\"eVJ2lo\":[\"Decimal corto\"],\"eXOp7I\":[\"No tiene permisos para los recursos relacionados: \",[\"itemsUnableToremove\"]],\"eXWuGz\":[\"Pestaña de la lista de plantillas recientes\"],\"eYJ4TK\":[\"Inventario construido no encontrado.\"],\"eeke40\":[\"Automation Analytics\"],\"ekUnNJ\":[\"Seleccionar etiquetas\"],\"el9nUc\":[\"La programación está inactiva\"],\"emqNXf\":[\"Comprobación del playbook\"],\"eqiT7d\":[\"Establece el papel que desempeñará esta instancia dentro de la topología de malla. Por defecto es \\\"ejecución\\\".\"],\"espHeZ\":[\"Impedir la retroalimentación del grupo de instancias: Si se habilita, el inventario impedirá añadir cualquier grupo de instancias de la organización a la lista de grupos de instancias preferidos para ejecutar las plantillas de trabajo asociadas.\"],\"etQEqZ\":[\"Si quita este enlace, el resto de la rama quedará huérfano y hará que se ejecute inmediatamente en el lanzamiento.\"],\"ewSXyG\":[\"Eliminación Temporal\"],\"f-fQK9\":[\"Clave API de Grafana\"],\"f2o-xB\":[\"Confirmar cancelación\"],\"f6Hub0\":[\"Ordenar\"],\"f9yJNM\":[\"Igual a\"],\"fCZSgU\":[\"Ver todos los grupos de instancias\"],\"fDzxi_\":[\"Salir sin guardar\"],\"fE2kOY\":[\"Selección de operador de fecha\"],\"fGEOCn\":[\"Estado de la tarea\"],\"fGLpQj\":[\"Rama/etiqueta/commit de fuente de control\"],\"fGQ9Ug\":[\"Seleccione las credenciales para acceder a los nodos contra los que se ejecutará este trabajo. Solo puede seleccionar una credencial de cada tipo. Para las credenciales de máquina (SSH), marcar «Preguntar al iniciar» sin seleccionar credenciales le obligará a seleccionar una credencial de máquina en el momento de la ejecución. Si selecciona credenciales y marca «Preguntar al iniciar», las credenciales seleccionadas se convierten en los valores predeterminados que se pueden actualizar en el momento de la ejecución.\"],\"fJ9xam\":[\"Alternar instancia\"],\"fKew5B\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"Cancelar trabajo\"],\"other\":[\"Cancelar trabajos\"]}]],\"fL7WXr\":[\"Aplicaciones\"],\"fMUEsk\":[\"Día \",[\"0\"]],\"fMulwN\":[\"Actualizar la revisión del proyecto\"],\"fOAyP5\":[\"Entrada de texto de búsqueda\"],\"fODqV4\":[\"No se encontró ese valor. Ingrese o seleccione un valor válido.\"],\"fQCM-p\":[\"Ver detalles de la organización\"],\"fQGOXc\":[\"¡Error!\"],\"fR8DDt\":[\"Confirmar eliminación de todos los nodos\"],\"fVjyJ4\":[\"Confirmar disociación\"],\"f_Xpp2\":[\"Esta acción disociará lo siguiente:\"],\"fcTDCh\":[\"Proporcione sus credenciales de Red Hat o de Red Hat Satellite\\n a continuación y podrá elegir de una lista de sus suscripciones disponibles.\\n Las credenciales que utilice se almacenarán para su uso futuro\\n en la recuperación de suscripciones de renovación o ampliadas.\"],\"ff_JYN\":[\"Filtrar por nombre de grupo anidado\"],\"fgrmWn\":[\"Preguntar por el modo de diferencias al ejecutar.\"],\"fhFmMp\":[\"Identificador del cliente\"],\"fjX9i5\":[\"No se encontró el inventario inteligente.\"],\"fk1WEw\":[\"Cifrado\"],\"fld-O4\":[\"Todas las tareas\"],\"fnbZWe\":[\"Opcionalmente, seleccione la credencial que se utilizará para enviar actualizaciones de estado al servicio de webhook.\"],\"foItBN\":[\"Día del fin de semana\"],\"fp4RS1\":[\"content-loading-in-progress\"],\"fpMgHS\":[\"Lun\"],\"fqSfXY\":[\"Reemplazar\"],\"fqmP_m\":[\"Servidor no alcanzable\"],\"fthJP1\":[\"Los servicios de webhook pueden lanzar trabajos con esta plantilla de trabajo de flujo de trabajo realizando una solicitud POST a esta URL.\"],\"fwX7gC\":[\"VMware vCenter\"],\"g4o5Lr\":[\"Nivel de detalle\"],\"g6ekO4\":[\"No se pudo alternar el host.\"],\"g7CZ-8\":[\"Iniciar sesión con organizaciones GitHub Enterprise\"],\"g9d3sF\":[\"Iniciar cuerpo del mensaje\"],\"gALXcv\":[\"Eliminar este nodo\"],\"gBnBJa\":[\"Tarea del flujo de trabajo de origen\"],\"gDx5MG\":[\"Modificar enlace\"],\"gIGcbR\":[\"Número máximo de trabajos que se ejecutarán simultáneamente en este grupo. Cero significa que no se aplicará ningún límite.\"],\"gJccsJ\":[\"Mensaje de flujo de trabajo aprobado\"],\"gK06zh\":[\"Agregar plantilla de trabajo\"],\"gM3pS9\":[\"Entornos de ejecución\"],\"gN3aF4\":[\"LDAP5\"],\"gSVH9P\":[\"Sincronizar todas las fuentes\"],\"gUaMtt\":[\"En el tiempo de espera\"],\"gVYePj\":[\"Crear nuevo equipo\"],\"gWlcwd\":[\"Último estado de la tarea\"],\"gYWK-5\":[\"Ver la configuración de la interfaz de usuario\"],\"gZXc5U\":[\"El número de usuarios distintos que deben aprobar antes de que el flujo de trabajo continúe. Una única denegación siempre deniega el nodo.\"],\"gZaMqy\":[\"Iniciar sesión con equipos GitHub\"],\"gZkstf\":[\"Si está habilitado, esto almacenará los hechos recopilados para que puedan verse a nivel de host. Los hechos se conservan y se inyectan en la caché de hechos en tiempo de ejecución.\"],\"gcFnpl\":[\"Estado de la tarea\"],\"geTfDb\":[\"Ver detalles de la tarea\"],\"ged_ZE\":[\"Oragnización\"],\"gezukD\":[\"Seleccionar una tarea para cancelar\"],\"gfyddN\":[\"Cargar un archivo .zip\"],\"gh06VD\":[\"Salida\"],\"ghJsq8\":[\"Desplazarse hasta el primero\"],\"gmB6oO\":[\"Planificar\"],\"gmBQqV\":[\"Actualización del proyecto\"],\"gnveFZ\":[\"Pestaña de error estándar\"],\"goVc-x\":[\"Modificar configuración del complemento de credenciales\"],\"go_DGX\":[\"Agregar roles de equipo\"],\"gpKdxJ\":[\"Seleccione una pregunta para eliminar\"],\"gpmbqk\":[\"Variables\"],\"gpnvle\":[\"error de eliminación\"],\"gsj32g\":[\"Cancelar sincronización del proyecto\"],\"gtB4z-\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" hora\"],\"other\":[\"#\",\" horas\"]}]],\"gwKtbI\":[\"en la documentación y la\"],\"h25sKn\":[\"Administración de suscripciones\"],\"h51QFW\":[\"YAML\"],\"h8DugX\":[\"Etiquetas\"],\"hAjDQy\":[\"Seleccionar estado\"],\"hBHRCF\":[\"Número mínimo de instancias que se asignarán automáticamente\\n a este grupo cuando se conecten nuevas instancias.\"],\"hEBjSg\":[\"Red Hat Satellite 6\"],\"hEnNCI\":[\"Elimine la búsqueda actual relacionada con los hechos factibles para habilitar otra búsqueda usando esta clave.\"],\"hG89Ed\":[\"Imagen\"],\"hHKoQD\":[\"Seleccionar direcciones de pares\"],\"hLDu5N\":[\"Modificar aplicación\"],\"hNudM0\":[\"Establecer un valor para este campo\"],\"hPa_zN\":[\"Organización (Nombre)\"],\"hQ0dMQ\":[\"Agregar nuevo host\"],\"hQRttt\":[\"Enviar\"],\"hVPa4O\":[\"Seleccione una opción\"],\"hX8KyU\":[\"Este trabajo ha fallado y no tiene salida.\"],\"hXDKWN\":[\"Información sobre la frecuencia\"],\"hXzOVo\":[\"Siguiente\"],\"hYH0cE\":[\"¿Está seguro de que desea enviar la solicitud para cancelar este trabajo?\"],\"hYgDIe\":[\"Crear\"],\"hZ6znB\":[\"Puerto\"],\"hZke6f\":[\"¿Está seguro de que desea deshabilitar la autenticación local? Esto podría afectar la capacidad de los usuarios para iniciar sesión y la capacidad del administrador del sistema para revertir este cambio.\"],\"hc_ufD\":[\"Etiquetas de trabajo\"],\"hdyeZ0\":[\"Eliminar tarea\"],\"he3ygx\":[\"Copiar\"],\"heqHpI\":[\"Ruta base del proyecto\"],\"hg6l4j\":[\"Marzo\"],\"hgJ0FN\":[\"Realice una búsqueda para definir un filtro de host\"],\"hgr8eo\":[\"elementos\"],\"hgvbYY\":[\"Septiembre\"],\"hhzh14\":[\"No pudimos localizar las licencias asociadas a esta cuenta.\"],\"hi1n6B\":[\"Actualizar la configuración de los trabajos en \",[\"brandName\"]],\"hiDMCa\":[\"Aprovisionamiento\"],\"hjsbgA\":[\"Variables adicionales\"],\"hjwN_s\":[\"Nombre del recurso\"],\"hlbQEq\":[\"Credencial de validación de la firma del contenido\"],\"hmEecN\":[\"Trabajo de gestión\"],\"hmjNLv\":[\"Tema preferido\"],\"hty0d5\":[\"Lunes\"],\"hvs-Js\":[\"Información de la aplicación\"],\"i0VMLn\":[\"Mensaje de flujo de trabajo denegado\"],\"i2izXk\":[\"Falta una regla de programación\"],\"i4_LY_\":[\"Escribir\"],\"i9sC0B\":[\"Agregar permisos de equipo\"],\"iASwqf\":[\"This action will cancel the following job:\"],\"iCFhEl\":[\"Número de teléfono de la fuente\"],\"iDNBZe\":[\"Notificación\"],\"iDWfOR\":[\"Error al aprobar una o más aprobaciones de flujo de trabajo.\"],\"iDjyID\":[\"Ver detalles de la credencial\"],\"iE1s1P\":[\"Ejecutar flujo de trabajo\"],\"iEUzMn\":[\"sistema\"],\"iH8pgl\":[\"Volver\"],\"iI4bLJ\":[\"Último inicio de sesión\"],\"iIVceM\":[\"Copiar error\"],\"iJWOeZ\":[\"No hay ningún JSON disponible\"],\"iJiCFw\":[\"Detalles del grupo\"],\"iLO3nG\":[\"Recuento de jugadas\"],\"iMaC2H\":[\"Grupos de instancias\"],\"iPp22p\":[\"Esta programación utiliza reglas complejas que no son compatibles con la\\n interfaz de usuario. Utilice la API para gestionar esta programación.\"],\"iQdYL_\":[\"Agregar inventario inteligente\"],\"iRWxmA\":[\"Deshabilite la verificación de SSL\"],\"iTylMl\":[\"Plantillas\"],\"iWKCzl\":[\"Seleccione de la lista de directorios encontrados en la ruta base del proyecto. Juntos, la ruta base y el directorio de playbook proporcionan la ruta completa utilizada para localizar los playbooks.\"],\"iXmHtI\":[\"Seleccionar el tipo de tarea\"],\"iZBwau\":[\"Este paso contiene errores\"],\"i_CDGy\":[\"Permitir la anulación de la rama\"],\"i_Kv21\":[\"Crear nueva fuente\"],\"ifckL-\":[\"Selección de fila\"],\"ifdViT\":[\"Ver detalles del inventario\"],\"ig0q8s\":[\"Este inventario se aplica a todos los nodos de este flujo de trabajo (\",[\"0\"],\") que solicitan un inventario.\"],\"inP0J5\":[\"Detalles de la suscripción\"],\"isRobC\":[\"Nuevo\"],\"itlxml\":[\"Tarea de gestión\"],\"ittbfT\":[\"La búsqueda por ansible_facts requiere sintaxis especial. Consulte el\"],\"itu2NQ\":[\"Tipos de estado de los enlaces\"],\"j1a5f1\":[\"Modificar host\"],\"j6gqC6\":[\"Rama que se utilizará en la ejecución del trabajo. Se utiliza la predeterminada del proyecto si está en blanco. Solo se permite si el campo allow_override del proyecto está establecido en true.\"],\"j7zAEo\":[\"Estados del flujo de trabajo\"],\"j8QfHv\":[\"Editar el servidor\"],\"jAxdt7\":[\"cancelar eliminación\"],\"jBGh4u\":[\"Definición de inventario de grupos anidados:\"],\"jCVu9g\":[\"Cancel selected job\"],\"jEJtMA\":[\"Aprobaciones de flujos de trabajo pendientes\"],\"jEw0Mr\":[\"Introduzca una URL válida\"],\"jFaaUJ\":[\"Canónico\"],\"jGUu_G\":[\"Aprobaciones requeridas\"],\"jIaeJK\":[\"Encuesta\"],\"jJdwCB\":[\"Revertir\"],\"jKibyt\":[\"Restablecer zoom\"],\"jMyq_x\":[\"Workflow Job 1/\",[\"0\"]],\"jaUa4e\":[\"Estos datos se utilizan para mejorar\\n futuras versiones del software Tower y para ayudar a\\n optimizar la experiencia y el éxito del cliente.\"],\"jc86YO\":[\"Preguntar por el límite al ejecutar.\"],\"ji-8F7\":[\"Esta credencial está siendo utilizada por otros recursos. ¿Está seguro de que desea eliminarla?\"],\"jiE6Vn\":[\"Organizaciones\"],\"jifz9m\":[\"Ninguno (se ejecuta una vez)\"],\"jkQOCm\":[\"Añadir excepciones\"],\"jljuYN\":[\"Servicio desde el que se aceptarán las solicitudes de webhook.\"],\"jluR-N\":[\"Advertencia: \",[\"selectedValue\"],\" es un enlace a \",[\"0\"],\" y se guardará así.\"],\"joAQQS\":[\"The inventories will be in a pending status until the final delete is processed.\"],\"jqVo_k\":[\"aquí.\"],\"jqzUyM\":[\"No disponible\"],\"jrkyDn\":[\"Jugada iniciada\"],\"jrsFB3\":[\"Salida\"],\"jsz-PY\":[\"Fecha de finalización desconocida\"],\"jwmkq1\":[\"Credenciales de máquina\"],\"jzD-D6\":[\"Las etiquetas para omitir son útiles cuando tiene un playbook grande y desea omitir partes específicas de un play o una tarea. Utilice comas para separar varias etiquetas. Consulte la documentación para obtener detalles sobre el uso de las etiquetas.\"],\"k020kO\":[\"Flujo de actividad\"],\"k2dzu3\":[\"Fecha de expiración (UTC):\"],\"k30JvV\":[\"Categoría seleccionada\"],\"k5nHqi\":[\"El entorno de ejecución que se utilizará al iniciar esta plantilla de trabajo. El entorno de ejecución resuelto puede anularse asignando explícitamente uno diferente a esta plantilla de trabajo.\"],\"k6OGfu\":[\"Select the Ansible collection providing the inventory plugin used to sync from vCenter. The community.vmware collection is deprecated in favor of the newer vmware.vmware collection. The selection is saved as the \\\"plugin\\\" key in the source variables.\"],\"kALwhk\":[\"seconds\"],\"kDWprA\":[\"Estos argumentos se utilizan con el módulo especificado.\"],\"kEhyki\":[\"El campo termina con un valor.\"],\"kLja4m\":[\"Inicializado por\"],\"kLk5bG\":[\"Iniciar mensaje\"],\"kNUkGV\":[\"Tipo de búsqueda\"],\"kNfXib\":[\"Nombre del módulo\"],\"kODvZJ\":[\"Nombre\"],\"kOVkPY\":[\"Alternar instancia\"],\"kP-3Hw\":[\"Volver a Inventarios\"],\"kQerRU\":[\"Este campo no debe contener espacios\"],\"kX-GZH\":[\"Volver a ejecutar la tarea\"],\"kXzl6Z\":[\"Variables de fuente\"],\"kYDvK4\":[\"Incluyendo fichero\"],\"kah1PX\":[\"Ver ejemplos de YAML en\"],\"kaux7o\":[\"Sobrescribir grupos locales y servidores desde una fuente remota del inventario.\"],\"kgtWJ0\":[\"Seleccione los grupos de instancias en los que se ejecutará esta plantilla de trabajo.\"],\"kiMHN-\":[\"Auditor del sistema\"],\"kjrq_8\":[\"Más información\"],\"kkDQ8m\":[\"Jueves\"],\"kkc8HD\":[\"Habilite el inicio de sesión simplificado para sus aplicaciones \",[\"brandName\"]],\"kpRn7y\":[\"Eliminar pregunta\"],\"kpnWnY\":[\"Después de cada actualización del proyecto en la que cambie la revisión de SCM, actualice el inventario de la fuente seleccionada antes de ejecutar las tareas del trabajo. Esto está destinado a contenido estático, como el formato de archivo .ini de inventario de Ansible.\"],\"ks-HYT\":[\"Agregar permisos de usuario\"],\"ks71ra\":[\"Excepciones\"],\"kt8V8M\":[\"Seleccione una rama para el flujo de trabajo.\"],\"ktPOqw\":[\"Consulte\"],\"kuIbuV\":[\"Las comprobaciones de estado solo se pueden ejecutar en los nodos de ejecución.\"],\"ku__5b\":[\"Segundo\"],\"kyAi7k\":[\"Instancia\"],\"kyHUFI\":[\"Contraseña Vault | \",[\"credId\"]],\"kyfr2I\":[\"Si se marca, todos los hosts y grupos que estaban presentes anteriormente en la fuente externa pero que ahora se han eliminado se eliminarán del inventario. Los hosts y grupos que no eran gestionados por la fuente de inventario se promoverán al siguiente grupo creado manualmente o, si no hay ningún grupo creado manualmente al que promoverlos, se dejarán en el grupo predeterminado \\\"all\\\" del inventario.\"],\"kz7G1W\":[\"¿Está seguro de que desea eliminar el acceso de \",[\"0\"],\" a \",[\"1\"],\"? Esto afecta a todos los miembros del equipo.\"],\"l4MzBY\":[[\"update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" segundo\"],\"other\":[\"#\",\" segundos\"]}]],\"l4k9lc\":[\"Primer nodo\"],\"l5XUoS\":[\"Credenciales de Webhook\"],\"l75CjT\":[\"SÍ\"],\"l9ZmWD\":[[\"scm_update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" segundo\"],\"other\":[\"#\",\" segundos\"]}]],\"lCF0wC\":[\"Actualizar\"],\"lJFsGr\":[\"Crear nuevo grupo de instancias\"],\"lKxoCA\":[\"Expandir eventos de trabajo\"],\"lM9cbX\":[\"Ten en cuenta que es posible que sigas viendo el grupo en la lista después de disociarlo si el anfitrión también es miembro de los hijos de ese grupo. Esta lista muestra todos los grupos con los que el anfitrión está asociado directa e indirectamente.\"],\"lURfHJ\":[\"Contraer sección\"],\"lWkKSO\":[\"min\"],\"lWmv3p\":[\"Fuentes de inventario\"],\"lYDyXS\":[\"Inventario inteligente\"],\"l_jRvf\":[\"Playbook terminado\"],\"lfoFSg\":[\"Borrar un host\"],\"lgm7y2\":[\"modificar\"],\"lgphOX\":[\"Valor esperado\"],\"lhgU4l\":[\"No se encontró la plantilla.\"],\"lhkaAC\":[\"Prueba\"],\"ljGeYw\":[\"Usuario normal\"],\"lk5WJ7\":[\"host-name-\",[\"0\"]],\"lkgIYt\":[\"Pagerduty\"],\"lo-rJO\":[\"Desplazar hacia abajo\"],\"ltvmAF\":[\"No se encontró la aplicación.\"],\"lu2qW5\":[\"Cualquiera\"],\"lucaxq\":[\"No se puede habilitar el agregador de registros sin proporcionar el host del agregador de registros y el tipo de agregador de registros.\"],\"luxcrf\":[\"Más información para \",[\"label\"]],\"lyjq5X\":[\"Slack\"],\"m-eV2_\":[\"No se encontró el grupo de contenedores.\"],\"m16xKo\":[\"Añadir\"],\"m1tKEz\":[\"Los administradores del sistema tienen acceso ilimitado a todos los recursos.\"],\"m2ErDa\":[\"Fallo\"],\"m3k6kn\":[\"No se ha podido cancelar la sincronización de origen de inventario construido\"],\"m5MOUX\":[\"Volver a Hosts\"],\"mGJIOu\":[\"Esta entrada de inventario construida\\n crea un grupo para ambas categorías y utiliza\\n el límite (patrón de host) para devolver solo los hosts que\\n están en la intersección de esos dos grupos.\"],\"mNBZ1R\":[\"Nota: Este campo asume que el nombre del repositorio remoto es «origin».\"],\"mOFgdC\":[\"Máximo\"],\"mPiYpP\":[\"Tipos de estado de los nodos\"],\"mSv_7k\":[\"Formulación 2:\"],\"mXRKES\":[\"LDAP4\"],\"mXfNlE\":[\"Faltan los valores de la encuesta requeridos en esta programación\"],\"mYGY3B\":[\"Fecha\"],\"mZiQNk\":[\"Escalada de privilegios: si está habilitado, ejecute este playbook como administrador.\"],\"m_tELA\":[\"Cancelar reversión\"],\"ma7cO9\":[\"No se pudo eliminar el grupo \",[\"0\"],\".\"],\"mahPLs\":[\"Contraseña para la elevación de privilegios\"],\"mcGG2z\":[[\"minutes\"],\" min. \",[\"seconds\"],\" seg\"],\"mdNruY\":[\"Token API\"],\"mgJ1oe\":[\"Confirmar eliminación\"],\"mgjN5u\":[\"¿Disociar instancia del grupo de instancias?\"],\"mhg7Av\":[\"Ejecutar comando ad hoc\"],\"mi9ffh\":[\"Detalles del host\"],\"mk4anB\":[\"Predeterminado del navegador\"],\"mlDUq3\":[\"Modificado por (nombre de usuario)\"],\"mnm1rs\":[\"GitHub predeterminado\"],\"moZ0VP\":[\"Estado de sincronización\"],\"momgZ_\":[\"Nombre de la plantilla de trabajo del flujo de trabajo.\"],\"mqAOoN\":[\"Elegir un directorio de playbook\"],\"n-37ya\":[\"Confirmar deshabilitación de la autorización local\"],\"n-LISx\":[\"Se produjo un error al guardar el flujo de trabajo.\"],\"n-ZioH\":[\"Error al recuperar el proyecto actualizado\"],\"n-qmM7\":[\"Seleccione una clave de cuenta de servicio con formato JSON para autocompletar los siguientes campos.\"],\"n12Go4\":[\"No se han podido cargar los grupos relacionados.\"],\"n60kiJ\":[\"* Este campo se recuperará de un sistema de gestión de claves secretas externo con la credencial especificada.\"],\"n6mYYY\":[\"Mensaje de tiempo de espera agotado del flujo de trabajo\"],\"n9Idrk\":[\"(Limitado a los primeros 10)\"],\"n9lz4A\":[\"Tareas fallidas\"],\"nBAIS_\":[\"Mostrar detalles del evento\"],\"nC35Na\":[\"Are you sure you want delete the group below?\"],\"nCU-1E\":[\"Permite la creación de una URL de devolución\\n de llamada de aprovisionamiento. A través de esta URL, un host puede ponerse en contacto con \",[\"brandName\"],\"\\n y solicitar una actualización de la configuración utilizando esta plantilla\\n de trabajo\"],\"nCY9IL\":[\"Servidor omitido\"],\"nDjIzD\":[\"Ver detalles del proyecto\"],\"nGbNEN\":[\"Tiempo en segundos para considerar que un proyecto está actualizado. Durante las ejecuciones de trabajos y las devoluciones de llamada, el sistema de tareas evaluará la marca de tiempo de la última actualización del proyecto. Si es anterior al tiempo de espera de la caché, no se considera actual y se realizará una nueva actualización del proyecto.\"],\"nI54lc\":[\"Eliminar el proyecto antes de la sincronización\"],\"nJPBvA\":[\"Archivo, directorio o script\"],\"nJTOTZ\":[\"El entorno de ejecución que se utilizará para las tareas dentro de esta organización. Se utilizará como reserva cuando no se haya asignado explícitamente un entorno de ejecución en el nivel de proyecto, plantilla de trabajo o flujo de trabajo.\"],\"nLGsp4\":[\"Habilite una encuesta para esta plantilla de trabajo del flujo de trabajo.\"],\"nMiE53\":[\"Variable habilitada\"],\"nOhz3x\":[\"Finalización de la sesión\"],\"nPH1Cr\":[\"Estos entornos de ejecución podrían ser utilizados por otros recursos que dependen de ellos. ¿Está seguro de que desea eliminarlos de todos modos?\"],\"nQOwDS\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"dayOfWeek\"]],\"4\":[\"The fourth \",[\"dayOfWeek\"]],\"5\":[\"The fifth \",[\"dayOfWeek\"]],\"one\":[\"The first \",[\"dayOfWeek\"]],\"two\":[\"The second \",[\"dayOfWeek\"]]}]],\"nRXCOn\":[\"Recuento de hosts fallidos\"],\"nSTT11\":[\"Volver a ejecutar desde:\"],\"nTENWI\":[\"Volver a la gestión de suscripciones.\"],\"nU16mp\":[\"Tiempo de espera de la caché\"],\"nZPX7r\":[\"Aviso: modificaciones no guardadas\"],\"nZW6P0\":[\"Huso horario local\"],\"nZYB4j\":[\"No hay estado disponible\"],\"nZYxse\":[\"¿Disociar host del grupo?\"],\"n_qDNz\":[\"Switch to dark mode\"],\"naCW6Z\":[\"Abril\"],\"ncxIQL\":[\"No se pudo disociar una o más instancias.\"],\"neiOWk\":[\"Ver documentación del inventario construido aquí\"],\"nfnm9D\":[\"Nombre de la organización\"],\"ng00aZ\":[\"Filtro de host\"],\"nhxAdQ\":[\"Palabra clave\"],\"nlsWzF\":[\"Agregue preguntas de la encuesta.\"],\"nnY7VU\":[\"Subdominio Pagerduty\"],\"noGZlf\":[\"Tiempo de espera de la caché (segundos)\"],\"npGo-z\":[\"Iniciar sesión con \",[\"label\"]],\"nuh_Wq\":[\"URL de Webhook\"],\"nvUq8j\":[\"1 (Nivel de detalle)\"],\"nzozOC\":[\"Eliminar usuario\"],\"nzr1qE\":[\"Se rechazó la carga de archivos. Seleccione un único archivo .json.\"],\"o-JPE2\":[\"No se encontraron preguntas de la encuesta.\"],\"o0RwAq\":[\"Iniciar sesión con GitHub Enterprise\"],\"o0x5-R\":[\"Seleccionar un valor para este campo\"],\"o4NRE0\":[\"Entrada de valores de búsqueda avanzada\"],\"o5J6dR\":[\"Especificar las condiciones en las que debe ejecutarse este nodo\"],\"o9R2tO\":[\"Conexión SSL\"],\"oABS9f\":[\"Proporcione un valor para este campo o seleccione la opción Preguntar al ejecutar.\"],\"oB5EwG\":[\"Sistema externo de gestión de claves secretas\"],\"oBmCtD\":[\"Are you sure you want delete the groups below?\"],\"oC5JSb\":[\"No se han podido obtener los datos actualizados del proyecto.\"],\"oCKCYp\":[\"Notificación enviada correctamente\"],\"oEijQ7\":[\"Versión de startswith que no distingue mayúsculas de minúsculas.\"],\"oFtmtl\":[\"Select the inventory containing the hosts\\n you want this job to manage.\"],\"oGKq12\":[\"Construir 2 grupos, límite de intersección\"],\"oH1Qle\":[\"URL de webhook para esta plantilla de trabajo del flujo de trabajo.\"],\"oHOOxn\":[\"De forma predeterminada, recopilamos y transmitimos datos analíticos sobre el uso del servicio a Red Hat. Hay dos categorías de datos recopilados por el servicio. Para obtener más información, consulte <0>esta página de documentación de la Torre. Desmarque las siguientes casillas para desactivar esta función.\"],\"oII7vS\":[\"Configuración de GitHub\"],\"oKMFX4\":[\"Nunca actualizado\"],\"oKbBFU\":[\"# source with sync failures.\"],\"oNOjE7\":[\"Fecha/hora de finalización\"],\"oNZQUQ\":[\"Credencial para autenticarse con Kubernetes u OpenShift\"],\"oQqtoP\":[\"Volver a las tareas de gestión\"],\"oRt7Uv\":[[\"interval\"],\" years\"],\"oTDA5P\":[[\"0\",\"plural\",{\"one\":[\"Esta instancia está siendo utilizada actualmente por otros recursos. ¿Está seguro de que desea eliminarla?\"],\"other\":[\"Desaprovisionar estas instancias podría afectar a otros recursos que dependen de ellas. ¿Está seguro de que desea eliminarlas de todos modos?\"]}]],\"oWvSIB\":[\"Dirección de correo del remitente\"],\"oX_mCH\":[\"Error en la sincronización del proyecto\"],\"oZvDsd\":[[\"interval\"],\" hours\"],\"ocUvR-\":[\"Falso\"],\"ofO19Q\":[\"Iniciar sesión con equipos de GitHub Enterprise\"],\"ofcQVG\":[\"Modal de cambios no guardados\"],\"olEUh2\":[\"Correctamente\"],\"opS--k\":[\"Volver a los grupos de instancias\"],\"orh4t6\":[\"Servidor OK\"],\"osCeRO\":[\"Ver la configuración de Azure AD\"],\"ot7qsv\":[\"Borrar todos los filtros\"],\"ovBPCi\":[\"Predeterminado\"],\"owBGkJ\":[\"El final no coincide con un valor esperado (\",[\"0\"],\")\"],\"owQ8JH\":[\"Agregar grupo de instancias\"],\"ozbhWy\":[\"Error de eliminación\"],\"p-nfFx\":[\"Arrastre un archivo aquí o navegue para cargarlo\"],\"p-ngUo\":[\"Dejar de seguir a\"],\"p-pp9U\":[\"cadena\"],\"p2LEhJ\":[\"Token de acceso personal\"],\"p2_GCq\":[\"Confirmar la contraseña\"],\"p3PM8G\":[\"Volver a ejecutar desde el primer nodo\"],\"p6-JME\":[\"El primero obtiene todas las referencias. El segundo obtiene la pull request de Github número 62; en este ejemplo, la rama debe ser «pull/62/head».\"],\"pAtylB\":[\"No encontrado\"],\"pCCQER\":[\"Disponible globalmente\"],\"pH8j40\":[\"Anfitriones activos eliminados anteriormente\"],\"pHyx6k\":[\"Selección múltiple\"],\"pKQcta\":[\"Personalizar especificaciones del pod\"],\"pOJNDA\":[\"comando\"],\"pOd3wA\":[\"Presione 'Intro' para agregar más opciones de respuesta. Una opción de respuesta por línea.\"],\"pOhwkU\":[\"Esta acción disociará el siguiente rol de \",[\"0\"],\":\"],\"pRZ6hs\":[\"Ejecutar el\"],\"pSypIG\":[\"Mostrar descripción\"],\"pYENvg\":[\"Tipo de autorización\"],\"pZJ0-s\":[\"Número máximo de horquillas para permitir que todos los trabajos se ejecuten simultáneamente en este grupo. Cero significa que no se aplicará ningún límite.\"],\"pa1SrG\":[[\"interval\"],\" days\"],\"peCAyQ\":[\"Ver la configuración de RADIUS\"],\"pfw0Wr\":[\"TODOS\"],\"pguZh2\":[\"Cree vars a partir de expresiones jinja2. Esto puede ser útil\\n si los grupos construidos que define no contienen los hosts\\n esperados. Esto se puede usar para añadir hostvars a partir de expresiones para\\n que sepa cuáles son los valores resultantes de esas expresiones.\"],\"phTgAm\":[\"Es difícil dar una especificación para\\n el inventario de los hechos de Ansible, porque para rellenar\\n los hechos del sistema es necesario ejecutar un playbook contra\\n el inventario que tiene `gather_facts: true`. Los\\n hechos reales diferirán de un sistema a otro.\"],\"pkY73W\":[\"Rocket.Chat\"],\"pn7Xy3\":[\"Ver Django\"],\"poMgBa\":[\"Preguntar por la rama de SCM al ejecutar.\"],\"ppcQy0\":[\"Establecer zoom al 100% y centrar el gráfico\"],\"prydaE\":[\"Errores de sincronización del proyecto\"],\"pw2VDK\":[\"El último \",[\"weekday\"],\" de \",[\"month\"]],\"q-Uk_P\":[\"No se pudo eliminar uno o más tipos de credenciales.\"],\"q-hNag\":[\"Colección\"],\"q45OlW\":[\"Regiones\"],\"q5tQBE\":[\"Establecer el tipo deshabilitado para las búsquedas difusas de campos de búsqueda relacionados\"],\"q67y3T\":[\"No se encontró ninguna plantilla de notificación.\"],\"qAlZNb\":[\"No puede actuar en las siguientes aprobaciones de flujo de trabajo: \",[\"itemsUnableToDeny\"]],\"qCUUnr\":[\"No más servidores\"],\"qChjCy\":[\"Primera ejecución\"],\"qD-pvR\":[\"ID del panel de control (opcional)\"],\"qEMgTP\":[\"Error en la sincronización de fuentes de inventario\"],\"qJK-de\":[\"Iniciar sesión con SAML \"],\"qS0GhO\":[\"Falta el entorno de ejecución\"],\"qSSVmd\":[\"Canales destinatarios o usuarios\"],\"qSSg1L\":[\"Enlace a un nodo disponible\"],\"qWD0iN\":[\"Estos datos se utilizan para mejorar\\n futuras versiones del software y para proporcionar\\n Automation Analytics.\"],\"qXRYa2\":[\"Seguimiento del último commit de los submódulos en la rama\"],\"qYkrfg\":[\"Detalles de callback de aprovisionamiento\"],\"qZ2MTC\":[\"Estos son los módulos que \",[\"brandName\"],\" admite para ejecutar comandos.\"],\"qgjtIt\":[\"Convergencia\"],\"qlhQw_\":[\"Sincronización de inventario\"],\"qliDbL\":[\"Archivo remoto\"],\"qlwLcm\":[\"Solución de problemas\"],\"qmBmJJ\":[\"Esta es la única vez que se mostrará la clave secreta del cliente.\"],\"qmYgP7\":[\"aprobado\"],\"qqeAJM\":[\"Nunca\"],\"qtFFSS\":[\"Revisión de actualización durante el lanzamiento\"],\"qtaMu8\":[\"Inventario (Nombre)\"],\"qvCD_i\":[\"Los ejemplos incluyen:\"],\"qwaCoN\":[\"Actualización de fuente de control\"],\"qxZ5RX\":[\"hosts\"],\"qznBkw\":[\"Modal de enlace del flujo de trabajo\"],\"r6Aglb\":[\"Ingrese inyectores a través de la sintaxis JSON o YAML. Consulte la documentación de Ansible Tower para ver la sintaxis de ejemplo.\"],\"r6y-jM\":[\"Advertencia\"],\"r6zgGo\":[\"Diciembre\"],\"r8ojWq\":[\"Confirmar la reinicialización\"],\"r8oq0Y\":[\"Últimas 24 horas\"],\"rBdPPP\":[\"No se pudo eliminar \",[\"name\"],\".\"],\"rE95l8\":[\"Tipo de cliente\"],\"rG3WVm\":[\"Seleccionar\"],\"rHK_Sg\":[\"El entorno virtual personalizado \",[\"virtualEnvironment\"],\" debe ser sustituido por un entorno de ejecución. Para más información sobre la migración a entornos de ejecución, consulte la <0>documentación.\"],\"rK7UBZ\":[\"Volver a ejecutar todos los hosts\"],\"rKS_55\":[\"Almacenamiento de hechos: si está habilitado, esto almacenará los hechos recopilados para que puedan verse a nivel de host. Los hechos se conservan y se inyectan en la caché de hechos en tiempo de ejecución.\"],\"rKTFNB\":[\"Eliminar tipo de credencial\"],\"rLznGJ\":[\"Una plantilla Jinja2 renderizada con los artefactos set_stats anteriores cuando se crea la aprobación. Use esto para mostrar al aprobador el contexto relevante de los pasos de trabajo anteriores. Las variables disponibles provienen de los datos set_stats de los nodos primarios.\"],\"rMrKOB\":[\"No se pudo sincronizar el proyecto.\"],\"rOZRCa\":[\"Enlace del flujo de trabajo\"],\"rSYkIY\":[\"Este campo debe ser un número\"],\"rXhu41\":[\"2 (Depurar)\"],\"rYHzDr\":[\"Elementos por página\"],\"r_IfWZ\":[\"Editar inventario\"],\"rdUucN\":[\"Vista previa\"],\"rfYaVc\":[\"Nombre de la variable de respuesta\"],\"rfpIXM\":[\"Preguntar por los grupos de instancias al ejecutar.\"],\"rfx2oA\":[\"Cuerpo del mensaje de flujo de trabajo pendiente\"],\"riBcU5\":[\"Alias en IRC\"],\"rjVfy3\":[\"Documentación del flujo de trabajo\"],\"rjyWPb\":[\"Enero\"],\"rmb2GE\":[\"Denegado por \",[\"0\"],\" - \",[\"1\"]],\"rmt9Tu\":[\"Total de anfitriones\"],\"ruhGSG\":[\"Cancelar sincronización de la fuente del inventario\"],\"rvia3m\":[\"Autenticación diversa\"],\"rw1pRJ\":[\"Descargar el paquete\"],\"rwWNpy\":[\"Inventarios\"],\"s-MGs7\":[\"Recursos\"],\"s2xYUy\":[\"Sobrescribir las variables locales desde una fuente remota del inventario.\"],\"s3KtlK\":[\"Este horario no tiene ocurrencias debido a las excepciones seleccionadas.\"],\"s4Qnj2\":[\"Entorno de ejecución\"],\"s4fge-\":[\"Mes pasado\"],\"s5aIEB\":[\"Eliminar plantilla de trabajo del flujo de trabajo\"],\"s5mACA\":[\"Detalles de la instancia\"],\"s5r5nt\":[[\"0\",\"plural\",{\"one\":[\"Este grupo de instancias está siendo utilizado actualmente por otros recursos. ¿Está seguro de que desea eliminarlo?\"],\"other\":[\"Eliminar estos grupos de instancias podría afectar a otros recursos que dependen de ellos. ¿Está seguro de que desea eliminarlos de todos modos?\"]}]],\"s6F6Ks\":[\"No se encontró una salida para este trabajo.\"],\"s70SJY\":[\"Configuración del registro\"],\"s8hQty\":[\"Ver todas las tareas.\"],\"s9EKbs\":[\"Deshabilitar verificación SSL\"],\"sAz1tZ\":[\"confirmar disociación\"],\"sBJ5MF\":[\"Fuentes\"],\"sCEb_0\":[\"Ver todos los hosts de inventario.\"],\"sGodAp\":[\"Anulación de las especificaciones del pod\"],\"sMDRa_\":[\"Volver a Grupos\"],\"sOMf4x\":[\"Plantillas recientes\"],\"sSFxX6\":[\"Revisión de la actualización en el lanzamiento del trabajo\"],\"sTkKoT\":[\"Selecciona una fila para rechazar\"],\"sUyFTB\":[\"Redirigir al panel de control\"],\"sV3kNp\":[\"Este grupo de instancias está siendo utilizado por otros recursos. ¿Está seguro de que desea eliminarlo?\"],\"sVh4-e\":[\"Eliminar este enlace\"],\"sW5OjU\":[\"requerido\"],\"sZif4m\":[\"¿Disociar grupos relacionados?\"],\"s_XkZs\":[\"INICIAR\"],\"s_r4Az\":[\"Este campo debe ser un número entero\"],\"sesAIn\":[\"Use mensajes personalizados para cambiar el contenido de las\\n notificaciones enviadas cuando un trabajo se inicia, tiene éxito o falla. Use\\n llaves para acceder a la información sobre el trabajo:\"],\"sgRZMG\":[\"Nodo híbrido\"],\"siJgSI\":[\"No se encontró el usuario.\"],\"sjMCOP\":[\"Último modificado\"],\"sjVfrA\":[\"Comando\"],\"smFRaX\":[\"Ya se ha lanzado un trabajo\"],\"sqMsvU\":[[\"0\",\"plural\",{\"one\":[\"#\",\" fuente con fallos de sincronización.\"],\"other\":[\"#\",\" fuentes con fallos de sincronización.\"]}]],\"sr4LMa\":[\"Fuente de inventario\"],\"svR3aM\":[\"OpenStack\"],\"svy2x9\":[\"Devuelve resultados que satisfacen este filtro o cualquier otro filtro.\"],\"sxkWRg\":[\"Avanzado\"],\"syupn5\":[\"Imagen de marca\"],\"syyeb9\":[\"Primero\"],\"t-R8-P\":[\"Ejecución\"],\"t2q1xO\":[\"Modificar programación\"],\"t4v_7X\":[\"Seleccionar un tipo de nodo\"],\"t9QlBd\":[\"Noviembre\"],\"tRm9qR\":[\"Las etiquetas son útiles cuando tiene un playbook grande y desea ejecutar una parte específica de un play o una tarea. Utilice comas para separar varias etiquetas. Consulte la documentación para obtener detalles sobre el uso de las etiquetas.\"],\"tVEot_\":[[\"0\",\"plural\",{\"one\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"other\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"]}]],\"tXkhj_\":[\"Iniciar\"],\"t_YqKh\":[\"Eliminar\"],\"tbSVlt\":[\"Eliminar el acceso del usuario\"],\"tfDRzk\":[\"Guardar\"],\"tfh2eq\":[\"Haga clic para crear un nuevo enlace a este nodo.\"],\"tgPwON\":[\"Operador\"],\"tgSBSE\":[\"Quitar enlace\"],\"tgWuMB\":[\"Modificado\"],\"thJljW\":[\"ADVERTENCIA: \"],\"toJdZA\":[\"Reorder\"],\"tpCmSt\":[\"policy rules.\"],\"tqlcfo\":[\"Desaprovisionamiento\"],\"trjiIV\":[\"Error al asociar a un compañero.\"],\"tst44n\":[\"Eventos\"],\"twE5a9\":[\"No se pudo eliminar la credencial.\"],\"txNbrI\":[\"Rama de fuente de control\"],\"ty2DZX\":[\"Esta organización está siendo utilizada por otros recursos. ¿Está seguro de que desea eliminarla?\"],\"tzgOKK\":[\"Ya se ha actuado al respecto\"],\"u-sh8m\":[\"/ (raíz del proyecto)\"],\"u4ex5r\":[\"Julio\"],\"u4n8Fm\":[\"No se han podido eliminar los compañeros.\"],\"u4x6Jy\":[\"Volver a Tareas\"],\"u5AJST\":[\"La cantidad de procesos paralelos o simultáneos para utilizar durante la ejecución del playbook. Si no ingresa un valor, se utilizará el valor predeterminado del archivo de configuración de Ansible. Para obtener más información,\"],\"u7f6WK\":[\"Ver todas las aprobaciones del flujo de trabajo.\"],\"u84wS1\":[\"Error en la cancelación de tarea\"],\"uAQUqI\":[\"Estado\"],\"uAhZbx\":[\"Fuentes de inventario con fallas\"],\"uCjD1h\":[\"Su sesión ha expirado. Inicie sesión para continuar.\"],\"uImfEm\":[\"Mensaje de flujo de trabajo pendiente\"],\"uJz8NJ\":[\"La búsqueda se desactiva durante la ejecución de la tarea\"],\"uPRp5U\":[\"Cancelar búsqueda\"],\"uTDtiS\":[\"Quinto\"],\"uUehLT\":[\"Esperando\"],\"uVu1Yt\":[\"Establecer selección del tipo\"],\"uYtvvN\":[\"Seleccione un proyecto antes de modificar el entorno de ejecución.\"],\"ucSTeu\":[\"Creado por (nombre de usuario)\"],\"ucgZ0o\":[\"Organización\"],\"ugZpot\":[\"Prueba de credenciales externas\"],\"ulRNXw\":[\"Dragging cancelled. List is unchanged.\"],\"upC07l\":[\"Survey Disabled\"],\"uuPCEU\":[\"If you want the Inventory Source to update on launch , click on Update on Launch, and also go to \"],\"uyJsf6\":[\"Acerca de\"],\"uzTiFQ\":[\"Volver a Programaciones\"],\"v-CZEv\":[\"Preguntar al ejecutar\"],\"v-EbDj\":[\"Configuración de solución de problemas\"],\"v-M-LP\":[\"Ejecutar plantilla\"],\"v0urVb\":[\"Si no tiene una suscripción, puede visitar\\n Red Hat para obtener una suscripción de prueba.\"],\"v1kQyJ\":[\"Webhooks\"],\"v2dMHj\":[\"Relanzar utilizando los parámetros de host\"],\"v2gmVS\":[\"Esta acción eliminará suavemente lo siguiente:\"],\"v45yUL\":[\"disociar\"],\"v7vAuj\":[\"Tareas totales\"],\"vCS_TJ\":[\"No se pudo eliminar la fuente del inventario \",[\"name\"],\".\"],\"vEr6TL\":[\"Estos argumentos se utilizan con el módulo especificado. Puede encontrar información sobre \",[\"0\"],\" haciendo clic en \"],\"vF82C6\":[\"Ejecutar cuando el nodo primario se encuentre en estado correcto.\"],\"vFKI2e\":[\"Reglas de programación\"],\"vFVhzc\":[\"SOCIAL\"],\"vGVmd5\":[\"Este campo se ignora a menos que se establezca una variable habilitada. Si la variable habilitada coincide con este valor, el host se habilitará en la importación.\"],\"vGjmyl\":[\"Eliminado\"],\"vHAaZi\":[\"Saltar cada\"],\"vIb3RK\":[\"Crear nuevo planificador\"],\"vKRQJB\":[\"Campo para pasar una especificación personalizada de Kubernetes u OpenShift Pod.\"],\"vLyv1R\":[\"Ocultar\"],\"vPrMqH\":[\"Revisión n°\"],\"vQHUI6\":[\"Si está marcada, todas las variables para grupos secundarios y hosts se eliminarán y reemplazarán por las que se encuentran en la fuente externa.\"],\"vTL8gi\":[\"Hora de terminación\"],\"vUOn9d\":[\"Volver\"],\"vYFWsi\":[\"Seleccionar equipos\"],\"vYuE8q\":[\"Tiempo transcurrido de la ejecución de la tarea \"],\"vZbIkJ\":[\"GitLab\"],\"vcH-SH\":[\"Centro de datos de Bitbucket\"],\"ve_jRy\":[\"Con condición\"],\"vgwVkd\":[\"UTC\"],\"vlHGDw\":[\"Pase variables de línea de comandos adicionales al playbook. Este es el parámetro de línea de comandos -e o --extra-vars para ansible-playbook. Proporcione pares clave/valor utilizando YAML o JSON. Consulte la documentación para ver un ejemplo de sintaxis.\"],\"voRH7M\":[\"Ejemplos:\"],\"vq1XXv\":[\"Crear un nuevo inventario inteligente con el filtro aplicado\"],\"vq2WxD\":[\"Mar\"],\"vq9gg6\":[\"No puede actuar en las siguientes aprobaciones de flujo de trabajo: \",[\"itemsUnableToApprove\"]],\"vqAmQC\":[\"Módulo\"],\"vvY8pz\":[\"Preguntar por las etiquetas omitidas al ejecutar.\"],\"vye-ip\":[\"Preguntar por el tiempo de espera al ejecutar.\"],\"vzsN_5\":[[\"interval\"],\" day\"],\"w07pgp\":[\"Preguntar por la verbosidad al ejecutar.\"],\"w0kTk8\":[\"Volver a ejecutar desde el nodo fallido\"],\"w14eW4\":[\"Ver todos los tokens.\"],\"w1RiT6\":[[\"0\",\"plural\",{\"one\":[\"Esta fuente de inventario está siendo utilizada actualmente por otros recursos que dependen de ella. ¿Está seguro de que desea eliminarla?\"],\"other\":[\"Eliminar estas fuentes de inventario podría afectar a otros recursos que dependen de ellas. ¿Está seguro de que desea eliminarlas de todos modos?\"]}]],\"w2VTLB\":[\"Menor que la comparación.\"],\"w3EE8S\":[\"Hosts automatizados\"],\"w4j7js\":[\"Ver detalles del equipo\"],\"w6zx64\":[\"Usar predeterminado del navegador\"],\"wCnaTT\":[\"Reemplazar el campo con un valor nuevo\"],\"wF-BAU\":[\"Agregar inventario\"],\"wFnb77\":[\"ID de inventario\"],\"wKEfMu\":[\"Procesamiento de eventos completo.\"],\"wO29qX\":[\"No se encontró la organización.\"],\"wW08QA\":[\"Distinto de\"],\"wX6sAX\":[\"Últimos dos años\"],\"wXAVe-\":[\"Argumentos del módulo\"],\"wXB7k5\":[\"Especifique un color de notificación. Los colores aceptables son el código\\n de color hexadecimal (ejemplo: #3af o #789abc).\"],\"waFx9W\":[\"Gestionado\"],\"wdxz7K\":[\"Fuente\"],\"wgNoIs\":[\"Seleccionar todo\"],\"wkgHlv\":[\"Agregar un nuevo nodo\"],\"wlQNTg\":[\"Miembros\"],\"wnizTi\":[\"Seleccionar una suscripción\"],\"wpT1VN\":[\"Condición\"],\"wpt6vB\":[\"LDAP2\"],\"wqXiR2\":[\"Transfiera cambios adicionales de línea de comandos. Hay dos parámetros de línea de comandos de ansible: \"],\"wsggVq\":[\"Si no se marca, los anfitriones secundarios locales y los grupos que no se encuentren en la fuente externa no se verán afectados por el proceso de actualización del inventario.\"],\"x-a4Mr\":[\"Credencial de Webhook\"],\"x02hbg\":[\"Devoluciones de llamada de aprovisionamiento: habilita la creación de una URL de devolución de llamada de aprovisionamiento. Mediante la URL, un host puede contactar con Ansible AWX y solicitar una actualización de configuración utilizando esta plantilla de trabajo.\"],\"x4Xp3c\":[\"actualizado\"],\"x5DnMs\":[\"Última modificación\"],\"x6_dAC\":[\"Inventario federado\"],\"x6oT_o\":[\"Hosts disponibles\"],\"x7PDL5\":[\"Registros\"],\"x8uKc7\":[\"Estado de instancia\"],\"x9WS62\":[\"Cancelar \",[\"0\"]],\"xAYSEs\":[\"Hora de inicio\"],\"xAqth4\":[\"Ver la configuración de Google OAuth 2.0\"],\"xC9EVu\":[\"Nodo cancelado\"],\"xCJdfg\":[\"Borrar\"],\"xDr_ct\":[\"Fin\"],\"xESTou\":[\"No se pudo eliminar la tarea.\"],\"xF5tnT\":[\"Contraseña Vault\"],\"xGQZwx\":[\"Agregar grupo de contenedores\"],\"xGVfLh\":[\"Continuar\"],\"xHZS6u\":[\"Tareas exitosas\"],\"xHokxV\":[[\"0\",\"plural\",{\"one\":[\"The selected job cannot be deleted due to insufficient permission or a running job status\"],\"other\":[\"The selected jobs cannot be deleted due to insufficient permissions or a running job status\"]}]],\"xHt036\":[\"Token de acceso personal\"],\"xKQRBr\":[\"Longitud máxima\"],\"xM01Pk\":[\"Respuesta predeterminada\"],\"xONDaO\":[\"Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?\"],\"xOl1yT\":[\"Búsqueda exacta en el campo de nombre.\"],\"xPO5w7\":[\"Iniciar sesión con GitHub\"],\"xPpkbX\":[\"Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway\"],\"xPxMOJ\":[\"Formato de hora no válido\"],\"xQioPk\":[\"Condiciones previas para ejecutar este nodo cuando hay varios elementos primarios. Consulte\"],\"xSytdh\":[\"FINALIZADO:\"],\"xUhTCP\":[\"Elegir una fuente\"],\"xVhQZV\":[\"Vie\"],\"xY9DEq\":[\"El patrón utilizado para dirigir los hosts en el inventario. Si se deja el campo en blanco, todos y * se dirigirán a todos los hosts del inventario. Para encontrar más información sobre los patrones de hosts de Ansible,\"],\"xY9s5E\":[\"Tiempo de espera\"],\"x_Ej3K\":[\"Elija un tipo o formato de respuesta que desee como indicación para el usuario.\\n Consulte la documentación de Ascender para obtener información adicional sobre cada opción.\"],\"x_ugm_\":[\"Grupos totales\"],\"xa7N9Z\":[\"Editar la URL de redirección de inicio de sesión\"],\"xcaG5l\":[\"Editar el flujo de trabajo\"],\"xd2LI3\":[\"Expira el \",[\"0\"]],\"xdA_-p\":[\"Herramientas\"],\"xe5RvT\":[\"Pestaña YAML\"],\"xefC7k\":[\"Puerto del servidor IRC\"],\"xeiujy\":[\"Texto\"],\"xg771-\":[\"LDAP1\"],\"xhj1Rt\":[\"No se pudo encontrar la página solicitada.\"],\"xi4nE2\":[\"Mensaje de error\"],\"xnSIXG\":[\"No se pudo eliminar uno o más hosts.\"],\"xoCdYY\":[\"Comprobar si el valor del campo dado está presente en la lista proporcionada; se espera una lista de elementos separada por comas.\"],\"xoXoBo\":[\"Eliminar el error\"],\"xrG8k4\":[\"Google Compute Engine\"],\"xtRU96\":[\"Organización de GitHub Enterprise\"],\"xuYTJb\":[\"No se pudo eliminar la plantilla de trabajo.\"],\"xw06rt\":[\"La configuración coincide con los valores predeterminados de fábrica.\"],\"xxTtJH\":[\"Expresión regular en la que solo se importarán los nombres de host que coincidan. El filtro se aplica como un paso posterior al procesamiento después de que se aplique cualquier filtro de complemento de inventario.\"],\"y11WBZ\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"Cancelar el trabajo seleccionado\"],\"other\":[\"Cancelar los trabajos seleccionados\"]}]],\"y8ibKI\":[\"Eliminar instancias\"],\"yCCaoF\":[\"No se pudo actualizar la encuesta.\"],\"yDeNnS\":[\"Crear nuevo inventario construido\"],\"yDifzB\":[\"Confirmar selección\"],\"yGS9cI\":[\"Saludable\"],\"yGUKlf\":[\"Tareas de gestión\"],\"yGfW7Y\":[\"Cambie PROJECTS_ROOT al implementar \",[\"brandName\"],\" para cambiar esta ubicación.\"],\"yMIahh\":[\"¡Bienvenido a Red Hat Ansible Automation Platform!\\n Complete los pasos a continuación para activar su suscripción.\"],\"yMYuDg\":[\"Versión del controlador de automatización\"],\"yMfU4O\":[\"Correo electrónico del remitente\"],\"yNcGa2\":[\"Expiración del token de acceso\"],\"yOXgbH\":[\"Nota: Cuando utilice el protocolo SSH para GitHub o Bitbucket, introduzca únicamente una clave SSH, no introduzca un nombre de usuario (que no sea git). Además, GitHub y Bitbucket no admiten la autenticación por contraseña cuando se utiliza SSH. El protocolo GIT de solo lectura (git://) no utiliza información de nombre de usuario ni de contraseña.\"],\"yQE2r9\":[\"Cargando\"],\"yRiHPB\":[\"Ejecute un trabajo para rellenar esta lista.\"],\"yRkqG9\":[\"Límite\"],\"yRsSBw\":[\"Aprobaciones\"],\"yUlffE\":[\"Relanzar\"],\"yVgnJA\":[\"El número máximo de hosts que se permite gestionar a esta organización.\\n El valor predeterminado es 0, lo que significa sin límite. Consulte la documentación\\n de Ansible para obtener más detalles.\"],\"yX3qAQ\":[\"Nodos de plantilla de trabajo para flujo de trabajo\"],\"yaG1CX\":[\"LDAP\"],\"yaX9sM\":[\"Plantilla de flujo de trabajo\"],\"yb_fjw\":[\"Aprobación\"],\"ydoZpB\":[\"No se encontró la tarea.\"],\"ydw9CW\":[\"Hosts fallidos\"],\"yfG3F2\":[\"Teclas directas\"],\"yjwMJ8\":[\"¿Cuántas veces se ha automatizado el anfitrión?\"],\"yjyGja\":[\"Expandir la entrada\"],\"ylXj1N\":[\"Seleccionado\"],\"yq6OqI\":[\"Esta es la única vez que se mostrará el valor del token y el valor del token de actualización asociado.\"],\"yqiwAW\":[\"Cancelar el flujo de trabajo\"],\"yrUyDQ\":[\"Establece la etapa actual del ciclo de vida de esta instancia. Por defecto es \\\"instalado\\\".\"],\"yrwl2P\":[\"Compatible\"],\"yuXsFE\":[\"No se pudo eliminar una o más aprobaciones del flujo de trabajo.\"],\"yuvDX_\":[[\"intervalValue\",\"plural\",{\"one\":[\"month\"],\"other\":[\"months\"]}]],\"ywSBEn\":[\"Asociar error del rol\"],\"yxDqcD\":[\"Expiración del código de autorización\"],\"yy1cWw\":[\"Personalizar mensajes.\"],\"yz7wBu\":[\"Cerrar\"],\"yzQhLU\":[\"Mínimo de instancias de políticas\"],\"yzdDia\":[\"Eliminar encuesta\"],\"z-BNGk\":[\"Eliminar token de usuario\"],\"z0DcIS\":[\"cifrado\"],\"z3XA1I\":[\"Reintentar servidor\"],\"z409y8\":[\"Servicio de Webhook\"],\"z7NLxJ\":[\"Si solo desea eliminar el acceso de este usuario específico, elimínelo del equipo.\"],\"z8mwbl\":[\"Porcentaje mínimo de todas las instancias que se asignarán automáticamente a este grupo cuando se conecten nuevas instancias.\"],\"zBO1TV\":[[\"numOccurrences\",\"plural\",{\"one\":[\"Después de \",\"#\",\" ocurrencia\"],\"other\":[\"Después de \",\"#\",\" ocurrencias\"]}]],\"zHcXAG\":[\"Deje este campo en blanco para que el entorno de ejecución esté disponible globalmente.\"],\"zICM7E\":[\"Descartar los cambios locales antes de la sincronización\"],\"zJY4Uj\":[\"Playbook\"],\"zKJMiH\":[\"Directorio de playbook\"],\"zK_63z\":[\"Nombre de usuario o contraseña no válidos. Intente de nuevo.\"],\"zLsDix\":[\"usuario ldap\"],\"zMKkOk\":[\"Volver a Organizaciones\"],\"zN0nhk\":[\"Proporcione sus credenciales de Red Hat o Red Hat Satellite para habilitar Automation Analytics.\"],\"zQRgi-\":[\"Iniciar alternancia de notificaciones\"],\"zTediT\":[\"Este campo debe ser un número y tener un valor entre \",[\"min\"],\" y \",[\"max\"]],\"zUIPys\":[\"Añade anfitriones al grupo según las condiciones de Jinja2.\"],\"z_PZxu\":[\"No se pudo eliminar la aprobación del flujo de trabajo.\"],\"zbLCH1\":[\"Tipo de inventario\"],\"zcQj5X\":[\"Primero, seleccione una clave\"],\"zdl7YZ\":[\"Seleccionar la ruta de origen\"],\"zeEQd_\":[\"Junio\"],\"zf7FzC\":[\"Credencial para autenticarse con Kubernetes u OpenShift. Debe ser del tipo \\\"Kubernetes/OpenShift API Bearer Token\\\". Si se deja en blanco, se usará la cuenta de servicio del Pod subyacente.\"],\"zfZydd\":[\"Modal de vista previa de la encuesta\"],\"zfsBaJ\":[\"Obtenga más información sobre Automation Analytics\"],\"zgInnV\":[\"Modal de vista del nodo de flujo de trabajo\"],\"zga9sT\":[\"OK\"],\"zhPLvU\":[\"No se pudo asociar.\"],\"zhrjek\":[\"Grupos\"],\"zi_YNm\":[\"No se ha podido cancelar \",[\"0\"]],\"zmu4-P\":[\"Cuenta SID\"],\"znG7ed\":[\"Seleccionar un playbook\"],\"znTz5r\":[\"Programación no encontrada.\"],\"znuW_M\":[\"En caso afirmativo, haga que las entradas no válidas sean un error fatal; de lo contrario, omita y\\n continúe.\"],\"zq0gmb\":[\"Seleccionar periodo\"],\"ztOzCj\":[\"Actualizar al ejecutar\"],\"ztw2L3\":[\"Debe haber un valor en al menos una entrada\"],\"zvfXp0\":[\"Aprobaciones para alternar las notificaciones\"],\"zx4BuL\":[\"Semana\"],\"zzDlyQ\":[\"Correcto\"],\"{count, plural, one {# fork} other {# forks}}\":[[\"count\",\"plural\",{\"one\":[\"#\",\" fork\"],\"other\":[\"#\",\" forks\"]}]]}")}; \ No newline at end of file diff --git a/awx/ui/src/locales/es/messages.po b/awx/ui/src/locales/es/messages.po index 88a83eb3..2db67add 100644 --- a/awx/ui/src/locales/es/messages.po +++ b/awx/ui/src/locales/es/messages.po @@ -57,7 +57,7 @@ msgid "TACACS+" msgstr "TACACS+" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:637 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:232 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:251 msgid "Workflow timed out message body" msgstr "Cuerpo del mensaje de tiempo de espera agotado del flujo de trabajo" @@ -115,6 +115,10 @@ msgstr "Seleccione el entorno de ejecución en el que desea que se ejecute este msgid "Add a new node between these two nodes" msgstr "Agregar un nuevo nodo entre estos dos nodos" +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:170 +msgid "Changed message" +msgstr "Mensaje de cambio" + #: screens/Job/JobOutput/JobOutputSearch.js:120 msgid "Host Polling" msgstr "Sondeo al servidor" @@ -148,7 +152,7 @@ msgid "Maximum number of forks to allow across all jobs running concurrently on msgstr "Número máximo de horquillas para permitir en todos los trabajos que se ejecutan simultáneamente en este grupo.\n" " Cero significa que no se aplicará ningún límite." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:341 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:349 #: screens/Inventory/InventorySources/InventorySourceListItem.js:89 msgid "Failed to cancel Inventory Source Sync" msgstr "No se pudo cancelar la sincronización de fuentes de inventario" @@ -332,8 +336,8 @@ msgstr "Rama que se va a extraer. Además de las ramas, puede introducir etiquet #: components/JobList/JobList.js:265 #: components/JobList/JobListItem.js:109 #: components/Lookup/ProjectLookup.js:134 -#: components/NotificationList/NotificationList.js:219 -#: components/NotificationList/NotificationListItem.js:34 +#: components/NotificationList/NotificationList.js:230 +#: components/NotificationList/NotificationListItem.js:36 #: components/PromptDetail/PromptDetail.js:125 #: components/RelatedTemplateList/RelatedTemplateList.js:200 #: components/TemplateList/TemplateList.js:219 @@ -433,7 +437,7 @@ msgstr "Haga clic para ver los detalles de la tarea" msgid "Sync Project" msgstr "Sincronizar proyecto" -#: components/NotificationList/NotificationList.js:194 +#: components/NotificationList/NotificationList.js:205 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:135 msgid "Grafana" msgstr "Grafana" @@ -513,7 +517,7 @@ msgstr "Evento" msgid "Repeat Frequency" msgstr "Frecuencia de repetición" -#: screens/Inventory/shared/Inventory.helptext.js:171 +#: screens/Inventory/shared/Inventory.helptext.js:172 msgid "Variables used to configure the constructed inventory plugin. For a detailed description of how to configure this plugin, see" msgstr "Variables utilizadas para configurar el plugin de inventario construido. Para obtener una descripción detallada de cómo configurar este complemento, consulte" @@ -575,8 +579,8 @@ msgstr "Grupo de contenedores" msgid "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" msgstr "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" -#: components/NotificationList/NotificationList.js:220 -#: components/NotificationList/NotificationListItem.js:35 +#: components/NotificationList/NotificationList.js:231 +#: components/NotificationList/NotificationListItem.js:38 #: screens/Credential/shared/TypeInputsSubForm.js:46 #: screens/InstanceGroup/shared/ContainerGroupForm.js:79 #: screens/Instances/Shared/InstanceForm.js:95 @@ -600,7 +604,7 @@ msgid "You cannot select multiple vault credentials with the same vault ID. Doin msgstr "No se pueden seleccionar varias credenciales con el mismo ID de Vault, ya que anulará automáticamente la selección de la otra con el mismo ID de Vault." #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:334 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:342 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:350 #: screens/Project/ProjectDetail/ProjectDetail.js:354 msgid "Cancel Sync" msgstr "Cancelar sincronización" @@ -713,8 +717,8 @@ msgstr "Métricas" msgid "Create new credential Type" msgstr "Crear un nuevo tipo de credencial" -#: screens/Inventory/shared/Inventory.helptext.js:103 -#: screens/Inventory/shared/Inventory.helptext.js:118 +#: screens/Inventory/shared/Inventory.helptext.js:104 +#: screens/Inventory/shared/Inventory.helptext.js:119 msgid "If you want the Inventory Source to update on launch, click on Update on Launch, and also go to " msgstr "Si desea que la fuente de inventario se actualice al ejecutar, haga clic en Actualizar al ejecutar y también vaya a " @@ -732,7 +736,7 @@ msgid "Start Time" msgstr "Hora de inicio" #: screens/Inventory/shared/Inventory.helptext.js:48 -#: screens/Inventory/shared/Inventory.helptext.js:184 +#: screens/Inventory/shared/Inventory.helptext.js:185 msgid "Variables must be in JSON or YAML syntax. Use the radio button to toggle between the two." msgstr "Ingrese variables con sintaxis JSON o YAML. Use el botón de selección para alternar entre los dos." @@ -748,7 +752,7 @@ msgstr "Diferencias del fichero" msgid "Relaunch from canceled node" msgstr "Volver a ejecutar desde el nodo cancelado" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:271 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:279 msgid "Cache timeout" msgstr "Tiempo de espera de la caché" @@ -828,7 +832,7 @@ msgstr "Por favor, introduzca un número de ocurrencias." msgid "Fuzzy search on name field." msgstr "Búsqueda difusa en el campo del nombre." -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:106 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:107 msgid "Ansible Controller Documentation." msgstr "Documentación del controlador Ansible." @@ -836,7 +840,7 @@ msgstr "Documentación del controlador Ansible." msgid "The Instance Groups to which this instance belongs." msgstr "Los grupos de instancias a los que pertenece esta instancia." -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:97 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:98 msgid "You may apply a number of possible variables in the\n" " message. For more information, refer to the" msgstr "Puede aplicar una serie de variables posibles en el\n" @@ -885,7 +889,7 @@ msgstr "Nodos de flujo de trabajo" msgid "Overwrite" msgstr "Anular" -#: components/NotificationList/NotificationList.js:195 +#: components/NotificationList/NotificationList.js:206 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:136 msgid "Hipchat" msgstr "HipChat" @@ -920,7 +924,7 @@ msgstr "Rama de fuente de control" msgid "Tabs" msgstr "Pestañas" -#: screens/Template/Template.js:273 +#: screens/Template/Template.js:274 #: screens/Template/WorkflowJobTemplate.js:286 msgid "View Template Details" msgstr "Ver detalles de la plantilla" @@ -966,7 +970,7 @@ msgstr "{interval, plural, one {# año} other {# años}}" msgid "Inventory Source Sync" msgstr "Sincronización de fuentes de inventario" -#: screens/Inventory/shared/Inventory.helptext.js:146 +#: screens/Inventory/shared/Inventory.helptext.js:147 msgid "Inventory Plugins" msgstr "Complementos de inventario" @@ -1036,7 +1040,7 @@ msgstr "1 (Información)" msgid "Set the instance enabled or disabled. If disabled, jobs will not be assigned to this instance." msgstr "Establezca la instancia habilitada o deshabilitada. Si se desactiva, los trabajos no se asignarán a esta instancia." -#: screens/Inventory/shared/Inventory.helptext.js:105 +#: screens/Inventory/shared/Inventory.helptext.js:106 msgid "and click on Update Revision on Launch." msgstr "y haga clic en Actualizar revisión en Launch." @@ -1525,8 +1529,8 @@ msgstr "No se pudo eliminar una o más tareas." msgid "Run Command" msgstr "Ejecutar comando" -#: screens/Inventory/shared/Inventory.helptext.js:156 -#: screens/Inventory/shared/Inventory.helptext.js:179 +#: screens/Inventory/shared/Inventory.helptext.js:157 +#: screens/Inventory/shared/Inventory.helptext.js:180 msgid "plugin configuration guide." msgstr "guía de configuración del plugin." @@ -1637,9 +1641,9 @@ msgstr "Crear nuevo inventario federado" #: components/Lookup/OrganizationLookup.js:141 #: components/Lookup/ProjectLookup.js:129 #: components/Lookup/ProjectLookup.js:159 -#: components/NotificationList/NotificationList.js:181 -#: components/NotificationList/NotificationList.js:218 -#: components/NotificationList/NotificationListItem.js:29 +#: components/NotificationList/NotificationList.js:192 +#: components/NotificationList/NotificationList.js:229 +#: components/NotificationList/NotificationListItem.js:31 #: components/OptionsList/OptionsList.js:48 #: components/PaginatedTable/PaginatedTable.js:76 #: components/PromptDetail/PromptDetail.js:115 @@ -1753,14 +1757,14 @@ msgstr "Crear nuevo inventario federado" #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:182 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:197 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:238 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:204 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:205 #: screens/Inventory/InventorySources/InventorySourceList.js:212 #: screens/Inventory/InventorySources/InventorySourceListItem.js:60 #: screens/Inventory/shared/ConstructedInventoryForm.js:66 #: screens/Inventory/shared/FederatedInventoryForm.js:56 #: screens/Inventory/shared/InventoryForm.js:50 #: screens/Inventory/shared/InventoryGroupForm.js:33 -#: screens/Inventory/shared/InventorySourceForm.js:133 +#: screens/Inventory/shared/InventorySourceForm.js:139 #: screens/Inventory/shared/SmartInventoryForm.js:46 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:98 #: screens/ManagementJob/ManagementJobList/ManagementJobList.js:91 @@ -1883,7 +1887,7 @@ msgstr "{automatedInstancesCount} desde {automatedInstancesSinceDateTime}" msgid "No job data available" msgstr "No hay datos de tareas disponibles." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:309 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:317 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:22 msgid "Source variables" msgstr "Variables de fuente" @@ -2020,7 +2024,7 @@ msgid "Confirm" msgstr "Confirmar" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:526 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:142 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:143 msgid "Success message body" msgstr "Cuerpo del mensaje de éxito" @@ -2295,7 +2299,7 @@ msgstr "Servidores fallidos" msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?" msgstr "Este entorno de ejecución está siendo utilizado por otros recursos. ¿Está seguro de que desea eliminarlo?" -#: components/NotificationList/NotificationList.js:196 +#: components/NotificationList/NotificationList.js:207 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:137 msgid "IRC" msgstr "IRC" @@ -2500,7 +2504,7 @@ msgstr "Habilitar registro externo" #: components/Sparkline/Sparkline.js:30 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:51 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:181 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:182 #: screens/Inventory/InventorySources/InventorySourceListItem.js:31 #: screens/Project/ProjectDetail/ProjectDetail.js:134 #: screens/Project/ProjectList/ProjectListItem.js:56 @@ -2540,7 +2544,7 @@ msgstr "Habilitar eventos de seguimiento del sistema de registro de forma indivi msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" msgstr "Las plantillas de trabajo con credenciales que solicitan contraseñas no pueden seleccionarse al crear o modificar nodos" -#: screens/Inventory/shared/Inventory.helptext.js:193 +#: screens/Inventory/shared/Inventory.helptext.js:194 msgid "If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on. Note: If this setting is enabled and you provided an empty list, the global instance groups will be applied." msgstr "Si se activa, el inventario impedirá que se añadan grupos de instancias de la organización a la lista de grupos de instancias preferidos para ejecutar plantillas de trabajo asociadas. Nota: si esta opción está activada y ha proporcionado una lista vacía, se aplicarán los grupos de instancias globales." @@ -2677,7 +2681,7 @@ msgstr "No se pudo disociar uno o más hosts." #: components/Sparkline/Sparkline.js:27 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:48 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:178 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:179 #: screens/Inventory/InventorySources/InventorySourceListItem.js:28 #: screens/Project/ProjectDetail/ProjectDetail.js:131 #: screens/Project/ProjectList/ProjectListItem.js:53 @@ -2764,7 +2768,7 @@ msgstr "Elemento OK" msgid "Icon URL" msgstr "URL de icono" -#: screens/Inventory/shared/InventorySourceForm.js:159 +#: screens/Inventory/shared/InventorySourceForm.js:165 msgid "Select the Instance Groups this inventory source sync should run on. If unset, the sync runs on the instance groups of the inventory or its organization." msgstr "Seleccione los grupos de instancias en los que se debe ejecutar la sincronización de esta fuente de inventario. Si no se establece, la sincronización se ejecuta en los grupos de instancias del inventario o de su organización." @@ -2773,7 +2777,7 @@ msgid "Select the port that Receptor will listen on for incoming connections, e. msgstr "Seleccione el puerto en el que el receptor escuchará las conexiones entrantes, por ejemplo, 27199." #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:517 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:133 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:134 msgid "Success message" msgstr "Mensaje de éxito" @@ -2830,7 +2834,7 @@ msgstr "Método HTTP" msgid "The execution environment that will be used for jobs inside of this organization. This will be used as a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." msgstr "El entorno de ejecución que se utilizará para las tareas dentro de esta organización. Se utilizará como alternativa cuando no se haya asignado explícitamente un entorno de ejecución a nivel de proyecto, plantilla de trabajo o flujo de trabajo." -#: components/NotificationList/NotificationList.js:190 +#: components/NotificationList/NotificationList.js:201 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:131 msgid "Notification type" msgstr "Tipo de notificación" @@ -2864,7 +2868,7 @@ msgstr "Cancelar eliminación del enlace" msgid "There was an error loading this content. Please reload the page." msgstr "Se produjo un error al cargar este contenido. Vuelva a cargar la página." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:292 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:300 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:135 msgid "Enabled Value" msgstr "Valor habilitado" @@ -3177,7 +3181,7 @@ msgstr "<0>Nota: Las instancias pueden volver a asociarse con este grupo de inst msgid "Timeout minutes" msgstr "Tiempo de espera en minutos" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:353 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:361 msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" msgstr "Esta fuente de inventario está siendo utilizada por otros recursos que dependen de ella. ¿Está seguro de que desea eliminarla?" @@ -3332,7 +3336,7 @@ msgstr "Menor o igual que la comparación." #: screens/Inventory/FederatedInventoryDetail/FederatedInventoryDetail.js:187 #: screens/Inventory/InventoryDetail/InventoryDetail.js:185 #: screens/Inventory/InventoryGroups/InventoryGroupsList.js:102 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:356 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:364 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:67 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:71 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:76 @@ -3355,6 +3359,7 @@ msgstr "Menor o igual que la comparación." msgid "Delete" msgstr "ELIMINAR" +#: components/NotificationList/NotificationListItem.js:105 #: components/StatusLabel/StatusLabel.js:53 #: screens/Job/JobOutput/shared/HostStatusBar.js:43 msgid "Changed" @@ -3486,7 +3491,7 @@ msgstr "Equipo GitHub" #: screens/Inventory/InventoryDetail/InventoryDetail.js:157 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:43 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:78 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:317 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:325 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:133 #: screens/Job/JobDetail/JobDetail.js:578 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:425 @@ -3860,7 +3865,7 @@ msgstr "Entorno de ejecución predeterminado" #: components/PromptDetail/PromptJobTemplateDetail.js:122 #: components/PromptDetail/PromptJobTemplateDetail.js:130 #: components/TemplateList/TemplateListItem.js:263 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:245 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:246 #: screens/Job/JobDetail/JobDetail.js:180 #: screens/Job/JobDetail/JobDetail.js:214 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:216 @@ -3981,7 +3986,7 @@ msgstr "Vista de topología" msgid "Syncing" msgstr "Sincronización" -#: screens/Inventory/shared/InventorySourceForm.js:192 +#: screens/Inventory/shared/InventorySourceForm.js:198 msgid "Source details" msgstr "Detalles de la fuente" @@ -4073,7 +4078,7 @@ msgstr "Eliminar credencial" #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:56 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:61 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:100 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:332 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:340 #: screens/Inventory/InventorySources/InventorySourceListItem.js:105 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:148 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:450 @@ -4155,7 +4160,7 @@ msgstr "No se ha especificado el tiempo de espera" msgid "On Timeout" msgstr "En el tiempo de espera" -#: screens/Inventory/shared/Inventory.helptext.js:196 +#: screens/Inventory/shared/Inventory.helptext.js:197 msgid "Prevent Instance Group Fallback: If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on." msgstr "Impedir la retroalimentación del grupo de instancias: Si se habilita, el inventario impedirá añadir cualquier grupo de instancias de la organización a la lista de grupos de instancias preferidos para ejecutar las plantillas de trabajo asociadas." @@ -4497,7 +4502,7 @@ msgstr "content-loading-in-progress" msgid "Mon" msgstr "Lun" -#: screens/Organization/Organization.js:239 +#: screens/Organization/Organization.js:240 msgid "View Organization Details" msgstr "Ver detalles de la organización" @@ -4510,7 +4515,7 @@ msgstr "Ver detalles de la organización" #: components/JobList/JobList.js:345 #: components/LaunchButton/LaunchButton.js:248 #: components/LaunchPrompt/LaunchPrompt.js:99 -#: components/NotificationList/NotificationList.js:246 +#: components/NotificationList/NotificationList.js:259 #: components/PaginatedTable/ToolbarDeleteButton.js:148 #: components/RelatedTemplateList/RelatedTemplateList.js:254 #: components/ResourceAccessList/ResourceAccessList.js:249 @@ -4554,7 +4559,7 @@ msgstr "Ver detalles de la organización" #: screens/Inventory/InventoryHosts/InventoryHostList.js:204 #: screens/Inventory/InventoryList/InventoryList.js:300 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:270 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:363 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:371 #: screens/Inventory/InventorySources/InventorySourceList.js:240 #: screens/Inventory/InventorySources/InventorySourceList.js:252 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:155 @@ -4706,11 +4711,11 @@ msgid "Notification Templates" msgstr "Plantillas de notificación" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:508 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:124 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:125 msgid "Start message body" msgstr "Iniciar cuerpo del mensaje" -#: screens/Inventory/shared/Inventory.helptext.js:128 +#: screens/Inventory/shared/Inventory.helptext.js:129 msgid "Branch to use on inventory sync. Project default used if blank. Only allowed if project allow_override field is set to true." msgstr "Rama para usar en la sincronización del inventario. Se utiliza el valor predeterminado del proyecto si está en blanco. Solo se permite si el campo allow_override del proyecto está establecido en true." @@ -4819,7 +4824,7 @@ msgid "Failed to delete one or more user tokens." msgstr "No se pudo eliminar uno o más tokens de usuario." #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:553 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:169 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:188 msgid "Workflow approved message" msgstr "Mensaje de flujo de trabajo aprobado" @@ -5000,12 +5005,12 @@ msgstr "En el tiempo de espera" msgid "Create New Team" msgstr "Crear nuevo equipo" -#: screens/Inventory/shared/Inventory.helptext.js:148 +#: screens/Inventory/shared/Inventory.helptext.js:149 msgid "in the documentation and the" msgstr "en la documentación y la" #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:152 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:206 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:207 #: screens/Project/ProjectDetail/ProjectDetail.js:160 msgid "Last Job Status" msgstr "Último estado de la tarea" @@ -5338,7 +5343,7 @@ msgid "Preferred Theme" msgstr "Tema preferido" #: screens/Instances/Shared/InstanceForm.js:31 -#: screens/Inventory/shared/InventorySourceForm.js:92 +#: screens/Inventory/shared/InventorySourceForm.js:98 #: screens/Project/shared/ProjectForm.js:121 msgid "Set a value for this field" msgstr "Establecer un valor para este campo" @@ -5471,7 +5476,7 @@ msgid "Download Bundle" msgstr "Descargar paquete" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:577 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:187 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:206 msgid "Workflow denied message" msgstr "Mensaje de flujo de trabajo denegado" @@ -5524,7 +5529,7 @@ msgstr "Tipo de nodo" msgid "View Credential Details" msgstr "Ver detalles de la credencial" -#: components/NotificationList/NotificationList.js:177 +#: components/NotificationList/NotificationList.js:188 #: routeConfig.js:140 #: screens/Inventory/Inventories.js:119 #: screens/Inventory/InventorySource/InventorySource.js:101 @@ -5744,7 +5749,7 @@ msgstr "Probar notificación" #: screens/Credential/CredentialDetail/CredentialDetail.js:262 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:234 #: screens/Inventory/InventoryDetail/InventoryDetail.js:122 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:305 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:313 #: screens/Project/ProjectDetail/ProjectDetail.js:333 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:357 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:193 @@ -5793,7 +5798,7 @@ msgstr "rama de fuente de control" #: screens/Instances/InstanceDetail/InstanceDetail.js:248 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:225 #: screens/Inventory/InventoryDetail/InventoryDetail.js:107 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:239 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:240 #: screens/Organization/OrganizationDetail/OrganizationDetail.js:116 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:418 #: util/getRelatedResourceDeleteDetails.js:282 @@ -6123,7 +6128,7 @@ msgid "View YAML examples at" msgstr "Ver ejemplos de YAML en" #: components/PromptDetail/PromptInventorySourceDetail.js:35 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:142 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:143 msgid "Overwrite local groups and hosts from remote inventory source" msgstr "Sobrescribir grupos locales y servidores desde una fuente remota del inventario." @@ -6132,7 +6137,7 @@ msgid "Resource deleted" msgstr "Recurso eliminado" #: screens/Inventory/shared/Inventory.helptext.js:54 -#: screens/Inventory/shared/Inventory.helptext.js:187 +#: screens/Inventory/shared/Inventory.helptext.js:188 msgid "YAML:" msgstr "YAML:" @@ -6219,7 +6224,7 @@ msgid "Initiated By" msgstr "Inicializado por" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:499 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:115 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:116 msgid "Start message" msgstr "Iniciar mensaje" @@ -6283,7 +6288,7 @@ msgstr "Alternar instancia" msgid "Back to Inventories" msgstr "Volver a Inventarios" -#: screens/Inventory/shared/Inventory.helptext.js:113 +#: screens/Inventory/shared/Inventory.helptext.js:114 msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format." msgstr "Después de cada actualización del proyecto en la que cambie la revisión de SCM, actualice el inventario de la fuente seleccionada antes de ejecutar las tareas del trabajo. Esto está destinado a contenido estático, como el formato de archivo .ini de inventario de Ansible." @@ -6377,7 +6382,7 @@ msgstr "Instancia" msgid "Including File" msgstr "Incluyendo fichero" -#: screens/Inventory/shared/Inventory.helptext.js:81 +#: screens/Inventory/shared/Inventory.helptext.js:82 msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." msgstr "Si se marca, todos los hosts y grupos que estaban presentes anteriormente en la fuente externa pero que ahora se han eliminado se eliminarán del inventario. Los hosts y grupos que no eran gestionados por la fuente de inventario se promoverán al siguiente grupo creado manualmente o, si no hay ningún grupo creado manualmente al que promoverlos, se dejarán en el grupo predeterminado \"all\" del inventario." @@ -6414,7 +6419,7 @@ msgstr "Pestaña de detalles" #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:100 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:72 #: screens/InstanceGroup/shared/ContainerGroupForm.js:50 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:298 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:306 #: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:39 #: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:38 #: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:38 @@ -6425,7 +6430,7 @@ msgstr "Pestaña de detalles" #: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:117 #: screens/Inventory/shared/InventorySourceSubForms/TerraformSubForm.js:38 #: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:39 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:39 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:44 msgid "Credential" msgstr "Credencial" @@ -6434,7 +6439,7 @@ msgid "First node" msgstr "Primer nodo" #: components/PromptDetail/PromptInventorySourceDetail.js:97 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:273 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:281 msgid "{update_cache_timeout, plural, one {# second} other {# seconds}}" msgstr "{update_cache_timeout, plural, one {# segundo} other {# segundos}}" @@ -6498,7 +6503,7 @@ msgstr "Ver la configuración de las tareas" #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:122 #: screens/Instances/InstanceDetail/InstanceDetail.js:349 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:96 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:329 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:337 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:145 #: screens/Project/ProjectDetail/ProjectDetail.js:340 #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:229 @@ -6552,7 +6557,7 @@ msgstr "Usuario normal" msgid "host-name-{0}" msgstr "host-name-{0}" -#: components/NotificationList/NotificationList.js:198 +#: components/NotificationList/NotificationList.js:209 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:139 msgid "Pagerduty" msgstr "Pagerduty" @@ -6611,7 +6616,7 @@ msgstr "Número mínimo de instancias que se asignarán automáticamente a este msgid "Launch | {0}" msgstr "Ejecutar | {0}" -#: components/NotificationList/NotificationListItem.js:79 +#: components/NotificationList/NotificationListItem.js:84 msgid "Toggle notification success" msgstr "Éxito de alternancia de notificaciones" @@ -6704,7 +6709,7 @@ msgstr "Activar los trabajos concurrentes" msgid "Smart Inventory" msgstr "Inventario inteligente" -#: components/NotificationList/NotificationList.js:200 +#: components/NotificationList/NotificationList.js:211 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:141 msgid "Slack" msgstr "Slack" @@ -6740,7 +6745,7 @@ msgstr "Añadir" msgid "System administrators have unrestricted access to all resources." msgstr "Los administradores del sistema tienen acceso ilimitado a todos los recursos." -#: components/NotificationList/NotificationListItem.js:86 +#: components/NotificationList/NotificationListItem.js:91 msgid "Failure" msgstr "Fallo" @@ -6885,7 +6890,7 @@ msgstr "Seguir" #: components/Lookup/MultiCredentialsLookup.js:205 #: components/Lookup/OrganizationLookup.js:135 #: components/Lookup/ProjectLookup.js:149 -#: components/NotificationList/NotificationList.js:210 +#: components/NotificationList/NotificationList.js:221 #: components/RelatedTemplateList/RelatedTemplateList.js:183 #: components/Schedule/ScheduleList/ScheduleList.js:205 #: components/TemplateList/TemplateList.js:235 @@ -7097,7 +7102,7 @@ msgstr "Este campo debe ser un número y tener un valor mayor que {min}" msgid "All" msgstr "Todos" -#: screens/Inventory/shared/Inventory.helptext.js:177 +#: screens/Inventory/shared/Inventory.helptext.js:178 msgid "constructed inventory" msgstr "inventario construido" @@ -7111,7 +7116,7 @@ msgid "Confirm Delete" msgstr "Confirmar eliminación" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:625 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:223 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:242 msgid "Workflow timed out message" msgstr "Mensaje de tiempo de espera agotado del flujo de trabajo" @@ -7207,7 +7212,7 @@ msgstr "Nunca" msgid "Organization Name" msgstr "Nombre de la organización" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:282 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:290 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:149 msgid "Host Filter" msgstr "Filtro de host" @@ -7259,7 +7264,7 @@ msgstr "{pluralizedItemName} Lista" msgid "Please add survey questions." msgstr "Agregue preguntas de la encuesta." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:287 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:295 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:121 msgid "Enabled Variable" msgstr "Variable habilitada" @@ -7371,7 +7376,7 @@ msgstr "Sincronizar" #: components/Lookup/ApplicationLookup.js:128 #: components/Lookup/HostFilterLookup.js:439 #: components/Lookup/HostListItem.js:10 -#: components/NotificationList/NotificationList.js:186 +#: components/NotificationList/NotificationList.js:197 #: components/PromptDetail/PromptDetail.js:120 #: components/Schedule/ScheduleDetail/ScheduleDetail.js:337 #: components/Schedule/ScheduleList/ScheduleList.js:197 @@ -7406,13 +7411,13 @@ msgstr "Sincronizar" #: screens/Inventory/InventoryHosts/InventoryHostList.js:125 #: screens/Inventory/InventoryHosts/InventoryHostList.js:141 #: screens/Inventory/InventoryList/InventoryList.js:215 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:221 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:222 #: screens/Inventory/shared/ConstructedInventoryForm.js:74 #: screens/Inventory/shared/ConstructedInventoryHint.js:63 #: screens/Inventory/shared/FederatedInventoryForm.js:64 #: screens/Inventory/shared/InventoryForm.js:58 #: screens/Inventory/shared/InventoryGroupForm.js:41 -#: screens/Inventory/shared/InventorySourceForm.js:141 +#: screens/Inventory/shared/InventorySourceForm.js:147 #: screens/Inventory/shared/SmartInventoryForm.js:54 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:104 #: screens/Job/JobOutput/HostEventModal.js:118 @@ -7557,7 +7562,7 @@ msgstr "Iniciar sesión con GitHub Enterprise" #: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130 #: screens/Inventory/shared/InventorySourceSubForms/TerraformSubForm.js:46 #: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:47 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:47 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:52 #: screens/Inventory/shared/SmartInventoryForm.js:66 #: screens/NotificationTemplate/shared/NotificationTemplateForm.js:29 #: screens/NotificationTemplate/shared/NotificationTemplateForm.js:66 @@ -7590,7 +7595,7 @@ msgstr "Iniciar sesión con SAML {samlIDP}" msgid "Browse" msgstr "Navegar" -#: components/NotificationList/NotificationList.js:193 +#: components/NotificationList/NotificationList.js:204 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:134 #: screens/User/shared/UserForm.js:104 #: screens/User/UserDetail/UserDetail.js:71 @@ -8013,7 +8018,7 @@ msgid "Sat" msgstr "Sáb" #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:46 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:176 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:177 #: screens/Inventory/InventorySources/InventorySourceListItem.js:26 #: screens/Project/ProjectDetail/ProjectDetail.js:129 #: screens/Project/ProjectList/ProjectListItem.js:51 @@ -8050,7 +8055,7 @@ msgid "Specify HTTP Headers in JSON format. Refer to\n" msgstr "Especifique los encabezados HTTP en formato JSON. Consulte\n" " la documentación de Ansible Controller para ver ejemplos de sintaxis." -#: components/NotificationList/NotificationList.js:199 +#: components/NotificationList/NotificationList.js:210 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:140 msgid "Rocket.Chat" msgstr "Rocket.Chat" @@ -8108,7 +8113,7 @@ msgstr "Establecer zoom al 100% y centrar el gráfico" msgid "Revert all to default" msgstr "Revertir todo a valores por defecto" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:255 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:256 #: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:135 msgid "Inventory file" msgstr "Archivo de inventario" @@ -8185,6 +8190,11 @@ msgstr "Evitar el retroceso del grupo de instancias" msgid "Maximum number of forks to allow across all jobs running concurrently on this group. Zero means no limit will be enforced." msgstr "Número máximo de horquillas para permitir que todos los trabajos se ejecuten simultáneamente en este grupo. Cero significa que no se aplicará ningún límite." +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:263 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:56 +msgid "Collection" +msgstr "Colección" + #: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:207 msgid "Failed to delete one or more credential types." msgstr "No se pudo eliminar uno o más tipos de credenciales." @@ -8199,7 +8209,7 @@ msgstr "Regiones" #: components/WorkflowOutputNavigation/WorkflowOutputNavigation.js:148 msgid "Workflow Jobs ({total})" -msgstr "" +msgstr "Tareas en flujo de trabajo ({total})" #: components/Search/AdvancedSearch.js:315 msgid "Set type disabled for related search field fuzzy searches" @@ -8235,11 +8245,11 @@ msgstr "No más servidores" msgid "ID of the dashboard (optional)" msgstr "ID del panel de control (opcional)" -#: screens/Inventory/shared/Inventory.helptext.js:127 +#: screens/Inventory/shared/Inventory.helptext.js:128 msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'" msgstr "Recupere el estado habilitado del dictado dado de las variables del host. La variable habilitada se puede especificar usando notación de puntos, por ejemplo: 'foo.bar'" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:339 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:347 #: screens/Inventory/InventorySources/InventorySourceListItem.js:88 msgid "Inventory Source Sync Error" msgstr "Error en la sincronización de fuentes de inventario" @@ -8266,14 +8276,14 @@ msgstr "" #: components/VerbositySelectField/VerbositySelectField.js:35 #: components/VerbositySelectField/VerbositySelectField.js:45 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:217 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:261 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:269 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:47 #: screens/Job/JobDetail/JobDetail.js:369 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:257 msgid "Verbosity" msgstr "Nivel de detalle" -#: components/NotificationList/NotificationList.js:197 +#: components/NotificationList/NotificationList.js:208 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:138 msgid "Mattermost" msgstr "Mattermost" @@ -8500,6 +8510,10 @@ msgstr "Volver a Aprobaciones del flujo de trabajo" msgid "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Controller documentation for example syntax." msgstr "Ingrese inyectores a través de la sintaxis JSON o YAML. Consulte la documentación de Ansible Tower para ver la sintaxis de ejemplo." +#: components/NotificationList/NotificationListItem.js:112 +msgid "Toggle notification changed" +msgstr "Cambio de alternancia de notificaciones" + #: components/Workflow/WorkflowLegend.js:122 #: screens/Job/JobOutput/JobOutputSearch.js:140 msgid "Warning" @@ -8568,7 +8582,7 @@ msgid "Prompt for instance groups on launch." msgstr "Preguntar por los grupos de instancias al ejecutar." #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:613 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:214 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:233 msgid "Workflow pending message body" msgstr "Cuerpo del mensaje de flujo de trabajo pendiente" @@ -8610,7 +8624,7 @@ msgstr "Alias en IRC" msgid "Expires on" msgstr "Fecha de expiración" -#: screens/Inventory/shared/Inventory.helptext.js:98 +#: screens/Inventory/shared/Inventory.helptext.js:99 msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." msgstr "Cada vez que se ejecute un trabajo utilizando este inventario, actualice el inventario de la fuente seleccionada antes de ejecutar las tareas del trabajo." @@ -8735,7 +8749,7 @@ msgstr "Habilitar webhook para esta plantilla." msgid "On date" msgstr "En la fecha" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:340 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:348 #: screens/Inventory/InventorySources/InventorySourceListItem.js:90 msgid "Cancel Inventory Source Sync" msgstr "Cancelar sincronización de la fuente del inventario" @@ -8812,7 +8826,7 @@ msgid "Greater than comparison." msgstr "Mayor que la comparación." #: components/PromptDetail/PromptInventorySourceDetail.js:40 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:148 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:149 msgid "Overwrite local variables from remote inventory source" msgstr "Sobrescribir las variables locales desde una fuente remota del inventario." @@ -8884,7 +8898,7 @@ msgstr "No se pudo eliminar uno o más usuarios." msgid "On Success" msgstr "Con éxito" -#: screens/Inventory/shared/Inventory.helptext.js:192 +#: screens/Inventory/shared/Inventory.helptext.js:193 msgid "The inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." msgstr "El archivo de inventario a sincronizar por esta fuente. Puede seleccionar desde el menú desplegable o introducir un archivo dentro de la entrada." @@ -8949,7 +8963,7 @@ msgstr "No configurado" msgid "Workflow Job" msgstr "Tarea en flujo de trabajo" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:82 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:83 msgid "Use custom messages to change the content of\n" " notifications sent when a job starts, succeeds, or fails. Use\n" " curly braces to access information about the job:" @@ -9153,7 +9167,7 @@ msgid "Go to previous page" msgstr "Ir a la página anterior" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:565 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:178 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:197 msgid "Workflow approved message body" msgstr "Cuerpo del mensaje de flujo de trabajo aprobado" @@ -9170,7 +9184,7 @@ msgid "required" msgstr "requerido" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:589 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:196 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:215 msgid "Workflow denied message body" msgstr "Cuerpo del mensaje de flujo de trabajo denegado" @@ -9272,7 +9286,7 @@ msgstr "docs.ansible.com" msgid "Edit Schedule" msgstr "Modificar programación" -#: components/NotificationList/NotificationList.js:250 +#: components/NotificationList/NotificationList.js:263 msgid "Failed to toggle notification." msgstr "No se pudo alternar la notificación." @@ -9361,6 +9375,10 @@ msgstr "Guardar" msgid "Click to create a new link to this node." msgstr "Haga clic para crear un nuevo enlace a este nodo." +#: screens/Inventory/shared/Inventory.helptext.js:78 +msgid "Select the Ansible collection providing the inventory plugin used to sync from vCenter. The community.vmware collection is deprecated in favor of the newer vmware.vmware collection. The selection is applied via the \"plugin\" key in the source variables; when the key is absent, the default collection is used." +msgstr "Seleccione la colección de Ansible que proporciona el plugin de inventario utilizado para sincronizar desde vCenter. La colección community.vmware está obsoleta en favor de la colección más reciente vmware.vmware. La selección se aplica mediante la clave \"plugin\" en las variables de fuente; cuando la clave está ausente, se utiliza la colección predeterminada." + #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:167 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:136 msgid "Operator" @@ -9478,7 +9496,7 @@ msgid "Deprovisioning" msgstr "Desaprovisionamiento" #: components/DetailList/LaunchedByDetail.js:27 -#: components/NotificationList/NotificationList.js:202 +#: components/NotificationList/NotificationList.js:213 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:143 msgid "Webhook" msgstr "Webhook" @@ -9519,7 +9537,7 @@ msgstr "No se pudo eliminar la credencial." msgid "Private key passphrase" msgstr "Frase de paso para llave privada" -#: components/NotificationList/NotificationListItem.js:58 +#: components/NotificationList/NotificationListItem.js:63 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:47 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:53 msgid "Start" @@ -9539,7 +9557,7 @@ msgstr "Debe seleccionar un inventario" #: components/PromptDetail/PromptProjectDetail.js:100 #: components/PromptDetail/PromptWFJobTemplateDetail.js:81 #: components/Schedule/ScheduleDetail/ScheduleDetail.js:477 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:266 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:274 #: screens/Job/JobDetail/JobDetail.js:345 #: screens/Project/ProjectDetail/ProjectDetail.js:229 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 @@ -9593,7 +9611,7 @@ msgstr "Red Hat Insights" msgid "View GitHub Settings" msgstr "Ver la configuración de GitHub" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:257 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:258 msgid "/ (project root)" msgstr "/ (raíz del proyecto)" @@ -9622,7 +9640,7 @@ msgstr "La cantidad de procesos paralelos o simultáneos para utilizar durante l msgid "View all Workflow Approvals." msgstr "Ver todas las aprobaciones del flujo de trabajo." -#: screens/Inventory/shared/Inventory.helptext.js:92 +#: screens/Inventory/shared/Inventory.helptext.js:93 msgid "When not checked, a merge will be performed, combining local variables with those found on the external source." msgstr "Si no se marca, se realizará una fusión, combinando las variables locales con las que se encuentran en la fuente externa." @@ -9716,7 +9734,7 @@ msgstr "Alternar herramientas" #: screens/Inventory/InventoryList/InventoryList.js:211 #: screens/Inventory/InventoryList/InventoryList.js:241 #: screens/Inventory/InventoryList/InventoryListItem.js:121 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:225 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:226 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:107 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:153 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:163 @@ -9767,7 +9785,7 @@ msgid "Test External Credential" msgstr "Prueba de credenciales externas" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:601 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:205 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:224 msgid "Workflow pending message" msgstr "Mensaje de flujo de trabajo pendiente" @@ -9950,7 +9968,7 @@ msgstr "Navegación" msgid "If enabled, control nodes will peer to this instance automatically. If disabled, instance will be connected only to associated peers." msgstr "Si está habilitado, los nodos de control examinarán esta instancia automáticamente. Si se desactiva, la instancia se conectará solo a los compañeros asociados." -#: screens/Inventory/shared/Inventory.helptext.js:120 +#: screens/Inventory/shared/Inventory.helptext.js:121 msgid "and click on Update Revision on Launch" msgstr "y haga clic en Actualizar revisión al ejecutar" @@ -9969,6 +9987,10 @@ msgstr "Seleccione un proyecto antes de modificar el entorno de ejecución." msgid "Order" msgstr "Pedir" +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:179 +msgid "Changed message body" +msgstr "Cuerpo del mensaje de cambio" + #: components/Schedule/Schedule.js:65 msgid "Back to Schedules" msgstr "Volver a Programaciones" @@ -10087,7 +10109,7 @@ msgstr "Crear nuevo grupo de contenedores" msgid "Bitbucket Data Center" msgstr "Centro de datos de Bitbucket" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:367 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:375 msgid "Failed to delete inventory source {name}." msgstr "No se pudo eliminar la fuente del inventario {name}." @@ -10153,7 +10175,7 @@ msgstr "Modificar detalles" msgid "Deleted" msgstr "Eliminado" -#: screens/Inventory/shared/Inventory.helptext.js:129 +#: screens/Inventory/shared/Inventory.helptext.js:130 msgid "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import." msgstr "Este campo se ignora a menos que se establezca una variable habilitada. Si la variable habilitada coincide con este valor, el host se habilitará en la importación." @@ -10252,11 +10274,11 @@ msgstr "Módulo" msgid "Confirm revert all" msgstr "Confirmar la reversión de todo" -#: screens/Inventory/shared/Inventory.helptext.js:89 +#: screens/Inventory/shared/Inventory.helptext.js:90 msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source." msgstr "Si está marcada, todas las variables para grupos secundarios y hosts se eliminarán y reemplazarán por las que se encuentran en la fuente externa." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:350 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:358 msgid "Delete inventory source" msgstr "Eliminar fuente de inventario" @@ -10327,7 +10349,7 @@ msgstr "Tiempo transcurrido de la ejecución de la tarea " msgid "GitLab" msgstr "GitLab" -#: components/NotificationList/NotificationListItem.js:93 +#: components/NotificationList/NotificationListItem.js:98 msgid "Toggle notification failure" msgstr "No se pudieron alternar las notificaciones" @@ -10428,8 +10450,8 @@ msgstr "Este campo debe tener al menos {0} caracteres" #: components/JobList/JobListItem.js:197 #: components/PromptDetail/PromptInventorySourceDetail.js:78 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:222 -#: screens/Inventory/shared/InventorySourceForm.js:162 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:223 +#: screens/Inventory/shared/InventorySourceForm.js:168 #: screens/Job/JobDetail/JobDetail.js:180 #: screens/Job/JobDetail/JobDetail.js:332 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:93 @@ -10513,7 +10535,7 @@ msgstr "Seleccionar clave" msgid "Pass extra command line changes. There are two ansible command line parameters: " msgstr "Transfiera cambios adicionales de línea de comandos. Hay dos parámetros de línea de comandos de ansible: " -#: screens/Inventory/shared/Inventory.helptext.js:84 +#: screens/Inventory/shared/Inventory.helptext.js:85 msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process." msgstr "Si no se marca, los anfitriones secundarios locales y los grupos que no se encuentren en la fuente externa no se verán afectados por el proceso de actualización del inventario." @@ -10556,7 +10578,7 @@ msgid "Specify a notification color. Acceptable colors are hex\n" msgstr "Especifique un color de notificación. Los colores aceptables son el código\n" " de color hexadecimal (ejemplo: #3af o #789abc)." -#: components/NotificationList/NotificationList.js:201 +#: components/NotificationList/NotificationList.js:212 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:142 msgid "Twilio" msgstr "Twilio" @@ -10596,7 +10618,7 @@ msgid "updated" msgstr "actualizado" #: screens/Inventory/AdvancedInventoryHostDetail/AdvancedInventoryHostDetail.js:50 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:320 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:328 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:135 #: screens/Project/ProjectList/ProjectListItem.js:274 #: screens/TopologyView/Tooltip.js:347 @@ -10797,7 +10819,7 @@ msgid "Successful jobs" msgstr "Tareas exitosas" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:535 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:151 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:152 msgid "Error message" msgstr "Mensaje de error" @@ -10926,7 +10948,7 @@ msgstr "Proyecto desconocido" msgid "Preconditions for running this node when there are multiple parents. Refer to the" msgstr "Condiciones previas para ejecutar este nodo cuando hay varios elementos primarios. Consulte" -#: screens/Inventory/shared/Inventory.helptext.js:140 +#: screens/Inventory/shared/Inventory.helptext.js:141 msgid "Variables used to configure the inventory source. For a detailed description of how to configure this plugin, see" msgstr "Variables utilizadas para configurar el origen del inventario. Para obtener una descripción detallada de cómo configurar este complemento, consulte" @@ -10936,7 +10958,7 @@ msgstr "Google Compute Engine" #: components/Sparkline/Sparkline.js:34 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:55 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:185 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:186 #: screens/Inventory/InventorySources/InventorySourceListItem.js:35 #: screens/Project/ProjectDetail/ProjectDetail.js:138 #: screens/Project/ProjectList/ProjectListItem.js:60 @@ -10958,7 +10980,7 @@ msgstr "Todos los tipos de tarea" msgid "GitHub Enterprise Organization" msgstr "Organización de GitHub Enterprise" -#: screens/Inventory/shared/InventorySourceForm.js:170 +#: screens/Inventory/shared/InventorySourceForm.js:176 msgid "Choose a source" msgstr "Elegir una fuente" @@ -10992,7 +11014,7 @@ msgstr "Selección de clave simple" msgid "You have automated against more hosts than your subscription allows." msgstr "Has automatizado contra más hosts de los que permite tu suscripción." -#: screens/Inventory/shared/Inventory.helptext.js:130 +#: screens/Inventory/shared/Inventory.helptext.js:131 msgid "Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied." msgstr "Expresión regular en la que solo se importarán los nombres de host que coincidan. El filtro se aplica como un paso posterior al procesamiento después de que se aplique cualquier filtro de complemento de inventario." @@ -11118,7 +11140,7 @@ msgstr "LDAP" msgid "Workflow Template" msgstr "Plantilla de flujo de trabajo" -#: components/NotificationList/NotificationListItem.js:40 +#: components/NotificationList/NotificationListItem.js:45 #: components/Workflow/WorkflowLegend.js:118 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:76 msgid "Approval" @@ -11280,7 +11302,7 @@ msgstr "Fallo de aprovisionamiento" msgid "Whether the approval node is automatically approved or denied when the timeout expires." msgstr "Determina si el nodo de aprobación se aprueba o se deniega automáticamente cuando expira el tiempo de espera." -#: screens/Inventory/shared/Inventory.helptext.js:125 +#: screens/Inventory/shared/Inventory.helptext.js:126 msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed." msgstr "Tiempo en segundos para considerar que una sincronización de inventario es actual. Durante las ejecuciones de trabajos y las devoluciones de llamada, el sistema de tareas evaluará la marca de tiempo de la última sincronización. Si es anterior al tiempo de espera de la caché, no se considera actual y se realizará una nueva sincronización del inventario." @@ -11294,7 +11316,7 @@ msgstr "Expiración del token de acceso" #: components/WorkflowOutputNavigation/WorkflowOutputNavigation.js:147 msgid "Workflow Job {currentPosition}/{total}" -msgstr "" +msgstr "Tarea en flujo de trabajo {currentPosition}/{total}" #: components/Schedule/ScheduleDetail/FrequencyDetails.js:69 msgid "{interval, plural, one {# minute} other {# minutes}}" @@ -11438,7 +11460,7 @@ msgstr "ID del sistema de Insights" msgid "Authorization Code Expiration" msgstr "Expiración del código de autorización" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:69 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:70 msgid "Customize messages…" msgstr "Personalizar mensajes." @@ -11664,7 +11686,7 @@ msgid "{interval, plural, one {# week} other {# weeks}}" msgstr "{interval, plural, one {# semana} other {# semanas}}" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:544 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:160 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:161 msgid "Error message body" msgstr "Cuerpo del mensaje de error" @@ -11707,7 +11729,7 @@ msgstr "Nodos gestionados" #: components/Lookup/MultiCredentialsLookup.js:201 #: components/Lookup/OrganizationLookup.js:131 #: components/Lookup/ProjectLookup.js:153 -#: components/NotificationList/NotificationList.js:206 +#: components/NotificationList/NotificationList.js:217 #: components/RelatedTemplateList/RelatedTemplateList.js:179 #: components/Schedule/ScheduleList/ScheduleList.js:201 #: components/TemplateList/TemplateList.js:231 @@ -11823,7 +11845,7 @@ msgstr "Error al eliminar tokens" msgid "Select period" msgstr "Seleccionar periodo" -#: components/NotificationList/NotificationListItem.js:65 +#: components/NotificationList/NotificationListItem.js:70 msgid "Toggle notification start" msgstr "Iniciar alternancia de notificaciones" @@ -11871,7 +11893,7 @@ msgid "This field must be a number and have a value between {min} and {max}" msgstr "Este campo debe ser un número y tener un valor entre {min} y {max}" #: components/PromptDetail/PromptInventorySourceDetail.js:45 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:154 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:155 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:93 msgid "Update on launch" msgstr "Actualizar al ejecutar" @@ -11888,7 +11910,7 @@ msgstr "Añade anfitriones al grupo según las condiciones de Jinja2." msgid "Copy Template" msgstr "Copiar plantilla" -#: components/NotificationList/NotificationListItem.js:51 +#: components/NotificationList/NotificationListItem.js:56 msgid "Toggle notification approvals" msgstr "Aprobaciones para alternar las notificaciones" @@ -11916,7 +11938,7 @@ msgstr "Año pasado" msgid "Week" msgstr "Semana" -#: components/NotificationList/NotificationListItem.js:72 +#: components/NotificationList/NotificationListItem.js:77 #: components/StatusLabel/StatusLabel.js:39 msgid "Success" msgstr "Correcto" diff --git a/awx/ui/src/locales/fr/messages.js b/awx/ui/src/locales/fr/messages.js index 12cbee7b..d88a3d9d 100644 --- a/awx/ui/src/locales/fr/messages.js +++ b/awx/ui/src/locales/fr/messages.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"--iDlT\":[\"Supprimer le projet\"],\"-0AkQd\":[[\"forks\",\"plural\",{\"one\":[\"#\",\" fork\"],\"other\":[\"#\",\" forks\"]}]],\"-0B-ue\":[\"Projets\"],\"-5kO8P\":[\"Samedi\"],\"-6EcFR\":[\"Appuyez sur Entrée pour modifier. Appuyez sur ESC pour arrêter la modification.\"],\"-7M7WW\":[\"Cliquez pour changer la valeur par défaut\"],\"-7VWRl\":[\"RAM \",[\"0\"]],\"-8WGoO\":[\"Le paramètre du plugin est requis.\"],\"-9d7Ol\":[\"Sous-domaine Pagerduty\"],\"-9y9jy\":[\"Dernier bilan de fonctionnement\"],\"-9yY_Q\":[\"N'a pas réussi à copier l'inventaire.\"],\"-AZQnp\":[\"SAML\"],\"-FWz2-\":[\"Faire défiler la page précédente\"],\"-FjWgX\":[\"Jeu.\"],\"-GMFSa\":[\"Le projet n'a pas été copié.\"],\"-GOG9X\":[\"Masquer la description\"],\"-NI2UI\":[\"Divisez le travail effectué par ce modèle de job en le nombre spécifié de tranches de job, chacune exécutant les mêmes tâches sur une partie de l'inventaire.\"],\"-NezOR\":[\"Ce type d’accréditation est actuellement utilisé par certaines informations d’accréditation et ne peut être supprimé\"],\"-OpL2l\":[\"Exécuter quel que soit l'état final du nœud parent.\"],\"-PyL32\":[\"Êtes-vous sûr de vouloir supprimer ce nœud ?\"],\"-RAMET\":[\"Modifier ce lien\"],\"-SAqJ3\":[\"N'a pas réussi à copier les identifiants\"],\"-Uepfb\":[\"Contrôle\"],\"-b3ghh\":[\"Élévation des privilèges\"],\"-cWxFz\":[\"Activez la signature de contenu pour vérifier que le contenu est resté sécurisé lors de la synchronisation d'un projet. Si le contenu a été altéré, le job ne s'exécutera pas.\"],\"-hh3vo\":[\"Impossible de charger la dernière mise à jour du job\"],\"-li8PK\":[\"Utilisation de l'abonnement\"],\"-nb9qF\":[\"(Me le demander au lancement)\"],\"-ohrPc\":[\"Recherche Typeahead\"],\"-rfqXD\":[\"Questionnaire activé\"],\"-uOi7U\":[\"Cliquez pour télécharger l’ensemble (Bundle)\"],\"-vAlj5\":[\"Echec du lancement du Job.\"],\"-z0Ubz\":[\"Sélectionnez les rôles à appliquer\"],\"-zW4qj\":[\"Branche à extraire. En plus des branches, vous pouvez saisir des balises, des hachages de commit et des refs arbitraires. Certains hachages de commit et refs peuvent ne pas être disponibles à moins que vous ne fournissiez également un refspec personnalisé.\"],\"-zy2Nq\":[\"Type\"],\"0-31GV\":[\"Suppression\"],\"0-yjzX\":[\"Le projet doit être synchronisé avant qu'une révision soit disponible.\"],\"00_HDq\":[\"Type de politique\"],\"00cteM\":[\"Ce champ ne doit pas dépasser \",[\"0\"],\" caractères\"],\"01Zgfk\":[\"Expiré\"],\"02FGuS\":[\"Créer un nouveau groupe\"],\"02ePaq\":[\"Sélectionnez \",[\"0\"]],\"02o5A-\":[\"Créer un nouveau projet\"],\"05TJDT\":[\"Cliquez pour voir les détails de ce Job\"],\"06Veq8\":[\"Projet Sync\"],\"08IuMU\":[\"Remplacer les variables\"],\"08dX0o\":[\"Grafana\"],\"0Ca6Bi\":[[\"dateStr\"],\" par <0>\",[\"username\"],\"\"],\"0DRyjU\":[\"Descripteurs d'exécution\"],\"0JjrTf\":[\"Il y a eu une erreur dans l'analyse du fichier. Veuillez vérifier le formatage du fichier et réessayer.\"],\"0K8MzY\":[\"Ce champ ne doit pas dépasser \",[\"max\"],\" caractères\"],\"0LUj25\":[\"Supprimer un groupe d'instances\"],\"0MFMD5\":[\"Échec de l'exécution d'un contrôle de fonctionnement sur une ou plusieurs instances.\"],\"0Ohn6b\":[\"Lancé par\"],\"0PUWHV\":[\"Fréquence de répétition\"],\"0Pz6gk\":[\"Variables utilisées pour configurer le plugin d'inventaire construit. Pour une description détaillée de la configuration de ce plugin, voir\"],\"0QsHpG\":[\"Schéma d'entrée qui définit un ensemble de champs ordonnés pour ce type.\"],\"0Tddvz\":[\"L'URL de base du serveur Grafana - le point de\\n terminaison /api/annotations sera ajouté automatiquement à l'URL de base\\n de Grafana.\"],\"0WL4_U\":[\"Supprimer tous les nœuds\"],\"0WP27-\":[\"En attente du résultat du job…\"],\"0YAsXQ\":[\"Groupe de conteneurs\"],\"0ZdD1M\":[[\"0\",\"plural\",{\"one\":[\"You cannot cancel the following job because it is not running:\"],\"other\":[\"You cannot cancel the following jobs because they are not running:\"]}]],\"0ZqUtV\":[\"Pour plus d'informations, consultez la\"],\"0_ru-E\":[\"Copier l'inventaire\"],\"0cqIWs\":[\"Mot de passe d'auth de base\"],\"0d48JM\":[\"Options à choix multiples (sélection multiple)\"],\"0eOoxo\":[\"Veuillez choisir une date/heure de fin qui vient après la date/heure de début.\"],\"0f7U0k\":[\"Mer.\"],\"0gPQCa\":[\"Toujours\"],\"0lvFRT\":[\"Vous ne pouvez pas modifier le type de justificatif d'identité d'un justificatif d'identité, car cela peut casser la fonctionnalité des ressources qui l'utilisent.\"],\"0pC_y6\":[\"Événement\"],\"0qOaMt\":[\"Une erreur s'est produite lors de la demande de test de ces informations d'identification et métadonnées.\"],\"0rVzXl\":[\"Paramètres de Google OAuth 2\"],\"0sNe72\":[\"Ajouter des rôles\"],\"0tNXE8\":[\"PLACER\"],\"0tfvhT\":[\"La capacité utilisée par le groupe d'instances\"],\"0wlLcO\":[\"Définissez le nombre de jours pendant lesquels les données doivent être conservées.\"],\"0zpgxV\":[\"Options\"],\"0zs8j5\":[\"Nombre maximum de fois que le job de ce nœud est automatiquement relancé après un échec avant de suivre ses chemins d'échec. Les jobs annulés ne sont jamais relancés.\"],\"1-4GhF\":[\"Annuler Sync\"],\"10B0do\":[\"Échec de l'envoi de la notification de test.\"],\"1280Tg\":[\"Nom d'hôte\"],\"12j25_\":[\"Clé publique GPG\"],\"12kemj\":[\"URL Contrôle de la source\"],\"14KOyT\":[\"source ./vars\"],\"15GcuU\":[\"Afficher les paramètres d'authentification divers\"],\"17TKua\":[\"Groupe d'instance\"],\"19zgn6\":[\"Type d'instance\"],\"1A3EXy\":[\"Développer\"],\"1C5cFl\":[\"Exécution suivante\"],\"1Ey8My\":[\"Adresse IP\"],\"1F0IaT\":[\"Afficher les programmations\"],\"1HMy92\":[\"JSON :\"],\"1I6UoR\":[\"Affichages\"],\"1L3KBl\":[\"Créer un nouveau type d'informations d'identification.\"],\"1LRwvx\":[\"Si vous voulez que la source d'inventaire se mette à jour au lancement, cliquez sur Mettre à jour au lancement, et allez également à \"],\"1Ltnvs\":[\"Ajouter un nœud\"],\"1PQRWr\":[\"Heure de début\"],\"1QRNEs\":[\"Fréquence de répétition\"],\"1RYzKu\":[\"Relancer à partir du nœud annulé\"],\"1UJu6o\":[\"Veuillez choisir un numéro de jour entre 1 et 31.\"],\"1UjRxI\":[\"Expiration du délai d’attente du cache\"],\"1UzENP\":[\"Non\"],\"1V4Yvg\":[\"Système divers\"],\"1WlWk7\":[\"Voir les détails de l'hôte de l'inventaire\"],\"1WsB5U\":[\"Nous n'avons pas pu localiser les abonnements associés à ce compte.\"],\"1ZaQUH\":[\"Nom\"],\"1_gTC7\":[\"Vous ne pouvez pas sélectionner plusieurs identifiants d’archivage sécurisé (Vault) avec le même identifiant de d’archivage sécurisé. Cela désélectionnerait automatiquement les autres identifiants d’archivage sécurisé.\"],\"1abtmx\":[\"Promouvoir les groupes de dépendants et les hôtes\"],\"1ahgeV\":[\"Google OAuth2\"],\"1cT4RU\":[\"Mise à jour SCM\"],\"1fO-kL\":[\"N'a pas réussi à faire basculer l'instance.\"],\"1hCxP5\":[\"N'a pas réussi à supprimer un ou plusieurs groupes d'instances.\"],\"1kwHxg\":[\"Métriques\"],\"1n50PN\":[\"Onglet JSON\"],\"1qd4yi\":[\"Variables avec la syntaxe JSON ou YAML. Utilisez le bouton radio pour basculer entre les deux.\"],\"1rDBnp\":[\"Écart entre les fichiers\"],\"1w2SCz\":[\"Choisissez un type de contrôle à la source\"],\"1xdJD7\":[\"Adapter à l’écran\"],\"1yHVE-\":[\"Ajout\"],\"2-iKER\":[\"Afficher le flux d’activité\"],\"2B_v7Y\":[\"Pourcentage d'instances de stratégie\"],\"2CTKOa\":[\"Retour aux projets\"],\"2FB7vv\":[\"Sélectionnez une organisation avant de modifier l'environnement d'exécution par défaut.\"],\"2FeJcd\":[\"Élément ignoré\"],\"2H9REH\":[\"Recherche floue sur le champ du nom.\"],\"2JV4mx\":[\"Les groupes d'instances auxquels appartient cette instance.\"],\"2KlsJC\":[\"Vous pouvez appliquer un certain nombre de variables possibles dans le\\n message. Pour plus d'informations, reportez-vous à\"],\"2MSEkM\":[\"N'a pas réussi à supprimer l'inventaire.\"],\"2a07Yj\":[\"Copie du modèle de notification\"],\"2ekvhy\":[\"Fréquence des exceptions\"],\"2gDkH_\":[\"Veuillez saisir un nombre d'occurrences.\"],\"2iyx-2\":[\"Documentation du contrôleur Ansible.\"],\"2n41Wr\":[\"Ajouter un modèle de flux de travail\"],\"2nsB1O\":[\"Retour Haut de page\"],\"2ocqzE\":[\"Webhooks : Activer le webhook pour ce modèle.\"],\"2ooR7j\":[\"LDAP 5\"],\"2p6eVk\":[\"Recherche modale\"],\"2pNIxF\":[\"Nœuds de flux de travail\"],\"2pgi-L\":[\"Indique si un hôte est disponible et doit être inclus dans l'exécution des\\n jobs. Pour les hôtes qui font partie d'un inventaire externe, ceci peut être\\n réinitialisé par le processus de synchronisation de l'inventaire.\"],\"2qfwJn\":[\"Remplacer\"],\"2r06bV\":[\"HipChat\"],\"2rvMKg\":[\"Actualiser Jeton\"],\"2w-INk\":[\"Informations sur l'hôte\"],\"2zs1kI\":[\"Cette valeur ne correspond pas au mot de passe que vous avez entré précédemment. Veuillez confirmer ce mot de passe.\"],\"3-SkJA\":[\"Dissocier le groupe de l'hôte ?\"],\"3-sY1p\":[\"Numéro(s) de SMS de destination\"],\"328Yxp\":[\"Branche Contrôle de la source\"],\"38Or-7\":[\"Balises\"],\"38VIWI\":[\"Voir les détails du modèle\"],\"39y5bn\":[\"Vendredi\"],\"3A9ATS\":[\"Environnement d'exécution non trouvé.\"],\"3AOZPn\":[\"Afficher et modifier les options de débogage\"],\"3FUtN9\":[\"Sync Source d’inventaire\"],\"3IVQDN\":[\"Cette programmation utilise des règles complexes qui ne sont pas prises en charge dans\\n l'interface utilisateur. Veuillez utiliser l'API pour gérer cette programmation.\"],\"3JjdaA\":[\"Exécuter\"],\"3JnvxN\":[\"Choisissez les ressources qui recevront de nouveaux rôles. Vous pourrez sélectionner les rôles à postuler lors de l'étape suivante. Notez que les ressources choisies ici recevront tous les rôles choisis à l'étape suivante.\"],\"3JzsDb\":[\"Mai\"],\"3LoUor\":[\"Canaux de destination\"],\"3LqMX2\":[\"CIQ Ascender Automation Platform\"],\"3PAU4M\":[\"Année\"],\"3PZalO\":[\"Hôte non trouvé.\"],\"3Rke7L\":[\"1 (info)\"],\"3WGwSW\":[\"Supprimez entièrement le dépôt local avant d'effectuer une mise à jour. Selon la taille du dépôt, cela peut augmenter considérablement le temps nécessaire pour effectuer une mise à jour.\"],\"3YSVMq\":[\"Erreur de suppression\"],\"3aIe4Y\":[\"Créer une nouvelle organisation\"],\"3b24mY\":[\"CPU \",[\"0\"]],\"3fG1e7\":[\"Temps écoulé\"],\"3fMc43\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" année\"],\"other\":[\"#\",\" années\"]}]],\"3hCQhK\":[\"Extensions d'inventaire\"],\"3hvUyZ\":[\"nouveau choix\"],\"3mTiHp\":[\"Impossible de copier le modèle.\"],\"3pBNb0\":[\"Recharger la sortie\"],\"3sFvGC\":[\"Mettez l'instance en ligne ou hors ligne. Si elle est hors ligne, les Jobs ne seront pas attribués à cette instance.\"],\"3sXZ-V\":[\"et cliquez sur Mettre à jour la révision au lancement.\"],\"3uAM50\":[\"Contrat de licence utilisateur\"],\"3wPA9L\":[\"Catégorie de paramètre\"],\"3y7qi5\":[\"Retour à Références\"],\"3yy_k-\":[\"Voir toutes les équipes.\"],\"4-RjdJ\":[[\"interval\"],\" year\"],\"40lLFI\":[\"Allez à la page suivante de la liste\"],\"41KRqu\":[\"Mots de passes d’identification\"],\"45BzQy\":[\"Les bilans de santé sont des tâches asynchrones. Veuillez consulter la documentation pour plus d'informations.\"],\"45cx0B\":[\"Annuler l'édition de l'abonnement\"],\"45gLaI\":[\"Demander les identifiants au lancement.\"],\"46SUtl\":[\"Modifier le groupe\"],\"479kuh\":[\"Copier la révision complète dans le Presse-papiers.\"],\"47e97a\":[\"Tentatives maximales\"],\"4BITzH\":[\"Erreur :\"],\"4LzLLz\":[\"Voir tous les paramètres\"],\"4Q4HZp\":[\"Aucun(e) \",[\"pluralizedItemName\"],\" trouvé(e)\"],\"4QXpWJ\":[\"expiré\"],\"4QfhOe\":[\"Certains modificateurs de recherche, comme not__ et __search, ne sont pas pris en charge par les filtres hôte de Smart Inventory. Supprimez-les pour créer un nouveau Smart Inventory avec ce filtre.\"],\"4S2cNE\":[\"Voir les paramètres d'enregistrement\"],\"4Wt2Ty\":[\"Sélectionnez les éléments de la liste\"],\"4_ESDh\":[\"Ce champ doit être une expression régulière\"],\"4_xiC_\":[\"Artefacts\"],\"4alXD6\":[\"Nombre maximum de jobs à exécuter simultanément sur ce groupe.\\n Zéro signifie qu'aucune limite ne sera appliquée.\"],\"4bhLaA\":[\"Sélectionnez un type d’identifiant\"],\"4cWhxn\":[\"Contrôle si cette instance est gérée ou non par la stratégie. Si cette option est activée, l'instance sera disponible pour une affectation et une désaffectation automatiques à des groupes d'instances en fonction des règles de politique.\"],\"4dQFvz\":[\"Terminé\"],\"4g1rw0\":[\"La durée (en secondes) avant que la notification\\n par e-mail cesse d'essayer d'atteindre l'hôte et expire. Va\\n de 1 à 120 secondes.\"],\"4hPyPF\":[\"Sauvegarde & Sortie\"],\"4j2eOR\":[\"Sélectionnez l'inventaire auquel cet hôte appartiendra.\"],\"4jnim6\":[\"Sélectionnez un service de webhook.\"],\"4km-Vu\":[\"Non-conformité\"],\"4kw_um\":[[\"interval\"],\" minute\"],\"4lCMxZ\":[\"Explication de l'échec :\"],\"4lgLew\":[\"Février\"],\"4mQyZf\":[\"Les services de webhook peuvent l'utiliser comme secret partagé.\"],\"4nLbTY\":[\"Voir tous les jobs de gestion\"],\"4o_cFL\":[\"Supprimer l’application\"],\"4s0pSB\":[\"Fournissez un modèle d'hôte pour restreindre davantage la liste des hôtes qui seront gérés ou affectés par le playbook. Plusieurs modèles sont autorisés. Consultez la documentation Ansible pour plus d'informations et d'exemples sur les modèles.\"],\"4uVADI\":[\"Question secrète du client\"],\"4vFDZV\":[\"Créer un nouveau modèle de Job\"],\"4vkbaA\":[\"Le projet à partir duquel cette mise à jour d'inventaire est sourcée.\"],\"4yGeRr\":[\"Sync Inventaires\"],\"4zue79\":[\"Copyright\"],\"5-qYGv\":[\"Modifier l'instance\"],\"54_SyV\":[[\"0\",\"plural\",{\"one\":[\"You do not have permission to cancel the following job:\"],\"other\":[\"You do not have permission to cancel the following jobs:\"]}]],\"56fd5u\":[\"Êtes-vous sûr de vouloir supprimer tous les nœuds de ce flux de travail ?\"],\"5B77Dm\":[\"Dernier Job\"],\"5F5F4w\":[\"Approbation du flux de travail\"],\"5IhYoj\":[\"Types de nœud\"],\"5K7kGO\":[\"documentation\"],\"5KMGbn\":[\"Êtes-vous certain de vouloir annuler ce job ?\"],\"5RMgCw\":[\"Hôtes\"],\"5S4tZv\":[\"La fréquence ne correspondait pas à une valeur attendue\"],\"5Sa1Ss\":[\"E-mail\"],\"5TnQp6\":[\"Type de Job\"],\"5WFDw4\":[\"Grouper seulement par\"],\"5X2wog\":[\"Il y a eu un problème de connexion. Veuillez réessayer.\"],\"5_vHPm\":[\"Voir les paramètres TACACS+\"],\"5ajaW1\":[\"Exécuter lorsqu'un artefact du nœud parent correspond à la condition.\"],\"5dJK4M\":[\"Rôles\"],\"5eHyY-\":[\"Notification test\"],\"5eL2KN\":[\"URL cible\"],\"5lqXf5\":[\"Revenir à la valeur usine par défaut.\"],\"5n_soj\":[\"Demander le nombre de tranches de tâche au lancement.\"],\"5p6-Mk\":[\"Filtrer par travaux échoués\"],\"5pDe2G\":[\"Remove \",[\"0\"],\" Access\"],\"5pa4JT\":[\"Playbook démarré\"],\"5qauVA\":[\"Ce modèle de tâche de flux de travail est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?\"],\"5vA8H0\":[\"Aucun hôte correspondant\"],\"5xzS8Q\":[\"Jeton qui garantit qu'il s'agit d'un fichier source\\n pour le plugin « construit ».\"],\"5y9wkB\":[\"Retour aux notifications\"],\"6-OdGi\":[\"Protocole\"],\"6-ptnU\":[\"l'option à la\"],\"623gDt\":[\"Impossible de supprimer l'utilisateur.\"],\"63C4Yo\":[\"Groupe de conteneurs\"],\"66Zq7T\":[\"Enregistrer les changements de liens\"],\"66qTfS\":[\"La semaine dernière\"],\"679-JR\":[\"Recherche floue sur les champs id, nom ou description.\"],\"68OTAn\":[\"This intance is currently being used by other resources. Are you sure you want to delete it?\"],\"68h6WG\":[\"Lancer le Job de gestion\"],\"69aXwM\":[\"Ajouter un groupe existant\"],\"69zuwn\":[\"Deprovisioning these instances could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"6ASSBg\":[\"LDAP 4\"],\"6BzDub\":[\"suppression doucement\"],\"6GBt0m\":[\"Métadonnées\"],\"6HLTEb\":[\"Filtrer...\"],\"6J-cs1\":[\"Délai d’attente (secondes)\"],\"6KhU4s\":[\"Voulez-vous vraiment quitter le flux de travail Creator sans enregistrer vos modifications\xA0?\"],\"6LTyxl\":[\"Révision\"],\"6PmtyP\":[\"Basculer la légende\"],\"6RDwJM\":[\"Jetons\"],\"6UYTy8\":[\"Minute\"],\"6V3Ea3\":[\"Copié\"],\"6WwHL3\":[\"Total Nœuds\"],\"6XOI1I\":[\"Créer un nouvel inventaire fédéré\"],\"6XgEPi\":[\"Heure\"],\"6YtxFj\":[\"Nom\"],\"6Z5ACo\":[\"Clé de configuration de l’hôte\"],\"6bpC9t\":[\"Nœud défaillant\"],\"6cylr_\":[\"Stdout\"],\"6f961q\":[\"Seulement si manquant\"],\"6hEnxG\":[\"Activer l’élévation des privilèges\"],\"6j6_0F\":[\"Ressource connexe\"],\"6kpN96\":[\"N'a pas réussi à supprimer la notification.\"],\"6lGV3K\":[\"Afficher moins de détails\"],\"6msU0q\":[\"N'a pas réussi à supprimer un ou plusieurs Jobs.\"],\"6nsio_\":[\"Exécuter Commande\"],\"6oNH0E\":[\"guide de configuration du plugin.\"],\"6pMgh_\":[\"Voir les paramètres LDAP\"],\"6rSKy6\":[\"Sélectionnez les inventaires sources pour cet inventaire fédéré. Lorsqu'un job est lancé, les hôtes seront acheminés automatiquement vers le groupe d'instances de chaque inventaire source.\"],\"6uvnKV\":[\"Service API/Clé d’intégration\"],\"6vrz8I\":[\"N'a pas réussi à supprimer un ou plusieurs Jobs\"],\"6zGHNM\":[\"Hôtes restants\"],\"74MNbw\":[\"Ctrl IQ, Inc.\"],\"764xeZ\":[\"N'a pas réussi à mettre à jour l'enquête.\"],\"7Bj3x9\":[\"Échec\"],\"7ElOdS\":[\"ID du tableau de bord (facultatif)\"],\"7IUE9q\":[\"Variables sources\"],\"7JF9w9\":[\"Ajouter une question\"],\"7L01XJ\":[\"Actions\"],\"7O5TcN\":[\"Récapitulatif de l’événement non disponible\"],\"7PzzBU\":[\"User\"],\"7UZtKb\":[\"L'organisation propriétaire de ce modèle de tâche de flux de travail.\"],\"7VETeB\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"],\"7VpPHA\":[\"Confirmer\"],\"7Xk3M1\":[\"Sélectionnez le projet contenant le playbook que vous souhaitez que ce job exécute.\"],\"7ZhNzL\":[\"Allez à la première page\"],\"7b8TOD\":[\"détails\"],\"7bDeKc\":[\"Manifeste de souscription\"],\"7fJwmW\":[\"Liste des éléments sélectionnés.\"],\"7hS02I\":[[\"automatedInstancesCount\"],\" depuis \",[\"automatedInstancesSinceDateTime\"]],\"7icMBj\":[\"Aucune donnée de tâche disponible.\"],\"7kb4LU\":[\"Approuvé\"],\"7p5kLi\":[\"Tableau de bord\"],\"7q256R\":[\"Autoriser le remplacement de la branche\"],\"7qFdk8\":[\"Modifier les informations d’identification\"],\"7sMeHQ\":[\"Clé\"],\"7sNhEz\":[\"Nom d'utilisateur\"],\"7w3QvK\":[\"Corps du message de réussite\"],\"7wgt9A\":[\"Exécution du playbook\"],\"7zmvk2\":[\"Échec de l'élément\"],\"81eOdm\":[\"relancer le flux de travail\"],\"82O8kJ\":[\"Ce projet est actuellement en cours de synchronisation et ne peut pas être cliqué tant que le processus de synchronisation n'est pas terminé\"],\"82sWFi\":[\"Administration\"],\"84Usx_\":[\"N'a pas réussi à supprimer le projet.\"],\"87a_t_\":[\"Libellé\"],\"88ip8h\":[\"Tout rétablir\"],\"8BkLPF\":[\"Liste d'URI autorisés, séparés par des espaces\"],\"8F8HYs\":[\"Sélectionnez votre abonnement à la Plateforme d'Automatisation Ansible à utiliser.\"],\"8H3Igx\":[[\"interval\"],\" month\"],\"8Oef5v\":[\"Voici des exemples d'URL pour le contrôle de source GIT :\"],\"8XM8GW\":[\"Impossible d'assigner les rôles correctement\"],\"8Z236a\":[\"logo de la marque\"],\"8ZsakT\":[\"Mot de passe\"],\"8_wZUD\":[\"Rôles d’équipe\"],\"8d57h8\":[\"Voir les paramètres divers du système\"],\"8gCRbU\":[\"Autres invites\"],\"8gaTqG\":[\"Détails sur le type\"],\"8kDNpI\":[\"Le résultat du nœud parent est requis avant l'évaluation de la condition.\"],\"8l9yyw\":[\"Modèle de Job\"],\"8lEjQX\":[\"Installer Bundle\"],\"8lb4Do\":[\"Effacer l'abonnement\"],\"8oiwP_\":[\"Configuration de l'entrée\"],\"8p_xVT\":[[\"0\",\"plural\",{\"one\":[[\"1\"]],\"other\":[[\"2\"]]}]],\"8u5g0S\":[\"Supprimer l'inventaire smart\"],\"8vETh9\":[\"Afficher\"],\"8wxHsh\":[\"Clé du webhook pour ce modèle de tâche de flux de travail.\"],\"8yd882\":[\"N'a pas réussi à dissocier une ou plusieurs équipes.\"],\"8zGO4o\":[\"Le champ correspond à l'expression régulière donnée.\"],\"8zoIOi\":[[\"0\",\"plural\",{\"one\":[\"This credential type is currently being used by some credentials and cannot be deleted.\"],\"other\":[\"Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?\"]}]],\"8zvzWO\":[\"Autorisez les exécutions simultanées de ce modèle de tâche de flux de travail.\"],\"9-wVFp\":[\"Voir les détails de l'inventaire fédéré\"],\"91UHfE\":[\"Mise à jour de l'inventaire\"],\"91lyAf\":[\"Jobs parallèles\"],\"933cZy\":[\"Réglages divers du système\"],\"954HqS\":[\"Quand l'hôte a-t-il été automatisé pour la première fois\"],\"95p1BK\":[\"Créer un nouvel utilisateur\"],\"98Qtlu\":[\"Chaque fois qu'un job s'exécute à l'aide de ce projet, mettez à jour la révision du projet avant de démarrer le job.\"],\"991Df5\":[\"a new webhook key will be generated on save.\"],\"99qC6z\":[[\"interval\"],\" week\"],\"9Ah95g\":[[\"0\",\"plural\",{\"one\":[\"Cet inventaire est actuellement utilisé par certains modèles. Êtes-vous sûr de vouloir le supprimer ?\"],\"other\":[\"La suppression de ces inventaires pourrait avoir un impact sur certains modèles qui en dépendent. Êtes-vous sûr de vouloir quand même les supprimer ?\"]}]],\"9BTNYL\":[\"Expected at least one of client_email, project_id or private_key to be present in the file.\"],\"9BpfLa\":[\"Sélectionner les libellés\"],\"9DOXq6\":[\"Voir tous les modèles.\"],\"9DugxF\":[\"Type d’abonnement\"],\"9HhFQ8\":[\"Renvoie les résultats qui ont des valeurs autres que celle-ci ainsi que les autres filtres.\"],\"9L1ngr\":[\"Total Jobs\"],\"9N-4tQ\":[\"Type d'informations d’identification\"],\"9NyAH9\":[\"Ignoré\"],\"9PB0sF\":[\"IRC\"],\"9Rsklx\":[\"Supprimer tous les nœuds\"],\"9Tmez1\":[\"Voir les détails de l'instance\"],\"9UuGMQ\":[\"En attente de suppression\"],\"9V-Un3\":[\"Utiliser le cache des facts\"],\"9VMv7k\":[\"Inventaire construit\"],\"9Wm-J4\":[\"Changer de mot de passe\"],\"9XA1Rs\":[\"Le projet est en cours de synchronisation et la révision sera disponible une fois la synchronisation terminée.\"],\"9Y3BQE\":[\"Supprimer l'organisation\"],\"9YSB0Z\":[\"Il manque un inventaire pour cette programmation d’horaire\"],\"9ZnrIx\":[\"Afficher et modifier les informations relatives à votre abonnement\"],\"9fRa7M\":[\"Sélectionnez une ligne à supprimer\"],\"9hmrEp\":[\"Relancer sur\"],\"9iX1S0\":[\"Cette action supprimera l'instance suivante et vous devrez peut-être réexécuter le paquet d'installation pour toute instance précédemment connectée à\xA0:\"],\"9jfn-S\":[\"N'est pas élargi\"],\"9l0RZY\":[\"Cliquez sur un nœud disponible pour créer un nouveau lien. Cliquez en dehors du graphique pour annuler.\"],\"9m7jms\":[\"Inventaires sources dont les hôtes seront acheminés vers leurs groupes d'instances respectifs lorsqu'un job est lancé contre cet inventaire fédéré.\"],\"9mfJJf\":[\"Modèles de Jobs\"],\"9nhhVW\":[\"pages\"],\"9nypdt\":[\"Rétablir la valeur initiale.\"],\"9odS2n\":[\"Échec Hôtes\"],\"9og-0c\":[\"Cet environnement d'exécution est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?\"],\"9rFgm2\":[\"Capacité d'abonnement\"],\"9rvzNA\":[\"Association modale\"],\"9td1Wl\":[\"Vérifier\"],\"9uI_rE\":[\"Annuler\"],\"9u_dDE\":[\"Nombre d'hôtes inaccessibles\"],\"9uxVdR\":[\"Identifiant Contrôle de la source\"],\"9wvWk3\":[\"Cette entrée d'inventaire construit \\n crée un groupe pour les deux catégories et utilise \\n la limite (modèle d'hôte) pour ne renvoyer que les hôtes qui \\n se trouvent à l'intersection de ces deux groupes.\"],\"A1a8Ku\":[\"Erreur de lancement d'un job de gestion\"],\"A1taO8\":[\"Rechercher\"],\"A3o0Xd\":[\"Sélectionnez les groupes d'instances sur lesquels exécuter cette organisation.\"],\"A6paZd\":[\"Ajouter un inventaire fédéré\"],\"A8lIi2\":[\"Synchronisation pour la révision\"],\"A9-PUr\":[\"Demande(s) de bilan de santé soumise(s). Veuillez patienter et recharger la page.\"],\"AA2ASV\":[\"Environnement d'exécution copié\"],\"ADVQ46\":[\"Connexion\"],\"ARAUFe\":[\"Supprimer l’inventaire\"],\"AV22aU\":[\"Quelque chose a mal tourné...\"],\"AWOSPo\":[\"Zoom avant\"],\"Ab1y_G\":[\"Annuler la synchronisation de la source d'inventaire construite\"],\"AgTBbk\":[[\"intervalValue\",\"plural\",{\"one\":[\"week\"],\"other\":[\"weeks\"]}]],\"AgTuXC\":[\"Vous n'avez pas l'autorisation de supprimer : \",[\"pluralizedItemName\"],\": \",[\"itemsUnableToDelete\"]],\"Ai2U7L\":[\"Hôte\"],\"Aj3on1\":[\"Activer la journalisation externe\"],\"AoCBvp\":[\"Tranche de job\"],\"Apl-Vf\":[\"Manifeste de souscription à Red Hat\"],\"Apv-R1\":[\"Si vous êtes prêts à mettre à niveau ou à renouveler, veuillez<0>nous contacter.\"],\"AqdlyH\":[\"Les modèles de Job dont les informations d'identification demandent un mot de passe ne peuvent pas être sélectionnés lors de la création ou de la modification de nœuds\"],\"ArtxnQ\":[\"Refspec Contrôle de la source\"],\"AsLVdj\":[\"Utilisez un canal IRC ou un nom d'utilisateur par ligne. Le symbole\\n dièse (#) pour les canaux et le symbole arobase (@) pour les utilisateurs ne sont pas\\n requis.\"],\"AwUsnG\":[\"Instances\"],\"AxC8wb\":[\"Copier la sortie\"],\"AxPAXW\":[\"Aucun résultat trouvé\"],\"Axi4f8\":[\"Dragging item \",[\"id\"],\". Item with index \",[\"oldIndex\"],\" in now \",[\"newIndex\"],\".\"],\"Azw0EZ\":[\"Créer un nouvel inventaire smart\"],\"B0HFJ8\":[\"N'a pas réussi à dissocier un ou plusieurs hôtes.\"],\"B0P3qo\":[\"ID JOB :\"],\"B0dbFG\":[\"Supprimer la programmation\"],\"B2Zb_F\":[\"JSON\"],\"B3ZzHO\":[\"Dernière automatisation\"],\"B4WcU9\":[\"Approuvé par \",[\"0\"],\" - \",[\"1\"]],\"B7FU4J\":[\"Hôte démarré\"],\"B8bpYS\":[\"Téléchargez un manifeste d'abonnement Red Hat contenant votre abonnement. Pour générer votre manifeste d'abonnement, accédez à <0>subscription allocations (octroi d’allocations) sur le portail client de Red Hat.\"],\"BAmn8K\":[\"Sélectionnez un type de ressource\"],\"BERhj_\":[\"Message de réussite\"],\"BGNDgh\":[\"Alias de nœud\"],\"BH7upP\":[\"PUBLICATION\"],\"BIJ2_m\":[\"L'environnement d'exécution qui sera utilisé pour les tâches au sein de cette organisation. Il sera utilisé comme solution de repli lorsqu'aucun environnement d'exécution n'a été explicitement attribué au niveau du projet, du modèle de tâche ou du flux de travail.\"],\"BNDplB\":[\"Modèle copié\"],\"BWTzAb\":[\"Manuel\"],\"BaPk6N\":[\"Chemin de base utilisé pour localiser les playbooks. Les répertoires trouvés dans ce chemin seront répertoriés dans la liste déroulante du répertoire des playbooks. Ensemble, le chemin de base et le répertoire de playbook sélectionné fournissent le chemin complet utilisé pour localiser les playbooks.\"],\"BfYq0G\":[\"Type de Contrôle de la source\"],\"Bg7M6U\":[\"Aucun résultat trouvé\"],\"Bl2Djq\":[\"Voir les jetons\"],\"Bl2eoO\":[\"CHIFFRÉ\"],\"BskWMl\":[\"Inaccessible\"],\"BsrdSv\":[\"Entrez les variables d'inventaire en utilisant la syntaxe JSON ou YAML. Utilisez le bouton d'option pour basculer entre les deux. Référez-vous à la documentation du contrôleur Ansible pour les exemples de syntaxe.\"],\"Bv8zdm\":[\"Inventaires des intrants\"],\"BwJKBw\":[\"de\"],\"Bz7WRU\":[[\"0\",\"plural\",{\"one\":[\"Veuillez saisir un numéro de téléphone valide.\"],\"other\":[\"Veuillez saisir des numéros de téléphone valides.\"]}]],\"BzEFor\":[\"ou\"],\"BzbzJb\":[\"Facts\"],\"BzfzPK\":[\"Éléments\"],\"C-gr_n\":[\"Paramètres AD Azure\"],\"C0sUgI\":[\"Créer un nouvel inventaire\"],\"C2KEkR\":[\"Mot de passe SSH\"],\"C3Q1LZ\":[\"Voir les paramètres de l'OIDC\"],\"C4C-qQ\":[\"Détails de programmation\"],\"C6GAUT\":[\"Est élargi\"],\"C7dP40\":[\"N'a pas réussi à refuser \",[\"0\"],\".\"],\"C7s60U\":[\"Détails de webhook\"],\"CAL6E9\":[\"Équipes\"],\"CDOlBM\":[\"ID d'instance\"],\"CE-M2e\":[\"Info\"],\"CGOseh\":[\"Détails de programmation\"],\"CGZgZY\":[\"Sélectionnez une ligne à dissocier\"],\"CG_9l6\":[\"LDAP 1\"],\"CGwKKr\":[[\"0\",\"plural\",{\"one\":[\"Supprimer le groupe ?\"],\"other\":[\"Supprimer les groupes ?\"]}]],\"CIEoqM\":[\"Nom de l’Instance\"],\"CKc7jz\":[\"Détails sur l'hôte modal\"],\"CL7QiF\":[\"Saisir la réponse puis cliquez sur la case à cocher à droite pour sélectionner la réponse comme défaut.\"],\"CLTHnk\":[\"Ordre des questions de l’enquête\"],\"CMmwQ-\":[\"Date de début inconnue\"],\"CNZ5h9\":[\"Durée de conservation des données\"],\"CS8u6E\":[\"Activer le webhook\"],\"CSvk3a\":[\"Le numéro associé au « Service de\\n messagerie » dans Twilio, au format +18005550199.\"],\"CW11B-\":[\"Minimum\"],\"CXJHPJ\":[\"Modifié par (nom d'utilisateur)\"],\"CZDqWd\":[\"La révision du projet est actuellement périmée. Veuillez actualiser pour obtenir la révision la plus récente.\"],\"CZg9aH\":[\"Sélectionner les hôtes\"],\"C_Lu89\":[\"Entrez les variables avec la syntaxe JSON ou YAML. Consultez la documentation sur le contrôleur Ansible pour avoir un exemple de syntaxe.\"],\"C_NnqT\":[\"Créer un nouvel hôte\"],\"Cc8jO8\":[\"Sélectionnez les informations d’identification qu’il vous faut utiliser lors de l’accès à des hôtes distants pour exécuter la commande. Choisissez les informations d’identification contenant le nom d’utilisateur et la clé SSH ou le mot de passe dont Ansible aura besoin pour se connecter aux hôtes distants.\"],\"CcKMRv\":[\"Ce modèle de poste est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?\"],\"CczdmZ\":[\"Voir toutes les informations d’identification.\"],\"CdGRti\":[\"Voir tous les modèles de notification.\"],\"Ce28nP\":[\"<0>Remarque\xA0: les instances peuvent être réassociées à ce groupe d'instances si elles sont gérées par des <1> règles de politique.\"],\"Cev3QF\":[\"Délai d'attente (minutes)\"],\"ChTa9Z\":[[\"intervalValue\",\"plural\",{\"one\":[\"hour\"],\"other\":[\"hours\"]}]],\"CoPs3y\":[\"Ce flux de travail ne comporte aucun nœud configuré.\"],\"CoTqdo\":[\"\\n Note that you may still see the group in the list after\\n disassociating if the host is also a member of that group’s\\n children. This list shows all groups the host is associated\\n with directly and indirectly.\\n \"],\"Coyxic\":[\"Cliquez sur ce bouton pour vérifier la connexion au système de gestion du secret en utilisant le justificatif d'identité sélectionné et les entrées spécifiées.\"],\"Cs0oSA\":[\"Afficher les paramètres\"],\"Csvbqs\":[\"voir les documents du plugin d'inventaire construit ici.\"],\"Cx8SDk\":[\"Actualiser l’expiration du jeton\"],\"D-NlUC\":[\"Système\"],\"D1JWCq\":[[\"interval\"],\" minutes\"],\"D4euEu\":[\"Paramètres d'authentification divers\"],\"D89zck\":[\"Dim.\"],\"DBBU2q\":[\"Au moins une valeur doit être sélectionnée pour ce champ.\"],\"DBC3t5\":[\"Dimanche\"],\"DBHTm_\":[\"Août\"],\"DFNPK8\":[\"Bilan de fonctionnement\"],\"DGZ08x\":[\"Tout sync\"],\"DHf0mx\":[\"Créer une nouvelle instance\"],\"DHrOgD\":[\"Statut de Mise à jour du projet\"],\"DIKUI7\":[\"Longueur minimale\"],\"DIX823\":[\"Ce champ doit être un nombre et avoir une valeur inférieure à \",[\"max\"]],\"DJIazz\":[\"Approuvé avec succès\"],\"DNLiC8\":[\"Inverser les paramètres\"],\"DNqHaO\":[\"Ce tableau fournit quelques paramètres utiles du plugin\\n d'inventaire construit. Pour la liste complète des paramètres \"],\"DPfwMq\":[\"Terminé\"],\"DV-Xbw\":[\"Langue préférée\"],\"DVIUId\":[\"Invite Remplacements\"],\"DZNGtI\":[\"Résultats de l'extraction du projet\"],\"D_oBkC\":[\"GitHub Team\"],\"DdlJTq\":[\"Correspondance exacte (recherche par défaut si non spécifiée).\"],\"De2WsK\":[\"Cette action permettra de dissocier tous les rôles de cet utilisateur des équipes sélectionnées.\"],\"DhSza7\":[\"Noeud du contrôleur\"],\"DnkUe2\":[\"Choisir un service de webhook\"],\"DqnAO4\":[\"Hôtes automatisés\"],\"Du6bPw\":[\"Adresse\"],\"Dug0C-\":[\"Après le nombre d'occurrences\"],\"DyYigF\":[\"Paramètres de la TACACS\"],\"Dz7fsq\":[\"Zoom avant\"],\"E6Z4zF\":[\"Format de fichier non valide. Veuillez télécharger un manifeste d'abonnement à Red Hat valide.\"],\"E86aJB\":[\"Dissocier le rôle !\"],\"E9wN_Q\":[\"Dernier bilan de fonctionnement\"],\"EH6-2h\":[\"Vue topologique\"],\"EHu0x2\":[\"Synchronisation\"],\"EIBcgD\":[\"Provenance d'un projet\"],\"EIkRy0\":[\"Canaux de destination\"],\"EJQLCT\":[\"N'a pas réussi à supprimer le modèle de flux de travail.\"],\"ENDbv1\":[\"Voir tous les hôtes.\"],\"ENRWp9\":[\"Balises pour l'annotation\"],\"ENyw54\":[\"Groupes liés\"],\"EP-eCv\":[\"Paramètres SAML\"],\"EQ-qsg\":[\"Modèles de Jobs de flux de travail\"],\"ES0WE_\":[\"En cas d'expiration\"],\"ETUQuF\":[\"N'a pas réussi à supprimer un ou plusieurs inventaires.\"],\"EWL-h4\":[\"description-hôte-\",[\"0\"]],\"E_QGRL\":[\"Désactivés\"],\"E_tJey\":[\"Environnement d'exécution par défaut\"],\"Eb5CN1\":[[\"0\",\"plural\",{\"one\":[\"This organization is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"EdQY6l\":[\"Aucun\"],\"Eff_76\":[\"Fuseau horaire local\"],\"Eg4kGP\":[\"Réponse(s) par défaut\"],\"EmSrGB\":[\"Avant\"],\"EmfKjn\":[\"Réglages de dépannage\"],\"Emna_v\":[\"Modifier la source\"],\"EmzUsN\":[\"Voir les détails de nœuds\"],\"EnC3hS\":[\"Spécifications des pods personnalisés\"],\"EpH7Cd\":[\"Supprimer les informations d’identification\"],\"Eq6_y5\":[\"this Tower documentation page\"],\"Eqp9wv\":[\"Voir des exemples JSON sur\"],\"EwxKbE\":[\"SUPPRIMÉ\"],\"EzwCw7\":[\"Modifier la question\"],\"F-0xxR\":[\"Ressources manquantes dans ce modèle.\"],\"F-LGli\":[\"Vous n'avez pas la permission de dissocier les éléments suivants : \",[\"itemsUnableToDisassociate\"]],\"F-_-es\":[\"Sélectionner les instances\"],\"F0xJYs\":[\"Échec de la mise à jour de l'ajustement des capacités.\"],\"F2l57P\":[\"Pourcentage minimum de toutes les instances qui seront automatiquement\\n attribuées à ce groupe lorsque de nouvelles instances seront mises en ligne.\"],\"FCnKmF\":[\"Créer un jeton d'utilisateur\"],\"FD8Y9V\":[\"Cliquer sur un icône de noeud pour voir les détails.\"],\"FEr96N\":[\"Thème\"],\"FFv0Vh\":[\"Automatisation\"],\"FG2mko\":[\"Sélectionnez les éléments de la liste\"],\"FGnH0p\":[\"Cela annulera tous les nœuds suivants dans ce flux de travail.\"],\"FMpB-A\":[\"<0>Remarque\xA0: les instances associées manuellement peuvent être automatiquement dissociées d'un groupe d'instances si l'instance est gérée par des <1> règles de politique.\"],\"FO7Rwo\":[\"Supprimer des pairs\xA0?\"],\"FQto51\":[\"Développer toutes les lignes\"],\"FTuS3P\":[\"Ce champ ne doit pas être vide\"],\"FV5MUV\":[\"Si les utilisateurs ont besoin de retours sur l'exactitude\\n de leurs groupes construits, il est fortement recommandé\\n d'utiliser strict: true dans la configuration du plugin.\"],\"FXmp8Q\":[\"N'a pas réussi à associer le rôle\"],\"FYJRCY\":[\"N'a pas réussi à supprimer un ou plusieurs projets.\"],\"F_Nk65\":[\"Télécharger la sortie\"],\"F_c3Jb\":[\"Spécification pod Kubernetes ou OpenShift personnalisée.\"],\"Failed\":[\"Échec\"],\"Fanpmj\":[\"Variables demandées\"],\"FblMFO\":[\"Sélectionnez une métrique\"],\"FclH3w\":[\"Enregistrement réussi\"],\"FfGhiE\":[\"Erreur lors de la sauvegarde du flux de travail !\"],\"FhTYgi\":[\"N'a pas réussi à supprimer un ou plusieurs modèles de Jobs.\"],\"FhhvWu\":[\"Cela annulera tous les nœuds suivants dans ce flux de travail.\"],\"FiyMaa\":[\"Choisissez un fichier .json\"],\"FjVFQ-\":[\"Choisissez un module\"],\"FjkaiT\":[\"Zoom arrière\"],\"FkQvI0\":[\"Modifier le modèle\"],\"FlvpdU\":[\"If enabled, show the changes made\\n by Ansible tasks, where supported. This is equivalent to Ansible’s\\n --diff mode.\"],\"FnSb-y\":[\"Annuler Job\"],\"FnZzou\":[\"État de l'instance\"],\"FncCci\":[\"RADIUS\"],\"Fo2bwm\":[\"Acteur\"],\"Fo6qAq\":[\"Voici des exemples d'URL pour le contrôle de source Subversion :\"],\"Fp0Rk4\":[\"Étiquettes facultatives décrivant cet inventaire,\\n telles que 'dev' ou 'test'. Les étiquettes peuvent être utilisées pour regrouper et filtrer\\n les inventaires et les jobs terminés.\"],\"FqW8E0\":[\"Capacité utilisée\"],\"FsGJXJ\":[\"Nettoyer\"],\"Fx2-x_\":[\"Ajouter des rôles d'utilisateur\"],\"G-jHgL\":[\"Définir le chemin source à\"],\"G2KpGE\":[\"Modifier le projet\"],\"G3myU-\":[\"Mardi\"],\"G768_0\":[\"refusé\"],\"G8jcl6\":[\"Modèles de notification\"],\"G9MOps\":[\"Branche à utiliser pour la synchronisation de l'inventaire. La valeur par défaut du projet est utilisée si elle est vide. Cette option n'est autorisée que si le champ allow_override du projet est défini sur vrai.\"],\"GDvlUT\":[\"Rôle\"],\"GGWsTU\":[\"Annulé\"],\"GGuAXg\":[\"Voir les paramètres SAML\"],\"GHDQ7i\":[\"N'a pas réussi à supprimer une ou plusieurs organisations.\"],\"GJKwN0\":[\"Programmations\"],\"GLZDtF\":[\"Avertissement système\"],\"GLwo_j\":[\"0 (Avertissement)\"],\"GMaU6_\":[\"Demander le type de tâche au lancement.\"],\"GO6s6F\":[\"Paramètres Job\"],\"GRwtth\":[\"Exécuter un contrôle de vérification de fonctionnement sur l'instance\"],\"GSYBQc\":[\"Service API/Clé d’intégration\"],\"GTOcxw\":[\"Modifier l’utilisateur\"],\"GU9vaV\":[\"Hôtes inaccessibles\"],\"GXiLKo\":[\"Zone de texte\"],\"GZIG7_\":[\"Inventaire copié\"],\"G_Dwo_\":[\"Choose an answer type or format you want as the prompt for the user.\\n Refer to the Ansible Controller Documentation for more additional\\n information about each option.\"],\"GaJLE6\":[\"Initié par\"],\"Gd-B71\":[\"Type d'informations d’identification non trouvé.\"],\"Ge5ecx\":[\"Hôtes max.\"],\"GeIrWJ\":[[\"brandName\"],\" logo\"],\"Gf3vm8\":[\"par page\"],\"GiXRTS\":[\"N'a pas réussi à supprimer un ou plusieurs jetons d'utilisateur.\"],\"Gix1h_\":[\"Voir tous les Jobs\"],\"GkbHM9\":[\"Voir tous les projets.\"],\"Gn7TK5\":[\"Basculer les outils\"],\"GpNoVG\":[\"Veuillez ajouter une programmation pour remplir cette liste\"],\"GpWp6E\":[\"Définir les fonctions et fonctionnalités niveau système\"],\"GtycJ_\":[\"Tâches\"],\"H0z3JJ\":[\"Ces arguments sont utilisés avec le module spécifié. Vous pouvez trouver des informations sur \",[\"moduleName\"],\" en cliquant \"],\"H1M6a6\":[\"Afficher toutes les instances.\"],\"H3kCln\":[\"Nom d'hôte\"],\"H6jbKn\":[\"Paramètres de l'interface utilisateur\"],\"H7OUPr\":[\"Jour\"],\"H7e4dl\":[\"Fournissez des paires clé/valeur en utilisant soit\\n YAML soit JSON.\"],\"H86f9p\":[\"Effondrement\"],\"H9MIed\":[\"Nœud d'exécution\"],\"HAi1aX\":[\"Mettre à jour la clé de webhook\"],\"HAzhV7\":[\"Informations d’identification\"],\"HDULRt\":[\"Hôtes uniques\"],\"HGOtRu\":[\"Le test de notification a échoué.\"],\"HIfMSF\":[\"Options à choix multiples.\"],\"HLAK2g\":[\"This action will cancel the following jobs:\"],\"HODq3s\":[\"Échec du refus d'une ou plusieurs validations de flux de travail.\"],\"HQ7e8y\":[\"Version non sensible à la casse de exact.\"],\"HQ7oEt\":[\"Retour Haut de page\"],\"HUx6pW\":[\"Configuration d'Injector\"],\"HajiZl\":[\"Mois\"],\"HbaQks\":[\"Saisir une adresse email par ligne pour créer une liste des destinataires pour ce type de notification.\"],\"HbnjOn\":[[\"interval\"],\" weeks\"],\"HcznyH\":[\"N'a pas réussi à synchroniser une partie ou la totalité des sources d'inventaire.\"],\"HdE1If\":[\"Canal\"],\"HdErwL\":[\"Sélectionnez une ligne à approuver\"],\"Hf0QDK\":[\"Projet copié\"],\"Hhnh8d\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" jour\"],\"other\":[\"#\",\" jours\"]}]],\"HiTf1W\":[\"Annuler le retour\"],\"HjxnnB\":[\"sélectionner un module\"],\"HlhZ5D\":[\"Utiliser TLS\"],\"HoHveO\":[\"Renvoie les résultats qui satisfont celui-ci ainsi que les autres filtres. Il s'agit du type d'ensemble par défaut si rien n'est sélectionné.\"],\"HpK_8d\":[\"Rechargez\"],\"Ht1JWm\":[\"Couleur des notifications\"],\"HwpTx4\":[\"Contrôlez le niveau de sortie qu'ansible produira lors de l'exécution du playbook.\"],\"I0LRRn\":[\"Téléchargement du Bundle\"],\"I7Epp-\":[\"Détails de l'option\"],\"I9NouQ\":[\"Aucun abonnement trouvé\"],\"ICi4pv\":[\"Automatisation\"],\"ICt7Id\":[\"Type de nœud\"],\"IEKPuq\":[\"Faites défiler la page suivante\"],\"IGQ11b\":[\"Secret partagé avec le service de webhook. Le service l'utilise pour signer ses requêtes, afin que seul votre dépôt puisse déclencher une synchronisation du projet. Saisissez votre propre secret pour le gérer en tant que configuration, ou laissez le champ vide pour en générer un lors de l'enregistrement.\"],\"IJAVcb\":[\"Retour aux applications\"],\"IKg_un\":[\"Canaux ou utilisateurs de destination\"],\"IMJYui\":[\"Utilisez un numéro de téléphone par ligne pour spécifier où\\n acheminer les messages SMS. Les numéros de téléphone doivent être au format +11231231234. Pour plus d'informations, consultez la documentation de Twilio\"],\"IN6gbp\":[\"Cliquez pour réorganiser l'ordre des questions de l'enquête\"],\"IPusY8\":[\"Supprimez toutes les modifications locales avant d'effectuer une mise à jour.\"],\"ISuwrJ\":[\"Modifier l'environnement d'exécution\"],\"IV0EjT\":[\"Notification test\"],\"IVvM2B\":[\"Options activées\"],\"IWoF_f\":[\"Afficher le questionnaire\"],\"IZfe0p\":[\"branche du contrôle de la source\"],\"Igz8MU\":[\"Les deux dernières semaines\"],\"IiR1sT\":[\"Type de nœud\"],\"IjDwKK\":[\"type de connexion\"],\"Ikhk0q\":[\"Service de webhook pour ce modèle de tâche de flux de travail.\"],\"Iqm2E5\":[\"Veuillez ajouter \",[\"pluralizedItemName\"],\" pour remplir cette liste\"],\"IrC12v\":[\"Application\"],\"IrI9pg\":[\"Date de fin\"],\"IsJ8i6\":[\"Sélectionnez une branche pour le workflow. Cette branche est appliquée à tous les nœuds de modèle de job qui demandent une branche.\"],\"IspLSK\":[\"Job de gestion non trouvé.\"],\"J0zi6q\":[\"Balises de sauts\"],\"J2HgCR\":[\"Red Hat, Inc.\"],\"J2d1y8\":[\"Filtrer par tâches ayant réussi\"],\"J4y7Uk\":[\"Flux de travail annulé \"],\"J8VgfD\":[\"Vérifiez si le champ donné ou l'objet connexe est nul ; attendez-vous à une valeur booléenne.\"],\"JEGlfK\":[\"Démarré\"],\"JFnJqF\":[\"Écoulé\"],\"JFphCp\":[\"3 (Déboguer)\"],\"JGvwnU\":[\"Dernière utilisation\"],\"JIX50w\":[\"Empêcher le repli du groupe d'instances : si activé, le modèle de job empêchera l'ajout de groupes d'instances d'inventaire ou d'organisation à la liste des groupes d'instances préférés sur lesquels s'exécuter.\"],\"JJwEMx\":[\"Hôtes supprimés\"],\"JKZTiL\":[\"Il s'agit des niveaux de verbosité pour les standards hors du cycle de commande qui sont pris en charge.\"],\"JL3si7\":[\"Mise à jour en cours\"],\"JLjfEs\":[\"N'a pas réussi à supprimer une ou plusieurs programmations.\"],\"JOmgRg\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" mois\"],\"other\":[\"#\",\" mois\"]}]],\"JRa4kV\":[\"Synchronisez le projet lorsqu'un push se produit dans le dépôt de contrôle de source, afin que la copie locale soit toujours à jour sans interrogation ni mise à jour à chaque lancement de job.\"],\"JTHoCu\":[\"basculer les changements\"],\"JUwjsw\":[\"Select an activity type\"],\"JXgd33\":[\"Naviguer vers le tableau de bord\"],\"J_2nGO\":[\"The execution environment that will be used for jobs\\n inside of this organization. This will be used a fallback when\\n an execution environment has not been explicitly assigned at the\\n project, job template or workflow level.\"],\"J_DUZt\":[\"Groupes d'instances\"],\"Ja4VHl\":[[\"0\"],\" plus\"],\"JgP090\":[\"Suivi des sous-modules\"],\"JjcTk5\":[\"Connexion sociale\"],\"JjfsZM\":[\"Supprimer l'approbation du flux de travail\"],\"JppQoT\":[\"Date du dernier recalcul\xA0:\"],\"JsY1p5\":[\"Refusé\"],\"Jvv6rS\":[\"Options à choix multiples.\"],\"JwqOfG\":[\"Évaluer sur\"],\"Jy9qCv\":[\"annuler modifier connecter rediriger\"],\"K5AykR\":[\"Supprimer l’équipe\"],\"K93j4j\":[\"Nom du label\"],\"KC2nS5\":[\"Ressource supprimée\"],\"KDcLJ6\":[\"YAML :\"],\"KEY0qH\":[\"Test passé\"],\"KM6m8p\":[\"Team\"],\"KNOsJ0\":[\"Étiquettes facultatives décrivant ce modèle de job, telles que « dev » ou « test ». Les étiquettes peuvent être utilisées pour regrouper et filtrer les modèles de job et les jobs terminés.\"],\"KQ9EQm\":[\"Comment utiliser le plugin d'inventaire construit\"],\"KR9Aiy\":[\"This inventory is currently being used by some templates. Are you sure you want to delete it?\"],\"KRf0wm\":[\"Types d'informations d'identification\"],\"KTvwHj\":[\"Sources d'entrée des informations d'identification\"],\"KVbzjm\":[\"Visualiseur\"],\"KXFYp9\":[\"Obtenir un abonnement\"],\"KXnokb\":[\"L'environnement d'exécution disponible globalement ne peut pas être réaffecté à une organisation spécifique\"],\"KZp4lW\":[\"Lookup select\"],\"K_MYeX\":[\"Voir les détails de l'utilisateur\"],\"KeRkFA\":[\"Effacer la sélection d'abonnement\"],\"KeqCdz\":[\"Pairs des nœuds de contrôle\"],\"Ki_j_-\":[\"Laissez vide pour générer une nouvelle clé de webhook lors de l'enregistrement\"],\"KjBkMe\":[\"Ce groupe de conteneurs est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?\"],\"KjVvNP\":[\"ID du panneau (facultatif)\"],\"KkMfgW\":[\"Modèles de Jobs\"],\"KkzJWF\":[\"Première automatisation\"],\"KlQd8_\":[\"Spécifier le champ d'application du jeton\"],\"KnN1Tu\":[\"Expire\"],\"KoCnPE\":[\"Annuler le job\"],\"KopV8H\":[\"Afficher uniquement les groupes racines\"],\"KxIA0h\":[\"Basculer l'hôte\"],\"Kz9DSl\":[\"Ajouter une hôte existant\"],\"KzQFvE\":[\"Modifier l'organisation\"],\"L1Ob4t\":[\"Onglet Détails\"],\"L3ooU6\":[\"Information d’identification\"],\"L7Nz3F\":[\"Ressource manquante\"],\"L8fEEm\":[\"Groupe\"],\"L973Qq\":[\"Demande d’abonnement\"],\"LCl8Ck\":[\"Saisie de recherche par date\"],\"LGl_pR\":[\"Voir les paramètres des Jobs\"],\"LGryaQ\":[\"Créer de nouvelles informations d’identification\"],\"LQ29yc\":[\"Démarrer la synchronisation de la source d'inventaire\"],\"LQRys9\":[\"Les sous-modules suivront le dernier commit sur leur branche master (ou une autre branche spécifiée dans .gitmodules). Si non, les sous-modules seront conservés à la révision spécifiée par le projet principal. Cela équivaut à spécifier l'option --remote à git submodule update.\"],\"LQTgjH\":[\"Projet non trouvé.\"],\"LRePxk\":[\"Nombre minimum d'instances qui seront automatiquement attribuées à ce groupe lorsque de nouvelles instances seront mises en ligne.\"],\"LSUePQ\":[\"Lancer | \",[\"0\"]],\"LULLsO\":[\"Voir toutes les organisations.\"],\"LV5a9V\":[\"Pairs\"],\"LVecP9\":[\"Rôles des utilisateurs\"],\"LYAQ1X\":[\"Activer les tâches parallèles\"],\"LZr1lR\":[\"Groupe d'instance non trouvé.\"],\"Lc0RHh\":[\"Supprimer la programmation\"],\"LgD0Cy\":[\"Nom d'application\"],\"LhMjLm\":[\"Durée\"],\"Ll7Jei\":[\"LDAP3\"],\"LnYbGj\":[\"Modifier le questionnaire\"],\"Lnnjmk\":[\"<0><1/> Un aperçu technique de la nouvelle \",[\"brandName\"],\" interface utilisateur peut être trouvé <2>ici.\"],\"Lqygiq\":[\"Rappels d’exécution \"],\"LtBtED\":[\"Succès de la notification de basculement\"],\"LuXP9q\":[\"Accès\"],\"LwHwt1\":[\"Abonnement \",[\"brandName\"]],\"Lwovp8\":[\"Si activé, les exécutions simultanées de ce modèle de job seront autorisées.\"],\"M0okDw\":[\"Définissez des préférences pour la collection des données, les logos et logins.\"],\"M73whl\":[\"Contexte\"],\"MA-mp9\":[\"Filtre de référence de webhook\"],\"MA7cMf\":[\"Tableau des paramètres de l'inventaire construit\"],\"MAI_nw\":[\"Veuillez sélectionner une autre recherche par le filtre ci-dessus\"],\"MAV-SQ\":[\"Informations d'identification introuvables.\"],\"MApRef\":[\"Êtes-vous sûr de vouloir modifier l'URL de substitution de la redirection de la connexion ? Cela pourrait avoir un impact sur la capacité des utilisateurs à se connecter au système une fois que l'authentification locale est également désactivée.\"],\"MD0-Al\":[\"Votre session est sur le point d'expirer\"],\"MDQLec\":[\"Contrôler le niveau de sortie qu'Ansible produira pour les tâches de mise à jour des sources d'inventaire.\"],\"MGpavd\":[\"Clé Typeahead\"],\"MHM-bv\":[\"Cible de lien invalide. Impossible d'établir un lien avec les dépendants ou les nœuds des ancêtres. Les cycles de graphiques ne sont pas pris en charge.\"],\"MHbbol\":[\" Découpage de job\"],\"MKEPCY\":[\"Suivez\"],\"MP1v-1\":[\"Légende\"],\"MP8dU9\":[\"L'emplacement complet de l'image, y compris le registre du conteneur, le nom de l'image et la balise de version.\"],\"MQPvAa\":[\"Demander les libellés au lancement.\"],\"MQoyj6\":[\"Modèle de Job de flux de travail\"],\"MTLPCv\":[\"Exécuter lorsque le nœud parent se trouve dans un état de défaillance.\"],\"MVw5um\":[\"2 (Verbeux +)\"],\"MZU5bt\":[\"N'a pas réussi à supprimer un ou plusieurs groupes.\"],\"M_gXds\":[\"Note: This instance may be re-associated with this instance group if it is managed by \"],\"MdhgLT\":[\"Mot de passe du serveur IRC\"],\"MfCEiB\":[\"Informations d’identification Galaxy\"],\"MfQHgE\":[\"Jours conservation\"],\"Mfk6hJ\":[\"N'a pas réussi à supprimer un ou plusieurs modèles.\"],\"Mhn5m4\":[\"Information d’identification au registre\"],\"Mn45Gz\":[\"Retour aux groupes d'instances\"],\"MnbH31\":[\"page\"],\"MofjBu\":[\"L'environnement d'exécution qui sera utilisé pour les jobs qui utilisent ce projet. Il sera utilisé comme solution de repli lorsqu'un environnement d'exécution n'a pas été explicitement attribué au niveau du modèle de job ou du workflow.\"],\"MpLngK\":[\"Le point de terminaison de webhook de ce projet. Ajoutez-le à la configuration de webhook du dépôt pour que les push déclenchent une synchronisation du projet.\"],\"MpZRQy\":[\"Git\"],\"MuhG5I\":[[\"0\",\"plural\",{\"one\":[\"This approval cannot be deleted due to insufficient permissions or a pending job status\"],\"other\":[\"These approvals cannot be deleted due to insufficient permissions or a pending job status\"]}]],\"MwCc2O\":[\"Identifiant du webhook pour ce modèle de tâche de flux de travail.\"],\"Mwf3Mw\":[\"Remplissez les hôtes de cet inventaire à l'aide d'un filtre\\n de recherche. Exemple : ansible_facts__ansible_distribution:\\\"RedHat\\\".\\n Reportez-vous à la documentation pour plus de syntaxe et\\n d'exemples. Reportez-vous à la documentation d'Ansible Controller pour plus de syntaxe et\\n d'exemples.\"],\"MzcRa_\":[\"Utilisateur & Automation Analytics\"],\"Mzqo60\":[\"Valeur à comparer à l'artefact. Interprétée comme JSON lorsque cela est possible (par exemple true, 3), sinon comme une chaîne simple.\"],\"N1U4ZG\":[\"Conformité de l'abonnement\"],\"N36GRB\":[\"Ce champ doit être un nombre et avoir une valeur supérieure à \",[\"min\"]],\"N40H-G\":[\"Tous\"],\"N5vmCy\":[\"inventaire construit\"],\"N6GBcC\":[\"Confirmer Effacer\"],\"N7wOty\":[\"Sélectionnez le playbook à exécuter par ce job.\"],\"NAKA53\":[\"Échec de l'hôte\"],\"NBONaK\":[\"Collecte des facts\"],\"NCVKhy\":[\"Jobs récents\"],\"NDQvUO\":[\"Demander les balises au lancement.\"],\"NIuIk1\":[\"Illimité\"],\"NLKsgx\":[[\"pluralizedItemName\"],\" Liste\"],\"NO1ZxL\":[\"Nom de l'application\"],\"NPfgIB\":[\"sec\"],\"NQHZnb\":[\"Entier relatif\"],\"NRn4V6\":[[\"interval\"],\" months\"],\"NUNUrW\":[\"Balises pour l'annotation (facultatif)\"],\"NW-xDQ\":[\"Cela rétablira toutes les valeurs de configuration de cette page à\\n leurs valeurs d'usine par défaut. Êtes-vous sûr de vouloir continuer ?\"],\"NX18CF\":[\"Le ou après\"],\"NYxilo\":[\"Jobs Simultanées\"],\"Na9fIV\":[\"Aucun objet trouvé.\"],\"NcVaYu\":[\"Heure de Fin\"],\"NeA1eI\":[\"Pan droite\"],\"Never\":[\"Jamais\"],\"NgD4On\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"Cette action annulera la tâche suivante :\"],\"other\":[\"Cette action annulera les tâches suivantes :\"]}]],\"NjnDuY\":[\"Dragging started for item id: \",[\"newId\"],\".\"],\"NjqMGF\":[\"Type de ressources\"],\"NnH3pK\":[\"Test\"],\"No Jobs\":[\"Aucun job\"],\"NpJHAp\":[\"Les modèles de Job dont l'inventaire ou le projet est manquant ne peuvent pas être sélectionnés lors de la création ou de la modification de nœuds. Sélectionnez un autre modèle ou corrigez les champs manquants pour continuer.\"],\"NqIlWb\":[\"Dernière exécution\"],\"NrGRF4\":[\"Modalité de sélection de l'abonnement\"],\"NsXTPu\":[\"Pour créer un inventaire smart, utiliser des facts ansibles, et rendez-vous sur l’écran d’inventaire smart.\"],\"NtD3hJ\":[\"Clés associées\"],\"Nu4DdT\":[\"Sync\"],\"Nu4oKW\":[\"Description\"],\"Nu7VHX\":[\"Choisissez les rôles à appliquer aux ressources sélectionnées. Notez que tous les rôles sélectionnés seront appliqués à toutes les ressources sélectionnées.\"],\"O-OYOe\":[\"Modifier l’équipe\"],\"O06Rp6\":[\"Interface utilisateur\"],\"O1Aswy\":[\"N’expire jamais\"],\"O28qFz\":[\"Voir Job \",[\"0\"]],\"O2EuOK\":[\"Connectez-vous avec SAML \",[\"samlIDP\"]],\"O2UpM1\":[\"Navigation\"],\"O3oNi5\":[\"Email\"],\"O4ilec\":[\"Version non sensible à la casse de regex\"],\"O5pAaX\":[\"Sélectionnez une instance et une métrique pour afficher le graphique\"],\"O78b13\":[\"Sélectionnez l'application à laquelle ce jeton appartiendra, ou laissez ce champ vide pour créer un jeton d'accès personnel.\"],\"O8_96D\":[\"Port de l'écouteur\"],\"O9VQlh\":[\"Sélectionner la fréquence\"],\"OA8xiA\":[\"Pan Gauche\"],\"OA99Nq\":[\"Quand l'hôte a-t-il été automatisé pour la dernière fois\xA0?\"],\"OC4Tzv\":[\"ici\"],\"OGoqLy\":[\"# sources with sync failures.\"],\"OHGMM6\":[\"Date/Heure de début\"],\"OIv5hN\":[\"Redirection vers le détail de l'abonnement\"],\"OJ9bHy\":[\"N'a pas réussi à dissocier un ou plusieurs groupes.\"],\"OOq_rD\":[\"Exécution Playbook\"],\"OPTWH4\":[\"Activer la vérification de certificat HTTPS\"],\"ORxrw7\":[\"Jours restants\"],\"OSH8xi\":[\"Hop\"],\"OcRJRt\":[\"Confirmer l'annulation du job\"],\"Oe_VOY\":[\"N'a pas réussi à supprimer une ou plusieurs instances.\"],\"OgB1k4\":[\"Arguments\"],\"OiCz65\":[\"URL Grafana\"],\"Oiqdmc\":[\"Connectez-vous avec GitHub Organizations\"],\"Oj2Ix6\":[\"Le laps de temps (en secondes) d'exécution avant l'annulation du job. La valeur par défaut est 0 pour aucun délai d'expiration du job.\"],\"OjwX8k\":[\"Informations sur le jeton\"],\"OlpaBt\":[\"Jobs simultanés : si activé, les exécutions simultanées de ce modèle de job seront autorisées.\"],\"OmbooC\":[\"Tâche démarrée\"],\"OogRLI\":[\"Inventaire fédéré non trouvé.\"],\"OqE3G-\":[\"Recherche exacte sur le champ d'identification.\"],\"Osn70z\":[\"Déboguer\"],\"OvBnOM\":[\"Retour aux paramètres\"],\"OyGPiW\":[\"Paramètres d'abonnement\"],\"OzssJK\":[\"Exécuter Commande\"],\"P3spiP\":[\"Retour aux modèles\"],\"P7d85D\":[\"Supprimer l’accès de l’équipe\"],\"P8fBlG\":[\"Authentification\"],\"PByO0X\":[\"Votes\"],\"PCEmEr\":[\"Jetons d'utilisateur\"],\"PJ1B0S\":[[\"0\",\"plural\",{\"one\":[\"This project is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"PJf54Q\":[\"Retour aux sources\"],\"PKTjJ3\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"weekday\"],\" de \",[\"month\"]],\"4\":[\"The fourth \",[\"weekday\"],\" de \",[\"month\"]],\"5\":[\"The fifth \",[\"weekday\"],\" of \",[\"month\"]],\"one\":[\"The first \",[\"weekday\"],\" de \",[\"month\"]],\"two\":[\"The second \",[\"weekday\"],\" de \",[\"month\"]]}]],\"PLzYyl\":[\"Fréquence Détails de l'exception\"],\"PMk2Wg\":[\"Échec du déprovisionnement\"],\"POKy-m\":[\"Copier Environnement d'exécution\"],\"PPsHsC\":[\"Revenir aux valeurs par défaut\"],\"PQPOpT\":[\"Fichier d'inventaire\"],\"PRuZiQ\":[\"Actualiser pour réviser\"],\"PUnovD\":[\"Amazon EC2\"],\"PVCOQE\":[\"Pair supprimé. Assurez-vous d'exécuter à nouveau le paquet d'installation pour \",[\"0\"],\" afin de voir les modifications prendre effet.\"],\"PWwwY2\":[\"Dissocier\"],\"PYPqaM\":[\"ID du panneau (facultatif)\"],\"PZBWpL\":[\"Switch to light mode\"],\"P_s0vy\":[\"Impossible de rechercher le type d'informations d'identification pour ce service de webhook, le champ des informations d'identification du webhook est donc indisponible.\"],\"PaTL2O\":[\"Liste de destinataires\"],\"PhufXn\":[\"Parent de tranche de job\"],\"Pi5vnX\":[\"Échec de la synchronisation de la source d'inventaire construite\"],\"PiK6Ld\":[\"Sam.\"],\"PiRb8z\":[\"DERNIÈRE SYNCHRONISATION\"],\"PjkoCm\":[\"Êtes-vous sûr de vouloir supprimer le nœud ci-dessous :\"],\"PkVlOm\":[\"Spécifiez les en-têtes HTTP au format JSON. Reportez-vous à\\n la documentation d'Ansible Controller pour un exemple de syntaxe.\"],\"Po1btV\":[\"Navigation globale\"],\"Po7y5X\":[\"Échec de la copie de l'environnement d'exécution\"],\"PvgcEq\":[\"Draggable list to reorder and remove selected items.\"],\"PwAMWD\":[\"Effondrer tous les événements de la tâche\"],\"PyV1wC\":[\"Empêcher le repli du groupe d'instances\"],\"Q3P_4s\":[\"Tâche\"],\"Q4hWRC\":[\"Workflow Jobs (\",[\"total\"],\")\"],\"Q5ZW8j\":[\"Table des abonnements\"],\"QF_MpS\":[\"\\n Notez que seuls les hôtes directement dans ce groupe peuvent\\n être dissociés. Les hôtes des sous-groupes doivent être dissociés\\n directement au niveau du sous-groupe auquel ils appartiennent.\\n \"],\"QFdBqu\":[\"Mattermost\"],\"QGbLBK\":[\"ID Job\"],\"QHF6CU\":[\"Plays\"],\"QIOH6p\":[\"Initié par (nom d'utilisateur)\"],\"QIpNLR\":[\"Aucune erreurs de synchronisation des inventaires\"],\"QIq3_3\":[\"Remarque : L'ordre dans lequel ces éléments sont sélectionnés définit la priorité d'exécution. Sélectionner plus d’une option pour permettre le déplacement.\"],\"QJbMvX\":[\"Les informations d’identification qui nécessitent des mots de passe au lancement ne sont pas autorisées. Veuillez supprimer ou remplacer les informations d’identification suivantes par une du même type afin de continuer : \",[\"0\"]],\"QJowYS\":[\"confirmer supprimer\"],\"QKUQw1\":[\"Créer un nouvel hôte\"],\"QKbQTN\":[\"Sélecteur de type de flux d'activité\"],\"QOF7Jg\":[\"N'a pas approuvé \",[\"0\"],\".\"],\"QPRWww\":[\"Type d’exécution\"],\"QR908H\":[\"Nom du paramètre\"],\"QT1rDU\":[\"GitHub Enterprise\"],\"QTwM6Y\":[\"Le projet contenant le playbook que ce job exécutera.\"],\"QYKS3D\":[\"Jobs récents\"],\"QamIPZ\":[\"Veuillez cliquer sur le bouton de démarrage pour commencer.\"],\"Qay_5h\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"Qd2E32\":[\"Récupérer l'état activé à partir de la dictée donnée des variables hôtes. La variable activée peut être spécifiée en utilisant la notation par points, par exemple\xA0: 'foo.bar'\"],\"Qf36YE\":[\"Verbosité\"],\"QgnNyZ\":[\"Erreur de synchronisation\"],\"Qhb8lT\":[\"Créer une nouvelle application\"],\"QmvYrA\":[\"Description facultative du modèle de tâche de flux de travail.\"],\"QnJn75\":[\"Dernière exécution\"],\"Qv59HG\":[\"Modifier le type d’identification\"],\"Qv91_c\":[\"LDAP 2\"],\"QyjCeq\":[\"Capacité\"],\"R-uZ8Y\":[\"Connectez-vous avec SAML\"],\"R633QG\":[\"Retour à Approbation des flux de travail\"],\"R7s3iG\":[\"Renvoi à\"],\"R9Khdg\":[\"Auto\"],\"R9sZsA\":[\"Supprimer les groupes et les hôtes\"],\"RBDHUE\":[\"Demander l'environnement d'exécution au lancement.\"],\"RI8cIw\":[\"Le nombre maximum d'hôtes autorisés à être gérés par\\n cette organisation. La valeur par défaut est 0, ce qui signifie aucune limite.\\n Reportez-vous à la documentation d'Ansible pour plus de détails.\"],\"RIcSTA\":[\"Expire le\"],\"RIeAlp\":[\"Chaque fois qu'une tâche est exécutée à l'aide de cet inventaire, actualisez l'inventaire à partir de la source sélectionnée avant d'exécuter les tâches de la tâche.\"],\"RK1gDV\":[\"Connectez-vous avec Azure AD\"],\"RMdd1C\":[\"Aucun (exécution unique)\"],\"RO9G1f\":[\"Ce champ doit être supérieur à 0\"],\"RPnV2o\":[\"Le résultat de la recherche n’a produit aucun résultat…\"],\"RThfvh\":[\"Dissocier la ou les équipes liées ?\"],\"R_mzhp\":[\"Échec du jeton d'utilisateur.\"],\"RbIaa9\":[\"Jeton non trouvé.\"],\"RdLvW9\":[\"relancer les Jobs\"],\"Rguqao\":[\"Sélectionnez une ligne à supprimer\"],\"RhOukN\":[[\"interval\"],\" hour\"],\"RiQMUh\":[\"En cours d'exécution\"],\"RjIKOw\":[\"Impossible de modifier l'inventaire sur un hôte.\"],\"RjkhdY\":[\"Le champ commence par la valeur.\"],\"RkXlPZ\":[\"GitHub\"],\"RlsPz7\":[\"Êtes-vous sûr de vouloir supprimer ce lien ?\"],\"Rm1iI_\":[\"Demander les variables au lancement.\"],\"Roaswv\":[\"User Guide\"],\"RpKSl3\":[\"Informations d’identification copiées.\"],\"RsZ4BA\":[\"Défilement en dernier\"],\"RtKKbA\":[\"Dernier\"],\"Ru59oZ\":[\"Activer le webhook pour ce modèle.\"],\"RuEWFx\":[\"À la date du\"],\"RuiOO0\":[\"N'a pas réussi à supprimer une ou plusieurs applications\"],\"Rw1xwN\":[\"Chargement du contenu\"],\"RxzN1M\":[\"Activé\"],\"RyPas1\":[\"Cancel selected jobs\"],\"S0kLOH\":[\"ID\"],\"S2nsEw\":[\"Supérieur à la comparaison.\"],\"S5gO6Y\":[\"Transmettez des variables de ligne de commande supplémentaires au flux de travail.\"],\"S6zj7M\":[\"Pour les modèles de job, sélectionnez « run » pour exécuter le playbook. Sélectionnez « check » pour vérifier uniquement la syntaxe du playbook, tester la configuration de l'environnement et signaler les problèmes sans exécuter le playbook.\"],\"S7kN8O\":[\"N'a pas réussi à supprimer un ou plusieurs utilisateurs.\"],\"S7tNdv\":[\"En cas de succès\"],\"S8FW2i\":[\"Le fichier d'inventaire à synchroniser par cette source. Vous pouvez sélectionner dans la liste déroulante ou saisir un fichier dans l'entrée.\"],\"SA-KXq\":[\"Pan En haut\"],\"SAw-Ux\":[\"Êtes-vous sûr de vouloir supprimer \",[\"0\"],\" l’accès de \",[\"username\"],\" ?\"],\"SBfnbf\":[\"Voir tous les environnements d'exécution\"],\"SC1Cur\":[\"Statut inconnu\"],\"SDND4q\":[\"Non configuré\"],\"SIJDi3\":[\"Ajustement des capacités\"],\"SJjggI\":[\"Mettre à jour les options\"],\"SJmHMo\":[\"Documentation.\"],\"SLm_0U\":[\"Port du serveur IRC\"],\"SODyJ3\":[\"Désynchronisation des hôtes OK\"],\"SRiPhD\":[\"Annuler le retrait d'un nœud\"],\"SV5nA1\":[\"Certaines des étapes précédentes comportent des erreurs\"],\"SVG6MY\":[\"Retourner le champ à la valeur précédemment enregistrée\"],\"SYbJcn\":[\"Modèle de notification de modification\"],\"SZvybZ\":[\"Défaut LDAP\"],\"SZw9tS\":[\"Voir les détails\"],\"SbRHme\":[\"Zone de texte\"],\"Se_E0z\":[\"Job de flux de travail\"],\"Sgr5NW\":[\"Sélectionnez une instance pour effectuer un bilan de fonctionnement.\"],\"Sh2XTJ\":[\"Type de notification\"],\"SiexHs\":[\"Tableau de bord (toutes les activités)\"],\"Sja7f-\":[\"Combien de fois l'hôte a-t-il été supprimé\"],\"Sjoj4f\":[\"Nom d’identification\"],\"SlfejT\":[\"Erreur\"],\"SoREmD\":[\"Applications & Jetons\"],\"SqA8uD\":[\"Exécutions Job\"],\"SqLEdN\":[\"N'a pas réussi à supprimer l'inventaire smart.\"],\"SqYo9m\":[\"Retour aux instances\"],\"Ssdrw4\":[\"Obsolète\"],\"Successful\":[\"Réussi\"],\"SvPvEX\":[\"Corps de message de flux de travail approuvé\"],\"Svkela\":[\"Obtenir la page précédente\"],\"SwJLlZ\":[\"Corps de message de flux de travail refusé\"],\"SxGqey\":[\"Paramètres génériques de l'OIDC\"],\"Sxm8rQ\":[\"Utilisateurs\"],\"SzFxHC\":[\"Paramètres LDAP\"],\"SzQMpA\":[\"Forks\"],\"T2M20E\":[\"Le\"],\"T2mGOG\":[\"docs.ansible.com\"],\"T2x15z\":[\"N'a pas réussi à basculer la notification.\"],\"T4a4A4\":[\"Clé du webhook\"],\"T7yEGN\":[\"Le type d'autorisation que l'utilisateur doit utiliser pour acquérir des jetons pour cette application\"],\"T91vKp\":[\"Lecture\"],\"T9hZ3D\":[\"GitHub Enterprise Team\"],\"TAnffV\":[\"Modifier ce nœud\"],\"TBH48u\":[\"N'a pas réussi à supprimer l'équipe.\"],\"TC32CH\":[\"Jours de conservation des données \"],\"TD1APv\":[\"Obtenir des abonnements\"],\"TJVvMD\":[\"Type de recherche connexe\"],\"TLomdD\":[[\"sessionCountdown\",\"plural\",{\"one\":[\"You will be logged out in \",\"#\",\" second due to inactivity\"],\"other\":[\"You will be logged out in \",\"#\",\" seconds due to inactivity\"]}]],\"TMJ39S\":[\"Dissocier le rôle\"],\"TMLAx2\":[\"Obligatoire\"],\"TO3h59\":[\"Remplir le champ à partir d'un système de gestion des secrets externes\"],\"TO4OtU\":[\"Insights - Information d’identification\"],\"TOjYb_\":[\"Afficher les détails de l'hôte de l'inventaire construit\"],\"TP9_K5\":[\"Jeton\"],\"TRDppN\":[\"Webhook\"],\"TTMvf7\":[\"Type de groupe\"],\"TU6IDa\":[\"Type d’utilisateur\"],\"TXKmNM\":[\"Un inventaire doit être sélectionné\"],\"TZEuIE\":[\"Retour aux types d'informations d'identification\"],\"T_87By\":[\"Paramètres\"],\"Ta0ts5\":[\"Afficher les modifications\"],\"TcnG-2\":[\"Créer un nouvel environnement d'exécution\"],\"TgSxH9\":[\"URL de rappel d’exécution \"],\"TkiN8D\":[\"Informations sur l'utilisateur\"],\"Tmh24b\":[\"Si activé, le modèle de job empêchera l'ajout de groupes d'instances d'inventaire ou d'organisation à la liste des groupes d'instances préférés sur lesquels s'exécuter. Remarque : si ce paramètre est activé et que vous avez fourni une liste vide, les groupes d'instances globaux seront appliqués.\"],\"Tmuvry\":[\"Définir type Typeahead\"],\"ToOoEw\":[\"Copier les identifiants\"],\"Tof7pX\":[\"Jobs\"],\"Tq71UT\":[\"jour de semaine\"],\"Tx3NMN\":[\"Phrase de passe pour la clé privée\"],\"TxKKED\":[\"Afficher les détails de l'inventaire construit\"],\"TyaPAx\":[\"Administrateur du système\"],\"Tz0i8g\":[\"Paramètres\"],\"U-nEJl\":[\"Voir les paramètres de GitHub\"],\"U011Uh\":[\"Dernière vue\"],\"U7rA2a\":[\"Lorsqu'elle n'est pas cochée, une fusion sera effectuée, combinant les variables locales avec celles trouvées sur la source externe.\"],\"UDf-wR\":[\"Abonnements consommés\"],\"UEaj7U\":[\"Erreurs de synchronisation des inventaires\"],\"UJpDop\":[\"Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"UJsNNk\":[\"Révision du Contrôle de la source\"],\"UPasE4\":[\"Azure AD (Par défaut)\"],\"UPmrRI\":[\"Version non sensible à la casse de endswith.\"],\"URmyfc\":[\"Détails\"],\"UX2wV1\":[[\"0\",\"plural\",{\"one\":[\"This credential is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"UXBCwc\":[\"Nom\"],\"UY6iPZ\":[\"Si activé, les nœuds de contrôle apparieront automatiquement à cette instance. Si elle est désactivée, l'instance sera connectée uniquement aux pairs associés.\"],\"UYD5ld\":[\"et cliquez sur Mise à jour de la révision au lancement\"],\"UYUgdb\":[\"Commande\"],\"U_JUCL\":[\"Red Hat Insights\"],\"Ua-Kc6\":[\"www.json.org\"],\"UbOul8\":[\"Êtes-vous sûr de vouloir supprimer :\"],\"UbRKMZ\":[\"En attente\"],\"UbqhuT\":[\"Echec de la récupération de l'objet ressource de noeud complet.\"],\"Uc_tSU\":[\"Basculer les outils\"],\"UgFDh3\":[\"Cet inventaire est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?\"],\"UirGxE\":[\"Erreurs\"],\"UlykKR\":[\"Troisième\"],\"Uo1S9q\":[\"Connectez-vous avec Azure AD Tenant\"],\"UueF8b\":[\"L'environnement d'exécution est absent ou supprimé.\"],\"UvGjRK\":[\"Si activé, exécutez ce playbook en tant qu'administrateur.\"],\"UwJJCk\":[\"Relancer les hôtes défaillants\"],\"UxKoFf\":[\"Navigation\"],\"V-7saq\":[\"Supprimer \",[\"pluralizedItemName\"],\" ?\"],\"V-rJKF\":[\"Seconds\"],\"V0Xv3_\":[[\"intervalValue\",\"plural\",{\"one\":[\"day\"],\"other\":[\"days\"]}]],\"V0fM4k\":[\"Analyse des utilisateurs\"],\"V1EGGU\":[\"Prénom\"],\"V2-omF\":[[\"0\",\"plural\",{\"one\":[\"L'inventaire sera à l'état en attente jusqu'à ce que la suppression finale soit traitée.\"],\"other\":[\"Les inventaires seront à l'état en attente jusqu'à ce que la suppression finale soit traitée.\"]}]],\"V2RwJr\":[\"Adresses des auditeurs\"],\"V2q9w9\":[\"If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode.\"],\"V3z83V\":[\"LDAP 3\"],\"V4WsyL\":[\"Ajouter un lien\"],\"V5RUpn\":[\"Liste de destinataires\"],\"V7qsYh\":[\"Remarque : L'ordre de ces informations d'identification détermine la priorité pour la synchronisation et la consultation du contenu. Sélectionner plus d’une option pour permettre le déplacement.\"],\"V9xR6T\":[\"Agrandir la section\"],\"VAI2fh\":[\"Créer un nouveau groupe de conteneurs\"],\"VAcXNz\":[\"Mercredi\"],\"VEj6_Y\":[\"Approbations des flux de travail\"],\"VFvVc6\":[\"Modifier les détails\"],\"VJUm9p\":[\"Page actuelle\"],\"VK2gzi\":[\"Le nombre de processus parallèles ou simultanés à utiliser lors de l'exécution du playbook. Une valeur vide, ou une valeur inférieure à 1, utilisera la valeur par défaut d'Ansible, qui est généralement 5. Le nombre de forks par défaut peut être remplacé en modifiant\"],\"VL2WkJ\":[\"Le dernier \",[\"dayOfWeek\"]],\"VLdRt2\":[\"Démarrer la source de synchronisation\"],\"VNUs2y\":[\"Fourches max\"],\"VSJ6r5\":[\"Le planning est actif.\"],\"VSim_H\":[\"Supprimer la source de l'inventaire\"],\"VTDO7X\":[\"Détail de l'événement modal\"],\"VU3Nrn\":[\"Manquant\"],\"VWL2DK\":[\"Organisation GitHub\"],\"VXFjd8\":[\"Métriques\"],\"VZfXhQ\":[\"Noeud Hop\"],\"VdcFUD\":[\"Contrat de licence utilisateur\"],\"ViDr6F\":[\"Ajouter un nouveau groupe\"],\"VmClsw\":[\"La ressource associée à ce nœud a été supprimée.\"],\"VmvLj9\":[\"Définissez sur Public ou Confidentiel selon le niveau de sécurité de l'appareil client.\"],\"Vqd-tq\":[\"Confirmer annuler tout\"],\"Vqgeac\":[\"Press space or enter to begin dragging,\\n and use the arrow keys to navigate up or down.\\n Press enter to confirm the drag, or any other key to\\n cancel the drag operation.\"],\"Vvbbn2\":[\"N'a pas réussi à supprimer le rôle.\"],\"Vw8l6h\":[\"Une erreur est survenue\"],\"VzE_M-\":[\"Échec de la notification de basculement\"],\"W-O1E9\":[\"Copier le projet\"],\"W1iIqa\":[\"Voir les groupes d'inventaire\"],\"W3TNvn\":[\"Retour aux utilisateurs\"],\"W3pOzF\":[\"Autorisez la modification de la branche ou de la révision du contrôle de source dans un modèle de job qui utilise ce projet.\"],\"W6uTJi\":[\"Impossible d’obtenir une instance.\"],\"W7DGsV\":[\"Lancé par (Nom d'utilisateur)\"],\"W9XAF4\":[\"Jour de la semaine\"],\"W9uQXX\":[\"Invite\"],\"WAjFYI\":[\"Date de début\"],\"WD8djW\":[\"Confirmer la suppression du lien\"],\"WL91Ms\":[\"Delete Groups?\"],\"WPM2RV\":[\"Type de réponse\"],\"WQJduu\":[\"Sélection de la clé\"],\"WTN9YX\":[\"Token de compte\"],\"WTV15I\":[\"URL de remplacement pour la redirection de connexion\"],\"WVzGc2\":[\"Abonnement\"],\"WX9-kf\":[\"IRC nick\"],\"Wc6m4J\":[\"Un refspec à récupérer (transmis au module git d'Ansible). Ce paramètre permet d'accéder via le champ de branche à des références qui ne sont pas autrement disponibles.\"],\"Wdl2f2\":[\"Ce champ doit comporter au moins \",[\"0\"],\" caractères\"],\"WgsBEi\":[\"Veuillez saisir une expression de recherche au moins pour créer un nouvel inventaire Smart.\"],\"WhSFGl\":[\"Filtrer par \",[\"name\"]],\"Wi1pUG\":[[\"numJobsToCancel\",\"plural\",{\"one\":[[\"0\"]],\"other\":[[\"1\"]]}]],\"Wk1rOS\":[\"Adapter le graphique à la taille de l'écran disponible\"],\"Wm7XbF\":[\"N'a pas réussi à supprimer un ou plusieurs identifiants.\"],\"WqaDMq\":[\"Le champ contient une valeur.\"],\"Wy25yg\":[\"Twilio\"],\"X03-eC\":[\"Entrez une valeur.\"],\"X5V9DW\":[\"Cliquez sur le bouton Modifier ci-dessous pour reconfigurer le nœud.\"],\"X6d3Zy\":[\"N'a pas réussi à supprimer l'organisation.\"],\"X97mbf\":[\"Choisir un type de job\"],\"XA12d8\":[\"Liste facultative de noms d'hôtes séparés par des virgules à inclure dans chaque tranche de job, en plus des hôtes de la tranche elle-même. Utile lorsqu'un play cible un hôte de coordination, tel que localhost, dont dépendent toutes les tranches. Les noms sont mis en correspondance exactement avec les hôtes de l'inventaire ; les groupes et les modèles ne sont pas pris en charge. Les hôtes épinglés exécutent leurs plays une fois par tranche.\"],\"XBROpk\":[\"Fournissez un modèle d'hôte pour restreindre davantage la liste des hôtes qui seront gérés ou affectés par le flux de travail.\"],\"XCCkju\":[\"Modifier le nœud\"],\"XFRygA\":[\"Voici des exemples d'URL pour le contrôle de source d'archive distante :\"],\"XHxwBV\":[\"La plage de dates sélectionnée doit avoir au moins une occurrence de calendrier.\"],\"XILg0L\":[\"Adresse e-mail non valide\"],\"XJOV1Y\":[\"Activité\"],\"XKp83s\":[\"Les inventaires et les sources ne peuvent pas être copiés\"],\"XLMJ7O\":[\"Cloud\"],\"XLpxoj\":[\"Options d'email\"],\"XM-gTv\":[\"Consultez la documentation Ansible pour plus de détails sur le fichier de configuration.\"],\"XOD7tz\":[\"Afficher Modifications\"],\"XOaZX3\":[\"Pagination\"],\"XP6TQ-\":[\"S'il est spécifié, ce champ sera affiché sur le nœud au lieu du nom de la ressource lors de la visualisation du flux de travail\"],\"XREJvl\":[\"Variables utilisées pour configurer la source d'inventaire. Pour une description détaillée de la configuration de ce plugin, voir\"],\"XViLWZ\":[\"En cas d'échec\"],\"XWDz5f\":[\"Sélection par simple pression d'une touche\"],\"X_5TsL\":[\"Basculement Questionnaire\"],\"XaxYwV\":[\"Valeurs incitatrices\"],\"XbIM8f\":[\"Sources totales d'inventaire\"],\"XdyHT-\":[\"Hôtes importés\"],\"XfmfOA\":[\"Exécutez tous les\"],\"Xg3aVa\":[\"Utiliser SSL\"],\"XgTa_2\":[\"The inventory will be in a pending status until the final delete is processed.\"],\"XilEsm\":[\"Groupe d'instance\"],\"Xm7ruy\":[\"5 (Débogage WinRM)\"],\"XmJfZT\":[\"nom\"],\"XmVvzl\":[\"Sélectionner les rôles à pourvoir\"],\"XnxCSh\":[\"Erreur standard\"],\"XozZ38\":[\"N'a pas réussi à supprimer une ou plusieurs sources d'inventaire.\"],\"Xq9A0U\":[\"Projet inconnu\"],\"Xt4N6V\":[\"Invite | \",[\"0\"]],\"XtpZSU\":[\"Tous les types de tâche\"],\"Xx-ftH\":[\"Vous avez automatisé contre plus d'hôtes que votre abonnement ne le permet.\"],\"XyTWuQ\":[\"Veuillez patienter jusqu’à ce que la topologie soit remplie...\"],\"XyW2nH\":[[\"0\",\"plural\",{\"one\":[\"Êtes-vous sûr de vouloir supprimer le groupe ci-dessous ?\"],\"other\":[\"Êtes-vous sûr de vouloir supprimer les groupes ci-dessous ?\"]}]],\"XzD7xj\":[\"Sélectionnez les éléments\"],\"Y1YKad\":[\"Modifier les détails\"],\"Y296GK\":[\"N'a pas réussi à supprimer le rôle\"],\"Y2ml-n\":[\"Approuvé - \",[\"0\"],\". Consultez le Flux d’activité pour plus d’informations.\"],\"Y5VrmH\":[\"Non configuré pour la synchronisation de l'inventaire.\"],\"Y5vgVF\":[\"Refusé avec succès\"],\"Y5xJ7I\":[\"Nom du playbook\"],\"Y60pX3\":[\"Ajouter un inventaire construit\"],\"YA4I45\":[\"Sélectionnez un module\"],\"YFmVSY\":[\"Dissocier ?\"],\"YJddb4\":[\"Type d'instance\"],\"YLMfol\":[\"Choisissez le type de ressource qui recevra de nouveaux rôles. Par exemple, si vous souhaitez ajouter de nouveaux rôles à un ensemble d'utilisateurs, veuillez choisir Utilisateurs et cliquer sur Suivant. Vous pourrez sélectionner les ressources spécifiques dans l'étape suivante.\"],\"YM06Nm\":[\"Modifier le type d’identification\"],\"YMLB2b\":[\"Indique si le nœud d'approbation est automatiquement approuvé ou refusé à l'expiration du délai.\"],\"YMpSlP\":[\"Temps en secondes pour considérer qu'une synchronisation d'inventaire est à jour. Pendant les exécutions de tâches et les rappels, le système de tâches évaluera l'horodatage de la dernière synchronisation. S'il est plus ancien que le délai d'expiration du cache, il n'est pas considéré comme actuel et une nouvelle synchronisation de l'inventaire sera effectuée.\"],\"YOOdGq\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" minute\"],\"other\":[\"#\",\" minutes\"]}]],\"YOh7Aw\":[\"Workflow Job \",[\"currentPosition\"],\"/\",[\"total\"]],\"YP5KRj\":[\"une nouvelle url de webhook sera générée lors de la sauvegarde.\"],\"YPDLLX\":[\"Retour aux environnements d'exécution\"],\"YQqM-5\":[\"L'image de conteneur à utiliser pour l'exécution.\"],\"Yd45Xn\":[\"Hôtes par type de processeur\"],\"Yfw7TK\":[\"La notification a expiré.\"],\"YgqgXs\":[[\"intervalValue\",\"plural\",{\"one\":[\"minute\"],\"other\":[\"minutes\"]}]],\"YiQ03p\":[\"N'a pas réussi à supprimer la programmation.\"],\"YiUAZm\":[\"<0>Remarque : cette instance peut être réassociée à ce groupe d'instances si elle est gérée par des <1>règles de politique.\"],\"YlGAPh\":[\"Hôtes épinglés de la tranche de job\"],\"Ym7-mu\":[\"Un canal Slack par ligne. Le symbole dièse (#)\\n est requis pour les canaux. Pour répondre ou démarrer un fil de discussion sur un message spécifique, ajoutez l'Id du message parent au canal, où l'Id du message parent comporte 16 chiffres. Un point (.) doit être inséré manuellement après le 10e chiffre. par ex. :#canal-destination, 1231257890.006423. Voir Slack\"],\"YmEWZH\":[\"Lancer le modèle\"],\"YmjTf2\":[\"Échec du provisionnement\"],\"YoXjSs\":[\"Demander l'inventaire au lancement.\"],\"Yq4Eaf\":[\"Les informations relatives au statut d'hôte pour ce Job ne sont pas disponibles.\"],\"YsN-3o\":[\"Voir les détails de la source de l'inventaire\"],\"Yt-rBv\":[\"Ce projet est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?\"],\"YuC9dj\":[\"Associé\"],\"YxDLmM\":[\"ID du système Insights\"],\"Z17FAa\":[\"Modifier l'inventaire inconnu\"],\"Z1Vtl5\":[\"Échec de l'annulation de Project Sync\"],\"Z25_RC\":[\"Sélectionnez une entrée\"],\"Z2hVSb\":[\"Hybride\"],\"Z40J8D\":[\"Active la création d'une URL de rappel de provisionnement. À l'aide de l'URL, un hôte peut contacter \",[\"brandName\"],\" et demander une mise à jour de configuration à l'aide de ce modèle de job.\"],\"Z5HWHd\":[\"Le\"],\"Z7ZXbT\":[\"Approuver\"],\"Z88yEl\":[\"Supérieur ou égal à la comparaison.\"],\"Z9EFpE\":[\"Tableau de bord d’Automation Analytics.\"],\"ZAWGCX\":[[\"0\"],\" secondes\"],\"ZEP8tT\":[\"Lancer\"],\"ZGDCzb\":[\"Instance introuvable.\"],\"ZJjKDg\":[\"Nœuds gérés\"],\"ZKKnVf\":[\"Créer un nouveau modèle de flux de travail\"],\"ZL3d6Z\":[\"Adresse du serveur IRC\"],\"ZO4CYH\":[\"Jobs en cours d'exécution\"],\"ZOLfb2\":[\"Ce champ ne doit pas être vide.\"],\"ZWhZbs\":[\"Confirmer la suppression du nœud\"],\"ZajTWA\":[\"Numéro de téléphone de la source\"],\"Zf6u-6\":[\"Explication\"],\"ZfrRb0\":[\"Sélectionnez un inventaire ou cochez l’option Me le demander au lancement.\"],\"ZhUwVw\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" semaine\"],\"other\":[\"#\",\" semaines\"]}]],\"ZhxwOq\":[\"Corps du message d'erreur\"],\"Zikd-1\":[\"Le nombre d'hôtes contre lesquels vous avez automatisé est inférieur au nombre d'abonnements.\"],\"ZjC8QM\":[\"N'a pas réussi à supprimer l'hôte.\"],\"ZjvPb1\":[\"Créé par (nom d'utilisateur)\"],\"Zkh5np\":[\"Mise à jour des pairs sur \",[\"0\"],\". Veuillez vous assurer d'exécuter à nouveau le paquet d'installation pour \",[\"1\"],\" afin de voir les modifications prendre effet.\"],\"ZpdX6R\":[\"Erreur lors de la suppression des jetons\"],\"ZrsGjm\":[\"Inventaire\"],\"ZumtuZ\":[\"Copier le modèle\"],\"ZvVF4C\":[\"Supprimer question de l'enquête\"],\"ZwCTcT\":[\"Onglet Liste des Jobs récents\"],\"ZwujDQ\":[\"L'année dernière\"],\"_-NKbo\":[\"Impossible de basculer le calendrier.\"],\"_2LfCe\":[\"Pour réorganiser les questions de l'enquête, faites-les glisser et déposez-les à l'endroit souhaité.\"],\"_4gGIX\":[\"Copier dans le presse-papiers\"],\"_5REdR\":[\"Sélectionnez Inventaires d'entrée pour le plugin d'inventaire construit.\"],\"_Fg1cM\":[\"Corps du message d’expiration de flux de travail\"],\"_ITcnz\":[\"jour\"],\"_Ia62Q\":[\"Exemples d'inventaire construit\"],\"_JN1gB\":[\"Nombre de tâches\"],\"_K2CvV\":[\"Modèle\"],\"_LQZpR\":[[\"intervalValue\",\"plural\",{\"one\":[\"year\"],\"other\":[\"years\"]}]],\"_LVfwJ\":[\"Erreur de synchronisation de la source d'inventaire construite\"],\"_M4FeF\":[\"Sélectionnez l'environnement d'exécution dans lequel vous voulez que cette commande soit exécutée.\"],\"_MdgrM\":[\"Ajouter un nouveau nœud entre ces deux nœuds\"],\"_PRaan\":[\"N'a pas réussi à supprimer un ou plusieurs modèles de notification.\"],\"_Pz_QH\":[\"Géré par la politique\"],\"_W3ZAw\":[[\"selectedItemsCount\",\"plural\",{\"one\":[\"Click to run a health check on the selected instance.\"],\"other\":[\"Click to run a health check on the selected instances.\"]}]],\"_WBq2_\":[\"Refusé - \",[\"0\"],\". Consultez le Flux d’activité pour plus d’informations.\"],\"_Yq4TU\":[\"Nombre maximum de forks autorisés pour l'ensemble des jobs exécutés simultanément sur ce groupe.\\n Zéro signifie qu'aucune limite ne sera appliquée.\"],\"_ZBhqw\":[\"N'a pas réussi à annuler la synchronisation des sources d'inventaire.\"],\"_bAUGi\":[\"Choisissez une méthode HTTP\"],\"_bE0AS\":[\"Sélectionnez une instance\"],\"_cV6Mf\":[\"Navigation....\"],\"_cq4Aa\":[\"Approbation du flux de travail non trouvée.\"],\"_ereyb\":[\"TACACS+\"],\"_gCD76\":[\"Modifier le groupe d'instances\"],\"_ismew\":[\"Clé d'artefact\"],\"_kYJq6\":[\"Nombre de jours pendant lesquels on peut conserver les données\"],\"_khNCh\":[\"Les informations d’identification par défaut du modèle de tâche doivent être remplacées par une du même type. Veuillez sélectionner une information d’identification pour les types suivants afin de continuer : \",[\"0\"]],\"_oeZtS\":[\"Interrogation de l'hôte\"],\"_rCRcH\":[\"Documentation sur la recherche avancée\"],\"_vI8Rx\":[\"Delete Group?\"],\"a02Xjc\":[\"Adresse du serveur IRC\"],\"a3AD0M\":[\"confirmer modifier connecter rediriger\"],\"a5zD9f\":[\"Modifications\"],\"a6E-_p\":[\"La version non sensible à la casse de contains\"],\"a8AgQY\":[\"Voir les détails de l'hôte\"],\"a8nooQ\":[\"Quatrième\"],\"a9BTUD\":[\"jour de week-end\"],\"aBgwis\":[\"Champ d'application\"],\"aLlb3-\":[\"boolean\"],\"aNxqSL\":[\"Supprimer l'environnement d'exécution\"],\"aQ4XJX\":[\"Activer le système de journalisation traçant des facts individuellement\"],\"aSuBiU\":[\"Microsoft Azure Resource Manager\"],\"aTK0Fh\":[\"Tels jours\"],\"aUNPq3\":[\"Nœud d'exécution\"],\"aVoVcG\":[\"Sélection multiple\"],\"aXBrSq\":[\"Red Hat Virtualization\"],\"a_vlog\":[\"Supprimer \",[\"0\"],\" chip\"],\"adPhRK\":[\"Inventaire auquel cet hôte appartiendra.\"],\"adjqlB\":[[\"0\"],\" (supprimé)\"],\"aht2s_\":[\"Couleur de la notification\"],\"aiejXq\":[\"Ajouter un type de ressource\"],\"ajDpGH\":[\"ÉTAT :\"],\"anfIXl\":[\"Détails de l'utilisateur\"],\"aqqAbL\":[\"Empêcher le repli des groupes d'instances : s'il est activé, l'inventaire empêchera l'ajout de tout groupe d'instances d'organisation à la liste des groupes d'instances préférés pour exécuter les modèles de tâches associés. Remarque : si ce paramètre est activé et que vous avez fourni une liste vide, les groupes d'instances globaux seront appliqués.\"],\"ar5AA2\":[\"pour plus d'informations.\"],\"ataY5Z\":[\"Erreur de suppression d’un Job\"],\"ax6e8j\":[\"Veuillez sélectionner une organisation avant d'éditer le filtre de l'hôte.\"],\"az8lvo\":[\"Désactivé\"],\"b1CAkh\":[\"Jobs de gestion\"],\"b2Z0Zq\":[\"Annuler les changements de liens\"],\"b433OF\":[\"Modifier le groupe\"],\"b4SLah\":[\"Voir les erreurs sur la gauche\"],\"b9Y4up\":[\"ID du client\"],\"bDa_hW\":[\"Sélectionnez les groupes d’instances sur lesquels la synchronisation de cette source d’inventaire doit s’exécuter. Si aucun n’est défini, la synchronisation s’exécute sur les groupes d’instances de l’inventaire ou de son organisation.\"],\"bE4zYn\":[\"Sélectionnez le port sur lequel le récepteur écoutera les connexions entrantes, par exemple 27199.\"],\"bHXYoC\":[\"Méthode HTTP\"],\"bKR18T\":[\"Un manifeste d'abonnement est une exportation d'un abonnement Red Hat. Pour générer un manifeste d'abonnement, accédez à <0>access.redhat.com. Pour plus d'informations, consultez le <1>Guide de l'utilisateur.\"],\"bLt_0J\":[\"Flux de travail\"],\"bPq357\":[\"Valeur activée\"],\"bQZByw\":[\"Entrez une balise d'annotation par ligne, sans virgule.\"],\"bTu5jX\":[\"Nom d'utilisateur / mot de passe\"],\"bWr6j5\":[\"Ce champ doit comporter au moins \",[\"min\"],\" caractères\"],\"bY8C86\":[\"Voir tous les utilisateurs.\"],\"bYXbel\":[\"clé webhook de modèles de tâche flux de travail\"],\"baP8gx\":[\"4 (Débogage de la connexion)\"],\"baqrhc\":[\"En-têtes HTTP\"],\"bbJ-VR\":[\"Zoom arrière\"],\"bcyJXs\":[\"Élément OK\"],\"bd1Kuw\":[\"Icône URL\"],\"bf7UKi\":[\"Délai d'expiration du cache de mise à jour\"],\"bfgr_e\":[\"Question\"],\"bgjTnp\":[\"0 (Normal)\"],\"bgq1rW\":[\"Bouton de soumission de recherche\"],\"bhxnLH\":[\"Vous n'avez pas la permission de supprimer les groupes suivants : \",[\"itemsUnableToDelete\"]],\"bkPO0d\":[\"Type de notification\"],\"bpECfE\":[\"Annuler la suppression d'un lien\"],\"bpnj1H\":[\"Il y a eu une erreur lors du chargement de ce contenu. Veuillez recharger la page.\"],\"bwRvnp\":[\"Action\"],\"bx2rrL\":[\"Inventaire smart\"],\"bxaVlf\":[\"Créer un nouveau type d'informations d'identification.\"],\"byXCTu\":[\"Occurrences\"],\"bznJUg\":[\"Sélectionnez l'inventaire contenant les hôtes que vous souhaitez gérer avec ce flux de travail.\"],\"bzv8Dv\":[\"Erreur de suppression\"],\"c-xCSz\":[\"Vrai\"],\"c0n4p3\":[\"Stockage des facts\"],\"c1Rsz1\":[\"Voir les détails pour l'approbation du flux de travail\"],\"c3XJ18\":[\"Aide\"],\"c4kHK7\":[\"Fermer la modalité d'abonnement\"],\"c6IFRs\":[\"Fichier JSON Compte de service\"],\"c6u6gk\":[\"Sélectionnez les groupes d'instances sur lesquels exécuter cette organisation.\"],\"c7-Adk\":[\"Impossible de synchroniser la source de l'inventaire.\"],\"c8HyJq\":[\"Sélectionnez les groupes d'instances sur lesquels exécuter cet inventaire.\"],\"c8sV0t\":[\"Cette fonctionnalité est obsolète et sera supprimée dans une prochaine version.\"],\"c9V3Yo\":[\"Échec de l'hôte\"],\"c9iw51\":[\"Jobs en cours d'exécution\"],\"c9pF61\":[\"Identifiant client\"],\"cFC8w7\":[\"Cette source d'inventaire est actuellement utilisée par d'autres ressources qui en dépendent. Êtes-vous sûr de vouloir la supprimer ?\"],\"cFCKYZ\":[\"Refuser\"],\"cFOXv9\":[\"Générique OIDC\"],\"cGRiaP\":[\"Afficher les détails de l’événement\"],\"cIdUma\":[\"\\n Il n'y a aucun répertoire de playbook disponible dans \",[\"project_base_dir\"],\".\\n Soit ce répertoire est vide, soit tout son contenu est déjà\\n attribué à d'autres projets. Créez-y un nouveau répertoire et assurez-vous\\n que les fichiers de playbook peuvent être lus par l'utilisateur système « awx »,\\n ou faites en sorte que \",[\"brandName\"],\" récupère directement vos playbooks depuis\\n le contrôle de source à l'aide de l'option Type de contrôle de la source ci-dessus.\"],\"cNsIJf\":[\"Modifié\"],\"cPTnDL\":[\"Sync Projet\"],\"cQIQa2\":[\"Sélectionner les groupes\"],\"cQlPDN\":[\"Lecture\"],\"cUKLzq\":[\"Ordre d'édition\"],\"cYir0h\":[\"Sélectionnez une ou plusieurs options\"],\"c_PGsA\":[\"Voir les détails de Job de flux de travail\"],\"cbSPfq\":[\"Ce flux de travail a déjà été traité\"],\"ccA_Bz\":[\"Le format suggéré pour les noms de variables est en minuscules et\\n séparé par des traits de soulignement (par exemple, foo_bar, user_id, host_name,\\n etc.). Les noms de variables avec des espaces ne sont pas autorisés.\"],\"cdm6_X\":[\"Capacité utilisée\"],\"chbm2W\":[\"Filtres de l'instance\"],\"ci3mwY\":[\"Ce champ ne doit pas être vide\"],\"cit9TY\":[\"Nom d'un artefact produit par le nœud parent via set_stats. Le lien n'est suivi que lorsque le job parent correspond au résultat choisi et que la condition est vraie. Une clé manquante ne correspond jamais.\"],\"cj1KTQ\":[\"Voir tous les inventaires.\"],\"cjJXKx\":[\"Échec de désynchronisation des hôtes\"],\"ckH3fT\":[\"Prêt\"],\"ckdiAB\":[\"Supprimer la notification\"],\"cmWTxn\":[\"Moins ou égal à la comparaison.\"],\"cnGeoo\":[\"Supprimer\"],\"cnnWD0\":[\"By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>\",[\"0\"],\". Uncheck the following boxes to disable this feature.\"],\"ct_Puj\":[\"Ce champ sera récupéré dans un système externe de gestion des secrets en utilisant l’identifiant spécifié.\"],\"cucDBz\":[\"Modèle de contexte\"],\"cucG_7\":[\"Aucun YAML disponible\"],\"cxjfgY\":[\"Impossible d’effectuer des bilans de fonctionnement sur les nœuds Hop.\"],\"cy3yJa\":[\"Établi\"],\"d-F6q9\":[\"Créé\"],\"d-zGjA\":[\"Cette action supprimera les éléments suivants :\"],\"d1BVnY\":[\"A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>\",[\"0\"],\".\"],\"d5zxa4\":[\"Local\"],\"d6in1T\":[\"Sélectionnez l'inventaire contenant les hôtes que vous souhaitez que ce job gère.\"],\"d73flf\":[\"Modal d'alerte\"],\"d75lEw\":[\"Type d'ensemble\"],\"d7VUIS\":[\"Supprimer le nœud \",[\"nodeName\"]],\"d8B-tr\":[\"Onglet Graphique de l'état des Jobs\"],\"dAZObA\":[\"Redirection d'URIs.\"],\"dBNZkl\":[\"Voir les détails de l'hôte de l'inventaire smart\"],\"dCcO-F\":[\"Impossible de récupérer la configuration.\"],\"dELxuP\":[\"Inventaire non trouvé.\"],\"dEgA5A\":[\"Annuler\"],\"dH6aQY\":[\"Azure AD Tenant\"],\"dIb9tv\":[\"Voir toutes les applications.\"],\"dJcvVX\":[\"Filtre d'hôte smart\"],\"dNAHKF\":[\"Tranche de job\"],\"dOjocz\":[\"Sélection Convergence\"],\"dPGRd8\":[\"Si activé, affiche les modifications apportées par les tâches Ansible, lorsque cela est pris en charge. Cela équivaut au mode --diff d'Ansible.\"],\"dPY1x1\":[\"pour plus d'infos.\"],\"dQFAgv\":[\"Ce projet doit être mis à jour\"],\"dQjRO3\":[\"Démarrer le processus de synchronisation\"],\"dbWo0h\":[\"Connectez-vous avec Google\"],\"dcGoCm\":[\"Fichier d'inventaire\"],\"ddIcfH\":[\"Allez à la dernière page de la liste\"],\"dfWFox\":[\"Nombre d'hôtes\"],\"dk7qNl\":[\"Noeud de contrôle\"],\"dkGxGj\":[\"Subversion\"],\"dlHFy7\":[\"Échec de la suppression d'un ou plusieurs environnements d'exécution\"],\"dnCwNB\":[\"Copie réussie dans le presse-papiers !\"],\"dov9kY\":[\"Ce champ doit être un nombre et avoir une valeur comprise entre \",[\"0\"],\" et \",[\"1\"]],\"dqxQzB\":[\"dictionnaire\"],\"dzQfDY\":[\"Octobre\"],\"e0NrBM\":[\"Projet\"],\"e3pQqT\":[\"Choisissez un type de notification\"],\"e4GHWP\":[\"Extraire\"],\"e5CMOi\":[\"Variables d'environnement ou variables supplémentaires qui spécifient les valeurs qu'un type de justificatif peut injecter.\"],\"e5VbKq\":[\"Modèles de Job de flux de travail\"],\"e6BtDv\":[\"<0>\",[\"0\"],\"<1>\",[\"1\"],\"\"],\"e70-_3\":[\"Basculer la légende\"],\"e8GyQg\":[\"Métrique\"],\"e8U63Z\":[\"Ne synchroniser le projet que lorsque la référence poussée correspond à ce modèle, par exemple refs/heads/main ou refs/heads/release-*. Laissez vide pour synchroniser à chaque événement de push ou de tag.\"],\"e91aLH\":[\"Voir tous les types d'informations d'identification\"],\"e9k5zp\":[\"Veuillez ajouter une programmation pour remplir cette liste. Les programmations peuvent être ajoutées à un modèle, un projet ou une source d'inventaire.\"],\"eAR1n4\":[\"Recherche connexe : type typeahead\"],\"eD_0Fo\":[\"N'a pas réussi à supprimer une ou plusieurs équipes.\"],\"eDjsWq\":[\"Créer un nouveau modèle de notification\"],\"eGkahQ\":[\"Modèle de découpage de Job\"],\"eHx-29\":[\"Détails de la source\"],\"ePK91l\":[\"Modifier\"],\"ePS9As\":[\"Paramètres RADIUS\"],\"eQkgKV\":[\"Installé\"],\"eRV9Z3\":[\"Aucun délai d'attente spécifié\"],\"eRlz2Q\":[\"Numéro(s) de SMS de destination\"],\"eSXF_i\":[\"N'a pas réussi à supprimer l’application\"],\"eTsJYJ\":[\"description\"],\"eVJ2lo\":[\"Flottement\"],\"eXOp7I\":[\"Vous n'avez pas de permission pour supprimer les ressources: \",[\"itemsUnableToremove\"]],\"eXWuGz\":[\"Onglet Liste des modèles récents\"],\"eYJ4TK\":[\"Inventaire construit introuvable.\"],\"eeke40\":[\"Automation Analytics\"],\"ekUnNJ\":[\"Sélectionner des balises\"],\"el9nUc\":[\"Le planning est inactif.\"],\"emqNXf\":[\"Vérification du Playbook\"],\"eqiT7d\":[\"Définit le rôle que cette instance jouera dans la topologie du maillage. La valeur par défaut est \\\"exécution\\\".\"],\"espHeZ\":[\"Empêcher le repli des groupes d'instances : s'il est activé, l'inventaire empêchera l'ajout de tout groupe d'instances d'organisation à la liste des groupes d'instances préférés pour exécuter les modèles de tâches associés.\"],\"etQEqZ\":[\"La suppression de ce lien rendra le reste de la branche orphelin et entraînera son exécution dès le lancement.\"],\"ewSXyG\":[\"suppression réversible\"],\"f-fQK9\":[\"Clé API Grafana\"],\"f2o-xB\":[\"Confirmer l'annulation\"],\"f6Hub0\":[\"Trier\"],\"f9yJNM\":[\"Égal à\"],\"fCZSgU\":[\"Voir tous les groupes d'instance\"],\"fDzxi_\":[\"Sortir sans sauvegarder\"],\"fE2kOY\":[\"Sélection de l'opérateur de date\"],\"fGEOCn\":[\"Statut Job\"],\"fGLpQj\":[\"Branche/ Balise / Commit du Contrôle de la source\"],\"fGQ9Ug\":[\"Sélectionnez les informations d'identification pour accéder aux nœuds sur lesquels ce job sera exécuté. Vous ne pouvez sélectionner qu'une seule information d'identification de chaque type. Pour les informations d'identification machine (SSH), cocher « Demander au lancement » sans sélectionner d'informations d'identification vous obligera à sélectionner une information d'identification machine au moment de l'exécution. Si vous sélectionnez des informations d'identification et cochez « Demander au lancement », les informations d'identification sélectionnées deviennent les valeurs par défaut qui peuvent être mises à jour au moment de l'exécution.\"],\"fJ9xam\":[\"Activer l'instance\"],\"fKew5B\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"Annuler le travail\"],\"other\":[\"Annuler les emplois\"]}]],\"fL7WXr\":[\"Applications\"],\"fMUEsk\":[\"Jour \",[\"0\"]],\"fMulwN\":[\"Actualiser la révision du projet\"],\"fOAyP5\":[\"Saisie de texte de recherche\"],\"fODqV4\":[\"Cette valeur n’a pas été trouvée. Veuillez entrer ou sélectionner une valeur valide.\"],\"fQCM-p\":[\"Voir les détails de l'organisation\"],\"fQGOXc\":[\"Erreur !\"],\"fR8DDt\":[\"Confirmer la suppression de tous les nœuds\"],\"fVjyJ4\":[\"Confirmer dissocier\"],\"f_Xpp2\":[\"Cette action dissociera les éléments suivants :\"],\"fcTDCh\":[\"Fournissez vos informations d'identification Red Hat ou Red Hat Satellite\\n ci-dessous et vous pourrez choisir parmi une liste de vos abonnements disponibles.\\n Les informations d'identification que vous utilisez seront stockées pour une utilisation future\\n lors de la récupération d'abonnements renouvelés ou étendus.\"],\"ff_JYN\":[\"Filtrer par nom de groupe imbriqué\"],\"fgrmWn\":[\"Demander le mode différentiel au lancement.\"],\"fhFmMp\":[\"Identifiant client\"],\"fjX9i5\":[\"Inventaire smart non trouvé.\"],\"fk1WEw\":[\"Crypté\"],\"fld-O4\":[\"Toutes les tâches\"],\"fnbZWe\":[\"Sélectionnez éventuellement les informations d'identification à utiliser pour renvoyer les mises à jour de statut au service de webhook.\"],\"foItBN\":[\"Jour du week-end\"],\"fp4RS1\":[\"chargement-contenu-en-cours\"],\"fpMgHS\":[\"Lun.\"],\"fqSfXY\":[\"Remplacer\"],\"fqmP_m\":[\"Hôte inaccessible\"],\"fthJP1\":[\"Les services de webhook peuvent lancer des jobs avec ce modèle de job de workflow en effectuant une requête POST vers cette URL.\"],\"fwX7gC\":[\"VMware vCenter\"],\"g4o5Lr\":[\"Verbeux\"],\"g6ekO4\":[\"Impossible de changer d'hôte.\"],\"g7CZ-8\":[\"Connectez-vous avec GitHub Enterprise Organizations\"],\"g9d3sF\":[\"Démarrer le corps du message\"],\"gALXcv\":[\"Supprimer ce nœud\"],\"gBnBJa\":[\"Flux de travail Source\"],\"gDx5MG\":[\"Modifier le lien\"],\"gIGcbR\":[\"Nombre maximum de tâches à exécuter simultanément sur ce groupe. Zéro signifie qu'aucune limite ne sera appliquée.\"],\"gJccsJ\":[\"Message de flux de travail approuvé\"],\"gK06zh\":[\"Ajouter un modèle de job\"],\"gM3pS9\":[\"Environnements d'exécution\"],\"gN3aF4\":[\"LDAP5\"],\"gSVH9P\":[\"Synchroniser toutes les sources\"],\"gUaMtt\":[\"En cas d'expiration\"],\"gVYePj\":[\"Créer une nouvelle équipe\"],\"gWlcwd\":[\"Statut du dernier Job\"],\"gYWK-5\":[\"Voir les paramètres de l'interface utilisateur\"],\"gZXc5U\":[\"Le nombre d'utilisateurs distincts qui doivent approuver avant que le flux de travail continue. Un seul refus refuse toujours le nœud.\"],\"gZaMqy\":[\"Connectez-vous avec GitHub Teams\"],\"gZkstf\":[\"Si activé, cela stockera les faits collectés afin qu'ils puissent être consultés au niveau de l'hôte. Les faits sont conservés et injectés dans le cache de faits au moment de l'exécution.\"],\"gcFnpl\":[\"Statut Job\"],\"geTfDb\":[\"Voir les détails de Job\"],\"ged_ZE\":[\"Oragnisation\"],\"gezukD\":[\"Sélectionnez un Job à annuler\"],\"gfyddN\":[\"Télécharger un fichier .zip\"],\"gh06VD\":[\"Sortie\"],\"ghJsq8\":[\"Faites défiler d'abord\"],\"gmB6oO\":[\"Planifier\"],\"gmBQqV\":[\"Mise à jour du projet\"],\"gnveFZ\":[\"Onglet Erreur standard\"],\"goVc-x\":[\"Modifier la configuration du plug-in Configuration\"],\"go_DGX\":[\"Ajouter des rôles d’équipe\"],\"gpKdxJ\":[\"Sélectionnez une question à supprimer\"],\"gpmbqk\":[\"Variables\"],\"gpnvle\":[\"erreur de suppression\"],\"gsj32g\":[\"Annuler Sync Projet\"],\"gtB4z-\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" heure\"],\"other\":[\"#\",\" heures\"]}]],\"gwKtbI\":[\"dans la documentation et les\"],\"h25sKn\":[\"Gestion des abonnements\"],\"h51QFW\":[\"YAML\"],\"h8DugX\":[\"Libellés\"],\"hAjDQy\":[\"Sélectionner le statut\"],\"hBHRCF\":[\"Nombre minimum d'instances qui seront automatiquement\\n attribuées à ce groupe lorsque de nouvelles instances seront mises en ligne.\"],\"hEBjSg\":[\"Red Hat Satellite 6\"],\"hEnNCI\":[\"Supprimer la recherche en cours liée aux facts ansible pour activer une autre recherche par cette clé.\"],\"hG89Ed\":[\"Image\"],\"hHKoQD\":[\"Sélectionner les adresses des pairs\"],\"hLDu5N\":[\"Modifier l’application\"],\"hNudM0\":[\"Définir une valeur pour ce champ\"],\"hPa_zN\":[\"Organisation (Nom)\"],\"hQ0dMQ\":[\"Ajouter un nouvel hôte\"],\"hQRttt\":[\"Valider\"],\"hVPa4O\":[\"Sélectionnez une option\"],\"hX8KyU\":[\"Ce travail a échoué et n'a pas de résultat.\"],\"hXDKWN\":[\"Informations sur la fréquence\"],\"hXzOVo\":[\"Suivant\"],\"hYH0cE\":[\"Voulez-vous vraiment demander l'annulation de ce job ?\"],\"hYgDIe\":[\"Créer\"],\"hZ6znB\":[\"Port\"],\"hZke6f\":[\"Êtes-vous sûr de vouloir désactiver l'authentification locale ? Cela pourrait avoir un impact sur la capacité des utilisateurs à se connecter et sur la capacité de l'administrateur système à annuler ce changement.\"],\"hc_ufD\":[\"Balises Job\"],\"hdyeZ0\":[\"Supprimer Job\"],\"he3ygx\":[\"Copier\"],\"heqHpI\":[\"Chemin de base du projet\"],\"hg6l4j\":[\"Mars\"],\"hgJ0FN\":[\"Effectuez une recherche ci-dessus pour définir un filtre d'hôte\"],\"hgr8eo\":[\"éléments\"],\"hgvbYY\":[\"Septembre\"],\"hhzh14\":[\"Nous n'avons pas pu localiser les licences associées à ce compte.\"],\"hi1n6B\":[\"Mettre à jour les paramètres relatifs aux Jobs dans \",[\"brandName\"]],\"hiDMCa\":[\"Approvisionnement\"],\"hjsbgA\":[\"Variables supplémentaires\"],\"hjwN_s\":[\"Nom de la ressource\"],\"hlbQEq\":[\"Certificat de validation de la signature du contenu\"],\"hmEecN\":[\"Job de gestion\"],\"hmjNLv\":[\"Thème préféré\"],\"hty0d5\":[\"Lundi\"],\"hvs-Js\":[\"Informations sur l’application\"],\"i0VMLn\":[\"Message de flux de travail refusé\"],\"i2izXk\":[\"La programmation manque de règles\"],\"i4_LY_\":[\"Écriture\"],\"i9sC0B\":[\"Ajouter les permissions de l'équipe\"],\"iASwqf\":[\"This action will cancel the following job:\"],\"iCFhEl\":[\"Numéro de téléphone de la source\"],\"iDNBZe\":[\"Notifications\"],\"iDWfOR\":[\"Échec de l'approbation d'une ou plusieurs validations de flux de travail.\"],\"iDjyID\":[\"Afficher les détails des informations d'identification\"],\"iE1s1P\":[\"Lancer le flux de travail\"],\"iEUzMn\":[\"système\"],\"iH8pgl\":[\"Retour\"],\"iI4bLJ\":[\"Dernière connexion\"],\"iIVceM\":[\"Erreur de copie\"],\"iJWOeZ\":[\"Pas de JSON disponible\"],\"iJiCFw\":[\"Détails du groupe\"],\"iLO3nG\":[\"Play - Nombre\"],\"iMaC2H\":[\"Groupes d'instances\"],\"iPp22p\":[\"Cette programmation utilise des règles complexes qui ne sont pas prises en charge dans\\n l'interface utilisateur. Veuillez utiliser l'API pour gérer cette programmation.\"],\"iQdYL_\":[\"Ajouter un inventaire smart\"],\"iRWxmA\":[\"Désactiver la vérification SSL\"],\"iTylMl\":[\"Modèles\"],\"iWKCzl\":[\"Sélectionnez dans la liste des répertoires trouvés dans le chemin de base du projet. Ensemble, le chemin de base et le répertoire de playbook fournissent le chemin complet utilisé pour localiser les playbooks.\"],\"iXmHtI\":[\"Sélectionnez le type de Job\"],\"iZBwau\":[\"Cette étape contient des erreurs\"],\"i_CDGy\":[\"Autoriser le remplacement de la branche\"],\"i_Kv21\":[\"Créer une nouvelle source\"],\"ifckL-\":[\"Sélection de ligne\"],\"ifdViT\":[\"Voir les détails de l'inventaire\"],\"ig0q8s\":[\"Cet inventaire est appliqué à tous les nœuds de flux de travail de ce flux de travail (\",[\"0\"],\") qui requiert un inventaire.\"],\"inP0J5\":[\"Détails d’abonnement\"],\"isRobC\":[\"Nouveau\"],\"itlxml\":[\"Job de gestion\"],\"ittbfT\":[\"Une recherche par ansible_facts requiert une syntaxe particulière. Voir\"],\"itu2NQ\":[\"Types d'états de liaison\"],\"j1a5f1\":[\"Modifier l’hôte\"],\"j6gqC6\":[\"Branche à utiliser lors de l'exécution du job. La valeur par défaut du projet est utilisée si vide. Autorisé uniquement si le champ allow_override du projet est défini sur true.\"],\"j7zAEo\":[\"Statuts du flux de travail\"],\"j8QfHv\":[\"Modifier l’hôte\"],\"jAxdt7\":[\"annuler supprimer\"],\"jBGh4u\":[\"Définition de l'inventaire des groupes imbriqués\xA0:\"],\"jCVu9g\":[\"Cancel selected job\"],\"jEJtMA\":[\"En attente d'approbation des flux de travail\"],\"jEw0Mr\":[\"Veuillez saisir une URL valide\"],\"jFaaUJ\":[\"Canonique\"],\"jGUu_G\":[\"Approbations requises\"],\"jIaeJK\":[\"Questionnaire\"],\"jJdwCB\":[\"Rétablir\"],\"jKibyt\":[\"Réinitialiser zoom\"],\"jMyq_x\":[\"Workflow Job 1/\",[\"0\"]],\"jaUa4e\":[\"Ces données sont utilisées pour améliorer\\n les futures versions du logiciel Tower et pour aider à\\n optimiser l'expérience et la réussite des clients.\"],\"jc86YO\":[\"Demander la limite au lancement.\"],\"ji-8F7\":[\"Cette accréditation est actuellement utilisée par d'autres ressources. Êtes-vous sûr de vouloir la supprimer ?\"],\"jiE6Vn\":[\"Organisations\"],\"jifz9m\":[\"Aucune (exécution unique)\"],\"jkQOCm\":[\"Ajouter des exceptions\"],\"jljuYN\":[\"Service à partir duquel les requêtes de webhook seront acceptées.\"],\"jluR-N\":[\"Avertissement : \",[\"selectedValue\"],\" est un lien vers \",[\"0\"],\" et sera enregistré en tant que tel.\"],\"joAQQS\":[\"The inventories will be in a pending status until the final delete is processed.\"],\"jqVo_k\":[\"ici.\"],\"jqzUyM\":[\"Non disponible\"],\"jrkyDn\":[\"Play - Démarrage\"],\"jrsFB3\":[\"Onglet de sortie\"],\"jsz-PY\":[\"Date de fin inconnue\"],\"jwmkq1\":[\"Informations d’identification de la machine\"],\"jzD-D6\":[\"Les balises à ignorer sont utiles lorsque vous avez un grand playbook et que vous souhaitez ignorer des parties spécifiques d'un play ou d'une tâche. Utilisez des virgules pour séparer plusieurs balises. Consultez la documentation pour plus de détails sur l'utilisation des balises.\"],\"k020kO\":[\"Flux d’activité\"],\"k2dzu3\":[\"Expire UTC\"],\"k30JvV\":[\"Catégorie sélectionnée\"],\"k5nHqi\":[\"L'environnement d'exécution qui sera utilisé lors du lancement de ce modèle de job. L'environnement d'exécution résolu peut être remplacé en en attribuant explicitement un autre à ce modèle de job.\"],\"kALwhk\":[\"seconds\"],\"kDWprA\":[\"Ces arguments sont utilisés avec le module spécifié.\"],\"kEhyki\":[\"Le champ se termine par une valeur.\"],\"kLja4m\":[\"Initié par\"],\"kLk5bG\":[\"Message de départ\"],\"kNUkGV\":[\"Type de recherche\"],\"kNfXib\":[\"Nom du module\"],\"kODvZJ\":[\"Prénom\"],\"kOVkPY\":[\"Basculer l'instance\"],\"kP-3Hw\":[\"Retour aux inventaires\"],\"kQerRU\":[\"Ce champ ne doit pas contenir d'espaces\"],\"kX-GZH\":[\"Relancer le Job\"],\"kXzl6Z\":[\"Variables Source\"],\"kYDvK4\":[\"Ajout de fichier\"],\"kah1PX\":[\"Voir des exemples YAML sur\"],\"kaux7o\":[\"Remplacer les groupes locaux et les hôtes de la source d'inventaire distante.\"],\"kgtWJ0\":[\"Sélectionnez les groupes d'instances sur lesquels ce modèle de job doit s'exécuter.\"],\"kiMHN-\":[\"Auditeur système\"],\"kjrq_8\":[\"Plus d'informations\"],\"kkDQ8m\":[\"Jeudi\"],\"kkc8HD\":[\"Activer la connexion simplifiée pour vos applications \",[\"brandName\"]],\"kpRn7y\":[\"Supprimer les questions\"],\"kpnWnY\":[\"Après chaque mise à jour du projet où la révision SCM change, actualisez l'inventaire à partir de la source sélectionnée avant d'exécuter les tâches. Ceci est destiné au contenu statique, comme le format de fichier .ini d'inventaire Ansible.\"],\"ks-HYT\":[\"Ajouter les permissions de l’utilisateur\"],\"ks71ra\":[\"Exceptions\"],\"kt8V8M\":[\"Sélectionnez une branche pour le flux de travail.\"],\"ktPOqw\":[\"Reportez-vous à \"],\"kuIbuV\":[\"Les bilans de santé ne peuvent être exécutées que sur les nœuds d'exécution.\"],\"ku__5b\":[\"Deuxième\"],\"kyAi7k\":[\"Instance\"],\"kyHUFI\":[\"Mot de passe Archivage sécurisé | \",[\"credId\"]],\"kyfr2I\":[\"Si cette case est cochée, tous les hôtes et groupes qui étaient présents auparavant sur la source externe mais qui ont maintenant été supprimés seront retirés de l'inventaire. Les hôtes et groupes qui n'étaient pas gérés par la source d'inventaire seront promus au prochain groupe créé manuellement ou, s'il n'existe aucun groupe créé manuellement pour les y promouvoir, ils seront laissés dans le groupe « all » par défaut de l'inventaire.\"],\"kz7G1W\":[\"Êtes-vous sûr de vouloir supprimer \",[\"0\"],\" l’accès à \",[\"1\"],\"? Cela risque d’affecter tous les membres de l'équipe.\"],\"l4MzBY\":[[\"update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" seconde\"],\"other\":[\"#\",\" secondes\"]}]],\"l4k9lc\":[\"Premier nœud\"],\"l5XUoS\":[\"Informations d'identification du webhook\"],\"l75CjT\":[\"Oui\"],\"l9ZmWD\":[[\"scm_update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" seconde\"],\"other\":[\"#\",\" secondes\"]}]],\"lCF0wC\":[\"Recharger\"],\"lJFsGr\":[\"Créer un nouveau groupe d'instances\"],\"lKxoCA\":[\"Agrandir les événements de la tâche\"],\"lM9cbX\":[\"Notez que vous pouvez toujours voir le groupe dans la liste après la dissociation si l'hôte est également membre des enfants de ce groupe. Cette liste affiche tous les groupes auxquels l'hôte est associé directement et indirectement.\"],\"lURfHJ\":[\"Effondrer une section\"],\"lWkKSO\":[\"min\"],\"lWmv3p\":[\"Sources d'inventaire\"],\"lYDyXS\":[\"Inventaire smart\"],\"l_jRvf\":[\"Playbook terminé\"],\"lfoFSg\":[\"Supprimer l'hôte\"],\"lgm7y2\":[\"modifier\"],\"lgphOX\":[\"Valeur attendue\"],\"lhgU4l\":[\"Mise à jour introuvable\"],\"lhkaAC\":[\"Essai\"],\"ljGeYw\":[\"Utilisateur normal\"],\"lk5WJ7\":[\"nom-hôte-\",[\"0\"]],\"lkgIYt\":[\"Pagerduty\"],\"lo-rJO\":[\"Pan En bas\"],\"ltvmAF\":[\"Application non trouvée.\"],\"lu2qW5\":[\"Quelconque\"],\"lucaxq\":[\"Impossible d'activer l'agrégateur de journaux sans fournir l'hôte de l'agrégateur de journaux et le type d'agrégateur de journaux.\"],\"luxcrf\":[\"Plus d'informations pour \",[\"label\"]],\"lyjq5X\":[\"Slack\"],\"m-eV2_\":[\"Groupe de conteneurs non trouvé.\"],\"m16xKo\":[\"Ajouter\"],\"m1tKEz\":[\"Les administrateurs système ont un accès illimité à toutes les ressources.\"],\"m2ErDa\":[\"Échec\"],\"m3k6kn\":[\"Échec de l'annulation de la synchronisation de la source d'inventaire construite\"],\"m5MOUX\":[\"Retour aux hôtes\"],\"mGJIOu\":[\"Cette entrée d'inventaire construit\\n crée un groupe pour les deux catégories et utilise\\n la limite (modèle d'hôte) pour ne renvoyer que les hôtes qui\\n se trouvent à l'intersection de ces deux groupes.\"],\"mNBZ1R\":[\"Remarque : ce champ suppose que le nom du dépôt distant est « origin ».\"],\"mOFgdC\":[\"Maximum\"],\"mPiYpP\":[\"Types d'état des nœuds\"],\"mSv_7k\":[\"depuis les trois dernières années.\"],\"mXRKES\":[\"LDAP4\"],\"mXfNlE\":[\"Cette programmation d’horaire ne contient pas les valeurs d'enquête requises\"],\"mYGY3B\":[\"Date\"],\"mZiQNk\":[\"Élévation de privilèges : si activé, exécutez ce playbook en tant qu'administrateur.\"],\"m_tELA\":[\"annuler la suppression\"],\"ma7cO9\":[\"Echec de la suppression du groupe \",[\"0\"],\".\"],\"mahPLs\":[\"Mot de passe pour l’élévation des privilèges\"],\"mcGG2z\":[[\"minutes\"],\" min \",[\"seconds\"],\" sec\"],\"mdNruY\":[\"Token API\"],\"mgJ1oe\":[\"Confirmer la suppression\"],\"mgjN5u\":[\"Dissocier l'instance du groupe d'instances ?\"],\"mhg7Av\":[\"Exécuter une commande ad hoc\"],\"mi9ffh\":[\"Détails sur l'hôte\"],\"mk4anB\":[\"Navigateur par défaut\"],\"mlDUq3\":[\"Modifié par (nom d'utilisateur)\"],\"mnm1rs\":[\"GitHub (Par défaut)\"],\"moZ0VP\":[\"Statut de la synchronisation\"],\"momgZ_\":[\"Nom du modèle de tâche de flux de travail.\"],\"mqAOoN\":[\"Choisissez un répertoire Playbook\"],\"n-37ya\":[\"Confirmer Désactiver l'autorisation locale\"],\"n-LISx\":[\"Une erreur s'est produite lors de la sauvegarde du flux de travail.\"],\"n-ZioH\":[\"Erreur de récupération du projet mis à jour\"],\"n-qmM7\":[\"Sélectionnez une clé de compte de service formatée en JSON pour remplir automatiquement les champs suivants.\"],\"n12Go4\":[\"Impossible de charger les groupes associés.\"],\"n60kiJ\":[\"* Ce champ sera récupéré dans un système externe de gestion des secrets en utilisant le justificatif d'identité spécifié.\"],\"n6mYYY\":[\"Message d'expiration de flux de travail\"],\"n9Idrk\":[\"(10 premiers seulement)\"],\"n9lz4A\":[\"Jobs ayant échoué\"],\"nBAIS_\":[\"Afficher les détails de l’événement\"],\"nC35Na\":[\"Are you sure you want delete the group below?\"],\"nCU-1E\":[\"Permet la création d'une URL de rappel\\n d'exécution. À l'aide de cette URL, un hôte peut contacter \",[\"brandName\"],\"\\n et demander une mise à jour de configuration à l'aide de ce modèle\\n de job\"],\"nCY9IL\":[\"Hôte ignoré\"],\"nDjIzD\":[\"Voir les détails du projet\"],\"nGbNEN\":[\"Durée en secondes pendant laquelle un projet est considéré comme à jour. Lors des exécutions de jobs et des rappels, le système de tâches évaluera l'horodatage de la dernière mise à jour du projet. S'il est plus ancien que le délai d'expiration du cache, il n'est pas considéré comme à jour et une nouvelle mise à jour du projet sera effectuée.\"],\"nI54lc\":[\"Supprimez le projet avant la synchronisation\"],\"nJPBvA\":[\"Fichier, répertoire ou script\"],\"nJTOTZ\":[\"L'environnement d'exécution qui sera utilisé pour les tâches au sein de cette organisation. Il sera utilisé comme solution de rechange lorsqu'un environnement d'exécution n'a pas été explicitement attribué au niveau du projet, du modèle de job ou du flux de travail.\"],\"nLGsp4\":[\"Activez un questionnaire pour ce modèle de tâche de flux de travail.\"],\"nMiE53\":[\"Variable activée\"],\"nOhz3x\":[\"Déconnexion\"],\"nPH1Cr\":[\"Ces environnements d'exécution pourraient être utilisés par d'autres ressources qui en dépendent. Voulez-vous vraiment les supprimer quand même\xA0?\"],\"nQOwDS\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"dayOfWeek\"]],\"4\":[\"The fourth \",[\"dayOfWeek\"]],\"5\":[\"The fifth \",[\"dayOfWeek\"]],\"one\":[\"The first \",[\"dayOfWeek\"]],\"two\":[\"The second \",[\"dayOfWeek\"]]}]],\"nRXCOn\":[\"Échec du comptage des hôtes\"],\"nSTT11\":[\"Relancer à partir de :\"],\"nTENWI\":[\"Retour à la gestion des abonnements.\"],\"nU16mp\":[\"Expiration Délai d’attente du cache\"],\"nZPX7r\":[\"Avertissement\xA0: modifications non enregistrées\"],\"nZW6P0\":[\"Fuseau horaire local\"],\"nZYB4j\":[\"Aucun statut disponible\"],\"nZYxse\":[\"Dissocier Hôte du Groupe\"],\"n_qDNz\":[\"Switch to dark mode\"],\"naCW6Z\":[\"Avril\"],\"ncxIQL\":[\"N'a pas réussi à dissocier une ou plusieurs instances.\"],\"neiOWk\":[\"Voir la documentation de l'inventaire construit ici\"],\"nfnm9D\":[\"Nom de l'organisation\"],\"ng00aZ\":[\"Filtre d'hôte\"],\"nhxAdQ\":[\"Mot-clé \"],\"nlsWzF\":[\"Veuillez ajouter des questions d'enquête.\"],\"nnY7VU\":[\"Sous-domaine Pagerduty\"],\"noGZlf\":[\"Expiration du délai d’attente du cache (secondes)\"],\"npGo-z\":[\"Connectez-vous avec \",[\"label\"]],\"nuh_Wq\":[\"URL du webhook\"],\"nvUq8j\":[\"1 (Verbeux)\"],\"nzozOC\":[\"Supprimer l’utilisateur\"],\"nzr1qE\":[\"Téléchargement de fichier rejeté. Veuillez sélectionner un seul fichier .json.\"],\"o-JPE2\":[\"Aucune question d'enquête trouvée.\"],\"o0RwAq\":[\"Connectez-vous à GitHub Enterprise\"],\"o0x5-R\":[\"Sélectionnez une valeur pour ce champ\"],\"o4NRE0\":[\"Saisie de la valeur de la recherche avancée\"],\"o5J6dR\":[\"Préciser les conditions dans lesquelles ce nœud doit être exécuté\"],\"o9R2tO\":[\"Connexion SSL\"],\"oABS9f\":[\"Indiquez une valeur pour ce champ ou sélectionnez l'option Me le demander au lancement.\"],\"oB5EwG\":[\"Système externe de gestion des secrets\"],\"oBmCtD\":[\"Are you sure you want delete the groups below?\"],\"oC5JSb\":[\"Échec de la récupération des données de projet mises à jour.\"],\"oCKCYp\":[\"Notification envoyée avec succès\"],\"oEijQ7\":[\"Version non sensible à la casse de startswith.\"],\"oFtmtl\":[\"Select the inventory containing the hosts\\n you want this job to manage.\"],\"oGKq12\":[\"Construire 2 groupes, limite à l'intersection\"],\"oH1Qle\":[\"URL du webhook pour ce modèle de tâche de flux de travail.\"],\"oHOOxn\":[\"Par défaut, nous collectons et transmettons des données d'analyse sur l'utilisation du service à Red Hat. Il existe deux catégories de données collectées par le service. Pour plus d'informations, consultez <0>cette page de documentation de Tower. Décochez les cases suivantes pour désactiver cette fonctionnalité.\"],\"oII7vS\":[\"Paramètres de GitHub\"],\"oKMFX4\":[\"Jamais mis à jour\"],\"oKbBFU\":[\"# source with sync failures.\"],\"oNOjE7\":[\"Date/Heure de fin\"],\"oNZQUQ\":[\"Identifiant pour l'authentification avec Kubernetes ou OpenShift\"],\"oQqtoP\":[\"Retour aux Jobs de gestion\"],\"oRt7Uv\":[[\"interval\"],\" years\"],\"oTDA5P\":[[\"0\",\"plural\",{\"one\":[\"Cette instance est actuellement utilisée par d'autres ressources. Êtes-vous sûr de vouloir la supprimer ?\"],\"other\":[\"Le déprovisionnement de ces instances pourrait affecter d'autres ressources qui en dépendent. Êtes-vous sûr de vouloir les supprimer quand même ?\"]}]],\"oWvSIB\":[\"E-mail de l’expéditeur\"],\"oX_mCH\":[\"Erreur de synchronisation du projet\"],\"oZvDsd\":[[\"interval\"],\" hours\"],\"ocUvR-\":[\"Faux\"],\"ofO19Q\":[\"Connectez-vous avec GitHub Enterprise Teams\"],\"ofcQVG\":[\"Annuler les modifications non enregistrées\"],\"olEUh2\":[\"Réussi\"],\"opS--k\":[\"Retour aux groupes d'instances\"],\"orh4t6\":[\"Hôte OK\"],\"osCeRO\":[\"Voir les paramètres Azure AD\"],\"ot7qsv\":[\"Effacer tous les filtres\"],\"ovBPCi\":[\"Par défaut\"],\"owBGkJ\":[\"La fin ne correspondait pas à une valeur attendue (\",[\"0\"],\")\"],\"owQ8JH\":[\"Ajouter un groupe d'instances\"],\"ozbhWy\":[\"Erreur de suppression\"],\"p-nfFx\":[\"Faites glisser un fichier ici ou naviguez pour le télécharger\"],\"p-ngUo\":[\"Ne plus suivre\"],\"p-pp9U\":[\"chaîne\"],\"p2LEhJ\":[\"Jeton d'accès personnel\"],\"p2_GCq\":[\"Confirmer le mot de passe\"],\"p3PM8G\":[\"Relancer à partir du premier nœud\"],\"p6-JME\":[\"Le premier récupère toutes les références. Le second récupère la pull request GitHub numéro 62 ; dans cet exemple, la branche doit être « pull/62/head ».\"],\"pAtylB\":[\"Introuvable\"],\"pCCQER\":[\"Disponible dans le monde entier\"],\"pH8j40\":[\"Hôtes actifs précédemment supprimés\"],\"pHyx6k\":[\"Options à choix multiples (une seule sélection)\"],\"pKQcta\":[\"Personnaliser les spécifications du pod\"],\"pOJNDA\":[\"commande\"],\"pOd3wA\":[\"Appuyez sur \\\"Entrée\\\" pour ajouter d'autres choix de réponses. Un choix de réponse par ligne.\"],\"pOhwkU\":[\"Cette action permettra de dissocier le rôle suivant de \",[\"0\"],\" :\"],\"pRZ6hs\":[\"Continuer\"],\"pSypIG\":[\"Afficher la description\"],\"pYENvg\":[\"Type d'autorisation\"],\"pZJ0-s\":[\"Nombre maximum de fourches pour permettre à tous les travaux exécutés simultanément sur ce groupe. Zéro signifie qu'aucune limite ne sera appliquée.\"],\"pa1SrG\":[[\"interval\"],\" days\"],\"peCAyQ\":[\"Voir les paramètres de RADIUS\"],\"pfw0Wr\":[\"TOUS\"],\"pguZh2\":[\"Créez des variables à partir d'expressions jinja2. Cela peut être utile\\n si les groupes construits que vous définissez ne contiennent pas les hôtes\\n attendus. Cela peut être utilisé pour ajouter des hostvars à partir d'expressions afin\\n que vous sachiez quelles sont les valeurs résultantes de ces expressions.\"],\"phTgAm\":[\"Il est difficile de donner une spécification pour\\n l'inventaire des facts Ansible, car pour renseigner\\n les facts du système, vous devez exécuter un playbook contre\\n l'inventaire qui a `gather_facts: true`. Les\\n facts réels différeront d'un système à l'autre.\"],\"pkY73W\":[\"Rocket.Chat\"],\"pn7Xy3\":[\"Voir Django\"],\"poMgBa\":[\"Demander la branche SCM au lancement.\"],\"ppcQy0\":[\"Régler le zoom à 100% et centrer le graphique\"],\"prydaE\":[\"Erreurs de synchronisation du projet\"],\"pw2VDK\":[\"Le dernier \",[\"weekday\"],\" de \",[\"month\"]],\"q-Uk_P\":[\"N'a pas réussi à supprimer un ou plusieurs types d’identifiants.\"],\"q45OlW\":[\"Régions\"],\"q5tQBE\":[\"Désactiver le type pour les recherches floues dans les champs de recherche associés\"],\"q67y3T\":[\"Modèle de notification introuvable.\"],\"qAlZNb\":[\"Vous n'êtes pas en mesure d'agir sur les approbations de workflow suivantes\xA0: \",[\"itemsUnableToDeny\"]],\"qCUUnr\":[\"Aucun hôte restant\"],\"qChjCy\":[\"Première exécution\"],\"qD-pvR\":[\"ID du tableau de bord (facultatif)\"],\"qEMgTP\":[\"Erreur de synchronisation de la source de l'inventaire\"],\"qJK-de\":[\"Connectez-vous avec OIDC\"],\"qS0GhO\":[\"Environnement d'exécution manquant\"],\"qSSVmd\":[\"Canaux ou utilisateurs de destination\"],\"qSSg1L\":[\"Lien vers un nœud disponible\"],\"qWD0iN\":[\"Ces données sont utilisées pour améliorer\\n les futures versions du logiciel et pour fournir\\n Automation Analytics.\"],\"qXRYa2\":[\"Suivre le dernier commit des sous-modules sur la branche\"],\"qYkrfg\":[\"Détails de rappel d’exécution\"],\"qZ2MTC\":[\"Il s'agit des modules pris en charge par \",[\"brandName\"],\" pour l'exécution de commandes.\"],\"qgjtIt\":[\"Convergence\"],\"qlhQw_\":[\"Synchronisation des inventaires\"],\"qliDbL\":[\"Archive à distance\"],\"qlwLcm\":[\"Dépannage\"],\"qmBmJJ\":[\"C'est la seule fois où le secret du client sera révélé.\"],\"qmYgP7\":[\"approuvé\"],\"qqeAJM\":[\"Jamais\"],\"qtFFSS\":[\"Mettre à jour Révision au lancement\"],\"qtaMu8\":[\"Inventaire (nom)\"],\"qvCD_i\":[\"Voici des exemples :\"],\"qwaCoN\":[\"Mise à jour du Contrôle de la source\"],\"qxZ5RX\":[\"hôtes\"],\"qznBkw\":[\"Modal de liaison de flux de travail\"],\"r6Aglb\":[\"Entrez les injecteurs avec la syntaxe JSON ou YAML. Consultez la documentation sur le contrôleur Ansible pour avoir un exemple de syntaxe.\"],\"r6y-jM\":[\"Avertissement\"],\"r6zgGo\":[\"Décembre\"],\"r8ojWq\":[\"Confirmer la suppression\"],\"r8oq0Y\":[\"Après 24 heures\"],\"rBdPPP\":[\"N'a pas réussi à supprimer \",[\"name\"],\".\"],\"rE95l8\":[\"Type de client\"],\"rG3WVm\":[\"Sélectionner\"],\"rHK_Sg\":[\"L'environnement virtuel personnalisé \",[\"virtualEnvironment\"],\" doit être remplacé par un environnement d'exécution. Pour plus d'informations sur la migration vers des environnements d'exécution, voir la <0>the documentation..\"],\"rK7UBZ\":[\"Relancer tous les hôtes\"],\"rKS_55\":[\"Stockage des faits : si activé, cela stockera les faits collectés afin qu'ils puissent être consultés au niveau de l'hôte. Les faits sont conservés et injectés dans le cache de faits au moment de l'exécution.\"],\"rKTFNB\":[\"Supprimer le type d'informations d’identification\"],\"rLznGJ\":[\"Un modèle Jinja2 rendu avec les artefacts set_stats en amont lors de la création de l'approbation. Utilisez ceci pour montrer à l'approbateur le contexte pertinent des étapes de job précédentes. Les variables disponibles proviennent des données set_stats des nœuds parents.\"],\"rMrKOB\":[\"Échec de la synchronisation du projet.\"],\"rOZRCa\":[\"Lien vers le flux de travail\"],\"rSYkIY\":[\"Ce champ doit être un nombre\"],\"rXhu41\":[\"2 (Déboguer)\"],\"rYHzDr\":[\"Éléments par page\"],\"r_IfWZ\":[\"Modifier l'inventaire\"],\"rdUucN\":[\"Prévisualisation\"],\"rfYaVc\":[\"Nom de variable de réponse\"],\"rfpIXM\":[\"Demander les groupes d'instances au lancement.\"],\"rfx2oA\":[\"Corps du message d'exécution de flux de travail\"],\"riBcU5\":[\"IRC Nick\"],\"rjVfy3\":[\"Documentation de flux de travail\"],\"rjyWPb\":[\"Janvier\"],\"rmb2GE\":[\"Refusé par \",[\"0\"],\" - \",[\"1\"]],\"rmt9Tu\":[\"Total Hôtes\"],\"ruhGSG\":[\"Annuler Sync Source d’inventaire\"],\"rvia3m\":[\"Divers Authentification\"],\"rw1pRJ\":[\"Téléchargement de l’ensemble (Bundle)\"],\"rwWNpy\":[\"Inventaires\"],\"s-MGs7\":[\"Ressources\"],\"s2xYUy\":[\"Remplacer les variables locales de la source d'inventaire distante.\"],\"s3KtlK\":[\"Cet horaire n'a pas d'occurrences en raison des exceptions sélectionnées.\"],\"s4Qnj2\":[\"Environnement d'exécution\"],\"s4fge-\":[\"Le mois dernier\"],\"s5aIEB\":[\"Supprimer le modèle de flux de travail \"],\"s5mACA\":[\"Détail de l'instance\"],\"s5r5nt\":[[\"0\",\"plural\",{\"one\":[\"Ce groupe d'instances est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?\"],\"other\":[\"La suppression de ces groupes d'instances pourrait affecter d'autres ressources qui en dépendent. Êtes-vous sûr de vouloir les supprimer quand même ?\"]}]],\"s6F6Ks\":[\"Aucune sortie de données pour ce job.\"],\"s70SJY\":[\"Paramètres de journalisation\"],\"s8hQty\":[\"Voir tous les Jobs.\"],\"s9EKbs\":[\"Désactiver la vérification SSL\"],\"sAz1tZ\":[\"confirmer dissocier\"],\"sBJ5MF\":[\"Sources\"],\"sCEb_0\":[\"Voir tous les hôtes de l'inventaire.\"],\"sGodAp\":[\"Remplacement des spécifications du pod\"],\"sMDRa_\":[\"Retour aux groupes\"],\"sOMf4x\":[\"Modèles récents\"],\"sSFxX6\":[\"Mettre à jour Révision au lancement\"],\"sTkKoT\":[\"Sélectionnez une ligne à refuser\"],\"sUyFTB\":[\"Redirection vers le tableau de bord\"],\"sV3kNp\":[\"Ce groupe d'instance est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?\"],\"sVh4-e\":[\"Supprimer ce lien\"],\"sW5OjU\":[\"requis\"],\"sZif4m\":[\"Dissocier le(s) groupe(s) lié(s) ?\"],\"s_XkZs\":[\"DÉMARRER\"],\"s_r4Az\":[\"Ce champ doit être un entier\"],\"sesAIn\":[\"Utilisez des messages personnalisés pour modifier le contenu des\\n notifications envoyées lorsqu'un job démarre, réussit ou échoue. Utilisez\\n des accolades pour accéder aux informations sur le job :\"],\"sgRZMG\":[\"Noeud hybride\"],\"siJgSI\":[\"Utilisateur non trouvé.\"],\"sjMCOP\":[\"Dernière modification\"],\"sjVfrA\":[\"Commande\"],\"smFRaX\":[\"Une mission a déjà été lancée\"],\"sqMsvU\":[[\"0\",\"plural\",{\"one\":[\"#\",\" source avec des échecs de synchronisation.\"],\"other\":[\"#\",\" sources avec des échecs de synchronisation.\"]}]],\"sr4LMa\":[\"Sources d'inventaire\"],\"svR3aM\":[\"OpenStack\"],\"svy2x9\":[\"Renvoie les résultats qui satisfont celui-ci ou tout autre filtre.\"],\"sxkWRg\":[\"Avancé\"],\"syupn5\":[\"Image de marque\"],\"syyeb9\":[\"Première\"],\"t-R8-P\":[\"Exécution\"],\"t2q1xO\":[\"Modifier la programmation\"],\"t4v_7X\":[\"Sélectionnez un type de nœud\"],\"t9QlBd\":[\"Novembre\"],\"tRm9qR\":[\"Les balises sont utiles lorsque vous avez un grand playbook et que vous souhaitez exécuter une partie spécifique d'un play ou d'une tâche. Utilisez des virgules pour séparer plusieurs balises. Consultez la documentation pour plus de détails sur l'utilisation des balises.\"],\"tVEot_\":[[\"0\",\"plural\",{\"one\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"other\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"]}]],\"tXkhj_\":[\"Démarrer\"],\"t_YqKh\":[\"Supprimer\"],\"tbSVlt\":[\"Supprimer l’accès de l’utilisateur\"],\"tfDRzk\":[\"Enregistrer\"],\"tfh2eq\":[\"Cliquez pour créer un nouveau lien vers ce nœud.\"],\"tgPwON\":[\"Opérateur\"],\"tgSBSE\":[\"Supprimer le lien\"],\"tgWuMB\":[\"Modifié\"],\"thJljW\":[\"AVERTISSEMENT : \"],\"toJdZA\":[\"Reorder\"],\"tpCmSt\":[\"policy rules.\"],\"tqlcfo\":[\"Déprovisionnement\"],\"trjiIV\":[\"Échec de l'association de l'homologue.\"],\"tst44n\":[\"Événements\"],\"twE5a9\":[\"N'a pas réussi à supprimer l’identifiant.\"],\"txNbrI\":[\"Branche Contrôle de la source\"],\"ty2DZX\":[\"Cette organisation est actuellement en cours de traitement par d'autres ressources. Êtes-vous sûr de vouloir la supprimer ?\"],\"tzgOKK\":[\"Ce point a déjà fait l'objet d'une action\"],\"u-sh8m\":[\"/ (project root)\"],\"u4ex5r\":[\"Juillet\"],\"u4n8Fm\":[\"Échec de la suppression des pairs.\"],\"u4x6Jy\":[\"Retour Jobs\"],\"u5AJST\":[\"Nombre de processus parallèles ou simultanés à utiliser lors de l'exécution du playbook. La saisie d'aucune valeur entraînera l'utilisation de la valeur par défaut du fichier de configuration ansible. Vous pourrez trouver plus d’informations.\"],\"u7f6WK\":[\"Voir toutes les approbations de flux de travail.\"],\"u84wS1\":[\"Erreur d'annulation d'un Job\"],\"uAQUqI\":[\"État\"],\"uAhZbx\":[\"Sources d'inventaire avec défaillances\"],\"uCjD1h\":[\"Votre session a expiré. Veuillez vous connecter pour continuer là où vous vous êtes arrêté.\"],\"uImfEm\":[\"Message de flux de travail en attente\"],\"uJz8NJ\":[\"La recherche est désactivée pendant que le job est en cours\"],\"uPRp5U\":[\"Annuler la recherche\"],\"uTDtiS\":[\"Cinquième\"],\"uUehLT\":[\"En attente\"],\"uVu1Yt\":[\"Sélection du type d’ensemble\"],\"uYtvvN\":[\"Sélectionnez un projet avant de modifier l'environnement d'exécution.\"],\"ucSTeu\":[\"Créé par (nom d'utilisateur)\"],\"ucgZ0o\":[\"Organisation\"],\"ugZpot\":[\"Tester les informations d'identification externes\"],\"ulRNXw\":[\"Dragging cancelled. List is unchanged.\"],\"upC07l\":[\"Survey Disabled\"],\"uuPCEU\":[\"If you want the Inventory Source to update on launch , click on Update on Launch, and also go to \"],\"uyJsf6\":[\"À propos de \"],\"uzTiFQ\":[\"Retour aux horaires\"],\"v-CZEv\":[\"Me le demander au lancement\"],\"v-EbDj\":[\"Réglages de dépannage\"],\"v-M-LP\":[\"Lancer le modèle.\"],\"v0urVb\":[\"Si vous n'avez pas d'abonnement, vous pouvez visiter\\n Red Hat pour obtenir un abonnement d'essai.\"],\"v1kQyJ\":[\"Webhooks\"],\"v2dMHj\":[\"Relancer en utilisant les paramètres de l'hôte\"],\"v2gmVS\":[\"Cette action supprimera en douceur les éléments suivants\xA0:\"],\"v45yUL\":[\"dissocier\"],\"v7vAuj\":[\"Total des offres\"],\"vCS_TJ\":[\"Impossible de supprimer la source d'inventaire \",[\"name\"],\".\"],\"vEr6TL\":[\"Ces arguments sont utilisés avec le module spécifié. Vous pouvez trouver des informations sur \",[\"0\"],\" en cliquant \"],\"vF82C6\":[\"Exécuter lorsque le nœud parent se trouve dans un état de réussite.\"],\"vFKI2e\":[\"Règles de l'horaire\"],\"vFVhzc\":[\"SOCIAL\"],\"vGVmd5\":[\"Ce champ est ignoré à moins qu'une variable activée ne soit définie. Si la variable activée correspond à cette valeur, l'hôte sera activé lors de l'importation.\"],\"vGjmyl\":[\"Supprimé\"],\"vHAaZi\":[\"Sauter tous les\"],\"vIb3RK\":[\"Créer une nouvelle programmation\"],\"vKRQJB\":[\"Champ permettant de passer une spécification de pod Kubernetes ou OpenShift personnalisée.\"],\"vLyv1R\":[\"Masquer\"],\"vPrMqH\":[\"Révision n°\"],\"vQHUI6\":[\"Si cette case est cochée, toutes les variables pour les groupes enfants et les hôtes seront supprimées et remplacées par celles trouvées sur la source externe.\"],\"vTL8gi\":[\"Heure de fin\"],\"vUOn9d\":[\"Renvoi\"],\"vYFWsi\":[\"Sélectionner des équipes\"],\"vYuE8q\":[\"Temps écoulé (en secondes) pendant lequel la tâche s'est exécutée.\"],\"vZbIkJ\":[\"GitLab\"],\"vcH-SH\":[\"Centre de données Bitbucket\"],\"ve_jRy\":[\"Selon condition\"],\"vgwVkd\":[\"UTC\"],\"vlHGDw\":[\"Transmettez des variables de ligne de commande supplémentaires au playbook. Il s'agit du paramètre de ligne de commande -e ou --extra-vars pour ansible-playbook. Fournissez des paires clé/valeur en YAML ou JSON. Consultez la documentation pour un exemple de syntaxe.\"],\"voRH7M\":[\"Exemples :\"],\"vq1XXv\":[\"Créer un nouvel inventaire smart avec le filtre appliqué\"],\"vq2WxD\":[\"Mar.\"],\"vq9gg6\":[\"Vous n'êtes pas en mesure d'agir sur les approbations de workflow suivantes\xA0: \",[\"itemsUnableToApprove\"]],\"vqAmQC\":[\"Module\"],\"vvY8pz\":[\"Demander les balises à ignorer au lancement.\"],\"vye-ip\":[\"Demander le délai d'expiration au lancement.\"],\"vzsN_5\":[[\"interval\"],\" day\"],\"w07pgp\":[\"Demander la verbosité au lancement.\"],\"w0kTk8\":[\"Relancer à partir du nœud défaillant\"],\"w14eW4\":[\"Voir tous les jetons.\"],\"w1RiT6\":[[\"0\",\"plural\",{\"one\":[\"Cette source d'inventaire est actuellement utilisée par d'autres ressources qui en dépendent. Êtes-vous sûr de vouloir la supprimer ?\"],\"other\":[\"La suppression de ces sources d'inventaire pourrait affecter d'autres ressources qui en dépendent. Êtes-vous sûr de vouloir les supprimer quand même ?\"]}]],\"w2VTLB\":[\"Moins que la comparaison.\"],\"w3EE8S\":[\"Hôtes automatisés\"],\"w4j7js\":[\"Voir les détails de l'équipe\"],\"w6zx64\":[\"Utiliser la langue du navigateur\"],\"wCnaTT\":[\"Remplacer le champ par la nouvelle valeur\"],\"wF-BAU\":[\"Ajouter un inventaire\"],\"wFnb77\":[\"ID Inventaire\"],\"wKEfMu\":[\"Traitement des événements terminé.\"],\"wO29qX\":[\"Organisation non trouvée.\"],\"wW08QA\":[\"Différent de\"],\"wX6sAX\":[\"Location de fonds de terres Recours au travail à forfait Bail avec partage des risques\"],\"wXAVe-\":[\"Arguments du module\"],\"wXB7k5\":[\"Spécifiez une couleur de notification. Les couleurs acceptables sont un code\\n de couleur hexadécimal (exemple : #3af ou #789abc).\"],\"waFx9W\":[\"Géré\"],\"wdxz7K\":[\"Source\"],\"wgNoIs\":[\"Tout sélectionner\"],\"wkgHlv\":[\"Ajouter un nouveau noeud\"],\"wlQNTg\":[\"Membres\"],\"wnizTi\":[\"Sélectionnez un abonnement\"],\"wpT1VN\":[\"Condition\"],\"wpt6vB\":[\"LDAP2\"],\"wqXiR2\":[\"Transmettez des modifications supplémentaires de ligne de commande. Il existe deux paramètres de ligne de commande ansible : \"],\"wsggVq\":[\"Si cette case n'est pas cochée, les hôtes enfants locaux et les groupes introuvables sur la source externe ne seront pas touchés par le processus de mise à jour de l'inventaire.\"],\"x-a4Mr\":[\"Informations d'identification du webhook\"],\"x02hbg\":[\"Rappels de provisionnement : active la création d'une URL de rappel de provisionnement. À l'aide de l'URL, un hôte peut contacter Ansible AWX et demander une mise à jour de configuration à l'aide de ce modèle de job.\"],\"x4Xp3c\":[\"actualisé\"],\"x5DnMs\":[\"Dernière modification\"],\"x6_dAC\":[\"Inventaire fédéré\"],\"x6oT_o\":[\"Hôtes disponibles\"],\"x7PDL5\":[\"Journalisation\"],\"x8uKc7\":[\"État de l'instance\"],\"x9WS62\":[\"Annuler \",[\"0\"]],\"xAYSEs\":[\"Heure de début\"],\"xAqth4\":[\"Voir les paramètres de Google OAuth 2.0\"],\"xC9EVu\":[\"Nœud annulé\"],\"xCJdfg\":[\"Effacer\"],\"xDr_ct\":[\"Fin\"],\"xESTou\":[\"N'a pas réussi à supprimer le job.\"],\"xF5tnT\":[\"Mot de passe Archivage sécurisé\"],\"xGQZwx\":[\"Ajouter un groupe de conteneurs\"],\"xGVfLh\":[\"Continuer\"],\"xHZS6u\":[\"Tâches ayant réussi\"],\"xHokxV\":[[\"0\",\"plural\",{\"one\":[\"The selected job cannot be deleted due to insufficient permission or a running job status\"],\"other\":[\"The selected jobs cannot be deleted due to insufficient permissions or a running job status\"]}]],\"xHt036\":[\"Jeton d'accès personnel\"],\"xKQRBr\":[\"Longueur maximale\"],\"xM01Pk\":[\"Réponse par défaut\"],\"xONDaO\":[\"Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?\"],\"xOl1yT\":[\"Recherche exacte sur le champ nom.\"],\"xPO5w7\":[\"Connectez-vous à GitHub\"],\"xPpkbX\":[\"Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway\"],\"xPxMOJ\":[\"Format d'heure non valide\"],\"xQioPk\":[\"Conditions préalables à l'exécution de ce nœud lorsqu'il y a plusieurs parents. Reportez-vous à \"],\"xSytdh\":[\"TERMINÉ :\"],\"xUhTCP\":[\"Choisissez une source\"],\"xVhQZV\":[\"Ven.\"],\"xY9DEq\":[\"Le modèle utilisé pour cibler les hôtes dans l'inventaire. En laissant le champ vide, tous et * cibleront tous les hôtes de l'inventaire. Vous pouvez trouver plus d'informations sur les modèles d'hôtes d'Ansible\"],\"xY9s5E\":[\"Délai d'attente\"],\"x_Ej3K\":[\"Choisissez un type ou un format de réponse que vous souhaitez comme invite pour l'utilisateur.\\n Consultez la documentation Ascender pour obtenir des informations supplémentaires sur chaque option.\"],\"x_ugm_\":[\"Total des groupes\"],\"xa7N9Z\":[\"URL de remplacement pour la redirection de connexion\"],\"xcaG5l\":[\"Modifier le flux de travail\"],\"xd2LI3\":[\"Expire le \",[\"0\"]],\"xdA_-p\":[\"Outils\"],\"xe5RvT\":[\"Onglet YAML\"],\"xefC7k\":[\"Port du serveur IRC\"],\"xeiujy\":[\"Texte\"],\"xg771-\":[\"LDAP1\"],\"xhj1Rt\":[\"La page que vous avez demandée n'a pas été trouvée.\"],\"xi4nE2\":[\"Message d'erreur\"],\"xnSIXG\":[\"N'a pas réussi à supprimer un ou plusieurs hôtes.\"],\"xoCdYY\":[\"Vérifiez si la valeur du champ donné est présente dans la liste fournie ; attendez-vous à une liste d'éléments séparés par des virgules.\"],\"xoXoBo\":[\"Supprimer l'erreur\"],\"xrG8k4\":[\"Google Compute Engine\"],\"xtRU96\":[\"Organisation GitHub Enterprise\"],\"xuYTJb\":[\"N'a pas réussi à supprimer le modèle de Job.\"],\"xw06rt\":[\"Le réglage correspond à la valeur d’usine par défaut.\"],\"xxTtJH\":[\"Expression régulière où seuls les noms d'hôtes correspondants seront importés. Le filtre est appliqué comme une étape de post-traitement après l'application de tout filtre de plugin d'inventaire.\"],\"y11WBZ\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"Annuler la tâche sélectionnée\"],\"other\":[\"Annuler les tâches sélectionnées\"]}]],\"y8ibKI\":[\"Supprimer les instances\"],\"yCCaoF\":[\"N'a pas réussi à mettre à jour l'instance.\"],\"yDeNnS\":[\"Créer un nouvel inventaire construit\"],\"yDifzB\":[\"Confirmer la sélection\"],\"yGS9cI\":[\"Fonctionne correctement\"],\"yGUKlf\":[\"Jobs de gestion\"],\"yGfW7Y\":[\"Modifiez PROJECTS_ROOT lors du déploiement de \",[\"brandName\"],\" pour changer cet emplacement.\"],\"yMIahh\":[\"Bienvenue dans Red Hat Ansible Automation Platform !\\n Veuillez suivre les étapes ci-dessous pour activer votre abonnement.\"],\"yMYuDg\":[\"Version de contrôleur d’Automation\"],\"yMfU4O\":[\"E-mail de l'expéditeur\"],\"yNcGa2\":[\"Expiration du jeton d'accès\"],\"yOXgbH\":[\"Remarque : lorsque vous utilisez le protocole SSH pour GitHub ou Bitbucket, saisissez uniquement une clé SSH, n'entrez pas de nom d'utilisateur (autre que git). De plus, GitHub et Bitbucket ne prennent pas en charge l'authentification par mot de passe lors de l'utilisation de SSH. Le protocole GIT en lecture seule (git://) n'utilise pas d'informations de nom d'utilisateur ou de mot de passe.\"],\"yQE2r9\":[\"Chargement en cours...\"],\"yRiHPB\":[\"Veuillez ajouter un job pour remplir cette liste\"],\"yRkqG9\":[\"Limite\"],\"yRsSBw\":[\"Approbations\"],\"yUlffE\":[\"Relancer\"],\"yVgnJA\":[\"Le nombre maximum d'hôtes autorisés à être gérés par cette organisation.\\n La valeur par défaut est 0, ce qui signifie aucune limite. Reportez-vous à la documentation\\n d'Ansible pour plus de détails.\"],\"yX3qAQ\":[\"Nœuds de modèle de Job de flux de travail\"],\"yaG1CX\":[\"LDAP\"],\"yaX9sM\":[\"Modèle de flux de travail\"],\"yb_fjw\":[\"Approbation\"],\"ydoZpB\":[\"Équipe non trouvée.\"],\"ydw9CW\":[\"Échec des hôtes\"],\"yfG3F2\":[\"Clés directes\"],\"yjwMJ8\":[\"Combien de fois l'hôte a-t-il été automatisé\"],\"yjyGja\":[\"Développer l'entrée\"],\"ylXj1N\":[\"Sélectionné\"],\"yq6OqI\":[\"C'est la seule fois où la valeur du jeton et la valeur du jeton de rafraîchissement associée seront affichées.\"],\"yqiwAW\":[\"Annuler le flux de travail\"],\"yrUyDQ\":[\"Définit l'étape actuelle du cycle de vie de cette instance. La valeur par défaut est \\\"installé\\\".\"],\"yrwl2P\":[\"Conforme\"],\"yuXsFE\":[\"N'a pas réussi à supprimer une ou plusieurs approbations de flux de travail.\"],\"yuvDX_\":[[\"intervalValue\",\"plural\",{\"one\":[\"month\"],\"other\":[\"months\"]}]],\"ywSBEn\":[\"Erreur de rôle d’associé\"],\"yxDqcD\":[\"Expiration du code d'autorisation\"],\"yy1cWw\":[\"Personnaliser les messages...\"],\"yz7wBu\":[\"Fermer\"],\"yzQhLU\":[\"Instances de stratégies minimum\"],\"yzdDia\":[\"Supprimer le questionnaire\"],\"z-BNGk\":[\"Supprimer un jeton d'utilisateur\"],\"z0DcIS\":[\"crypté\"],\"z3XA1I\":[\"Nouvel essai de l'hôte\"],\"z409y8\":[\"Service webhook\"],\"z7NLxJ\":[\"Si vous souhaitez uniquement supprimer l'accès de cet utilisateur particulier, veuillez le supprimer de l'équipe.\"],\"z8mwbl\":[\"Pourcentage minimum de toutes les instances qui seront automatiquement attribuées à ce groupe lorsque de nouvelles instances seront mises en ligne.\"],\"zBO1TV\":[[\"numOccurrences\",\"plural\",{\"one\":[\"Après \",\"#\",\" occurrence\"],\"other\":[\"Après \",\"#\",\" occurrences\"]}]],\"zHcXAG\":[\"Laissez ce champ vide pour rendre l'environnement d'exécution globalement disponible.\"],\"zICM7E\":[\"Ignorez les modifications locales avant de synchroniser\"],\"zJY4Uj\":[\"Playbook\"],\"zKJMiH\":[\"Répertoire Playbook\"],\"zK_63z\":[\"Nom d’utilisateur et/ou mot de passe non valide. Veuillez réessayer.\"],\"zLsDix\":[\"utilisateur ldap\"],\"zMKkOk\":[\"Retour à Organisations\"],\"zN0nhk\":[\"Fournissez vos informations d'identification Red Hat ou Red Hat Satellite pour activer Automation Analytics.\"],\"zQRgi-\":[\"Début de la notification de basculement\"],\"zTediT\":[\"Ce champ doit être un nombre et avoir une valeur comprise entre \",[\"min\"],\" et \",[\"max\"]],\"zUIPys\":[\"Ajoutez des hôtes au groupe en fonction des conditions Jinja2.\"],\"z_PZxu\":[\"N'a pas réussi à supprimer l'approbation du flux de travail.\"],\"zbLCH1\":[\"Type d’inventaire\"],\"zcQj5X\":[\"Tout d'abord, sélectionnez une clé\"],\"zdl7YZ\":[\"Sélectionner le chemin d'accès de la source\"],\"zeEQd_\":[\"Juin\"],\"zf7FzC\":[\"Jeton pour s'authentifier auprès de Kubernetes ou OpenShift. Doit être de type \\\"Kubernetes/OpenShift API Bearer Token\\\". S'il est laissé vide, le compte de service du Pod sous-jacent sera utilisé.\"],\"zfZydd\":[\"Modalité d'aperçu de l'enquête\"],\"zfsBaJ\":[\"Pour en savoir plus sur Automation Analytics\"],\"zgInnV\":[\"Vue modale du nœud de flux de travail\"],\"zga9sT\":[\"OK\"],\"zhPLvU\":[\"N'a pas réussi à associer.\"],\"zhrjek\":[\"Groupes\"],\"zi_YNm\":[\"Échec de l'annulation \",[\"0\"]],\"zmu4-P\":[\"SID de compte\"],\"znG7ed\":[\"Choisir un playbook\"],\"znTz5r\":[\"Programme non trouvé.\"],\"znuW_M\":[\"Si oui, considérer les entrées non valides comme une erreur fatale, sinon ignorer et\\n continuer.\"],\"zq0gmb\":[\"Sélectionnez une période\"],\"ztOzCj\":[\"Mettre à jour au lancement\"],\"ztw2L3\":[\"Il doit y avoir une valeur dans au moins un champ\"],\"zvfXp0\":[\"Basculer les approbations de notification\"],\"zx4BuL\":[\"Semaine\"],\"zzDlyQ\":[\"Réussite\"],\"{count, plural, one {# fork} other {# forks}}\":[[\"count\",\"plural\",{\"one\":[\"#\",\" fork\"],\"other\":[\"#\",\" forks\"]}]]}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"--iDlT\":[\"Supprimer le projet\"],\"-0AkQd\":[[\"forks\",\"plural\",{\"one\":[\"#\",\" fork\"],\"other\":[\"#\",\" forks\"]}]],\"-0B-ue\":[\"Projets\"],\"-5kO8P\":[\"Samedi\"],\"-6EcFR\":[\"Appuyez sur Entrée pour modifier. Appuyez sur ESC pour arrêter la modification.\"],\"-7M7WW\":[\"Cliquez pour changer la valeur par défaut\"],\"-7VWRl\":[\"RAM \",[\"0\"]],\"-8WGoO\":[\"Le paramètre du plugin est requis.\"],\"-9d7Ol\":[\"Sous-domaine Pagerduty\"],\"-9y9jy\":[\"Dernier bilan de fonctionnement\"],\"-9yY_Q\":[\"N'a pas réussi à copier l'inventaire.\"],\"-AZQnp\":[\"SAML\"],\"-FWz2-\":[\"Faire défiler la page précédente\"],\"-FjWgX\":[\"Jeu.\"],\"-GMFSa\":[\"Le projet n'a pas été copié.\"],\"-GOG9X\":[\"Masquer la description\"],\"-NI2UI\":[\"Divisez le travail effectué par ce modèle de job en le nombre spécifié de tranches de job, chacune exécutant les mêmes tâches sur une partie de l'inventaire.\"],\"-NezOR\":[\"Ce type d’accréditation est actuellement utilisé par certaines informations d’accréditation et ne peut être supprimé\"],\"-OpL2l\":[\"Exécuter quel que soit l'état final du nœud parent.\"],\"-PyL32\":[\"Êtes-vous sûr de vouloir supprimer ce nœud ?\"],\"-RAMET\":[\"Modifier ce lien\"],\"-SAqJ3\":[\"N'a pas réussi à copier les identifiants\"],\"-Uepfb\":[\"Contrôle\"],\"-b3ghh\":[\"Élévation des privilèges\"],\"-cWxFz\":[\"Activez la signature de contenu pour vérifier que le contenu est resté sécurisé lors de la synchronisation d'un projet. Si le contenu a été altéré, le job ne s'exécutera pas.\"],\"-hh3vo\":[\"Impossible de charger la dernière mise à jour du job\"],\"-li8PK\":[\"Utilisation de l'abonnement\"],\"-nb9qF\":[\"(Me le demander au lancement)\"],\"-ohrPc\":[\"Recherche Typeahead\"],\"-rfqXD\":[\"Questionnaire activé\"],\"-uOi7U\":[\"Cliquez pour télécharger l’ensemble (Bundle)\"],\"-vAlj5\":[\"Echec du lancement du Job.\"],\"-z0Ubz\":[\"Sélectionnez les rôles à appliquer\"],\"-zW4qj\":[\"Branche à extraire. En plus des branches, vous pouvez saisir des balises, des hachages de commit et des refs arbitraires. Certains hachages de commit et refs peuvent ne pas être disponibles à moins que vous ne fournissiez également un refspec personnalisé.\"],\"-zy2Nq\":[\"Type\"],\"0-31GV\":[\"Suppression\"],\"0-yjzX\":[\"Le projet doit être synchronisé avant qu'une révision soit disponible.\"],\"00_HDq\":[\"Type de politique\"],\"00cteM\":[\"Ce champ ne doit pas dépasser \",[\"0\"],\" caractères\"],\"01Zgfk\":[\"Expiré\"],\"02FGuS\":[\"Créer un nouveau groupe\"],\"02ePaq\":[\"Sélectionnez \",[\"0\"]],\"02o5A-\":[\"Créer un nouveau projet\"],\"05TJDT\":[\"Cliquez pour voir les détails de ce Job\"],\"06Veq8\":[\"Projet Sync\"],\"08IuMU\":[\"Remplacer les variables\"],\"08dX0o\":[\"Grafana\"],\"0Ca6Bi\":[[\"dateStr\"],\" par <0>\",[\"username\"],\"\"],\"0DRyjU\":[\"Descripteurs d'exécution\"],\"0JjrTf\":[\"Il y a eu une erreur dans l'analyse du fichier. Veuillez vérifier le formatage du fichier et réessayer.\"],\"0K8MzY\":[\"Ce champ ne doit pas dépasser \",[\"max\"],\" caractères\"],\"0LUj25\":[\"Supprimer un groupe d'instances\"],\"0MFMD5\":[\"Échec de l'exécution d'un contrôle de fonctionnement sur une ou plusieurs instances.\"],\"0Ohn6b\":[\"Lancé par\"],\"0PUWHV\":[\"Fréquence de répétition\"],\"0Pz6gk\":[\"Variables utilisées pour configurer le plugin d'inventaire construit. Pour une description détaillée de la configuration de ce plugin, voir\"],\"0QsHpG\":[\"Schéma d'entrée qui définit un ensemble de champs ordonnés pour ce type.\"],\"0Tddvz\":[\"L'URL de base du serveur Grafana - le point de\\n terminaison /api/annotations sera ajouté automatiquement à l'URL de base\\n de Grafana.\"],\"0WL4_U\":[\"Supprimer tous les nœuds\"],\"0WP27-\":[\"En attente du résultat du job…\"],\"0YAsXQ\":[\"Groupe de conteneurs\"],\"0ZdD1M\":[[\"0\",\"plural\",{\"one\":[\"You cannot cancel the following job because it is not running:\"],\"other\":[\"You cannot cancel the following jobs because they are not running:\"]}]],\"0ZqUtV\":[\"Pour plus d'informations, consultez la\"],\"0_ru-E\":[\"Copier l'inventaire\"],\"0cqIWs\":[\"Mot de passe d'auth de base\"],\"0d48JM\":[\"Options à choix multiples (sélection multiple)\"],\"0eOoxo\":[\"Veuillez choisir une date/heure de fin qui vient après la date/heure de début.\"],\"0f7U0k\":[\"Mer.\"],\"0gPQCa\":[\"Toujours\"],\"0lvFRT\":[\"Vous ne pouvez pas modifier le type de justificatif d'identité d'un justificatif d'identité, car cela peut casser la fonctionnalité des ressources qui l'utilisent.\"],\"0pC_y6\":[\"Événement\"],\"0qOaMt\":[\"Une erreur s'est produite lors de la demande de test de ces informations d'identification et métadonnées.\"],\"0rVzXl\":[\"Paramètres de Google OAuth 2\"],\"0sNe72\":[\"Ajouter des rôles\"],\"0tNXE8\":[\"PLACER\"],\"0tfvhT\":[\"La capacité utilisée par le groupe d'instances\"],\"0wlLcO\":[\"Définissez le nombre de jours pendant lesquels les données doivent être conservées.\"],\"0zpgxV\":[\"Options\"],\"0zs8j5\":[\"Nombre maximum de fois que le job de ce nœud est automatiquement relancé après un échec avant de suivre ses chemins d'échec. Les jobs annulés ne sont jamais relancés.\"],\"1-4GhF\":[\"Annuler Sync\"],\"10B0do\":[\"Échec de l'envoi de la notification de test.\"],\"1280Tg\":[\"Nom d'hôte\"],\"12j25_\":[\"Clé publique GPG\"],\"12kemj\":[\"URL Contrôle de la source\"],\"14KOyT\":[\"source ./vars\"],\"15GcuU\":[\"Afficher les paramètres d'authentification divers\"],\"17TKua\":[\"Groupe d'instance\"],\"19zgn6\":[\"Type d'instance\"],\"1A3EXy\":[\"Développer\"],\"1C5cFl\":[\"Exécution suivante\"],\"1Ey8My\":[\"Adresse IP\"],\"1F0IaT\":[\"Afficher les programmations\"],\"1HMy92\":[\"JSON :\"],\"1I6UoR\":[\"Affichages\"],\"1L3KBl\":[\"Créer un nouveau type d'informations d'identification.\"],\"1LRwvx\":[\"Si vous voulez que la source d'inventaire se mette à jour au lancement, cliquez sur Mettre à jour au lancement, et allez également à \"],\"1Ltnvs\":[\"Ajouter un nœud\"],\"1PQRWr\":[\"Heure de début\"],\"1QRNEs\":[\"Fréquence de répétition\"],\"1RYzKu\":[\"Relancer à partir du nœud annulé\"],\"1UJu6o\":[\"Veuillez choisir un numéro de jour entre 1 et 31.\"],\"1UjRxI\":[\"Expiration du délai d’attente du cache\"],\"1UzENP\":[\"Non\"],\"1V4Yvg\":[\"Système divers\"],\"1WlWk7\":[\"Voir les détails de l'hôte de l'inventaire\"],\"1WsB5U\":[\"Nous n'avons pas pu localiser les abonnements associés à ce compte.\"],\"1ZaQUH\":[\"Nom\"],\"1_gTC7\":[\"Vous ne pouvez pas sélectionner plusieurs identifiants d’archivage sécurisé (Vault) avec le même identifiant de d’archivage sécurisé. Cela désélectionnerait automatiquement les autres identifiants d’archivage sécurisé.\"],\"1abtmx\":[\"Promouvoir les groupes de dépendants et les hôtes\"],\"1ahgeV\":[\"Google OAuth2\"],\"1cT4RU\":[\"Mise à jour SCM\"],\"1fO-kL\":[\"N'a pas réussi à faire basculer l'instance.\"],\"1hCxP5\":[\"N'a pas réussi à supprimer un ou plusieurs groupes d'instances.\"],\"1kwHxg\":[\"Métriques\"],\"1n50PN\":[\"Onglet JSON\"],\"1qd4yi\":[\"Variables avec la syntaxe JSON ou YAML. Utilisez le bouton radio pour basculer entre les deux.\"],\"1rDBnp\":[\"Écart entre les fichiers\"],\"1w2SCz\":[\"Choisissez un type de contrôle à la source\"],\"1xdJD7\":[\"Adapter à l’écran\"],\"1yHVE-\":[\"Ajout\"],\"2-iKER\":[\"Afficher le flux d’activité\"],\"2B_v7Y\":[\"Pourcentage d'instances de stratégie\"],\"2CTKOa\":[\"Retour aux projets\"],\"2FB7vv\":[\"Sélectionnez une organisation avant de modifier l'environnement d'exécution par défaut.\"],\"2FeJcd\":[\"Élément ignoré\"],\"2H9REH\":[\"Recherche floue sur le champ du nom.\"],\"2JV4mx\":[\"Les groupes d'instances auxquels appartient cette instance.\"],\"2KlsJC\":[\"Vous pouvez appliquer un certain nombre de variables possibles dans le\\n message. Pour plus d'informations, reportez-vous à\"],\"2MSEkM\":[\"N'a pas réussi à supprimer l'inventaire.\"],\"2a07Yj\":[\"Copie du modèle de notification\"],\"2ekvhy\":[\"Fréquence des exceptions\"],\"2gDkH_\":[\"Veuillez saisir un nombre d'occurrences.\"],\"2iyx-2\":[\"Documentation du contrôleur Ansible.\"],\"2n41Wr\":[\"Ajouter un modèle de flux de travail\"],\"2nsB1O\":[\"Retour Haut de page\"],\"2ocqzE\":[\"Webhooks : Activer le webhook pour ce modèle.\"],\"2ooR7j\":[\"LDAP 5\"],\"2p6eVk\":[\"Recherche modale\"],\"2pNIxF\":[\"Nœuds de flux de travail\"],\"2pgi-L\":[\"Indique si un hôte est disponible et doit être inclus dans l'exécution des\\n jobs. Pour les hôtes qui font partie d'un inventaire externe, ceci peut être\\n réinitialisé par le processus de synchronisation de l'inventaire.\"],\"2qfwJn\":[\"Remplacer\"],\"2r06bV\":[\"HipChat\"],\"2rvMKg\":[\"Actualiser Jeton\"],\"2w-INk\":[\"Informations sur l'hôte\"],\"2zs1kI\":[\"Cette valeur ne correspond pas au mot de passe que vous avez entré précédemment. Veuillez confirmer ce mot de passe.\"],\"3-SkJA\":[\"Dissocier le groupe de l'hôte ?\"],\"3-sY1p\":[\"Numéro(s) de SMS de destination\"],\"328Yxp\":[\"Branche Contrôle de la source\"],\"38Or-7\":[\"Balises\"],\"38VIWI\":[\"Voir les détails du modèle\"],\"39y5bn\":[\"Vendredi\"],\"3A9ATS\":[\"Environnement d'exécution non trouvé.\"],\"3AOZPn\":[\"Afficher et modifier les options de débogage\"],\"3FUtN9\":[\"Sync Source d’inventaire\"],\"3IVQDN\":[\"Cette programmation utilise des règles complexes qui ne sont pas prises en charge dans\\n l'interface utilisateur. Veuillez utiliser l'API pour gérer cette programmation.\"],\"3JjdaA\":[\"Exécuter\"],\"3JnvxN\":[\"Choisissez les ressources qui recevront de nouveaux rôles. Vous pourrez sélectionner les rôles à postuler lors de l'étape suivante. Notez que les ressources choisies ici recevront tous les rôles choisis à l'étape suivante.\"],\"3JzsDb\":[\"Mai\"],\"3LoUor\":[\"Canaux de destination\"],\"3LqMX2\":[\"CIQ Ascender Automation Platform\"],\"3PAU4M\":[\"Année\"],\"3PZalO\":[\"Hôte non trouvé.\"],\"3Rke7L\":[\"1 (info)\"],\"3WGwSW\":[\"Supprimez entièrement le dépôt local avant d'effectuer une mise à jour. Selon la taille du dépôt, cela peut augmenter considérablement le temps nécessaire pour effectuer une mise à jour.\"],\"3YSVMq\":[\"Erreur de suppression\"],\"3aIe4Y\":[\"Créer une nouvelle organisation\"],\"3b24mY\":[\"CPU \",[\"0\"]],\"3fG1e7\":[\"Temps écoulé\"],\"3fMc43\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" année\"],\"other\":[\"#\",\" années\"]}]],\"3hCQhK\":[\"Extensions d'inventaire\"],\"3hvUyZ\":[\"nouveau choix\"],\"3mTiHp\":[\"Impossible de copier le modèle.\"],\"3pBNb0\":[\"Recharger la sortie\"],\"3sFvGC\":[\"Mettez l'instance en ligne ou hors ligne. Si elle est hors ligne, les Jobs ne seront pas attribués à cette instance.\"],\"3sXZ-V\":[\"et cliquez sur Mettre à jour la révision au lancement.\"],\"3uAM50\":[\"Contrat de licence utilisateur\"],\"3wPA9L\":[\"Catégorie de paramètre\"],\"3y7qi5\":[\"Retour à Références\"],\"3yy_k-\":[\"Voir toutes les équipes.\"],\"4-RjdJ\":[[\"interval\"],\" year\"],\"40lLFI\":[\"Allez à la page suivante de la liste\"],\"41KRqu\":[\"Mots de passes d’identification\"],\"45BzQy\":[\"Les bilans de santé sont des tâches asynchrones. Veuillez consulter la documentation pour plus d'informations.\"],\"45cx0B\":[\"Annuler l'édition de l'abonnement\"],\"45gLaI\":[\"Demander les identifiants au lancement.\"],\"46SUtl\":[\"Modifier le groupe\"],\"479kuh\":[\"Copier la révision complète dans le Presse-papiers.\"],\"47e97a\":[\"Tentatives maximales\"],\"4BITzH\":[\"Erreur :\"],\"4LzLLz\":[\"Voir tous les paramètres\"],\"4Q4HZp\":[\"Aucun(e) \",[\"pluralizedItemName\"],\" trouvé(e)\"],\"4QXpWJ\":[\"expiré\"],\"4QfhOe\":[\"Certains modificateurs de recherche, comme not__ et __search, ne sont pas pris en charge par les filtres hôte de Smart Inventory. Supprimez-les pour créer un nouveau Smart Inventory avec ce filtre.\"],\"4S2cNE\":[\"Voir les paramètres d'enregistrement\"],\"4Wt2Ty\":[\"Sélectionnez les éléments de la liste\"],\"4_ESDh\":[\"Ce champ doit être une expression régulière\"],\"4_xiC_\":[\"Artefacts\"],\"4alXD6\":[\"Nombre maximum de jobs à exécuter simultanément sur ce groupe.\\n Zéro signifie qu'aucune limite ne sera appliquée.\"],\"4bhLaA\":[\"Sélectionnez un type d’identifiant\"],\"4cWhxn\":[\"Contrôle si cette instance est gérée ou non par la stratégie. Si cette option est activée, l'instance sera disponible pour une affectation et une désaffectation automatiques à des groupes d'instances en fonction des règles de politique.\"],\"4dQFvz\":[\"Terminé\"],\"4g1rw0\":[\"La durée (en secondes) avant que la notification\\n par e-mail cesse d'essayer d'atteindre l'hôte et expire. Va\\n de 1 à 120 secondes.\"],\"4hPyPF\":[\"Sauvegarde & Sortie\"],\"4j2eOR\":[\"Sélectionnez l'inventaire auquel cet hôte appartiendra.\"],\"4jnim6\":[\"Sélectionnez un service de webhook.\"],\"4km-Vu\":[\"Non-conformité\"],\"4kw_um\":[[\"interval\"],\" minute\"],\"4lCMxZ\":[\"Explication de l'échec :\"],\"4lgLew\":[\"Février\"],\"4mQyZf\":[\"Les services de webhook peuvent l'utiliser comme secret partagé.\"],\"4nLbTY\":[\"Voir tous les jobs de gestion\"],\"4o_cFL\":[\"Supprimer l’application\"],\"4s0pSB\":[\"Fournissez un modèle d'hôte pour restreindre davantage la liste des hôtes qui seront gérés ou affectés par le playbook. Plusieurs modèles sont autorisés. Consultez la documentation Ansible pour plus d'informations et d'exemples sur les modèles.\"],\"4uVADI\":[\"Question secrète du client\"],\"4vFDZV\":[\"Créer un nouveau modèle de Job\"],\"4vkbaA\":[\"Le projet à partir duquel cette mise à jour d'inventaire est sourcée.\"],\"4yGeRr\":[\"Sync Inventaires\"],\"4zue79\":[\"Copyright\"],\"5-qYGv\":[\"Modifier l'instance\"],\"54_SyV\":[[\"0\",\"plural\",{\"one\":[\"You do not have permission to cancel the following job:\"],\"other\":[\"You do not have permission to cancel the following jobs:\"]}]],\"56fd5u\":[\"Êtes-vous sûr de vouloir supprimer tous les nœuds de ce flux de travail ?\"],\"5B77Dm\":[\"Dernier Job\"],\"5F5F4w\":[\"Approbation du flux de travail\"],\"5IhYoj\":[\"Types de nœud\"],\"5K7kGO\":[\"documentation\"],\"5KMGbn\":[\"Êtes-vous certain de vouloir annuler ce job ?\"],\"5RMgCw\":[\"Hôtes\"],\"5S4tZv\":[\"La fréquence ne correspondait pas à une valeur attendue\"],\"5Sa1Ss\":[\"E-mail\"],\"5TnQp6\":[\"Type de Job\"],\"5WFDw4\":[\"Grouper seulement par\"],\"5X2wog\":[\"Il y a eu un problème de connexion. Veuillez réessayer.\"],\"5_vHPm\":[\"Voir les paramètres TACACS+\"],\"5ajaW1\":[\"Exécuter lorsqu'un artefact du nœud parent correspond à la condition.\"],\"5dJK4M\":[\"Rôles\"],\"5eHyY-\":[\"Notification test\"],\"5eL2KN\":[\"URL cible\"],\"5lqXf5\":[\"Revenir à la valeur usine par défaut.\"],\"5n_soj\":[\"Demander le nombre de tranches de tâche au lancement.\"],\"5p6-Mk\":[\"Filtrer par travaux échoués\"],\"5pDe2G\":[\"Remove \",[\"0\"],\" Access\"],\"5pa4JT\":[\"Playbook démarré\"],\"5qauVA\":[\"Ce modèle de tâche de flux de travail est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?\"],\"5vA8H0\":[\"Aucun hôte correspondant\"],\"5xzS8Q\":[\"Jeton qui garantit qu'il s'agit d'un fichier source\\n pour le plugin « construit ».\"],\"5y9wkB\":[\"Retour aux notifications\"],\"6-OdGi\":[\"Protocole\"],\"6-ptnU\":[\"l'option à la\"],\"623gDt\":[\"Impossible de supprimer l'utilisateur.\"],\"63C4Yo\":[\"Groupe de conteneurs\"],\"66Zq7T\":[\"Enregistrer les changements de liens\"],\"66qTfS\":[\"La semaine dernière\"],\"679-JR\":[\"Recherche floue sur les champs id, nom ou description.\"],\"68OTAn\":[\"This intance is currently being used by other resources. Are you sure you want to delete it?\"],\"68h6WG\":[\"Lancer le Job de gestion\"],\"69aXwM\":[\"Ajouter un groupe existant\"],\"69zuwn\":[\"Deprovisioning these instances could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"6ASSBg\":[\"LDAP 4\"],\"6BzDub\":[\"suppression doucement\"],\"6GBt0m\":[\"Métadonnées\"],\"6HLTEb\":[\"Filtrer...\"],\"6J-cs1\":[\"Délai d’attente (secondes)\"],\"6KhU4s\":[\"Voulez-vous vraiment quitter le flux de travail Creator sans enregistrer vos modifications\xA0?\"],\"6LTyxl\":[\"Révision\"],\"6PmtyP\":[\"Basculer la légende\"],\"6RDwJM\":[\"Jetons\"],\"6UYTy8\":[\"Minute\"],\"6V3Ea3\":[\"Copié\"],\"6WwHL3\":[\"Total Nœuds\"],\"6XOI1I\":[\"Créer un nouvel inventaire fédéré\"],\"6XgEPi\":[\"Heure\"],\"6YtxFj\":[\"Nom\"],\"6Z5ACo\":[\"Clé de configuration de l’hôte\"],\"6bpC9t\":[\"Nœud défaillant\"],\"6cylr_\":[\"Stdout\"],\"6f961q\":[\"Seulement si manquant\"],\"6hEnxG\":[\"Activer l’élévation des privilèges\"],\"6j6_0F\":[\"Ressource connexe\"],\"6kpN96\":[\"N'a pas réussi à supprimer la notification.\"],\"6lGV3K\":[\"Afficher moins de détails\"],\"6msU0q\":[\"N'a pas réussi à supprimer un ou plusieurs Jobs.\"],\"6nsio_\":[\"Exécuter Commande\"],\"6oNH0E\":[\"guide de configuration du plugin.\"],\"6pMgh_\":[\"Voir les paramètres LDAP\"],\"6rSKy6\":[\"Sélectionnez les inventaires sources pour cet inventaire fédéré. Lorsqu'un job est lancé, les hôtes seront acheminés automatiquement vers le groupe d'instances de chaque inventaire source.\"],\"6uvnKV\":[\"Service API/Clé d’intégration\"],\"6vrz8I\":[\"N'a pas réussi à supprimer un ou plusieurs Jobs\"],\"6zGHNM\":[\"Hôtes restants\"],\"74MNbw\":[\"Ctrl IQ, Inc.\"],\"764xeZ\":[\"N'a pas réussi à mettre à jour l'enquête.\"],\"7Bj3x9\":[\"Échec\"],\"7ElOdS\":[\"ID du tableau de bord (facultatif)\"],\"7IUE9q\":[\"Variables sources\"],\"7JF9w9\":[\"Ajouter une question\"],\"7L01XJ\":[\"Actions\"],\"7O5TcN\":[\"Récapitulatif de l’événement non disponible\"],\"7PzzBU\":[\"User\"],\"7UZtKb\":[\"L'organisation propriétaire de ce modèle de tâche de flux de travail.\"],\"7VETeB\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"],\"7VpPHA\":[\"Confirmer\"],\"7Xk3M1\":[\"Sélectionnez le projet contenant le playbook que vous souhaitez que ce job exécute.\"],\"7ZhNzL\":[\"Allez à la première page\"],\"7b8TOD\":[\"détails\"],\"7bDeKc\":[\"Manifeste de souscription\"],\"7fJwmW\":[\"Liste des éléments sélectionnés.\"],\"7hS02I\":[[\"automatedInstancesCount\"],\" depuis \",[\"automatedInstancesSinceDateTime\"]],\"7icMBj\":[\"Aucune donnée de tâche disponible.\"],\"7kb4LU\":[\"Approuvé\"],\"7p5kLi\":[\"Tableau de bord\"],\"7q256R\":[\"Autoriser le remplacement de la branche\"],\"7qFdk8\":[\"Modifier les informations d’identification\"],\"7sMeHQ\":[\"Clé\"],\"7sNhEz\":[\"Nom d'utilisateur\"],\"7w3QvK\":[\"Corps du message de réussite\"],\"7wgt9A\":[\"Exécution du playbook\"],\"7zmvk2\":[\"Échec de l'élément\"],\"81eOdm\":[\"relancer le flux de travail\"],\"82O8kJ\":[\"Ce projet est actuellement en cours de synchronisation et ne peut pas être cliqué tant que le processus de synchronisation n'est pas terminé\"],\"82sWFi\":[\"Administration\"],\"84Usx_\":[\"N'a pas réussi à supprimer le projet.\"],\"87a_t_\":[\"Libellé\"],\"88ip8h\":[\"Tout rétablir\"],\"8BkLPF\":[\"Liste d'URI autorisés, séparés par des espaces\"],\"8F8HYs\":[\"Sélectionnez votre abonnement à la Plateforme d'Automatisation Ansible à utiliser.\"],\"8H3Igx\":[[\"interval\"],\" month\"],\"8Oef5v\":[\"Voici des exemples d'URL pour le contrôle de source GIT :\"],\"8XM8GW\":[\"Impossible d'assigner les rôles correctement\"],\"8Z236a\":[\"logo de la marque\"],\"8ZsakT\":[\"Mot de passe\"],\"8_wZUD\":[\"Rôles d’équipe\"],\"8d57h8\":[\"Voir les paramètres divers du système\"],\"8gCRbU\":[\"Autres invites\"],\"8gaTqG\":[\"Détails sur le type\"],\"8kDNpI\":[\"Le résultat du nœud parent est requis avant l'évaluation de la condition.\"],\"8l9yyw\":[\"Modèle de Job\"],\"8lEjQX\":[\"Installer Bundle\"],\"8lb4Do\":[\"Effacer l'abonnement\"],\"8oiwP_\":[\"Configuration de l'entrée\"],\"8p_xVT\":[[\"0\",\"plural\",{\"one\":[[\"1\"]],\"other\":[[\"2\"]]}]],\"8u5g0S\":[\"Supprimer l'inventaire smart\"],\"8vETh9\":[\"Afficher\"],\"8wxHsh\":[\"Clé du webhook pour ce modèle de tâche de flux de travail.\"],\"8yd882\":[\"N'a pas réussi à dissocier une ou plusieurs équipes.\"],\"8zGO4o\":[\"Le champ correspond à l'expression régulière donnée.\"],\"8zoIOi\":[[\"0\",\"plural\",{\"one\":[\"This credential type is currently being used by some credentials and cannot be deleted.\"],\"other\":[\"Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?\"]}]],\"8zvzWO\":[\"Autorisez les exécutions simultanées de ce modèle de tâche de flux de travail.\"],\"9-wVFp\":[\"Voir les détails de l'inventaire fédéré\"],\"91UHfE\":[\"Mise à jour de l'inventaire\"],\"91lyAf\":[\"Jobs parallèles\"],\"933cZy\":[\"Réglages divers du système\"],\"954HqS\":[\"Quand l'hôte a-t-il été automatisé pour la première fois\"],\"95p1BK\":[\"Créer un nouvel utilisateur\"],\"98Qtlu\":[\"Chaque fois qu'un job s'exécute à l'aide de ce projet, mettez à jour la révision du projet avant de démarrer le job.\"],\"991Df5\":[\"a new webhook key will be generated on save.\"],\"99qC6z\":[[\"interval\"],\" week\"],\"9Ah95g\":[[\"0\",\"plural\",{\"one\":[\"Cet inventaire est actuellement utilisé par certains modèles. Êtes-vous sûr de vouloir le supprimer ?\"],\"other\":[\"La suppression de ces inventaires pourrait avoir un impact sur certains modèles qui en dépendent. Êtes-vous sûr de vouloir quand même les supprimer ?\"]}]],\"9BTNYL\":[\"Expected at least one of client_email, project_id or private_key to be present in the file.\"],\"9BpfLa\":[\"Sélectionner les libellés\"],\"9DOXq6\":[\"Voir tous les modèles.\"],\"9DugxF\":[\"Type d’abonnement\"],\"9HhFQ8\":[\"Renvoie les résultats qui ont des valeurs autres que celle-ci ainsi que les autres filtres.\"],\"9L1ngr\":[\"Total Jobs\"],\"9N-4tQ\":[\"Type d'informations d’identification\"],\"9NyAH9\":[\"Ignoré\"],\"9PB0sF\":[\"IRC\"],\"9Rsklx\":[\"Supprimer tous les nœuds\"],\"9Tmez1\":[\"Voir les détails de l'instance\"],\"9UuGMQ\":[\"En attente de suppression\"],\"9V-Un3\":[\"Utiliser le cache des facts\"],\"9VMv7k\":[\"Inventaire construit\"],\"9Wm-J4\":[\"Changer de mot de passe\"],\"9XA1Rs\":[\"Le projet est en cours de synchronisation et la révision sera disponible une fois la synchronisation terminée.\"],\"9Y3BQE\":[\"Supprimer l'organisation\"],\"9YSB0Z\":[\"Il manque un inventaire pour cette programmation d’horaire\"],\"9ZnrIx\":[\"Afficher et modifier les informations relatives à votre abonnement\"],\"9fRa7M\":[\"Sélectionnez une ligne à supprimer\"],\"9hmrEp\":[\"Relancer sur\"],\"9iX1S0\":[\"Cette action supprimera l'instance suivante et vous devrez peut-être réexécuter le paquet d'installation pour toute instance précédemment connectée à\xA0:\"],\"9jfn-S\":[\"N'est pas élargi\"],\"9l0RZY\":[\"Cliquez sur un nœud disponible pour créer un nouveau lien. Cliquez en dehors du graphique pour annuler.\"],\"9m7jms\":[\"Inventaires sources dont les hôtes seront acheminés vers leurs groupes d'instances respectifs lorsqu'un job est lancé contre cet inventaire fédéré.\"],\"9mfJJf\":[\"Modèles de Jobs\"],\"9nhhVW\":[\"pages\"],\"9nypdt\":[\"Rétablir la valeur initiale.\"],\"9odS2n\":[\"Échec Hôtes\"],\"9og-0c\":[\"Cet environnement d'exécution est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?\"],\"9rFgm2\":[\"Capacité d'abonnement\"],\"9rvzNA\":[\"Association modale\"],\"9td1Wl\":[\"Vérifier\"],\"9uI_rE\":[\"Annuler\"],\"9u_dDE\":[\"Nombre d'hôtes inaccessibles\"],\"9uxVdR\":[\"Identifiant Contrôle de la source\"],\"9wvWk3\":[\"Cette entrée d'inventaire construit \\n crée un groupe pour les deux catégories et utilise \\n la limite (modèle d'hôte) pour ne renvoyer que les hôtes qui \\n se trouvent à l'intersection de ces deux groupes.\"],\"A1a8Ku\":[\"Erreur de lancement d'un job de gestion\"],\"A1taO8\":[\"Rechercher\"],\"A3o0Xd\":[\"Sélectionnez les groupes d'instances sur lesquels exécuter cette organisation.\"],\"A6paZd\":[\"Ajouter un inventaire fédéré\"],\"A8lIi2\":[\"Synchronisation pour la révision\"],\"A9-PUr\":[\"Demande(s) de bilan de santé soumise(s). Veuillez patienter et recharger la page.\"],\"AA2ASV\":[\"Environnement d'exécution copié\"],\"ADVQ46\":[\"Connexion\"],\"ARAUFe\":[\"Supprimer l’inventaire\"],\"AV22aU\":[\"Quelque chose a mal tourné...\"],\"AWOSPo\":[\"Zoom avant\"],\"Ab1y_G\":[\"Annuler la synchronisation de la source d'inventaire construite\"],\"AgTBbk\":[[\"intervalValue\",\"plural\",{\"one\":[\"week\"],\"other\":[\"weeks\"]}]],\"AgTuXC\":[\"Vous n'avez pas l'autorisation de supprimer : \",[\"pluralizedItemName\"],\": \",[\"itemsUnableToDelete\"]],\"Ai2U7L\":[\"Hôte\"],\"Aj3on1\":[\"Activer la journalisation externe\"],\"AoCBvp\":[\"Tranche de job\"],\"Apl-Vf\":[\"Manifeste de souscription à Red Hat\"],\"Apv-R1\":[\"Si vous êtes prêts à mettre à niveau ou à renouveler, veuillez<0>nous contacter.\"],\"AqdlyH\":[\"Les modèles de Job dont les informations d'identification demandent un mot de passe ne peuvent pas être sélectionnés lors de la création ou de la modification de nœuds\"],\"ArtxnQ\":[\"Refspec Contrôle de la source\"],\"AsLVdj\":[\"Utilisez un canal IRC ou un nom d'utilisateur par ligne. Le symbole\\n dièse (#) pour les canaux et le symbole arobase (@) pour les utilisateurs ne sont pas\\n requis.\"],\"AwUsnG\":[\"Instances\"],\"AxC8wb\":[\"Copier la sortie\"],\"AxPAXW\":[\"Aucun résultat trouvé\"],\"Axi4f8\":[\"Dragging item \",[\"id\"],\". Item with index \",[\"oldIndex\"],\" in now \",[\"newIndex\"],\".\"],\"Azw0EZ\":[\"Créer un nouvel inventaire smart\"],\"B0HFJ8\":[\"N'a pas réussi à dissocier un ou plusieurs hôtes.\"],\"B0P3qo\":[\"ID JOB :\"],\"B0dbFG\":[\"Supprimer la programmation\"],\"B2Zb_F\":[\"JSON\"],\"B3ZzHO\":[\"Dernière automatisation\"],\"B4WcU9\":[\"Approuvé par \",[\"0\"],\" - \",[\"1\"]],\"B7FU4J\":[\"Hôte démarré\"],\"B8bpYS\":[\"Téléchargez un manifeste d'abonnement Red Hat contenant votre abonnement. Pour générer votre manifeste d'abonnement, accédez à <0>subscription allocations (octroi d’allocations) sur le portail client de Red Hat.\"],\"BAmn8K\":[\"Sélectionnez un type de ressource\"],\"BERhj_\":[\"Message de réussite\"],\"BGNDgh\":[\"Alias de nœud\"],\"BH7upP\":[\"PUBLICATION\"],\"BIJ2_m\":[\"L'environnement d'exécution qui sera utilisé pour les tâches au sein de cette organisation. Il sera utilisé comme solution de repli lorsqu'aucun environnement d'exécution n'a été explicitement attribué au niveau du projet, du modèle de tâche ou du flux de travail.\"],\"BNDplB\":[\"Modèle copié\"],\"BWTzAb\":[\"Manuel\"],\"BaPk6N\":[\"Chemin de base utilisé pour localiser les playbooks. Les répertoires trouvés dans ce chemin seront répertoriés dans la liste déroulante du répertoire des playbooks. Ensemble, le chemin de base et le répertoire de playbook sélectionné fournissent le chemin complet utilisé pour localiser les playbooks.\"],\"BfYq0G\":[\"Type de Contrôle de la source\"],\"Bg7M6U\":[\"Aucun résultat trouvé\"],\"Bl2Djq\":[\"Voir les jetons\"],\"Bl2eoO\":[\"CHIFFRÉ\"],\"BskWMl\":[\"Inaccessible\"],\"BsrdSv\":[\"Entrez les variables d'inventaire en utilisant la syntaxe JSON ou YAML. Utilisez le bouton d'option pour basculer entre les deux. Référez-vous à la documentation du contrôleur Ansible pour les exemples de syntaxe.\"],\"Bv8zdm\":[\"Inventaires des intrants\"],\"BwJKBw\":[\"de\"],\"Bz7WRU\":[[\"0\",\"plural\",{\"one\":[\"Veuillez saisir un numéro de téléphone valide.\"],\"other\":[\"Veuillez saisir des numéros de téléphone valides.\"]}]],\"BzEFor\":[\"ou\"],\"BzbzJb\":[\"Facts\"],\"BzfzPK\":[\"Éléments\"],\"C-gr_n\":[\"Paramètres AD Azure\"],\"C0sUgI\":[\"Créer un nouvel inventaire\"],\"C2KEkR\":[\"Mot de passe SSH\"],\"C3Q1LZ\":[\"Voir les paramètres de l'OIDC\"],\"C4C-qQ\":[\"Détails de programmation\"],\"C6GAUT\":[\"Est élargi\"],\"C7dP40\":[\"N'a pas réussi à refuser \",[\"0\"],\".\"],\"C7s60U\":[\"Détails de webhook\"],\"CAL6E9\":[\"Équipes\"],\"CDOlBM\":[\"ID d'instance\"],\"CE-M2e\":[\"Info\"],\"CGOseh\":[\"Détails de programmation\"],\"CGZgZY\":[\"Sélectionnez une ligne à dissocier\"],\"CG_9l6\":[\"LDAP 1\"],\"CGwKKr\":[[\"0\",\"plural\",{\"one\":[\"Supprimer le groupe ?\"],\"other\":[\"Supprimer les groupes ?\"]}]],\"CIEoqM\":[\"Nom de l’Instance\"],\"CKc7jz\":[\"Détails sur l'hôte modal\"],\"CL7QiF\":[\"Saisir la réponse puis cliquez sur la case à cocher à droite pour sélectionner la réponse comme défaut.\"],\"CLTHnk\":[\"Ordre des questions de l’enquête\"],\"CMmwQ-\":[\"Date de début inconnue\"],\"CNZ5h9\":[\"Durée de conservation des données\"],\"CS8u6E\":[\"Activer le webhook\"],\"CSvk3a\":[\"Le numéro associé au « Service de\\n messagerie » dans Twilio, au format +18005550199.\"],\"CW11B-\":[\"Minimum\"],\"CXJHPJ\":[\"Modifié par (nom d'utilisateur)\"],\"CZDqWd\":[\"La révision du projet est actuellement périmée. Veuillez actualiser pour obtenir la révision la plus récente.\"],\"CZg9aH\":[\"Sélectionner les hôtes\"],\"C_Lu89\":[\"Entrez les variables avec la syntaxe JSON ou YAML. Consultez la documentation sur le contrôleur Ansible pour avoir un exemple de syntaxe.\"],\"C_NnqT\":[\"Créer un nouvel hôte\"],\"Cc8jO8\":[\"Sélectionnez les informations d’identification qu’il vous faut utiliser lors de l’accès à des hôtes distants pour exécuter la commande. Choisissez les informations d’identification contenant le nom d’utilisateur et la clé SSH ou le mot de passe dont Ansible aura besoin pour se connecter aux hôtes distants.\"],\"CcKMRv\":[\"Ce modèle de poste est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?\"],\"CczdmZ\":[\"Voir toutes les informations d’identification.\"],\"CdGRti\":[\"Voir tous les modèles de notification.\"],\"Ce28nP\":[\"<0>Remarque\xA0: les instances peuvent être réassociées à ce groupe d'instances si elles sont gérées par des <1> règles de politique.\"],\"Cev3QF\":[\"Délai d'attente (minutes)\"],\"ChTa9Z\":[[\"intervalValue\",\"plural\",{\"one\":[\"hour\"],\"other\":[\"hours\"]}]],\"CoPs3y\":[\"Ce flux de travail ne comporte aucun nœud configuré.\"],\"CoTqdo\":[\"\\n Note that you may still see the group in the list after\\n disassociating if the host is also a member of that group’s\\n children. This list shows all groups the host is associated\\n with directly and indirectly.\\n \"],\"Coyxic\":[\"Cliquez sur ce bouton pour vérifier la connexion au système de gestion du secret en utilisant le justificatif d'identité sélectionné et les entrées spécifiées.\"],\"Cs0oSA\":[\"Afficher les paramètres\"],\"Csvbqs\":[\"voir les documents du plugin d'inventaire construit ici.\"],\"Cx8SDk\":[\"Actualiser l’expiration du jeton\"],\"D-NlUC\":[\"Système\"],\"D1JWCq\":[[\"interval\"],\" minutes\"],\"D4euEu\":[\"Paramètres d'authentification divers\"],\"D89zck\":[\"Dim.\"],\"DBBU2q\":[\"Au moins une valeur doit être sélectionnée pour ce champ.\"],\"DBC3t5\":[\"Dimanche\"],\"DBHTm_\":[\"Août\"],\"DFNPK8\":[\"Bilan de fonctionnement\"],\"DGZ08x\":[\"Tout sync\"],\"DHf0mx\":[\"Créer une nouvelle instance\"],\"DHrOgD\":[\"Statut de Mise à jour du projet\"],\"DIKUI7\":[\"Longueur minimale\"],\"DIX823\":[\"Ce champ doit être un nombre et avoir une valeur inférieure à \",[\"max\"]],\"DJIazz\":[\"Approuvé avec succès\"],\"DNLiC8\":[\"Inverser les paramètres\"],\"DNqHaO\":[\"Ce tableau fournit quelques paramètres utiles du plugin\\n d'inventaire construit. Pour la liste complète des paramètres \"],\"DPfwMq\":[\"Terminé\"],\"DV-Xbw\":[\"Langue préférée\"],\"DVIUId\":[\"Invite Remplacements\"],\"DZNGtI\":[\"Résultats de l'extraction du projet\"],\"D_oBkC\":[\"GitHub Team\"],\"DdlJTq\":[\"Correspondance exacte (recherche par défaut si non spécifiée).\"],\"De2WsK\":[\"Cette action permettra de dissocier tous les rôles de cet utilisateur des équipes sélectionnées.\"],\"DhSza7\":[\"Noeud du contrôleur\"],\"DnkUe2\":[\"Choisir un service de webhook\"],\"DqnAO4\":[\"Hôtes automatisés\"],\"Du6bPw\":[\"Adresse\"],\"Dug0C-\":[\"Après le nombre d'occurrences\"],\"DyYigF\":[\"Paramètres de la TACACS\"],\"Dz7fsq\":[\"Zoom avant\"],\"E6Z4zF\":[\"Format de fichier non valide. Veuillez télécharger un manifeste d'abonnement à Red Hat valide.\"],\"E86aJB\":[\"Dissocier le rôle !\"],\"E9wN_Q\":[\"Dernier bilan de fonctionnement\"],\"EH6-2h\":[\"Vue topologique\"],\"EHu0x2\":[\"Synchronisation\"],\"EIBcgD\":[\"Provenance d'un projet\"],\"EIkRy0\":[\"Canaux de destination\"],\"EJQLCT\":[\"N'a pas réussi à supprimer le modèle de flux de travail.\"],\"ENDbv1\":[\"Voir tous les hôtes.\"],\"ENRWp9\":[\"Balises pour l'annotation\"],\"ENyw54\":[\"Groupes liés\"],\"EP-eCv\":[\"Paramètres SAML\"],\"EQ-qsg\":[\"Modèles de Jobs de flux de travail\"],\"ES0WE_\":[\"En cas d'expiration\"],\"ETUQuF\":[\"N'a pas réussi à supprimer un ou plusieurs inventaires.\"],\"EWL-h4\":[\"description-hôte-\",[\"0\"]],\"E_QGRL\":[\"Désactivés\"],\"E_tJey\":[\"Environnement d'exécution par défaut\"],\"Eb5CN1\":[[\"0\",\"plural\",{\"one\":[\"This organization is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"EdQY6l\":[\"Aucun\"],\"Eff_76\":[\"Fuseau horaire local\"],\"Eg4kGP\":[\"Réponse(s) par défaut\"],\"EmSrGB\":[\"Avant\"],\"EmfKjn\":[\"Réglages de dépannage\"],\"Emna_v\":[\"Modifier la source\"],\"EmzUsN\":[\"Voir les détails de nœuds\"],\"EnC3hS\":[\"Spécifications des pods personnalisés\"],\"EpH7Cd\":[\"Supprimer les informations d’identification\"],\"Eq6_y5\":[\"this Tower documentation page\"],\"Eqp9wv\":[\"Voir des exemples JSON sur\"],\"EwxKbE\":[\"SUPPRIMÉ\"],\"EzwCw7\":[\"Modifier la question\"],\"F-0xxR\":[\"Ressources manquantes dans ce modèle.\"],\"F-LGli\":[\"Vous n'avez pas la permission de dissocier les éléments suivants : \",[\"itemsUnableToDisassociate\"]],\"F-_-es\":[\"Sélectionner les instances\"],\"F0xJYs\":[\"Échec de la mise à jour de l'ajustement des capacités.\"],\"F2l57P\":[\"Pourcentage minimum de toutes les instances qui seront automatiquement\\n attribuées à ce groupe lorsque de nouvelles instances seront mises en ligne.\"],\"FCnKmF\":[\"Créer un jeton d'utilisateur\"],\"FD8Y9V\":[\"Cliquer sur un icône de noeud pour voir les détails.\"],\"FEr96N\":[\"Thème\"],\"FFv0Vh\":[\"Automatisation\"],\"FG2mko\":[\"Sélectionnez les éléments de la liste\"],\"FGnH0p\":[\"Cela annulera tous les nœuds suivants dans ce flux de travail.\"],\"FMpB-A\":[\"<0>Remarque\xA0: les instances associées manuellement peuvent être automatiquement dissociées d'un groupe d'instances si l'instance est gérée par des <1> règles de politique.\"],\"FO7Rwo\":[\"Supprimer des pairs\xA0?\"],\"FQto51\":[\"Développer toutes les lignes\"],\"FTuS3P\":[\"Ce champ ne doit pas être vide\"],\"FV5MUV\":[\"Si les utilisateurs ont besoin de retours sur l'exactitude\\n de leurs groupes construits, il est fortement recommandé\\n d'utiliser strict: true dans la configuration du plugin.\"],\"FXmp8Q\":[\"N'a pas réussi à associer le rôle\"],\"FYJRCY\":[\"N'a pas réussi à supprimer un ou plusieurs projets.\"],\"F_Nk65\":[\"Télécharger la sortie\"],\"F_c3Jb\":[\"Spécification pod Kubernetes ou OpenShift personnalisée.\"],\"Failed\":[\"Échec\"],\"Fanpmj\":[\"Variables demandées\"],\"FblMFO\":[\"Sélectionnez une métrique\"],\"FclH3w\":[\"Enregistrement réussi\"],\"FfGhiE\":[\"Erreur lors de la sauvegarde du flux de travail !\"],\"FhTYgi\":[\"N'a pas réussi à supprimer un ou plusieurs modèles de Jobs.\"],\"FhhvWu\":[\"Cela annulera tous les nœuds suivants dans ce flux de travail.\"],\"FiyMaa\":[\"Choisissez un fichier .json\"],\"FjVFQ-\":[\"Choisissez un module\"],\"FjkaiT\":[\"Zoom arrière\"],\"FkQvI0\":[\"Modifier le modèle\"],\"FlvpdU\":[\"If enabled, show the changes made\\n by Ansible tasks, where supported. This is equivalent to Ansible’s\\n --diff mode.\"],\"FnSb-y\":[\"Annuler Job\"],\"FnZzou\":[\"État de l'instance\"],\"FncCci\":[\"RADIUS\"],\"Fo2bwm\":[\"Acteur\"],\"Fo6qAq\":[\"Voici des exemples d'URL pour le contrôle de source Subversion :\"],\"Fp0Rk4\":[\"Étiquettes facultatives décrivant cet inventaire,\\n telles que 'dev' ou 'test'. Les étiquettes peuvent être utilisées pour regrouper et filtrer\\n les inventaires et les jobs terminés.\"],\"FqW8E0\":[\"Capacité utilisée\"],\"FsGJXJ\":[\"Nettoyer\"],\"Fx2-x_\":[\"Ajouter des rôles d'utilisateur\"],\"G-jHgL\":[\"Définir le chemin source à\"],\"G2KpGE\":[\"Modifier le projet\"],\"G3myU-\":[\"Mardi\"],\"G768_0\":[\"refusé\"],\"G8jcl6\":[\"Modèles de notification\"],\"G9MOps\":[\"Branche à utiliser pour la synchronisation de l'inventaire. La valeur par défaut du projet est utilisée si elle est vide. Cette option n'est autorisée que si le champ allow_override du projet est défini sur vrai.\"],\"GDvlUT\":[\"Rôle\"],\"GGWsTU\":[\"Annulé\"],\"GGuAXg\":[\"Voir les paramètres SAML\"],\"GHDQ7i\":[\"N'a pas réussi à supprimer une ou plusieurs organisations.\"],\"GJKwN0\":[\"Programmations\"],\"GLZDtF\":[\"Avertissement système\"],\"GLwo_j\":[\"0 (Avertissement)\"],\"GMaU6_\":[\"Demander le type de tâche au lancement.\"],\"GO6s6F\":[\"Paramètres Job\"],\"GRwtth\":[\"Exécuter un contrôle de vérification de fonctionnement sur l'instance\"],\"GSYBQc\":[\"Service API/Clé d’intégration\"],\"GTOcxw\":[\"Modifier l’utilisateur\"],\"GU9vaV\":[\"Hôtes inaccessibles\"],\"GXiLKo\":[\"Zone de texte\"],\"GZIG7_\":[\"Inventaire copié\"],\"G_Dwo_\":[\"Choose an answer type or format you want as the prompt for the user.\\n Refer to the Ansible Controller Documentation for more additional\\n information about each option.\"],\"GaJLE6\":[\"Initié par\"],\"Gd-B71\":[\"Type d'informations d’identification non trouvé.\"],\"Ge5ecx\":[\"Hôtes max.\"],\"GeIrWJ\":[[\"brandName\"],\" logo\"],\"Gf3vm8\":[\"par page\"],\"GiXRTS\":[\"N'a pas réussi à supprimer un ou plusieurs jetons d'utilisateur.\"],\"Gix1h_\":[\"Voir tous les Jobs\"],\"GkbHM9\":[\"Voir tous les projets.\"],\"Gn7TK5\":[\"Basculer les outils\"],\"GpNoVG\":[\"Veuillez ajouter une programmation pour remplir cette liste\"],\"GpWp6E\":[\"Définir les fonctions et fonctionnalités niveau système\"],\"GtycJ_\":[\"Tâches\"],\"H0z3JJ\":[\"Ces arguments sont utilisés avec le module spécifié. Vous pouvez trouver des informations sur \",[\"moduleName\"],\" en cliquant \"],\"H1M6a6\":[\"Afficher toutes les instances.\"],\"H3kCln\":[\"Nom d'hôte\"],\"H6jbKn\":[\"Paramètres de l'interface utilisateur\"],\"H7OUPr\":[\"Jour\"],\"H7e4dl\":[\"Fournissez des paires clé/valeur en utilisant soit\\n YAML soit JSON.\"],\"H86f9p\":[\"Effondrement\"],\"H9MIed\":[\"Nœud d'exécution\"],\"HAi1aX\":[\"Mettre à jour la clé de webhook\"],\"HAzhV7\":[\"Informations d’identification\"],\"HDULRt\":[\"Hôtes uniques\"],\"HGOtRu\":[\"Le test de notification a échoué.\"],\"HIfMSF\":[\"Options à choix multiples.\"],\"HLAK2g\":[\"This action will cancel the following jobs:\"],\"HODq3s\":[\"Échec du refus d'une ou plusieurs validations de flux de travail.\"],\"HQ7e8y\":[\"Version non sensible à la casse de exact.\"],\"HQ7oEt\":[\"Retour Haut de page\"],\"HUx6pW\":[\"Configuration d'Injector\"],\"HajiZl\":[\"Mois\"],\"HbaQks\":[\"Saisir une adresse email par ligne pour créer une liste des destinataires pour ce type de notification.\"],\"HbnjOn\":[[\"interval\"],\" weeks\"],\"HcznyH\":[\"N'a pas réussi à synchroniser une partie ou la totalité des sources d'inventaire.\"],\"HdE1If\":[\"Canal\"],\"HdErwL\":[\"Sélectionnez une ligne à approuver\"],\"Hf0QDK\":[\"Projet copié\"],\"Hhnh8d\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" jour\"],\"other\":[\"#\",\" jours\"]}]],\"HiTf1W\":[\"Annuler le retour\"],\"HjxnnB\":[\"sélectionner un module\"],\"HlhZ5D\":[\"Utiliser TLS\"],\"HoHveO\":[\"Renvoie les résultats qui satisfont celui-ci ainsi que les autres filtres. Il s'agit du type d'ensemble par défaut si rien n'est sélectionné.\"],\"HpK_8d\":[\"Rechargez\"],\"Ht1JWm\":[\"Couleur des notifications\"],\"HwpTx4\":[\"Contrôlez le niveau de sortie qu'ansible produira lors de l'exécution du playbook.\"],\"I0LRRn\":[\"Téléchargement du Bundle\"],\"I7Epp-\":[\"Détails de l'option\"],\"I9NouQ\":[\"Aucun abonnement trouvé\"],\"ICi4pv\":[\"Automatisation\"],\"ICt7Id\":[\"Type de nœud\"],\"IEKPuq\":[\"Faites défiler la page suivante\"],\"IGQ11b\":[\"Secret partagé avec le service de webhook. Le service l'utilise pour signer ses requêtes, afin que seul votre dépôt puisse déclencher une synchronisation du projet. Saisissez votre propre secret pour le gérer en tant que configuration, ou laissez le champ vide pour en générer un lors de l'enregistrement.\"],\"IJAVcb\":[\"Retour aux applications\"],\"IKg_un\":[\"Canaux ou utilisateurs de destination\"],\"IMJYui\":[\"Utilisez un numéro de téléphone par ligne pour spécifier où\\n acheminer les messages SMS. Les numéros de téléphone doivent être au format +11231231234. Pour plus d'informations, consultez la documentation de Twilio\"],\"IN6gbp\":[\"Cliquez pour réorganiser l'ordre des questions de l'enquête\"],\"IPusY8\":[\"Supprimez toutes les modifications locales avant d'effectuer une mise à jour.\"],\"ISuwrJ\":[\"Modifier l'environnement d'exécution\"],\"IV0EjT\":[\"Notification test\"],\"IVvM2B\":[\"Options activées\"],\"IWoF_f\":[\"Afficher le questionnaire\"],\"IZfe0p\":[\"branche du contrôle de la source\"],\"Igz8MU\":[\"Les deux dernières semaines\"],\"IiR1sT\":[\"Type de nœud\"],\"IjDwKK\":[\"type de connexion\"],\"Ikhk0q\":[\"Service de webhook pour ce modèle de tâche de flux de travail.\"],\"Iqm2E5\":[\"Veuillez ajouter \",[\"pluralizedItemName\"],\" pour remplir cette liste\"],\"IrC12v\":[\"Application\"],\"IrI9pg\":[\"Date de fin\"],\"IsJ8i6\":[\"Sélectionnez une branche pour le workflow. Cette branche est appliquée à tous les nœuds de modèle de job qui demandent une branche.\"],\"IspLSK\":[\"Job de gestion non trouvé.\"],\"J0zi6q\":[\"Balises de sauts\"],\"J2HgCR\":[\"Red Hat, Inc.\"],\"J2d1y8\":[\"Filtrer par tâches ayant réussi\"],\"J4y7Uk\":[\"Flux de travail annulé \"],\"J8VgfD\":[\"Vérifiez si le champ donné ou l'objet connexe est nul ; attendez-vous à une valeur booléenne.\"],\"JEGlfK\":[\"Démarré\"],\"JFnJqF\":[\"Écoulé\"],\"JFphCp\":[\"3 (Déboguer)\"],\"JGvwnU\":[\"Dernière utilisation\"],\"JIX50w\":[\"Empêcher le repli du groupe d'instances : si activé, le modèle de job empêchera l'ajout de groupes d'instances d'inventaire ou d'organisation à la liste des groupes d'instances préférés sur lesquels s'exécuter.\"],\"JJwEMx\":[\"Hôtes supprimés\"],\"JKZTiL\":[\"Il s'agit des niveaux de verbosité pour les standards hors du cycle de commande qui sont pris en charge.\"],\"JL3si7\":[\"Mise à jour en cours\"],\"JLjfEs\":[\"N'a pas réussi à supprimer une ou plusieurs programmations.\"],\"JOmgRg\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" mois\"],\"other\":[\"#\",\" mois\"]}]],\"JRa4kV\":[\"Synchronisez le projet lorsqu'un push se produit dans le dépôt de contrôle de source, afin que la copie locale soit toujours à jour sans interrogation ni mise à jour à chaque lancement de job.\"],\"JTHoCu\":[\"basculer les changements\"],\"JUwjsw\":[\"Select an activity type\"],\"JXgd33\":[\"Naviguer vers le tableau de bord\"],\"J_2nGO\":[\"The execution environment that will be used for jobs\\n inside of this organization. This will be used a fallback when\\n an execution environment has not been explicitly assigned at the\\n project, job template or workflow level.\"],\"J_DUZt\":[\"Groupes d'instances\"],\"Ja4VHl\":[[\"0\"],\" plus\"],\"JgP090\":[\"Suivi des sous-modules\"],\"JjcTk5\":[\"Connexion sociale\"],\"JjfsZM\":[\"Supprimer l'approbation du flux de travail\"],\"JppQoT\":[\"Date du dernier recalcul\xA0:\"],\"JsY1p5\":[\"Refusé\"],\"Jvv6rS\":[\"Options à choix multiples.\"],\"JwqOfG\":[\"Évaluer sur\"],\"Jy9qCv\":[\"annuler modifier connecter rediriger\"],\"K5AykR\":[\"Supprimer l’équipe\"],\"K93j4j\":[\"Nom du label\"],\"KC2nS5\":[\"Ressource supprimée\"],\"KDcLJ6\":[\"YAML :\"],\"KEY0qH\":[\"Test passé\"],\"KM6m8p\":[\"Team\"],\"KNOsJ0\":[\"Étiquettes facultatives décrivant ce modèle de job, telles que « dev » ou « test ». Les étiquettes peuvent être utilisées pour regrouper et filtrer les modèles de job et les jobs terminés.\"],\"KQ9EQm\":[\"Comment utiliser le plugin d'inventaire construit\"],\"KR9Aiy\":[\"This inventory is currently being used by some templates. Are you sure you want to delete it?\"],\"KRf0wm\":[\"Types d'informations d'identification\"],\"KTvwHj\":[\"Sources d'entrée des informations d'identification\"],\"KVbzjm\":[\"Visualiseur\"],\"KXFYp9\":[\"Obtenir un abonnement\"],\"KXnokb\":[\"L'environnement d'exécution disponible globalement ne peut pas être réaffecté à une organisation spécifique\"],\"KZp4lW\":[\"Lookup select\"],\"K_MYeX\":[\"Voir les détails de l'utilisateur\"],\"KeRkFA\":[\"Effacer la sélection d'abonnement\"],\"KeqCdz\":[\"Pairs des nœuds de contrôle\"],\"Ki_j_-\":[\"Laissez vide pour générer une nouvelle clé de webhook lors de l'enregistrement\"],\"KjBkMe\":[\"Ce groupe de conteneurs est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?\"],\"KjVvNP\":[\"ID du panneau (facultatif)\"],\"KkMfgW\":[\"Modèles de Jobs\"],\"KkzJWF\":[\"Première automatisation\"],\"KlQd8_\":[\"Spécifier le champ d'application du jeton\"],\"KnN1Tu\":[\"Expire\"],\"KoCnPE\":[\"Annuler le job\"],\"KopV8H\":[\"Afficher uniquement les groupes racines\"],\"KxIA0h\":[\"Basculer l'hôte\"],\"Kz9DSl\":[\"Ajouter une hôte existant\"],\"KzQFvE\":[\"Modifier l'organisation\"],\"L1Ob4t\":[\"Onglet Détails\"],\"L3ooU6\":[\"Information d’identification\"],\"L7Nz3F\":[\"Ressource manquante\"],\"L8fEEm\":[\"Groupe\"],\"L973Qq\":[\"Demande d’abonnement\"],\"LCl8Ck\":[\"Saisie de recherche par date\"],\"LGl_pR\":[\"Voir les paramètres des Jobs\"],\"LGryaQ\":[\"Créer de nouvelles informations d’identification\"],\"LQ29yc\":[\"Démarrer la synchronisation de la source d'inventaire\"],\"LQRys9\":[\"Les sous-modules suivront le dernier commit sur leur branche master (ou une autre branche spécifiée dans .gitmodules). Si non, les sous-modules seront conservés à la révision spécifiée par le projet principal. Cela équivaut à spécifier l'option --remote à git submodule update.\"],\"LQTgjH\":[\"Projet non trouvé.\"],\"LRePxk\":[\"Nombre minimum d'instances qui seront automatiquement attribuées à ce groupe lorsque de nouvelles instances seront mises en ligne.\"],\"LSUePQ\":[\"Lancer | \",[\"0\"]],\"LULLsO\":[\"Voir toutes les organisations.\"],\"LV5a9V\":[\"Pairs\"],\"LVecP9\":[\"Rôles des utilisateurs\"],\"LYAQ1X\":[\"Activer les tâches parallèles\"],\"LZr1lR\":[\"Groupe d'instance non trouvé.\"],\"Lc0RHh\":[\"Supprimer la programmation\"],\"LgD0Cy\":[\"Nom d'application\"],\"LhMjLm\":[\"Durée\"],\"Ll7Jei\":[\"LDAP3\"],\"LnYbGj\":[\"Modifier le questionnaire\"],\"Lnnjmk\":[\"<0><1/> Un aperçu technique de la nouvelle \",[\"brandName\"],\" interface utilisateur peut être trouvé <2>ici.\"],\"Lqygiq\":[\"Rappels d’exécution \"],\"LtBtED\":[\"Succès de la notification de basculement\"],\"LuXP9q\":[\"Accès\"],\"LwHwt1\":[\"Abonnement \",[\"brandName\"]],\"Lwovp8\":[\"Si activé, les exécutions simultanées de ce modèle de job seront autorisées.\"],\"M0okDw\":[\"Définissez des préférences pour la collection des données, les logos et logins.\"],\"M73whl\":[\"Contexte\"],\"MA-mp9\":[\"Filtre de référence de webhook\"],\"MA7cMf\":[\"Tableau des paramètres de l'inventaire construit\"],\"MAI_nw\":[\"Veuillez sélectionner une autre recherche par le filtre ci-dessus\"],\"MAV-SQ\":[\"Informations d'identification introuvables.\"],\"MApRef\":[\"Êtes-vous sûr de vouloir modifier l'URL de substitution de la redirection de la connexion ? Cela pourrait avoir un impact sur la capacité des utilisateurs à se connecter au système une fois que l'authentification locale est également désactivée.\"],\"MD0-Al\":[\"Votre session est sur le point d'expirer\"],\"MDQLec\":[\"Contrôler le niveau de sortie qu'Ansible produira pour les tâches de mise à jour des sources d'inventaire.\"],\"MGpavd\":[\"Clé Typeahead\"],\"MHM-bv\":[\"Cible de lien invalide. Impossible d'établir un lien avec les dépendants ou les nœuds des ancêtres. Les cycles de graphiques ne sont pas pris en charge.\"],\"MHbbol\":[\" Découpage de job\"],\"MKEPCY\":[\"Suivez\"],\"MP1v-1\":[\"Légende\"],\"MP8dU9\":[\"L'emplacement complet de l'image, y compris le registre du conteneur, le nom de l'image et la balise de version.\"],\"MQPvAa\":[\"Demander les libellés au lancement.\"],\"MQoyj6\":[\"Modèle de Job de flux de travail\"],\"MTLPCv\":[\"Exécuter lorsque le nœud parent se trouve dans un état de défaillance.\"],\"MVw5um\":[\"2 (Verbeux +)\"],\"MZU5bt\":[\"N'a pas réussi à supprimer un ou plusieurs groupes.\"],\"M_gXds\":[\"Note: This instance may be re-associated with this instance group if it is managed by \"],\"MdhgLT\":[\"Mot de passe du serveur IRC\"],\"MfCEiB\":[\"Informations d’identification Galaxy\"],\"MfQHgE\":[\"Jours conservation\"],\"Mfk6hJ\":[\"N'a pas réussi à supprimer un ou plusieurs modèles.\"],\"Mhn5m4\":[\"Information d’identification au registre\"],\"Mn45Gz\":[\"Retour aux groupes d'instances\"],\"MnbH31\":[\"page\"],\"MofjBu\":[\"L'environnement d'exécution qui sera utilisé pour les jobs qui utilisent ce projet. Il sera utilisé comme solution de repli lorsqu'un environnement d'exécution n'a pas été explicitement attribué au niveau du modèle de job ou du workflow.\"],\"MpLngK\":[\"Le point de terminaison de webhook de ce projet. Ajoutez-le à la configuration de webhook du dépôt pour que les push déclenchent une synchronisation du projet.\"],\"MpZRQy\":[\"Git\"],\"MuhG5I\":[[\"0\",\"plural\",{\"one\":[\"This approval cannot be deleted due to insufficient permissions or a pending job status\"],\"other\":[\"These approvals cannot be deleted due to insufficient permissions or a pending job status\"]}]],\"MwCc2O\":[\"Identifiant du webhook pour ce modèle de tâche de flux de travail.\"],\"Mwf3Mw\":[\"Remplissez les hôtes de cet inventaire à l'aide d'un filtre\\n de recherche. Exemple : ansible_facts__ansible_distribution:\\\"RedHat\\\".\\n Reportez-vous à la documentation pour plus de syntaxe et\\n d'exemples. Reportez-vous à la documentation d'Ansible Controller pour plus de syntaxe et\\n d'exemples.\"],\"MzcRa_\":[\"Utilisateur & Automation Analytics\"],\"Mzqo60\":[\"Valeur à comparer à l'artefact. Interprétée comme JSON lorsque cela est possible (par exemple true, 3), sinon comme une chaîne simple.\"],\"N1U4ZG\":[\"Conformité de l'abonnement\"],\"N36GRB\":[\"Ce champ doit être un nombre et avoir une valeur supérieure à \",[\"min\"]],\"N40H-G\":[\"Tous\"],\"N5vmCy\":[\"inventaire construit\"],\"N6GBcC\":[\"Confirmer Effacer\"],\"N7wOty\":[\"Sélectionnez le playbook à exécuter par ce job.\"],\"NAKA53\":[\"Échec de l'hôte\"],\"NBONaK\":[\"Collecte des facts\"],\"NCVKhy\":[\"Jobs récents\"],\"NDQvUO\":[\"Demander les balises au lancement.\"],\"NIuIk1\":[\"Illimité\"],\"NLKsgx\":[[\"pluralizedItemName\"],\" Liste\"],\"NO1ZxL\":[\"Nom de l'application\"],\"NPfgIB\":[\"sec\"],\"NQHZnb\":[\"Entier relatif\"],\"NRn4V6\":[[\"interval\"],\" months\"],\"NUNUrW\":[\"Balises pour l'annotation (facultatif)\"],\"NW-xDQ\":[\"Cela rétablira toutes les valeurs de configuration de cette page à\\n leurs valeurs d'usine par défaut. Êtes-vous sûr de vouloir continuer ?\"],\"NX18CF\":[\"Le ou après\"],\"NYxilo\":[\"Jobs Simultanées\"],\"Na9fIV\":[\"Aucun objet trouvé.\"],\"NcVaYu\":[\"Heure de Fin\"],\"NeA1eI\":[\"Pan droite\"],\"Never\":[\"Jamais\"],\"NgD4On\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"Cette action annulera la tâche suivante :\"],\"other\":[\"Cette action annulera les tâches suivantes :\"]}]],\"NjnDuY\":[\"Dragging started for item id: \",[\"newId\"],\".\"],\"NjqMGF\":[\"Type de ressources\"],\"NnH3pK\":[\"Test\"],\"No Jobs\":[\"Aucun job\"],\"NpJHAp\":[\"Les modèles de Job dont l'inventaire ou le projet est manquant ne peuvent pas être sélectionnés lors de la création ou de la modification de nœuds. Sélectionnez un autre modèle ou corrigez les champs manquants pour continuer.\"],\"NqIlWb\":[\"Dernière exécution\"],\"NrGRF4\":[\"Modalité de sélection de l'abonnement\"],\"NsXTPu\":[\"Pour créer un inventaire smart, utiliser des facts ansibles, et rendez-vous sur l’écran d’inventaire smart.\"],\"NtD3hJ\":[\"Clés associées\"],\"Nu4DdT\":[\"Sync\"],\"Nu4oKW\":[\"Description\"],\"Nu7VHX\":[\"Choisissez les rôles à appliquer aux ressources sélectionnées. Notez que tous les rôles sélectionnés seront appliqués à toutes les ressources sélectionnées.\"],\"O-OYOe\":[\"Modifier l’équipe\"],\"O06Rp6\":[\"Interface utilisateur\"],\"O1Aswy\":[\"N’expire jamais\"],\"O28qFz\":[\"Voir Job \",[\"0\"]],\"O2EuOK\":[\"Connectez-vous avec SAML \",[\"samlIDP\"]],\"O2UpM1\":[\"Navigation\"],\"O3oNi5\":[\"Email\"],\"O4ilec\":[\"Version non sensible à la casse de regex\"],\"O5pAaX\":[\"Sélectionnez une instance et une métrique pour afficher le graphique\"],\"O78b13\":[\"Sélectionnez l'application à laquelle ce jeton appartiendra, ou laissez ce champ vide pour créer un jeton d'accès personnel.\"],\"O8_96D\":[\"Port de l'écouteur\"],\"O9VQlh\":[\"Sélectionner la fréquence\"],\"OA8xiA\":[\"Pan Gauche\"],\"OA99Nq\":[\"Quand l'hôte a-t-il été automatisé pour la dernière fois\xA0?\"],\"OC4Tzv\":[\"ici\"],\"OGoqLy\":[\"# sources with sync failures.\"],\"OHGMM6\":[\"Date/Heure de début\"],\"OIv5hN\":[\"Redirection vers le détail de l'abonnement\"],\"OJ9bHy\":[\"N'a pas réussi à dissocier un ou plusieurs groupes.\"],\"OOq_rD\":[\"Exécution Playbook\"],\"OPTWH4\":[\"Activer la vérification de certificat HTTPS\"],\"ORxrw7\":[\"Jours restants\"],\"OSH8xi\":[\"Hop\"],\"OcRJRt\":[\"Confirmer l'annulation du job\"],\"Oe_VOY\":[\"N'a pas réussi à supprimer une ou plusieurs instances.\"],\"OgB1k4\":[\"Arguments\"],\"OiCz65\":[\"URL Grafana\"],\"Oiqdmc\":[\"Connectez-vous avec GitHub Organizations\"],\"Oj2Ix6\":[\"Le laps de temps (en secondes) d'exécution avant l'annulation du job. La valeur par défaut est 0 pour aucun délai d'expiration du job.\"],\"OjwX8k\":[\"Informations sur le jeton\"],\"OlpaBt\":[\"Jobs simultanés : si activé, les exécutions simultanées de ce modèle de job seront autorisées.\"],\"OmbooC\":[\"Tâche démarrée\"],\"OogRLI\":[\"Inventaire fédéré non trouvé.\"],\"OqE3G-\":[\"Recherche exacte sur le champ d'identification.\"],\"Osn70z\":[\"Déboguer\"],\"OvBnOM\":[\"Retour aux paramètres\"],\"OyGPiW\":[\"Paramètres d'abonnement\"],\"OzssJK\":[\"Exécuter Commande\"],\"P3spiP\":[\"Retour aux modèles\"],\"P7d85D\":[\"Supprimer l’accès de l’équipe\"],\"P8fBlG\":[\"Authentification\"],\"PByO0X\":[\"Votes\"],\"PCEmEr\":[\"Jetons d'utilisateur\"],\"PJ1B0S\":[[\"0\",\"plural\",{\"one\":[\"This project is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"PJf54Q\":[\"Retour aux sources\"],\"PKTjJ3\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"weekday\"],\" de \",[\"month\"]],\"4\":[\"The fourth \",[\"weekday\"],\" de \",[\"month\"]],\"5\":[\"The fifth \",[\"weekday\"],\" of \",[\"month\"]],\"one\":[\"The first \",[\"weekday\"],\" de \",[\"month\"]],\"two\":[\"The second \",[\"weekday\"],\" de \",[\"month\"]]}]],\"PLzYyl\":[\"Fréquence Détails de l'exception\"],\"PMk2Wg\":[\"Échec du déprovisionnement\"],\"POKy-m\":[\"Copier Environnement d'exécution\"],\"PPsHsC\":[\"Revenir aux valeurs par défaut\"],\"PQPOpT\":[\"Fichier d'inventaire\"],\"PRuZiQ\":[\"Actualiser pour réviser\"],\"PUnovD\":[\"Amazon EC2\"],\"PVCOQE\":[\"Pair supprimé. Assurez-vous d'exécuter à nouveau le paquet d'installation pour \",[\"0\"],\" afin de voir les modifications prendre effet.\"],\"PWwwY2\":[\"Dissocier\"],\"PYPqaM\":[\"ID du panneau (facultatif)\"],\"PZBWpL\":[\"Switch to light mode\"],\"P_s0vy\":[\"Impossible de rechercher le type d'informations d'identification pour ce service de webhook, le champ des informations d'identification du webhook est donc indisponible.\"],\"PaTL2O\":[\"Liste de destinataires\"],\"PhufXn\":[\"Parent de tranche de job\"],\"Pi5vnX\":[\"Échec de la synchronisation de la source d'inventaire construite\"],\"PiK6Ld\":[\"Sam.\"],\"PiRb8z\":[\"DERNIÈRE SYNCHRONISATION\"],\"PjkoCm\":[\"Êtes-vous sûr de vouloir supprimer le nœud ci-dessous :\"],\"PkVlOm\":[\"Spécifiez les en-têtes HTTP au format JSON. Reportez-vous à\\n la documentation d'Ansible Controller pour un exemple de syntaxe.\"],\"Po1btV\":[\"Navigation globale\"],\"Po7y5X\":[\"Échec de la copie de l'environnement d'exécution\"],\"PvgcEq\":[\"Draggable list to reorder and remove selected items.\"],\"PwAMWD\":[\"Effondrer tous les événements de la tâche\"],\"PyV1wC\":[\"Empêcher le repli du groupe d'instances\"],\"Q3P_4s\":[\"Tâche\"],\"Q4hWRC\":[\"Jobs de flux de travail (\",[\"total\"],\")\"],\"Q5ZW8j\":[\"Table des abonnements\"],\"QF_MpS\":[\"\\n Notez que seuls les hôtes directement dans ce groupe peuvent\\n être dissociés. Les hôtes des sous-groupes doivent être dissociés\\n directement au niveau du sous-groupe auquel ils appartiennent.\\n \"],\"QFdBqu\":[\"Mattermost\"],\"QGbLBK\":[\"ID Job\"],\"QHF6CU\":[\"Plays\"],\"QIOH6p\":[\"Initié par (nom d'utilisateur)\"],\"QIpNLR\":[\"Aucune erreurs de synchronisation des inventaires\"],\"QIq3_3\":[\"Remarque : L'ordre dans lequel ces éléments sont sélectionnés définit la priorité d'exécution. Sélectionner plus d’une option pour permettre le déplacement.\"],\"QJbMvX\":[\"Les informations d’identification qui nécessitent des mots de passe au lancement ne sont pas autorisées. Veuillez supprimer ou remplacer les informations d’identification suivantes par une du même type afin de continuer : \",[\"0\"]],\"QJowYS\":[\"confirmer supprimer\"],\"QKUQw1\":[\"Créer un nouvel hôte\"],\"QKbQTN\":[\"Sélecteur de type de flux d'activité\"],\"QOF7Jg\":[\"N'a pas approuvé \",[\"0\"],\".\"],\"QPRWww\":[\"Type d’exécution\"],\"QR908H\":[\"Nom du paramètre\"],\"QT1rDU\":[\"GitHub Enterprise\"],\"QTwM6Y\":[\"Le projet contenant le playbook que ce job exécutera.\"],\"QYKS3D\":[\"Jobs récents\"],\"QamIPZ\":[\"Veuillez cliquer sur le bouton de démarrage pour commencer.\"],\"Qay_5h\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"Qd2E32\":[\"Récupérer l'état activé à partir de la dictée donnée des variables hôtes. La variable activée peut être spécifiée en utilisant la notation par points, par exemple\xA0: 'foo.bar'\"],\"Qf36YE\":[\"Verbosité\"],\"QgnNyZ\":[\"Erreur de synchronisation\"],\"Qhb8lT\":[\"Créer une nouvelle application\"],\"QmvYrA\":[\"Description facultative du modèle de tâche de flux de travail.\"],\"QnJn75\":[\"Dernière exécution\"],\"Qv59HG\":[\"Modifier le type d’identification\"],\"Qv91_c\":[\"LDAP 2\"],\"QyjCeq\":[\"Capacité\"],\"R-uZ8Y\":[\"Connectez-vous avec SAML\"],\"R633QG\":[\"Retour à Approbation des flux de travail\"],\"R6Gueb\":[\"Modification de la notification de basculement\"],\"R7s3iG\":[\"Renvoi à\"],\"R9Khdg\":[\"Auto\"],\"R9sZsA\":[\"Supprimer les groupes et les hôtes\"],\"RBDHUE\":[\"Demander l'environnement d'exécution au lancement.\"],\"RI8cIw\":[\"Le nombre maximum d'hôtes autorisés à être gérés par\\n cette organisation. La valeur par défaut est 0, ce qui signifie aucune limite.\\n Reportez-vous à la documentation d'Ansible pour plus de détails.\"],\"RIcSTA\":[\"Expire le\"],\"RIeAlp\":[\"Chaque fois qu'une tâche est exécutée à l'aide de cet inventaire, actualisez l'inventaire à partir de la source sélectionnée avant d'exécuter les tâches de la tâche.\"],\"RK1gDV\":[\"Connectez-vous avec Azure AD\"],\"RMdd1C\":[\"Aucun (exécution unique)\"],\"RO9G1f\":[\"Ce champ doit être supérieur à 0\"],\"RPnV2o\":[\"Le résultat de la recherche n’a produit aucun résultat…\"],\"RThfvh\":[\"Dissocier la ou les équipes liées ?\"],\"R_mzhp\":[\"Échec du jeton d'utilisateur.\"],\"RbIaa9\":[\"Jeton non trouvé.\"],\"RdLvW9\":[\"relancer les Jobs\"],\"Rguqao\":[\"Sélectionnez une ligne à supprimer\"],\"RhOukN\":[[\"interval\"],\" hour\"],\"RiQMUh\":[\"En cours d'exécution\"],\"RjIKOw\":[\"Impossible de modifier l'inventaire sur un hôte.\"],\"RjkhdY\":[\"Le champ commence par la valeur.\"],\"RkXlPZ\":[\"GitHub\"],\"RlsPz7\":[\"Êtes-vous sûr de vouloir supprimer ce lien ?\"],\"Rm1iI_\":[\"Demander les variables au lancement.\"],\"Roaswv\":[\"User Guide\"],\"RpKSl3\":[\"Informations d’identification copiées.\"],\"RsZ4BA\":[\"Défilement en dernier\"],\"RtKKbA\":[\"Dernier\"],\"Ru59oZ\":[\"Activer le webhook pour ce modèle.\"],\"RuEWFx\":[\"À la date du\"],\"RuiOO0\":[\"N'a pas réussi à supprimer une ou plusieurs applications\"],\"Rw1xwN\":[\"Chargement du contenu\"],\"RxzN1M\":[\"Activé\"],\"RyPas1\":[\"Cancel selected jobs\"],\"S0kLOH\":[\"ID\"],\"S2nsEw\":[\"Supérieur à la comparaison.\"],\"S5gO6Y\":[\"Transmettez des variables de ligne de commande supplémentaires au flux de travail.\"],\"S6zj7M\":[\"Pour les modèles de job, sélectionnez « run » pour exécuter le playbook. Sélectionnez « check » pour vérifier uniquement la syntaxe du playbook, tester la configuration de l'environnement et signaler les problèmes sans exécuter le playbook.\"],\"S7kN8O\":[\"N'a pas réussi à supprimer un ou plusieurs utilisateurs.\"],\"S7tNdv\":[\"En cas de succès\"],\"S8FW2i\":[\"Le fichier d'inventaire à synchroniser par cette source. Vous pouvez sélectionner dans la liste déroulante ou saisir un fichier dans l'entrée.\"],\"SA-KXq\":[\"Pan En haut\"],\"SAw-Ux\":[\"Êtes-vous sûr de vouloir supprimer \",[\"0\"],\" l’accès de \",[\"username\"],\" ?\"],\"SBfnbf\":[\"Voir tous les environnements d'exécution\"],\"SC1Cur\":[\"Statut inconnu\"],\"SDND4q\":[\"Non configuré\"],\"SIJDi3\":[\"Ajustement des capacités\"],\"SJjggI\":[\"Mettre à jour les options\"],\"SJmHMo\":[\"Documentation.\"],\"SLm_0U\":[\"Port du serveur IRC\"],\"SODyJ3\":[\"Désynchronisation des hôtes OK\"],\"SRiPhD\":[\"Annuler le retrait d'un nœud\"],\"SV5nA1\":[\"Certaines des étapes précédentes comportent des erreurs\"],\"SVG6MY\":[\"Retourner le champ à la valeur précédemment enregistrée\"],\"SYbJcn\":[\"Modèle de notification de modification\"],\"SZvybZ\":[\"Défaut LDAP\"],\"SZw9tS\":[\"Voir les détails\"],\"SbRHme\":[\"Zone de texte\"],\"Se_E0z\":[\"Job de flux de travail\"],\"Sgr5NW\":[\"Sélectionnez une instance pour effectuer un bilan de fonctionnement.\"],\"Sh2XTJ\":[\"Type de notification\"],\"SiexHs\":[\"Tableau de bord (toutes les activités)\"],\"Sja7f-\":[\"Combien de fois l'hôte a-t-il été supprimé\"],\"Sjoj4f\":[\"Nom d’identification\"],\"SlfejT\":[\"Erreur\"],\"SoREmD\":[\"Applications & Jetons\"],\"SqA8uD\":[\"Exécutions Job\"],\"SqLEdN\":[\"N'a pas réussi à supprimer l'inventaire smart.\"],\"SqYo9m\":[\"Retour aux instances\"],\"Ssdrw4\":[\"Obsolète\"],\"Successful\":[\"Réussi\"],\"SvPvEX\":[\"Corps de message de flux de travail approuvé\"],\"Svkela\":[\"Obtenir la page précédente\"],\"SwJLlZ\":[\"Corps de message de flux de travail refusé\"],\"SxGqey\":[\"Paramètres génériques de l'OIDC\"],\"Sxm8rQ\":[\"Utilisateurs\"],\"SzFxHC\":[\"Paramètres LDAP\"],\"SzQMpA\":[\"Forks\"],\"T2M20E\":[\"Le\"],\"T2mGOG\":[\"docs.ansible.com\"],\"T2x15z\":[\"N'a pas réussi à basculer la notification.\"],\"T4a4A4\":[\"Clé du webhook\"],\"T7yEGN\":[\"Le type d'autorisation que l'utilisateur doit utiliser pour acquérir des jetons pour cette application\"],\"T91vKp\":[\"Lecture\"],\"T9hZ3D\":[\"GitHub Enterprise Team\"],\"TAnffV\":[\"Modifier ce nœud\"],\"TBH48u\":[\"N'a pas réussi à supprimer l'équipe.\"],\"TC32CH\":[\"Jours de conservation des données \"],\"TD1APv\":[\"Obtenir des abonnements\"],\"TFr1UR\":[\"Sélectionnez la collection Ansible fournissant le plugin d'inventaire utilisé pour la synchronisation depuis vCenter. La collection community.vmware est obsolète au profit de la collection plus récente vmware.vmware. La sélection est appliquée via la clé \\\"plugin\\\" dans les variables sources ; lorsque la clé est absente, la collection par défaut est utilisée.\"],\"TJVvMD\":[\"Type de recherche connexe\"],\"TLomdD\":[[\"sessionCountdown\",\"plural\",{\"one\":[\"You will be logged out in \",\"#\",\" second due to inactivity\"],\"other\":[\"You will be logged out in \",\"#\",\" seconds due to inactivity\"]}]],\"TMJ39S\":[\"Dissocier le rôle\"],\"TMLAx2\":[\"Obligatoire\"],\"TO3h59\":[\"Remplir le champ à partir d'un système de gestion des secrets externes\"],\"TO4OtU\":[\"Insights - Information d’identification\"],\"TOjYb_\":[\"Afficher les détails de l'hôte de l'inventaire construit\"],\"TP9_K5\":[\"Jeton\"],\"TRDppN\":[\"Webhook\"],\"TTMvf7\":[\"Type de groupe\"],\"TU6IDa\":[\"Type d’utilisateur\"],\"TXKmNM\":[\"Un inventaire doit être sélectionné\"],\"TZEuIE\":[\"Retour aux types d'informations d'identification\"],\"T_87By\":[\"Paramètres\"],\"Ta0ts5\":[\"Afficher les modifications\"],\"TcnG-2\":[\"Créer un nouvel environnement d'exécution\"],\"TgSxH9\":[\"URL de rappel d’exécution \"],\"TkiN8D\":[\"Informations sur l'utilisateur\"],\"Tmh24b\":[\"Si activé, le modèle de job empêchera l'ajout de groupes d'instances d'inventaire ou d'organisation à la liste des groupes d'instances préférés sur lesquels s'exécuter. Remarque : si ce paramètre est activé et que vous avez fourni une liste vide, les groupes d'instances globaux seront appliqués.\"],\"Tmuvry\":[\"Définir type Typeahead\"],\"ToOoEw\":[\"Copier les identifiants\"],\"Tof7pX\":[\"Jobs\"],\"Tq71UT\":[\"jour de semaine\"],\"Tx3NMN\":[\"Phrase de passe pour la clé privée\"],\"TxKKED\":[\"Afficher les détails de l'inventaire construit\"],\"TyaPAx\":[\"Administrateur du système\"],\"Tz0i8g\":[\"Paramètres\"],\"U-nEJl\":[\"Voir les paramètres de GitHub\"],\"U011Uh\":[\"Dernière vue\"],\"U7rA2a\":[\"Lorsqu'elle n'est pas cochée, une fusion sera effectuée, combinant les variables locales avec celles trouvées sur la source externe.\"],\"UDf-wR\":[\"Abonnements consommés\"],\"UEaj7U\":[\"Erreurs de synchronisation des inventaires\"],\"UJpDop\":[\"Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"UJsNNk\":[\"Révision du Contrôle de la source\"],\"UPasE4\":[\"Azure AD (Par défaut)\"],\"UPmrRI\":[\"Version non sensible à la casse de endswith.\"],\"URmyfc\":[\"Détails\"],\"UX2wV1\":[[\"0\",\"plural\",{\"one\":[\"This credential is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"UXBCwc\":[\"Nom\"],\"UY6iPZ\":[\"Si activé, les nœuds de contrôle apparieront automatiquement à cette instance. Si elle est désactivée, l'instance sera connectée uniquement aux pairs associés.\"],\"UYD5ld\":[\"et cliquez sur Mise à jour de la révision au lancement\"],\"UYUgdb\":[\"Commande\"],\"U_JUCL\":[\"Red Hat Insights\"],\"Ua-Kc6\":[\"www.json.org\"],\"UbOul8\":[\"Êtes-vous sûr de vouloir supprimer :\"],\"UbRKMZ\":[\"En attente\"],\"UbqhuT\":[\"Echec de la récupération de l'objet ressource de noeud complet.\"],\"Uc_tSU\":[\"Basculer les outils\"],\"UgFDh3\":[\"Cet inventaire est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?\"],\"UirGxE\":[\"Erreurs\"],\"UlykKR\":[\"Troisième\"],\"Uo1S9q\":[\"Connectez-vous avec Azure AD Tenant\"],\"UueF8b\":[\"L'environnement d'exécution est absent ou supprimé.\"],\"UvGjRK\":[\"Si activé, exécutez ce playbook en tant qu'administrateur.\"],\"UwJJCk\":[\"Relancer les hôtes défaillants\"],\"UxKoFf\":[\"Navigation\"],\"UyZ7HQ\":[\"Corps du message de modification\"],\"V-7saq\":[\"Supprimer \",[\"pluralizedItemName\"],\" ?\"],\"V-rJKF\":[\"Seconds\"],\"V0Xv3_\":[[\"intervalValue\",\"plural\",{\"one\":[\"day\"],\"other\":[\"days\"]}]],\"V0fM4k\":[\"Analyse des utilisateurs\"],\"V1EGGU\":[\"Prénom\"],\"V2-omF\":[[\"0\",\"plural\",{\"one\":[\"L'inventaire sera à l'état en attente jusqu'à ce que la suppression finale soit traitée.\"],\"other\":[\"Les inventaires seront à l'état en attente jusqu'à ce que la suppression finale soit traitée.\"]}]],\"V2RwJr\":[\"Adresses des auditeurs\"],\"V2q9w9\":[\"If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode.\"],\"V3z83V\":[\"LDAP 3\"],\"V4WsyL\":[\"Ajouter un lien\"],\"V5RUpn\":[\"Liste de destinataires\"],\"V7qsYh\":[\"Remarque : L'ordre de ces informations d'identification détermine la priorité pour la synchronisation et la consultation du contenu. Sélectionner plus d’une option pour permettre le déplacement.\"],\"V9xR6T\":[\"Agrandir la section\"],\"VAI2fh\":[\"Créer un nouveau groupe de conteneurs\"],\"VAcXNz\":[\"Mercredi\"],\"VEj6_Y\":[\"Approbations des flux de travail\"],\"VFvVc6\":[\"Modifier les détails\"],\"VJUm9p\":[\"Page actuelle\"],\"VK2gzi\":[\"Le nombre de processus parallèles ou simultanés à utiliser lors de l'exécution du playbook. Une valeur vide, ou une valeur inférieure à 1, utilisera la valeur par défaut d'Ansible, qui est généralement 5. Le nombre de forks par défaut peut être remplacé en modifiant\"],\"VL2WkJ\":[\"Le dernier \",[\"dayOfWeek\"]],\"VLdRt2\":[\"Démarrer la source de synchronisation\"],\"VNUs2y\":[\"Fourches max\"],\"VSJ6r5\":[\"Le planning est actif.\"],\"VSim_H\":[\"Supprimer la source de l'inventaire\"],\"VTDO7X\":[\"Détail de l'événement modal\"],\"VU3Nrn\":[\"Manquant\"],\"VWL2DK\":[\"Organisation GitHub\"],\"VXFjd8\":[\"Métriques\"],\"VZfXhQ\":[\"Noeud Hop\"],\"VdcFUD\":[\"Contrat de licence utilisateur\"],\"ViDr6F\":[\"Ajouter un nouveau groupe\"],\"VmClsw\":[\"La ressource associée à ce nœud a été supprimée.\"],\"VmvLj9\":[\"Définissez sur Public ou Confidentiel selon le niveau de sécurité de l'appareil client.\"],\"Vqd-tq\":[\"Confirmer annuler tout\"],\"Vqgeac\":[\"Press space or enter to begin dragging,\\n and use the arrow keys to navigate up or down.\\n Press enter to confirm the drag, or any other key to\\n cancel the drag operation.\"],\"Vvbbn2\":[\"N'a pas réussi à supprimer le rôle.\"],\"Vw8l6h\":[\"Une erreur est survenue\"],\"VzE_M-\":[\"Échec de la notification de basculement\"],\"W-O1E9\":[\"Copier le projet\"],\"W1iIqa\":[\"Voir les groupes d'inventaire\"],\"W3TNvn\":[\"Retour aux utilisateurs\"],\"W3pOzF\":[\"Autorisez la modification de la branche ou de la révision du contrôle de source dans un modèle de job qui utilise ce projet.\"],\"W6uTJi\":[\"Impossible d’obtenir une instance.\"],\"W7DGsV\":[\"Lancé par (Nom d'utilisateur)\"],\"W9XAF4\":[\"Jour de la semaine\"],\"W9uQXX\":[\"Invite\"],\"WAjFYI\":[\"Date de début\"],\"WD8djW\":[\"Confirmer la suppression du lien\"],\"WL91Ms\":[\"Delete Groups?\"],\"WPM2RV\":[\"Type de réponse\"],\"WQJduu\":[\"Sélection de la clé\"],\"WTN9YX\":[\"Token de compte\"],\"WTV15I\":[\"URL de remplacement pour la redirection de connexion\"],\"WVzGc2\":[\"Abonnement\"],\"WX9-kf\":[\"IRC nick\"],\"Wc6m4J\":[\"Un refspec à récupérer (transmis au module git d'Ansible). Ce paramètre permet d'accéder via le champ de branche à des références qui ne sont pas autrement disponibles.\"],\"Wdl2f2\":[\"Ce champ doit comporter au moins \",[\"0\"],\" caractères\"],\"WgsBEi\":[\"Veuillez saisir une expression de recherche au moins pour créer un nouvel inventaire Smart.\"],\"WhSFGl\":[\"Filtrer par \",[\"name\"]],\"Wi1pUG\":[[\"numJobsToCancel\",\"plural\",{\"one\":[[\"0\"]],\"other\":[[\"1\"]]}]],\"Wk1rOS\":[\"Adapter le graphique à la taille de l'écran disponible\"],\"Wm7XbF\":[\"N'a pas réussi à supprimer un ou plusieurs identifiants.\"],\"WqaDMq\":[\"Le champ contient une valeur.\"],\"Wy25yg\":[\"Twilio\"],\"X03-eC\":[\"Entrez une valeur.\"],\"X5V9DW\":[\"Cliquez sur le bouton Modifier ci-dessous pour reconfigurer le nœud.\"],\"X6d3Zy\":[\"N'a pas réussi à supprimer l'organisation.\"],\"X97mbf\":[\"Choisir un type de job\"],\"XA12d8\":[\"Liste facultative de noms d'hôtes séparés par des virgules à inclure dans chaque tranche de job, en plus des hôtes de la tranche elle-même. Utile lorsqu'un play cible un hôte de coordination, tel que localhost, dont dépendent toutes les tranches. Les noms sont mis en correspondance exactement avec les hôtes de l'inventaire ; les groupes et les modèles ne sont pas pris en charge. Les hôtes épinglés exécutent leurs plays une fois par tranche.\"],\"XBROpk\":[\"Fournissez un modèle d'hôte pour restreindre davantage la liste des hôtes qui seront gérés ou affectés par le flux de travail.\"],\"XCCkju\":[\"Modifier le nœud\"],\"XFRygA\":[\"Voici des exemples d'URL pour le contrôle de source d'archive distante :\"],\"XHxwBV\":[\"La plage de dates sélectionnée doit avoir au moins une occurrence de calendrier.\"],\"XILg0L\":[\"Adresse e-mail non valide\"],\"XJOV1Y\":[\"Activité\"],\"XKp83s\":[\"Les inventaires et les sources ne peuvent pas être copiés\"],\"XLMJ7O\":[\"Cloud\"],\"XLpxoj\":[\"Options d'email\"],\"XM-gTv\":[\"Consultez la documentation Ansible pour plus de détails sur le fichier de configuration.\"],\"XOD7tz\":[\"Afficher Modifications\"],\"XOaZX3\":[\"Pagination\"],\"XP6TQ-\":[\"S'il est spécifié, ce champ sera affiché sur le nœud au lieu du nom de la ressource lors de la visualisation du flux de travail\"],\"XREJvl\":[\"Variables utilisées pour configurer la source d'inventaire. Pour une description détaillée de la configuration de ce plugin, voir\"],\"XViLWZ\":[\"En cas d'échec\"],\"XWDz5f\":[\"Sélection par simple pression d'une touche\"],\"X_5TsL\":[\"Basculement Questionnaire\"],\"XaxYwV\":[\"Valeurs incitatrices\"],\"XbIM8f\":[\"Sources totales d'inventaire\"],\"XdyHT-\":[\"Hôtes importés\"],\"XfmfOA\":[\"Exécutez tous les\"],\"Xg3aVa\":[\"Utiliser SSL\"],\"XgTa_2\":[\"The inventory will be in a pending status until the final delete is processed.\"],\"XilEsm\":[\"Groupe d'instance\"],\"Xm7ruy\":[\"5 (Débogage WinRM)\"],\"XmJfZT\":[\"nom\"],\"XmVvzl\":[\"Sélectionner les rôles à pourvoir\"],\"XnxCSh\":[\"Erreur standard\"],\"XozZ38\":[\"N'a pas réussi à supprimer une ou plusieurs sources d'inventaire.\"],\"Xq9A0U\":[\"Projet inconnu\"],\"Xt4N6V\":[\"Invite | \",[\"0\"]],\"XtpZSU\":[\"Tous les types de tâche\"],\"Xx-ftH\":[\"Vous avez automatisé contre plus d'hôtes que votre abonnement ne le permet.\"],\"XyTWuQ\":[\"Veuillez patienter jusqu’à ce que la topologie soit remplie...\"],\"XyW2nH\":[[\"0\",\"plural\",{\"one\":[\"Êtes-vous sûr de vouloir supprimer le groupe ci-dessous ?\"],\"other\":[\"Êtes-vous sûr de vouloir supprimer les groupes ci-dessous ?\"]}]],\"XzD7xj\":[\"Sélectionnez les éléments\"],\"Y1YKad\":[\"Modifier les détails\"],\"Y296GK\":[\"N'a pas réussi à supprimer le rôle\"],\"Y2ml-n\":[\"Approuvé - \",[\"0\"],\". Consultez le Flux d’activité pour plus d’informations.\"],\"Y5VrmH\":[\"Non configuré pour la synchronisation de l'inventaire.\"],\"Y5vgVF\":[\"Refusé avec succès\"],\"Y5xJ7I\":[\"Nom du playbook\"],\"Y60pX3\":[\"Ajouter un inventaire construit\"],\"YA4I45\":[\"Sélectionnez un module\"],\"YFmVSY\":[\"Dissocier ?\"],\"YJddb4\":[\"Type d'instance\"],\"YLMfol\":[\"Choisissez le type de ressource qui recevra de nouveaux rôles. Par exemple, si vous souhaitez ajouter de nouveaux rôles à un ensemble d'utilisateurs, veuillez choisir Utilisateurs et cliquer sur Suivant. Vous pourrez sélectionner les ressources spécifiques dans l'étape suivante.\"],\"YM06Nm\":[\"Modifier le type d’identification\"],\"YMLB2b\":[\"Indique si le nœud d'approbation est automatiquement approuvé ou refusé à l'expiration du délai.\"],\"YMpSlP\":[\"Temps en secondes pour considérer qu'une synchronisation d'inventaire est à jour. Pendant les exécutions de tâches et les rappels, le système de tâches évaluera l'horodatage de la dernière synchronisation. S'il est plus ancien que le délai d'expiration du cache, il n'est pas considéré comme actuel et une nouvelle synchronisation de l'inventaire sera effectuée.\"],\"YOOdGq\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" minute\"],\"other\":[\"#\",\" minutes\"]}]],\"YOh7Aw\":[\"Job de flux de travail \",[\"currentPosition\"],\"/\",[\"total\"]],\"YP5KRj\":[\"une nouvelle url de webhook sera générée lors de la sauvegarde.\"],\"YPDLLX\":[\"Retour aux environnements d'exécution\"],\"YQqM-5\":[\"L'image de conteneur à utiliser pour l'exécution.\"],\"Yd45Xn\":[\"Hôtes par type de processeur\"],\"Yfw7TK\":[\"La notification a expiré.\"],\"YgqgXs\":[[\"intervalValue\",\"plural\",{\"one\":[\"minute\"],\"other\":[\"minutes\"]}]],\"YiQ03p\":[\"N'a pas réussi à supprimer la programmation.\"],\"YiUAZm\":[\"<0>Remarque : cette instance peut être réassociée à ce groupe d'instances si elle est gérée par des <1>règles de politique.\"],\"YlGAPh\":[\"Hôtes épinglés de la tranche de job\"],\"Ym7-mu\":[\"Un canal Slack par ligne. Le symbole dièse (#)\\n est requis pour les canaux. Pour répondre ou démarrer un fil de discussion sur un message spécifique, ajoutez l'Id du message parent au canal, où l'Id du message parent comporte 16 chiffres. Un point (.) doit être inséré manuellement après le 10e chiffre. par ex. :#canal-destination, 1231257890.006423. Voir Slack\"],\"YmEWZH\":[\"Lancer le modèle\"],\"YmjTf2\":[\"Échec du provisionnement\"],\"YoXjSs\":[\"Demander l'inventaire au lancement.\"],\"Yq4Eaf\":[\"Les informations relatives au statut d'hôte pour ce Job ne sont pas disponibles.\"],\"YsN-3o\":[\"Voir les détails de la source de l'inventaire\"],\"Yt-rBv\":[\"Ce projet est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?\"],\"YuC9dj\":[\"Associé\"],\"YxDLmM\":[\"ID du système Insights\"],\"Z17FAa\":[\"Modifier l'inventaire inconnu\"],\"Z1Vtl5\":[\"Échec de l'annulation de Project Sync\"],\"Z25_RC\":[\"Sélectionnez une entrée\"],\"Z2hVSb\":[\"Hybride\"],\"Z40J8D\":[\"Active la création d'une URL de rappel de provisionnement. À l'aide de l'URL, un hôte peut contacter \",[\"brandName\"],\" et demander une mise à jour de configuration à l'aide de ce modèle de job.\"],\"Z5HWHd\":[\"Le\"],\"Z7ZXbT\":[\"Approuver\"],\"Z88yEl\":[\"Supérieur ou égal à la comparaison.\"],\"Z9EFpE\":[\"Tableau de bord d’Automation Analytics.\"],\"ZAWGCX\":[[\"0\"],\" secondes\"],\"ZEP8tT\":[\"Lancer\"],\"ZGDCzb\":[\"Instance introuvable.\"],\"ZJjKDg\":[\"Nœuds gérés\"],\"ZKKnVf\":[\"Créer un nouveau modèle de flux de travail\"],\"ZL3d6Z\":[\"Adresse du serveur IRC\"],\"ZO4CYH\":[\"Jobs en cours d'exécution\"],\"ZOLfb2\":[\"Ce champ ne doit pas être vide.\"],\"ZWhZbs\":[\"Confirmer la suppression du nœud\"],\"ZajTWA\":[\"Numéro de téléphone de la source\"],\"Zf6u-6\":[\"Explication\"],\"ZfrRb0\":[\"Sélectionnez un inventaire ou cochez l’option Me le demander au lancement.\"],\"ZhUwVw\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" semaine\"],\"other\":[\"#\",\" semaines\"]}]],\"ZhxwOq\":[\"Corps du message d'erreur\"],\"Zikd-1\":[\"Le nombre d'hôtes contre lesquels vous avez automatisé est inférieur au nombre d'abonnements.\"],\"ZjC8QM\":[\"N'a pas réussi à supprimer l'hôte.\"],\"ZjvPb1\":[\"Créé par (nom d'utilisateur)\"],\"Zkh5np\":[\"Mise à jour des pairs sur \",[\"0\"],\". Veuillez vous assurer d'exécuter à nouveau le paquet d'installation pour \",[\"1\"],\" afin de voir les modifications prendre effet.\"],\"ZpdX6R\":[\"Erreur lors de la suppression des jetons\"],\"ZrsGjm\":[\"Inventaire\"],\"ZumtuZ\":[\"Copier le modèle\"],\"ZvVF4C\":[\"Supprimer question de l'enquête\"],\"ZwCTcT\":[\"Onglet Liste des Jobs récents\"],\"ZwujDQ\":[\"L'année dernière\"],\"_-NKbo\":[\"Impossible de basculer le calendrier.\"],\"_2LfCe\":[\"Pour réorganiser les questions de l'enquête, faites-les glisser et déposez-les à l'endroit souhaité.\"],\"_4gGIX\":[\"Copier dans le presse-papiers\"],\"_5REdR\":[\"Sélectionnez Inventaires d'entrée pour le plugin d'inventaire construit.\"],\"_Fg1cM\":[\"Corps du message d’expiration de flux de travail\"],\"_ITcnz\":[\"jour\"],\"_Ia62Q\":[\"Exemples d'inventaire construit\"],\"_JN1gB\":[\"Nombre de tâches\"],\"_K2CvV\":[\"Modèle\"],\"_LQZpR\":[[\"intervalValue\",\"plural\",{\"one\":[\"year\"],\"other\":[\"years\"]}]],\"_LVfwJ\":[\"Erreur de synchronisation de la source d'inventaire construite\"],\"_M4FeF\":[\"Sélectionnez l'environnement d'exécution dans lequel vous voulez que cette commande soit exécutée.\"],\"_MTBwI\":[\"Message de modification\"],\"_MdgrM\":[\"Ajouter un nouveau nœud entre ces deux nœuds\"],\"_PRaan\":[\"N'a pas réussi à supprimer un ou plusieurs modèles de notification.\"],\"_Pz_QH\":[\"Géré par la politique\"],\"_W3ZAw\":[[\"selectedItemsCount\",\"plural\",{\"one\":[\"Click to run a health check on the selected instance.\"],\"other\":[\"Click to run a health check on the selected instances.\"]}]],\"_WBq2_\":[\"Refusé - \",[\"0\"],\". Consultez le Flux d’activité pour plus d’informations.\"],\"_Yq4TU\":[\"Nombre maximum de forks autorisés pour l'ensemble des jobs exécutés simultanément sur ce groupe.\\n Zéro signifie qu'aucune limite ne sera appliquée.\"],\"_ZBhqw\":[\"N'a pas réussi à annuler la synchronisation des sources d'inventaire.\"],\"_bAUGi\":[\"Choisissez une méthode HTTP\"],\"_bE0AS\":[\"Sélectionnez une instance\"],\"_cV6Mf\":[\"Navigation....\"],\"_cq4Aa\":[\"Approbation du flux de travail non trouvée.\"],\"_ereyb\":[\"TACACS+\"],\"_gCD76\":[\"Modifier le groupe d'instances\"],\"_ismew\":[\"Clé d'artefact\"],\"_kYJq6\":[\"Nombre de jours pendant lesquels on peut conserver les données\"],\"_khNCh\":[\"Les informations d’identification par défaut du modèle de tâche doivent être remplacées par une du même type. Veuillez sélectionner une information d’identification pour les types suivants afin de continuer : \",[\"0\"]],\"_oeZtS\":[\"Interrogation de l'hôte\"],\"_rCRcH\":[\"Documentation sur la recherche avancée\"],\"_vI8Rx\":[\"Delete Group?\"],\"a02Xjc\":[\"Adresse du serveur IRC\"],\"a3AD0M\":[\"confirmer modifier connecter rediriger\"],\"a5zD9f\":[\"Modifications\"],\"a6E-_p\":[\"La version non sensible à la casse de contains\"],\"a8AgQY\":[\"Voir les détails de l'hôte\"],\"a8nooQ\":[\"Quatrième\"],\"a9BTUD\":[\"jour de week-end\"],\"aBgwis\":[\"Champ d'application\"],\"aLlb3-\":[\"boolean\"],\"aNxqSL\":[\"Supprimer l'environnement d'exécution\"],\"aQ4XJX\":[\"Activer le système de journalisation traçant des facts individuellement\"],\"aSuBiU\":[\"Microsoft Azure Resource Manager\"],\"aTK0Fh\":[\"Tels jours\"],\"aUNPq3\":[\"Nœud d'exécution\"],\"aVoVcG\":[\"Sélection multiple\"],\"aXBrSq\":[\"Red Hat Virtualization\"],\"a_vlog\":[\"Supprimer \",[\"0\"],\" chip\"],\"adPhRK\":[\"Inventaire auquel cet hôte appartiendra.\"],\"adjqlB\":[[\"0\"],\" (supprimé)\"],\"aht2s_\":[\"Couleur de la notification\"],\"aiejXq\":[\"Ajouter un type de ressource\"],\"ajDpGH\":[\"ÉTAT :\"],\"anfIXl\":[\"Détails de l'utilisateur\"],\"aqqAbL\":[\"Empêcher le repli des groupes d'instances : s'il est activé, l'inventaire empêchera l'ajout de tout groupe d'instances d'organisation à la liste des groupes d'instances préférés pour exécuter les modèles de tâches associés. Remarque : si ce paramètre est activé et que vous avez fourni une liste vide, les groupes d'instances globaux seront appliqués.\"],\"ar5AA2\":[\"pour plus d'informations.\"],\"ataY5Z\":[\"Erreur de suppression d’un Job\"],\"ax6e8j\":[\"Veuillez sélectionner une organisation avant d'éditer le filtre de l'hôte.\"],\"az8lvo\":[\"Désactivé\"],\"b1CAkh\":[\"Jobs de gestion\"],\"b2Z0Zq\":[\"Annuler les changements de liens\"],\"b433OF\":[\"Modifier le groupe\"],\"b4SLah\":[\"Voir les erreurs sur la gauche\"],\"b9Y4up\":[\"ID du client\"],\"bDa_hW\":[\"Sélectionnez les groupes d’instances sur lesquels la synchronisation de cette source d’inventaire doit s’exécuter. Si aucun n’est défini, la synchronisation s’exécute sur les groupes d’instances de l’inventaire ou de son organisation.\"],\"bE4zYn\":[\"Sélectionnez le port sur lequel le récepteur écoutera les connexions entrantes, par exemple 27199.\"],\"bHXYoC\":[\"Méthode HTTP\"],\"bKR18T\":[\"Un manifeste d'abonnement est une exportation d'un abonnement Red Hat. Pour générer un manifeste d'abonnement, accédez à <0>access.redhat.com. Pour plus d'informations, consultez le <1>Guide de l'utilisateur.\"],\"bLt_0J\":[\"Flux de travail\"],\"bPq357\":[\"Valeur activée\"],\"bQZByw\":[\"Entrez une balise d'annotation par ligne, sans virgule.\"],\"bTu5jX\":[\"Nom d'utilisateur / mot de passe\"],\"bWr6j5\":[\"Ce champ doit comporter au moins \",[\"min\"],\" caractères\"],\"bY8C86\":[\"Voir tous les utilisateurs.\"],\"bYXbel\":[\"clé webhook de modèles de tâche flux de travail\"],\"baP8gx\":[\"4 (Débogage de la connexion)\"],\"baqrhc\":[\"En-têtes HTTP\"],\"bbJ-VR\":[\"Zoom arrière\"],\"bcyJXs\":[\"Élément OK\"],\"bd1Kuw\":[\"Icône URL\"],\"bf7UKi\":[\"Délai d'expiration du cache de mise à jour\"],\"bfgr_e\":[\"Question\"],\"bgjTnp\":[\"0 (Normal)\"],\"bgq1rW\":[\"Bouton de soumission de recherche\"],\"bhxnLH\":[\"Vous n'avez pas la permission de supprimer les groupes suivants : \",[\"itemsUnableToDelete\"]],\"bkPO0d\":[\"Type de notification\"],\"bpECfE\":[\"Annuler la suppression d'un lien\"],\"bpnj1H\":[\"Il y a eu une erreur lors du chargement de ce contenu. Veuillez recharger la page.\"],\"bwRvnp\":[\"Action\"],\"bx2rrL\":[\"Inventaire smart\"],\"bxaVlf\":[\"Créer un nouveau type d'informations d'identification.\"],\"byXCTu\":[\"Occurrences\"],\"bznJUg\":[\"Sélectionnez l'inventaire contenant les hôtes que vous souhaitez gérer avec ce flux de travail.\"],\"bzv8Dv\":[\"Erreur de suppression\"],\"c-xCSz\":[\"Vrai\"],\"c0n4p3\":[\"Stockage des facts\"],\"c1Rsz1\":[\"Voir les détails pour l'approbation du flux de travail\"],\"c3XJ18\":[\"Aide\"],\"c4kHK7\":[\"Fermer la modalité d'abonnement\"],\"c6IFRs\":[\"Fichier JSON Compte de service\"],\"c6u6gk\":[\"Sélectionnez les groupes d'instances sur lesquels exécuter cette organisation.\"],\"c7-Adk\":[\"Impossible de synchroniser la source de l'inventaire.\"],\"c8HyJq\":[\"Sélectionnez les groupes d'instances sur lesquels exécuter cet inventaire.\"],\"c8sV0t\":[\"Cette fonctionnalité est obsolète et sera supprimée dans une prochaine version.\"],\"c9V3Yo\":[\"Échec de l'hôte\"],\"c9iw51\":[\"Jobs en cours d'exécution\"],\"c9pF61\":[\"Identifiant client\"],\"cFC8w7\":[\"Cette source d'inventaire est actuellement utilisée par d'autres ressources qui en dépendent. Êtes-vous sûr de vouloir la supprimer ?\"],\"cFCKYZ\":[\"Refuser\"],\"cFOXv9\":[\"Générique OIDC\"],\"cGRiaP\":[\"Afficher les détails de l’événement\"],\"cIdUma\":[\"\\n Il n'y a aucun répertoire de playbook disponible dans \",[\"project_base_dir\"],\".\\n Soit ce répertoire est vide, soit tout son contenu est déjà\\n attribué à d'autres projets. Créez-y un nouveau répertoire et assurez-vous\\n que les fichiers de playbook peuvent être lus par l'utilisateur système « awx »,\\n ou faites en sorte que \",[\"brandName\"],\" récupère directement vos playbooks depuis\\n le contrôle de source à l'aide de l'option Type de contrôle de la source ci-dessus.\"],\"cNsIJf\":[\"Modifié\"],\"cPTnDL\":[\"Sync Projet\"],\"cQIQa2\":[\"Sélectionner les groupes\"],\"cQlPDN\":[\"Lecture\"],\"cUKLzq\":[\"Ordre d'édition\"],\"cYir0h\":[\"Sélectionnez une ou plusieurs options\"],\"c_PGsA\":[\"Voir les détails de Job de flux de travail\"],\"cbSPfq\":[\"Ce flux de travail a déjà été traité\"],\"ccA_Bz\":[\"Le format suggéré pour les noms de variables est en minuscules et\\n séparé par des traits de soulignement (par exemple, foo_bar, user_id, host_name,\\n etc.). Les noms de variables avec des espaces ne sont pas autorisés.\"],\"cdm6_X\":[\"Capacité utilisée\"],\"chbm2W\":[\"Filtres de l'instance\"],\"ci3mwY\":[\"Ce champ ne doit pas être vide\"],\"cit9TY\":[\"Nom d'un artefact produit par le nœud parent via set_stats. Le lien n'est suivi que lorsque le job parent correspond au résultat choisi et que la condition est vraie. Une clé manquante ne correspond jamais.\"],\"cj1KTQ\":[\"Voir tous les inventaires.\"],\"cjJXKx\":[\"Échec de désynchronisation des hôtes\"],\"ckH3fT\":[\"Prêt\"],\"ckdiAB\":[\"Supprimer la notification\"],\"cmWTxn\":[\"Moins ou égal à la comparaison.\"],\"cnGeoo\":[\"Supprimer\"],\"cnnWD0\":[\"By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>\",[\"0\"],\". Uncheck the following boxes to disable this feature.\"],\"ct_Puj\":[\"Ce champ sera récupéré dans un système externe de gestion des secrets en utilisant l’identifiant spécifié.\"],\"cucDBz\":[\"Modèle de contexte\"],\"cucG_7\":[\"Aucun YAML disponible\"],\"cxjfgY\":[\"Impossible d’effectuer des bilans de fonctionnement sur les nœuds Hop.\"],\"cy3yJa\":[\"Établi\"],\"d-F6q9\":[\"Créé\"],\"d-zGjA\":[\"Cette action supprimera les éléments suivants :\"],\"d1BVnY\":[\"A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>\",[\"0\"],\".\"],\"d5zxa4\":[\"Local\"],\"d6in1T\":[\"Sélectionnez l'inventaire contenant les hôtes que vous souhaitez que ce job gère.\"],\"d73flf\":[\"Modal d'alerte\"],\"d75lEw\":[\"Type d'ensemble\"],\"d7VUIS\":[\"Supprimer le nœud \",[\"nodeName\"]],\"d8B-tr\":[\"Onglet Graphique de l'état des Jobs\"],\"dAZObA\":[\"Redirection d'URIs.\"],\"dBNZkl\":[\"Voir les détails de l'hôte de l'inventaire smart\"],\"dCcO-F\":[\"Impossible de récupérer la configuration.\"],\"dELxuP\":[\"Inventaire non trouvé.\"],\"dEgA5A\":[\"Annuler\"],\"dH6aQY\":[\"Azure AD Tenant\"],\"dIb9tv\":[\"Voir toutes les applications.\"],\"dJcvVX\":[\"Filtre d'hôte smart\"],\"dNAHKF\":[\"Tranche de job\"],\"dOjocz\":[\"Sélection Convergence\"],\"dPGRd8\":[\"Si activé, affiche les modifications apportées par les tâches Ansible, lorsque cela est pris en charge. Cela équivaut au mode --diff d'Ansible.\"],\"dPY1x1\":[\"pour plus d'infos.\"],\"dQFAgv\":[\"Ce projet doit être mis à jour\"],\"dQjRO3\":[\"Démarrer le processus de synchronisation\"],\"dbWo0h\":[\"Connectez-vous avec Google\"],\"dcGoCm\":[\"Fichier d'inventaire\"],\"ddIcfH\":[\"Allez à la dernière page de la liste\"],\"dfWFox\":[\"Nombre d'hôtes\"],\"dk7qNl\":[\"Noeud de contrôle\"],\"dkGxGj\":[\"Subversion\"],\"dlHFy7\":[\"Échec de la suppression d'un ou plusieurs environnements d'exécution\"],\"dnCwNB\":[\"Copie réussie dans le presse-papiers !\"],\"dov9kY\":[\"Ce champ doit être un nombre et avoir une valeur comprise entre \",[\"0\"],\" et \",[\"1\"]],\"dqxQzB\":[\"dictionnaire\"],\"dzQfDY\":[\"Octobre\"],\"e0NrBM\":[\"Projet\"],\"e3pQqT\":[\"Choisissez un type de notification\"],\"e4GHWP\":[\"Extraire\"],\"e5CMOi\":[\"Variables d'environnement ou variables supplémentaires qui spécifient les valeurs qu'un type de justificatif peut injecter.\"],\"e5VbKq\":[\"Modèles de Job de flux de travail\"],\"e6BtDv\":[\"<0>\",[\"0\"],\"<1>\",[\"1\"],\"\"],\"e70-_3\":[\"Basculer la légende\"],\"e8GyQg\":[\"Métrique\"],\"e8U63Z\":[\"Ne synchroniser le projet que lorsque la référence poussée correspond à ce modèle, par exemple refs/heads/main ou refs/heads/release-*. Laissez vide pour synchroniser à chaque événement de push ou de tag.\"],\"e91aLH\":[\"Voir tous les types d'informations d'identification\"],\"e9k5zp\":[\"Veuillez ajouter une programmation pour remplir cette liste. Les programmations peuvent être ajoutées à un modèle, un projet ou une source d'inventaire.\"],\"eAR1n4\":[\"Recherche connexe : type typeahead\"],\"eD_0Fo\":[\"N'a pas réussi à supprimer une ou plusieurs équipes.\"],\"eDjsWq\":[\"Créer un nouveau modèle de notification\"],\"eGkahQ\":[\"Modèle de découpage de Job\"],\"eHx-29\":[\"Détails de la source\"],\"ePK91l\":[\"Modifier\"],\"ePS9As\":[\"Paramètres RADIUS\"],\"eQkgKV\":[\"Installé\"],\"eRV9Z3\":[\"Aucun délai d'attente spécifié\"],\"eRlz2Q\":[\"Numéro(s) de SMS de destination\"],\"eSXF_i\":[\"N'a pas réussi à supprimer l’application\"],\"eTsJYJ\":[\"description\"],\"eVJ2lo\":[\"Flottement\"],\"eXOp7I\":[\"Vous n'avez pas de permission pour supprimer les ressources: \",[\"itemsUnableToremove\"]],\"eXWuGz\":[\"Onglet Liste des modèles récents\"],\"eYJ4TK\":[\"Inventaire construit introuvable.\"],\"eeke40\":[\"Automation Analytics\"],\"ekUnNJ\":[\"Sélectionner des balises\"],\"el9nUc\":[\"Le planning est inactif.\"],\"emqNXf\":[\"Vérification du Playbook\"],\"eqiT7d\":[\"Définit le rôle que cette instance jouera dans la topologie du maillage. La valeur par défaut est \\\"exécution\\\".\"],\"espHeZ\":[\"Empêcher le repli des groupes d'instances : s'il est activé, l'inventaire empêchera l'ajout de tout groupe d'instances d'organisation à la liste des groupes d'instances préférés pour exécuter les modèles de tâches associés.\"],\"etQEqZ\":[\"La suppression de ce lien rendra le reste de la branche orphelin et entraînera son exécution dès le lancement.\"],\"ewSXyG\":[\"suppression réversible\"],\"f-fQK9\":[\"Clé API Grafana\"],\"f2o-xB\":[\"Confirmer l'annulation\"],\"f6Hub0\":[\"Trier\"],\"f9yJNM\":[\"Égal à\"],\"fCZSgU\":[\"Voir tous les groupes d'instance\"],\"fDzxi_\":[\"Sortir sans sauvegarder\"],\"fE2kOY\":[\"Sélection de l'opérateur de date\"],\"fGEOCn\":[\"Statut Job\"],\"fGLpQj\":[\"Branche/ Balise / Commit du Contrôle de la source\"],\"fGQ9Ug\":[\"Sélectionnez les informations d'identification pour accéder aux nœuds sur lesquels ce job sera exécuté. Vous ne pouvez sélectionner qu'une seule information d'identification de chaque type. Pour les informations d'identification machine (SSH), cocher « Demander au lancement » sans sélectionner d'informations d'identification vous obligera à sélectionner une information d'identification machine au moment de l'exécution. Si vous sélectionnez des informations d'identification et cochez « Demander au lancement », les informations d'identification sélectionnées deviennent les valeurs par défaut qui peuvent être mises à jour au moment de l'exécution.\"],\"fJ9xam\":[\"Activer l'instance\"],\"fKew5B\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"Annuler le travail\"],\"other\":[\"Annuler les emplois\"]}]],\"fL7WXr\":[\"Applications\"],\"fMUEsk\":[\"Jour \",[\"0\"]],\"fMulwN\":[\"Actualiser la révision du projet\"],\"fOAyP5\":[\"Saisie de texte de recherche\"],\"fODqV4\":[\"Cette valeur n’a pas été trouvée. Veuillez entrer ou sélectionner une valeur valide.\"],\"fQCM-p\":[\"Voir les détails de l'organisation\"],\"fQGOXc\":[\"Erreur !\"],\"fR8DDt\":[\"Confirmer la suppression de tous les nœuds\"],\"fVjyJ4\":[\"Confirmer dissocier\"],\"f_Xpp2\":[\"Cette action dissociera les éléments suivants :\"],\"fcTDCh\":[\"Fournissez vos informations d'identification Red Hat ou Red Hat Satellite\\n ci-dessous et vous pourrez choisir parmi une liste de vos abonnements disponibles.\\n Les informations d'identification que vous utilisez seront stockées pour une utilisation future\\n lors de la récupération d'abonnements renouvelés ou étendus.\"],\"ff_JYN\":[\"Filtrer par nom de groupe imbriqué\"],\"fgrmWn\":[\"Demander le mode différentiel au lancement.\"],\"fhFmMp\":[\"Identifiant client\"],\"fjX9i5\":[\"Inventaire smart non trouvé.\"],\"fk1WEw\":[\"Crypté\"],\"fld-O4\":[\"Toutes les tâches\"],\"fnbZWe\":[\"Sélectionnez éventuellement les informations d'identification à utiliser pour renvoyer les mises à jour de statut au service de webhook.\"],\"foItBN\":[\"Jour du week-end\"],\"fp4RS1\":[\"chargement-contenu-en-cours\"],\"fpMgHS\":[\"Lun.\"],\"fqSfXY\":[\"Remplacer\"],\"fqmP_m\":[\"Hôte inaccessible\"],\"fthJP1\":[\"Les services de webhook peuvent lancer des jobs avec ce modèle de job de workflow en effectuant une requête POST vers cette URL.\"],\"fwX7gC\":[\"VMware vCenter\"],\"g4o5Lr\":[\"Verbeux\"],\"g6ekO4\":[\"Impossible de changer d'hôte.\"],\"g7CZ-8\":[\"Connectez-vous avec GitHub Enterprise Organizations\"],\"g9d3sF\":[\"Démarrer le corps du message\"],\"gALXcv\":[\"Supprimer ce nœud\"],\"gBnBJa\":[\"Flux de travail Source\"],\"gDx5MG\":[\"Modifier le lien\"],\"gIGcbR\":[\"Nombre maximum de tâches à exécuter simultanément sur ce groupe. Zéro signifie qu'aucune limite ne sera appliquée.\"],\"gJccsJ\":[\"Message de flux de travail approuvé\"],\"gK06zh\":[\"Ajouter un modèle de job\"],\"gM3pS9\":[\"Environnements d'exécution\"],\"gN3aF4\":[\"LDAP5\"],\"gSVH9P\":[\"Synchroniser toutes les sources\"],\"gUaMtt\":[\"En cas d'expiration\"],\"gVYePj\":[\"Créer une nouvelle équipe\"],\"gWlcwd\":[\"Statut du dernier Job\"],\"gYWK-5\":[\"Voir les paramètres de l'interface utilisateur\"],\"gZXc5U\":[\"Le nombre d'utilisateurs distincts qui doivent approuver avant que le flux de travail continue. Un seul refus refuse toujours le nœud.\"],\"gZaMqy\":[\"Connectez-vous avec GitHub Teams\"],\"gZkstf\":[\"Si activé, cela stockera les faits collectés afin qu'ils puissent être consultés au niveau de l'hôte. Les faits sont conservés et injectés dans le cache de faits au moment de l'exécution.\"],\"gcFnpl\":[\"Statut Job\"],\"geTfDb\":[\"Voir les détails de Job\"],\"ged_ZE\":[\"Oragnisation\"],\"gezukD\":[\"Sélectionnez un Job à annuler\"],\"gfyddN\":[\"Télécharger un fichier .zip\"],\"gh06VD\":[\"Sortie\"],\"ghJsq8\":[\"Faites défiler d'abord\"],\"gmB6oO\":[\"Planifier\"],\"gmBQqV\":[\"Mise à jour du projet\"],\"gnveFZ\":[\"Onglet Erreur standard\"],\"goVc-x\":[\"Modifier la configuration du plug-in Configuration\"],\"go_DGX\":[\"Ajouter des rôles d’équipe\"],\"gpKdxJ\":[\"Sélectionnez une question à supprimer\"],\"gpmbqk\":[\"Variables\"],\"gpnvle\":[\"erreur de suppression\"],\"gsj32g\":[\"Annuler Sync Projet\"],\"gtB4z-\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" heure\"],\"other\":[\"#\",\" heures\"]}]],\"gwKtbI\":[\"dans la documentation et les\"],\"h25sKn\":[\"Gestion des abonnements\"],\"h51QFW\":[\"YAML\"],\"h8DugX\":[\"Libellés\"],\"hAjDQy\":[\"Sélectionner le statut\"],\"hBHRCF\":[\"Nombre minimum d'instances qui seront automatiquement\\n attribuées à ce groupe lorsque de nouvelles instances seront mises en ligne.\"],\"hEBjSg\":[\"Red Hat Satellite 6\"],\"hEnNCI\":[\"Supprimer la recherche en cours liée aux facts ansible pour activer une autre recherche par cette clé.\"],\"hG89Ed\":[\"Image\"],\"hHKoQD\":[\"Sélectionner les adresses des pairs\"],\"hLDu5N\":[\"Modifier l’application\"],\"hNudM0\":[\"Définir une valeur pour ce champ\"],\"hPa_zN\":[\"Organisation (Nom)\"],\"hQ0dMQ\":[\"Ajouter un nouvel hôte\"],\"hQRttt\":[\"Valider\"],\"hVPa4O\":[\"Sélectionnez une option\"],\"hX8KyU\":[\"Ce travail a échoué et n'a pas de résultat.\"],\"hXDKWN\":[\"Informations sur la fréquence\"],\"hXzOVo\":[\"Suivant\"],\"hYH0cE\":[\"Voulez-vous vraiment demander l'annulation de ce job ?\"],\"hYgDIe\":[\"Créer\"],\"hZ6znB\":[\"Port\"],\"hZke6f\":[\"Êtes-vous sûr de vouloir désactiver l'authentification locale ? Cela pourrait avoir un impact sur la capacité des utilisateurs à se connecter et sur la capacité de l'administrateur système à annuler ce changement.\"],\"hc_ufD\":[\"Balises Job\"],\"hdyeZ0\":[\"Supprimer Job\"],\"he3ygx\":[\"Copier\"],\"heqHpI\":[\"Chemin de base du projet\"],\"hg6l4j\":[\"Mars\"],\"hgJ0FN\":[\"Effectuez une recherche ci-dessus pour définir un filtre d'hôte\"],\"hgr8eo\":[\"éléments\"],\"hgvbYY\":[\"Septembre\"],\"hhzh14\":[\"Nous n'avons pas pu localiser les licences associées à ce compte.\"],\"hi1n6B\":[\"Mettre à jour les paramètres relatifs aux Jobs dans \",[\"brandName\"]],\"hiDMCa\":[\"Approvisionnement\"],\"hjsbgA\":[\"Variables supplémentaires\"],\"hjwN_s\":[\"Nom de la ressource\"],\"hlbQEq\":[\"Certificat de validation de la signature du contenu\"],\"hmEecN\":[\"Job de gestion\"],\"hmjNLv\":[\"Thème préféré\"],\"hty0d5\":[\"Lundi\"],\"hvs-Js\":[\"Informations sur l’application\"],\"i0VMLn\":[\"Message de flux de travail refusé\"],\"i2izXk\":[\"La programmation manque de règles\"],\"i4_LY_\":[\"Écriture\"],\"i9sC0B\":[\"Ajouter les permissions de l'équipe\"],\"iASwqf\":[\"This action will cancel the following job:\"],\"iCFhEl\":[\"Numéro de téléphone de la source\"],\"iDNBZe\":[\"Notifications\"],\"iDWfOR\":[\"Échec de l'approbation d'une ou plusieurs validations de flux de travail.\"],\"iDjyID\":[\"Afficher les détails des informations d'identification\"],\"iE1s1P\":[\"Lancer le flux de travail\"],\"iEUzMn\":[\"système\"],\"iH8pgl\":[\"Retour\"],\"iI4bLJ\":[\"Dernière connexion\"],\"iIVceM\":[\"Erreur de copie\"],\"iJWOeZ\":[\"Pas de JSON disponible\"],\"iJiCFw\":[\"Détails du groupe\"],\"iLO3nG\":[\"Play - Nombre\"],\"iMaC2H\":[\"Groupes d'instances\"],\"iPp22p\":[\"Cette programmation utilise des règles complexes qui ne sont pas prises en charge dans\\n l'interface utilisateur. Veuillez utiliser l'API pour gérer cette programmation.\"],\"iQdYL_\":[\"Ajouter un inventaire smart\"],\"iRWxmA\":[\"Désactiver la vérification SSL\"],\"iTylMl\":[\"Modèles\"],\"iWKCzl\":[\"Sélectionnez dans la liste des répertoires trouvés dans le chemin de base du projet. Ensemble, le chemin de base et le répertoire de playbook fournissent le chemin complet utilisé pour localiser les playbooks.\"],\"iXmHtI\":[\"Sélectionnez le type de Job\"],\"iZBwau\":[\"Cette étape contient des erreurs\"],\"i_CDGy\":[\"Autoriser le remplacement de la branche\"],\"i_Kv21\":[\"Créer une nouvelle source\"],\"ifckL-\":[\"Sélection de ligne\"],\"ifdViT\":[\"Voir les détails de l'inventaire\"],\"ig0q8s\":[\"Cet inventaire est appliqué à tous les nœuds de flux de travail de ce flux de travail (\",[\"0\"],\") qui requiert un inventaire.\"],\"inP0J5\":[\"Détails d’abonnement\"],\"isRobC\":[\"Nouveau\"],\"itlxml\":[\"Job de gestion\"],\"ittbfT\":[\"Une recherche par ansible_facts requiert une syntaxe particulière. Voir\"],\"itu2NQ\":[\"Types d'états de liaison\"],\"j1a5f1\":[\"Modifier l’hôte\"],\"j6gqC6\":[\"Branche à utiliser lors de l'exécution du job. La valeur par défaut du projet est utilisée si vide. Autorisé uniquement si le champ allow_override du projet est défini sur true.\"],\"j7zAEo\":[\"Statuts du flux de travail\"],\"j8QfHv\":[\"Modifier l’hôte\"],\"jAxdt7\":[\"annuler supprimer\"],\"jBGh4u\":[\"Définition de l'inventaire des groupes imbriqués\xA0:\"],\"jCVu9g\":[\"Cancel selected job\"],\"jEJtMA\":[\"En attente d'approbation des flux de travail\"],\"jEw0Mr\":[\"Veuillez saisir une URL valide\"],\"jFaaUJ\":[\"Canonique\"],\"jGUu_G\":[\"Approbations requises\"],\"jIaeJK\":[\"Questionnaire\"],\"jJdwCB\":[\"Rétablir\"],\"jKibyt\":[\"Réinitialiser zoom\"],\"jMyq_x\":[\"Workflow Job 1/\",[\"0\"]],\"jaUa4e\":[\"Ces données sont utilisées pour améliorer\\n les futures versions du logiciel Tower et pour aider à\\n optimiser l'expérience et la réussite des clients.\"],\"jc86YO\":[\"Demander la limite au lancement.\"],\"ji-8F7\":[\"Cette accréditation est actuellement utilisée par d'autres ressources. Êtes-vous sûr de vouloir la supprimer ?\"],\"jiE6Vn\":[\"Organisations\"],\"jifz9m\":[\"Aucune (exécution unique)\"],\"jkQOCm\":[\"Ajouter des exceptions\"],\"jljuYN\":[\"Service à partir duquel les requêtes de webhook seront acceptées.\"],\"jluR-N\":[\"Avertissement : \",[\"selectedValue\"],\" est un lien vers \",[\"0\"],\" et sera enregistré en tant que tel.\"],\"joAQQS\":[\"The inventories will be in a pending status until the final delete is processed.\"],\"jqVo_k\":[\"ici.\"],\"jqzUyM\":[\"Non disponible\"],\"jrkyDn\":[\"Play - Démarrage\"],\"jrsFB3\":[\"Onglet de sortie\"],\"jsz-PY\":[\"Date de fin inconnue\"],\"jwmkq1\":[\"Informations d’identification de la machine\"],\"jzD-D6\":[\"Les balises à ignorer sont utiles lorsque vous avez un grand playbook et que vous souhaitez ignorer des parties spécifiques d'un play ou d'une tâche. Utilisez des virgules pour séparer plusieurs balises. Consultez la documentation pour plus de détails sur l'utilisation des balises.\"],\"k020kO\":[\"Flux d’activité\"],\"k2dzu3\":[\"Expire UTC\"],\"k30JvV\":[\"Catégorie sélectionnée\"],\"k5nHqi\":[\"L'environnement d'exécution qui sera utilisé lors du lancement de ce modèle de job. L'environnement d'exécution résolu peut être remplacé en en attribuant explicitement un autre à ce modèle de job.\"],\"k6OGfu\":[\"Select the Ansible collection providing the inventory plugin used to sync from vCenter. The community.vmware collection is deprecated in favor of the newer vmware.vmware collection. The selection is saved as the \\\"plugin\\\" key in the source variables.\"],\"kALwhk\":[\"seconds\"],\"kDWprA\":[\"Ces arguments sont utilisés avec le module spécifié.\"],\"kEhyki\":[\"Le champ se termine par une valeur.\"],\"kLja4m\":[\"Initié par\"],\"kLk5bG\":[\"Message de départ\"],\"kNUkGV\":[\"Type de recherche\"],\"kNfXib\":[\"Nom du module\"],\"kODvZJ\":[\"Prénom\"],\"kOVkPY\":[\"Basculer l'instance\"],\"kP-3Hw\":[\"Retour aux inventaires\"],\"kQerRU\":[\"Ce champ ne doit pas contenir d'espaces\"],\"kX-GZH\":[\"Relancer le Job\"],\"kXzl6Z\":[\"Variables Source\"],\"kYDvK4\":[\"Ajout de fichier\"],\"kah1PX\":[\"Voir des exemples YAML sur\"],\"kaux7o\":[\"Remplacer les groupes locaux et les hôtes de la source d'inventaire distante.\"],\"kgtWJ0\":[\"Sélectionnez les groupes d'instances sur lesquels ce modèle de job doit s'exécuter.\"],\"kiMHN-\":[\"Auditeur système\"],\"kjrq_8\":[\"Plus d'informations\"],\"kkDQ8m\":[\"Jeudi\"],\"kkc8HD\":[\"Activer la connexion simplifiée pour vos applications \",[\"brandName\"]],\"kpRn7y\":[\"Supprimer les questions\"],\"kpnWnY\":[\"Après chaque mise à jour du projet où la révision SCM change, actualisez l'inventaire à partir de la source sélectionnée avant d'exécuter les tâches. Ceci est destiné au contenu statique, comme le format de fichier .ini d'inventaire Ansible.\"],\"ks-HYT\":[\"Ajouter les permissions de l’utilisateur\"],\"ks71ra\":[\"Exceptions\"],\"kt8V8M\":[\"Sélectionnez une branche pour le flux de travail.\"],\"ktPOqw\":[\"Reportez-vous à \"],\"kuIbuV\":[\"Les bilans de santé ne peuvent être exécutées que sur les nœuds d'exécution.\"],\"ku__5b\":[\"Deuxième\"],\"kyAi7k\":[\"Instance\"],\"kyHUFI\":[\"Mot de passe Archivage sécurisé | \",[\"credId\"]],\"kyfr2I\":[\"Si cette case est cochée, tous les hôtes et groupes qui étaient présents auparavant sur la source externe mais qui ont maintenant été supprimés seront retirés de l'inventaire. Les hôtes et groupes qui n'étaient pas gérés par la source d'inventaire seront promus au prochain groupe créé manuellement ou, s'il n'existe aucun groupe créé manuellement pour les y promouvoir, ils seront laissés dans le groupe « all » par défaut de l'inventaire.\"],\"kz7G1W\":[\"Êtes-vous sûr de vouloir supprimer \",[\"0\"],\" l’accès à \",[\"1\"],\"? Cela risque d’affecter tous les membres de l'équipe.\"],\"l4MzBY\":[[\"update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" seconde\"],\"other\":[\"#\",\" secondes\"]}]],\"l4k9lc\":[\"Premier nœud\"],\"l5XUoS\":[\"Informations d'identification du webhook\"],\"l75CjT\":[\"Oui\"],\"l9ZmWD\":[[\"scm_update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" seconde\"],\"other\":[\"#\",\" secondes\"]}]],\"lCF0wC\":[\"Recharger\"],\"lJFsGr\":[\"Créer un nouveau groupe d'instances\"],\"lKxoCA\":[\"Agrandir les événements de la tâche\"],\"lM9cbX\":[\"Notez que vous pouvez toujours voir le groupe dans la liste après la dissociation si l'hôte est également membre des enfants de ce groupe. Cette liste affiche tous les groupes auxquels l'hôte est associé directement et indirectement.\"],\"lURfHJ\":[\"Effondrer une section\"],\"lWkKSO\":[\"min\"],\"lWmv3p\":[\"Sources d'inventaire\"],\"lYDyXS\":[\"Inventaire smart\"],\"l_jRvf\":[\"Playbook terminé\"],\"lfoFSg\":[\"Supprimer l'hôte\"],\"lgm7y2\":[\"modifier\"],\"lgphOX\":[\"Valeur attendue\"],\"lhgU4l\":[\"Mise à jour introuvable\"],\"lhkaAC\":[\"Essai\"],\"ljGeYw\":[\"Utilisateur normal\"],\"lk5WJ7\":[\"nom-hôte-\",[\"0\"]],\"lkgIYt\":[\"Pagerduty\"],\"lo-rJO\":[\"Pan En bas\"],\"ltvmAF\":[\"Application non trouvée.\"],\"lu2qW5\":[\"Quelconque\"],\"lucaxq\":[\"Impossible d'activer l'agrégateur de journaux sans fournir l'hôte de l'agrégateur de journaux et le type d'agrégateur de journaux.\"],\"luxcrf\":[\"Plus d'informations pour \",[\"label\"]],\"lyjq5X\":[\"Slack\"],\"m-eV2_\":[\"Groupe de conteneurs non trouvé.\"],\"m16xKo\":[\"Ajouter\"],\"m1tKEz\":[\"Les administrateurs système ont un accès illimité à toutes les ressources.\"],\"m2ErDa\":[\"Échec\"],\"m3k6kn\":[\"Échec de l'annulation de la synchronisation de la source d'inventaire construite\"],\"m5MOUX\":[\"Retour aux hôtes\"],\"mGJIOu\":[\"Cette entrée d'inventaire construit\\n crée un groupe pour les deux catégories et utilise\\n la limite (modèle d'hôte) pour ne renvoyer que les hôtes qui\\n se trouvent à l'intersection de ces deux groupes.\"],\"mNBZ1R\":[\"Remarque : ce champ suppose que le nom du dépôt distant est « origin ».\"],\"mOFgdC\":[\"Maximum\"],\"mPiYpP\":[\"Types d'état des nœuds\"],\"mSv_7k\":[\"depuis les trois dernières années.\"],\"mXRKES\":[\"LDAP4\"],\"mXfNlE\":[\"Cette programmation d’horaire ne contient pas les valeurs d'enquête requises\"],\"mYGY3B\":[\"Date\"],\"mZiQNk\":[\"Élévation de privilèges : si activé, exécutez ce playbook en tant qu'administrateur.\"],\"m_tELA\":[\"annuler la suppression\"],\"ma7cO9\":[\"Echec de la suppression du groupe \",[\"0\"],\".\"],\"mahPLs\":[\"Mot de passe pour l’élévation des privilèges\"],\"mcGG2z\":[[\"minutes\"],\" min \",[\"seconds\"],\" sec\"],\"mdNruY\":[\"Token API\"],\"mgJ1oe\":[\"Confirmer la suppression\"],\"mgjN5u\":[\"Dissocier l'instance du groupe d'instances ?\"],\"mhg7Av\":[\"Exécuter une commande ad hoc\"],\"mi9ffh\":[\"Détails sur l'hôte\"],\"mk4anB\":[\"Navigateur par défaut\"],\"mlDUq3\":[\"Modifié par (nom d'utilisateur)\"],\"mnm1rs\":[\"GitHub (Par défaut)\"],\"moZ0VP\":[\"Statut de la synchronisation\"],\"momgZ_\":[\"Nom du modèle de tâche de flux de travail.\"],\"mqAOoN\":[\"Choisissez un répertoire Playbook\"],\"n-37ya\":[\"Confirmer Désactiver l'autorisation locale\"],\"n-LISx\":[\"Une erreur s'est produite lors de la sauvegarde du flux de travail.\"],\"n-ZioH\":[\"Erreur de récupération du projet mis à jour\"],\"n-qmM7\":[\"Sélectionnez une clé de compte de service formatée en JSON pour remplir automatiquement les champs suivants.\"],\"n12Go4\":[\"Impossible de charger les groupes associés.\"],\"n60kiJ\":[\"* Ce champ sera récupéré dans un système externe de gestion des secrets en utilisant le justificatif d'identité spécifié.\"],\"n6mYYY\":[\"Message d'expiration de flux de travail\"],\"n9Idrk\":[\"(10 premiers seulement)\"],\"n9lz4A\":[\"Jobs ayant échoué\"],\"nBAIS_\":[\"Afficher les détails de l’événement\"],\"nC35Na\":[\"Are you sure you want delete the group below?\"],\"nCU-1E\":[\"Permet la création d'une URL de rappel\\n d'exécution. À l'aide de cette URL, un hôte peut contacter \",[\"brandName\"],\"\\n et demander une mise à jour de configuration à l'aide de ce modèle\\n de job\"],\"nCY9IL\":[\"Hôte ignoré\"],\"nDjIzD\":[\"Voir les détails du projet\"],\"nGbNEN\":[\"Durée en secondes pendant laquelle un projet est considéré comme à jour. Lors des exécutions de jobs et des rappels, le système de tâches évaluera l'horodatage de la dernière mise à jour du projet. S'il est plus ancien que le délai d'expiration du cache, il n'est pas considéré comme à jour et une nouvelle mise à jour du projet sera effectuée.\"],\"nI54lc\":[\"Supprimez le projet avant la synchronisation\"],\"nJPBvA\":[\"Fichier, répertoire ou script\"],\"nJTOTZ\":[\"L'environnement d'exécution qui sera utilisé pour les tâches au sein de cette organisation. Il sera utilisé comme solution de rechange lorsqu'un environnement d'exécution n'a pas été explicitement attribué au niveau du projet, du modèle de job ou du flux de travail.\"],\"nLGsp4\":[\"Activez un questionnaire pour ce modèle de tâche de flux de travail.\"],\"nMiE53\":[\"Variable activée\"],\"nOhz3x\":[\"Déconnexion\"],\"nPH1Cr\":[\"Ces environnements d'exécution pourraient être utilisés par d'autres ressources qui en dépendent. Voulez-vous vraiment les supprimer quand même\xA0?\"],\"nQOwDS\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"dayOfWeek\"]],\"4\":[\"The fourth \",[\"dayOfWeek\"]],\"5\":[\"The fifth \",[\"dayOfWeek\"]],\"one\":[\"The first \",[\"dayOfWeek\"]],\"two\":[\"The second \",[\"dayOfWeek\"]]}]],\"nRXCOn\":[\"Échec du comptage des hôtes\"],\"nSTT11\":[\"Relancer à partir de :\"],\"nTENWI\":[\"Retour à la gestion des abonnements.\"],\"nU16mp\":[\"Expiration Délai d’attente du cache\"],\"nZPX7r\":[\"Avertissement\xA0: modifications non enregistrées\"],\"nZW6P0\":[\"Fuseau horaire local\"],\"nZYB4j\":[\"Aucun statut disponible\"],\"nZYxse\":[\"Dissocier Hôte du Groupe\"],\"n_qDNz\":[\"Switch to dark mode\"],\"naCW6Z\":[\"Avril\"],\"ncxIQL\":[\"N'a pas réussi à dissocier une ou plusieurs instances.\"],\"neiOWk\":[\"Voir la documentation de l'inventaire construit ici\"],\"nfnm9D\":[\"Nom de l'organisation\"],\"ng00aZ\":[\"Filtre d'hôte\"],\"nhxAdQ\":[\"Mot-clé \"],\"nlsWzF\":[\"Veuillez ajouter des questions d'enquête.\"],\"nnY7VU\":[\"Sous-domaine Pagerduty\"],\"noGZlf\":[\"Expiration du délai d’attente du cache (secondes)\"],\"npGo-z\":[\"Connectez-vous avec \",[\"label\"]],\"nuh_Wq\":[\"URL du webhook\"],\"nvUq8j\":[\"1 (Verbeux)\"],\"nzozOC\":[\"Supprimer l’utilisateur\"],\"nzr1qE\":[\"Téléchargement de fichier rejeté. Veuillez sélectionner un seul fichier .json.\"],\"o-JPE2\":[\"Aucune question d'enquête trouvée.\"],\"o0RwAq\":[\"Connectez-vous à GitHub Enterprise\"],\"o0x5-R\":[\"Sélectionnez une valeur pour ce champ\"],\"o4NRE0\":[\"Saisie de la valeur de la recherche avancée\"],\"o5J6dR\":[\"Préciser les conditions dans lesquelles ce nœud doit être exécuté\"],\"o9R2tO\":[\"Connexion SSL\"],\"oABS9f\":[\"Indiquez une valeur pour ce champ ou sélectionnez l'option Me le demander au lancement.\"],\"oB5EwG\":[\"Système externe de gestion des secrets\"],\"oBmCtD\":[\"Are you sure you want delete the groups below?\"],\"oC5JSb\":[\"Échec de la récupération des données de projet mises à jour.\"],\"oCKCYp\":[\"Notification envoyée avec succès\"],\"oEijQ7\":[\"Version non sensible à la casse de startswith.\"],\"oFtmtl\":[\"Select the inventory containing the hosts\\n you want this job to manage.\"],\"oGKq12\":[\"Construire 2 groupes, limite à l'intersection\"],\"oH1Qle\":[\"URL du webhook pour ce modèle de tâche de flux de travail.\"],\"oHOOxn\":[\"Par défaut, nous collectons et transmettons des données d'analyse sur l'utilisation du service à Red Hat. Il existe deux catégories de données collectées par le service. Pour plus d'informations, consultez <0>cette page de documentation de Tower. Décochez les cases suivantes pour désactiver cette fonctionnalité.\"],\"oII7vS\":[\"Paramètres de GitHub\"],\"oKMFX4\":[\"Jamais mis à jour\"],\"oKbBFU\":[\"# source with sync failures.\"],\"oNOjE7\":[\"Date/Heure de fin\"],\"oNZQUQ\":[\"Identifiant pour l'authentification avec Kubernetes ou OpenShift\"],\"oQqtoP\":[\"Retour aux Jobs de gestion\"],\"oRt7Uv\":[[\"interval\"],\" years\"],\"oTDA5P\":[[\"0\",\"plural\",{\"one\":[\"Cette instance est actuellement utilisée par d'autres ressources. Êtes-vous sûr de vouloir la supprimer ?\"],\"other\":[\"Le déprovisionnement de ces instances pourrait affecter d'autres ressources qui en dépendent. Êtes-vous sûr de vouloir les supprimer quand même ?\"]}]],\"oWvSIB\":[\"E-mail de l’expéditeur\"],\"oX_mCH\":[\"Erreur de synchronisation du projet\"],\"oZvDsd\":[[\"interval\"],\" hours\"],\"ocUvR-\":[\"Faux\"],\"ofO19Q\":[\"Connectez-vous avec GitHub Enterprise Teams\"],\"ofcQVG\":[\"Annuler les modifications non enregistrées\"],\"olEUh2\":[\"Réussi\"],\"opS--k\":[\"Retour aux groupes d'instances\"],\"orh4t6\":[\"Hôte OK\"],\"osCeRO\":[\"Voir les paramètres Azure AD\"],\"ot7qsv\":[\"Effacer tous les filtres\"],\"ovBPCi\":[\"Par défaut\"],\"owBGkJ\":[\"La fin ne correspondait pas à une valeur attendue (\",[\"0\"],\")\"],\"owQ8JH\":[\"Ajouter un groupe d'instances\"],\"ozbhWy\":[\"Erreur de suppression\"],\"p-nfFx\":[\"Faites glisser un fichier ici ou naviguez pour le télécharger\"],\"p-ngUo\":[\"Ne plus suivre\"],\"p-pp9U\":[\"chaîne\"],\"p2LEhJ\":[\"Jeton d'accès personnel\"],\"p2_GCq\":[\"Confirmer le mot de passe\"],\"p3PM8G\":[\"Relancer à partir du premier nœud\"],\"p6-JME\":[\"Le premier récupère toutes les références. Le second récupère la pull request GitHub numéro 62 ; dans cet exemple, la branche doit être « pull/62/head ».\"],\"pAtylB\":[\"Introuvable\"],\"pCCQER\":[\"Disponible dans le monde entier\"],\"pH8j40\":[\"Hôtes actifs précédemment supprimés\"],\"pHyx6k\":[\"Options à choix multiples (une seule sélection)\"],\"pKQcta\":[\"Personnaliser les spécifications du pod\"],\"pOJNDA\":[\"commande\"],\"pOd3wA\":[\"Appuyez sur \\\"Entrée\\\" pour ajouter d'autres choix de réponses. Un choix de réponse par ligne.\"],\"pOhwkU\":[\"Cette action permettra de dissocier le rôle suivant de \",[\"0\"],\" :\"],\"pRZ6hs\":[\"Continuer\"],\"pSypIG\":[\"Afficher la description\"],\"pYENvg\":[\"Type d'autorisation\"],\"pZJ0-s\":[\"Nombre maximum de fourches pour permettre à tous les travaux exécutés simultanément sur ce groupe. Zéro signifie qu'aucune limite ne sera appliquée.\"],\"pa1SrG\":[[\"interval\"],\" days\"],\"peCAyQ\":[\"Voir les paramètres de RADIUS\"],\"pfw0Wr\":[\"TOUS\"],\"pguZh2\":[\"Créez des variables à partir d'expressions jinja2. Cela peut être utile\\n si les groupes construits que vous définissez ne contiennent pas les hôtes\\n attendus. Cela peut être utilisé pour ajouter des hostvars à partir d'expressions afin\\n que vous sachiez quelles sont les valeurs résultantes de ces expressions.\"],\"phTgAm\":[\"Il est difficile de donner une spécification pour\\n l'inventaire des facts Ansible, car pour renseigner\\n les facts du système, vous devez exécuter un playbook contre\\n l'inventaire qui a `gather_facts: true`. Les\\n facts réels différeront d'un système à l'autre.\"],\"pkY73W\":[\"Rocket.Chat\"],\"pn7Xy3\":[\"Voir Django\"],\"poMgBa\":[\"Demander la branche SCM au lancement.\"],\"ppcQy0\":[\"Régler le zoom à 100% et centrer le graphique\"],\"prydaE\":[\"Erreurs de synchronisation du projet\"],\"pw2VDK\":[\"Le dernier \",[\"weekday\"],\" de \",[\"month\"]],\"q-Uk_P\":[\"N'a pas réussi à supprimer un ou plusieurs types d’identifiants.\"],\"q-hNag\":[\"Collection\"],\"q45OlW\":[\"Régions\"],\"q5tQBE\":[\"Désactiver le type pour les recherches floues dans les champs de recherche associés\"],\"q67y3T\":[\"Modèle de notification introuvable.\"],\"qAlZNb\":[\"Vous n'êtes pas en mesure d'agir sur les approbations de workflow suivantes\xA0: \",[\"itemsUnableToDeny\"]],\"qCUUnr\":[\"Aucun hôte restant\"],\"qChjCy\":[\"Première exécution\"],\"qD-pvR\":[\"ID du tableau de bord (facultatif)\"],\"qEMgTP\":[\"Erreur de synchronisation de la source de l'inventaire\"],\"qJK-de\":[\"Connectez-vous avec OIDC\"],\"qS0GhO\":[\"Environnement d'exécution manquant\"],\"qSSVmd\":[\"Canaux ou utilisateurs de destination\"],\"qSSg1L\":[\"Lien vers un nœud disponible\"],\"qWD0iN\":[\"Ces données sont utilisées pour améliorer\\n les futures versions du logiciel et pour fournir\\n Automation Analytics.\"],\"qXRYa2\":[\"Suivre le dernier commit des sous-modules sur la branche\"],\"qYkrfg\":[\"Détails de rappel d’exécution\"],\"qZ2MTC\":[\"Il s'agit des modules pris en charge par \",[\"brandName\"],\" pour l'exécution de commandes.\"],\"qgjtIt\":[\"Convergence\"],\"qlhQw_\":[\"Synchronisation des inventaires\"],\"qliDbL\":[\"Archive à distance\"],\"qlwLcm\":[\"Dépannage\"],\"qmBmJJ\":[\"C'est la seule fois où le secret du client sera révélé.\"],\"qmYgP7\":[\"approuvé\"],\"qqeAJM\":[\"Jamais\"],\"qtFFSS\":[\"Mettre à jour Révision au lancement\"],\"qtaMu8\":[\"Inventaire (nom)\"],\"qvCD_i\":[\"Voici des exemples :\"],\"qwaCoN\":[\"Mise à jour du Contrôle de la source\"],\"qxZ5RX\":[\"hôtes\"],\"qznBkw\":[\"Modal de liaison de flux de travail\"],\"r6Aglb\":[\"Entrez les injecteurs avec la syntaxe JSON ou YAML. Consultez la documentation sur le contrôleur Ansible pour avoir un exemple de syntaxe.\"],\"r6y-jM\":[\"Avertissement\"],\"r6zgGo\":[\"Décembre\"],\"r8ojWq\":[\"Confirmer la suppression\"],\"r8oq0Y\":[\"Après 24 heures\"],\"rBdPPP\":[\"N'a pas réussi à supprimer \",[\"name\"],\".\"],\"rE95l8\":[\"Type de client\"],\"rG3WVm\":[\"Sélectionner\"],\"rHK_Sg\":[\"L'environnement virtuel personnalisé \",[\"virtualEnvironment\"],\" doit être remplacé par un environnement d'exécution. Pour plus d'informations sur la migration vers des environnements d'exécution, voir la <0>the documentation..\"],\"rK7UBZ\":[\"Relancer tous les hôtes\"],\"rKS_55\":[\"Stockage des faits : si activé, cela stockera les faits collectés afin qu'ils puissent être consultés au niveau de l'hôte. Les faits sont conservés et injectés dans le cache de faits au moment de l'exécution.\"],\"rKTFNB\":[\"Supprimer le type d'informations d’identification\"],\"rLznGJ\":[\"Un modèle Jinja2 rendu avec les artefacts set_stats en amont lors de la création de l'approbation. Utilisez ceci pour montrer à l'approbateur le contexte pertinent des étapes de job précédentes. Les variables disponibles proviennent des données set_stats des nœuds parents.\"],\"rMrKOB\":[\"Échec de la synchronisation du projet.\"],\"rOZRCa\":[\"Lien vers le flux de travail\"],\"rSYkIY\":[\"Ce champ doit être un nombre\"],\"rXhu41\":[\"2 (Déboguer)\"],\"rYHzDr\":[\"Éléments par page\"],\"r_IfWZ\":[\"Modifier l'inventaire\"],\"rdUucN\":[\"Prévisualisation\"],\"rfYaVc\":[\"Nom de variable de réponse\"],\"rfpIXM\":[\"Demander les groupes d'instances au lancement.\"],\"rfx2oA\":[\"Corps du message d'exécution de flux de travail\"],\"riBcU5\":[\"IRC Nick\"],\"rjVfy3\":[\"Documentation de flux de travail\"],\"rjyWPb\":[\"Janvier\"],\"rmb2GE\":[\"Refusé par \",[\"0\"],\" - \",[\"1\"]],\"rmt9Tu\":[\"Total Hôtes\"],\"ruhGSG\":[\"Annuler Sync Source d’inventaire\"],\"rvia3m\":[\"Divers Authentification\"],\"rw1pRJ\":[\"Téléchargement de l’ensemble (Bundle)\"],\"rwWNpy\":[\"Inventaires\"],\"s-MGs7\":[\"Ressources\"],\"s2xYUy\":[\"Remplacer les variables locales de la source d'inventaire distante.\"],\"s3KtlK\":[\"Cet horaire n'a pas d'occurrences en raison des exceptions sélectionnées.\"],\"s4Qnj2\":[\"Environnement d'exécution\"],\"s4fge-\":[\"Le mois dernier\"],\"s5aIEB\":[\"Supprimer le modèle de flux de travail \"],\"s5mACA\":[\"Détail de l'instance\"],\"s5r5nt\":[[\"0\",\"plural\",{\"one\":[\"Ce groupe d'instances est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?\"],\"other\":[\"La suppression de ces groupes d'instances pourrait affecter d'autres ressources qui en dépendent. Êtes-vous sûr de vouloir les supprimer quand même ?\"]}]],\"s6F6Ks\":[\"Aucune sortie de données pour ce job.\"],\"s70SJY\":[\"Paramètres de journalisation\"],\"s8hQty\":[\"Voir tous les Jobs.\"],\"s9EKbs\":[\"Désactiver la vérification SSL\"],\"sAz1tZ\":[\"confirmer dissocier\"],\"sBJ5MF\":[\"Sources\"],\"sCEb_0\":[\"Voir tous les hôtes de l'inventaire.\"],\"sGodAp\":[\"Remplacement des spécifications du pod\"],\"sMDRa_\":[\"Retour aux groupes\"],\"sOMf4x\":[\"Modèles récents\"],\"sSFxX6\":[\"Mettre à jour Révision au lancement\"],\"sTkKoT\":[\"Sélectionnez une ligne à refuser\"],\"sUyFTB\":[\"Redirection vers le tableau de bord\"],\"sV3kNp\":[\"Ce groupe d'instance est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?\"],\"sVh4-e\":[\"Supprimer ce lien\"],\"sW5OjU\":[\"requis\"],\"sZif4m\":[\"Dissocier le(s) groupe(s) lié(s) ?\"],\"s_XkZs\":[\"DÉMARRER\"],\"s_r4Az\":[\"Ce champ doit être un entier\"],\"sesAIn\":[\"Utilisez des messages personnalisés pour modifier le contenu des\\n notifications envoyées lorsqu'un job démarre, réussit ou échoue. Utilisez\\n des accolades pour accéder aux informations sur le job :\"],\"sgRZMG\":[\"Noeud hybride\"],\"siJgSI\":[\"Utilisateur non trouvé.\"],\"sjMCOP\":[\"Dernière modification\"],\"sjVfrA\":[\"Commande\"],\"smFRaX\":[\"Une mission a déjà été lancée\"],\"sqMsvU\":[[\"0\",\"plural\",{\"one\":[\"#\",\" source avec des échecs de synchronisation.\"],\"other\":[\"#\",\" sources avec des échecs de synchronisation.\"]}]],\"sr4LMa\":[\"Sources d'inventaire\"],\"svR3aM\":[\"OpenStack\"],\"svy2x9\":[\"Renvoie les résultats qui satisfont celui-ci ou tout autre filtre.\"],\"sxkWRg\":[\"Avancé\"],\"syupn5\":[\"Image de marque\"],\"syyeb9\":[\"Première\"],\"t-R8-P\":[\"Exécution\"],\"t2q1xO\":[\"Modifier la programmation\"],\"t4v_7X\":[\"Sélectionnez un type de nœud\"],\"t9QlBd\":[\"Novembre\"],\"tRm9qR\":[\"Les balises sont utiles lorsque vous avez un grand playbook et que vous souhaitez exécuter une partie spécifique d'un play ou d'une tâche. Utilisez des virgules pour séparer plusieurs balises. Consultez la documentation pour plus de détails sur l'utilisation des balises.\"],\"tVEot_\":[[\"0\",\"plural\",{\"one\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"other\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"]}]],\"tXkhj_\":[\"Démarrer\"],\"t_YqKh\":[\"Supprimer\"],\"tbSVlt\":[\"Supprimer l’accès de l’utilisateur\"],\"tfDRzk\":[\"Enregistrer\"],\"tfh2eq\":[\"Cliquez pour créer un nouveau lien vers ce nœud.\"],\"tgPwON\":[\"Opérateur\"],\"tgSBSE\":[\"Supprimer le lien\"],\"tgWuMB\":[\"Modifié\"],\"thJljW\":[\"AVERTISSEMENT : \"],\"toJdZA\":[\"Reorder\"],\"tpCmSt\":[\"policy rules.\"],\"tqlcfo\":[\"Déprovisionnement\"],\"trjiIV\":[\"Échec de l'association de l'homologue.\"],\"tst44n\":[\"Événements\"],\"twE5a9\":[\"N'a pas réussi à supprimer l’identifiant.\"],\"txNbrI\":[\"Branche Contrôle de la source\"],\"ty2DZX\":[\"Cette organisation est actuellement en cours de traitement par d'autres ressources. Êtes-vous sûr de vouloir la supprimer ?\"],\"tzgOKK\":[\"Ce point a déjà fait l'objet d'une action\"],\"u-sh8m\":[\"/ (project root)\"],\"u4ex5r\":[\"Juillet\"],\"u4n8Fm\":[\"Échec de la suppression des pairs.\"],\"u4x6Jy\":[\"Retour Jobs\"],\"u5AJST\":[\"Nombre de processus parallèles ou simultanés à utiliser lors de l'exécution du playbook. La saisie d'aucune valeur entraînera l'utilisation de la valeur par défaut du fichier de configuration ansible. Vous pourrez trouver plus d’informations.\"],\"u7f6WK\":[\"Voir toutes les approbations de flux de travail.\"],\"u84wS1\":[\"Erreur d'annulation d'un Job\"],\"uAQUqI\":[\"État\"],\"uAhZbx\":[\"Sources d'inventaire avec défaillances\"],\"uCjD1h\":[\"Votre session a expiré. Veuillez vous connecter pour continuer là où vous vous êtes arrêté.\"],\"uImfEm\":[\"Message de flux de travail en attente\"],\"uJz8NJ\":[\"La recherche est désactivée pendant que le job est en cours\"],\"uPRp5U\":[\"Annuler la recherche\"],\"uTDtiS\":[\"Cinquième\"],\"uUehLT\":[\"En attente\"],\"uVu1Yt\":[\"Sélection du type d’ensemble\"],\"uYtvvN\":[\"Sélectionnez un projet avant de modifier l'environnement d'exécution.\"],\"ucSTeu\":[\"Créé par (nom d'utilisateur)\"],\"ucgZ0o\":[\"Organisation\"],\"ugZpot\":[\"Tester les informations d'identification externes\"],\"ulRNXw\":[\"Dragging cancelled. List is unchanged.\"],\"upC07l\":[\"Survey Disabled\"],\"uuPCEU\":[\"If you want the Inventory Source to update on launch , click on Update on Launch, and also go to \"],\"uyJsf6\":[\"À propos de \"],\"uzTiFQ\":[\"Retour aux horaires\"],\"v-CZEv\":[\"Me le demander au lancement\"],\"v-EbDj\":[\"Réglages de dépannage\"],\"v-M-LP\":[\"Lancer le modèle.\"],\"v0urVb\":[\"Si vous n'avez pas d'abonnement, vous pouvez visiter\\n Red Hat pour obtenir un abonnement d'essai.\"],\"v1kQyJ\":[\"Webhooks\"],\"v2dMHj\":[\"Relancer en utilisant les paramètres de l'hôte\"],\"v2gmVS\":[\"Cette action supprimera en douceur les éléments suivants\xA0:\"],\"v45yUL\":[\"dissocier\"],\"v7vAuj\":[\"Total des offres\"],\"vCS_TJ\":[\"Impossible de supprimer la source d'inventaire \",[\"name\"],\".\"],\"vEr6TL\":[\"Ces arguments sont utilisés avec le module spécifié. Vous pouvez trouver des informations sur \",[\"0\"],\" en cliquant \"],\"vF82C6\":[\"Exécuter lorsque le nœud parent se trouve dans un état de réussite.\"],\"vFKI2e\":[\"Règles de l'horaire\"],\"vFVhzc\":[\"SOCIAL\"],\"vGVmd5\":[\"Ce champ est ignoré à moins qu'une variable activée ne soit définie. Si la variable activée correspond à cette valeur, l'hôte sera activé lors de l'importation.\"],\"vGjmyl\":[\"Supprimé\"],\"vHAaZi\":[\"Sauter tous les\"],\"vIb3RK\":[\"Créer une nouvelle programmation\"],\"vKRQJB\":[\"Champ permettant de passer une spécification de pod Kubernetes ou OpenShift personnalisée.\"],\"vLyv1R\":[\"Masquer\"],\"vPrMqH\":[\"Révision n°\"],\"vQHUI6\":[\"Si cette case est cochée, toutes les variables pour les groupes enfants et les hôtes seront supprimées et remplacées par celles trouvées sur la source externe.\"],\"vTL8gi\":[\"Heure de fin\"],\"vUOn9d\":[\"Renvoi\"],\"vYFWsi\":[\"Sélectionner des équipes\"],\"vYuE8q\":[\"Temps écoulé (en secondes) pendant lequel la tâche s'est exécutée.\"],\"vZbIkJ\":[\"GitLab\"],\"vcH-SH\":[\"Centre de données Bitbucket\"],\"ve_jRy\":[\"Selon condition\"],\"vgwVkd\":[\"UTC\"],\"vlHGDw\":[\"Transmettez des variables de ligne de commande supplémentaires au playbook. Il s'agit du paramètre de ligne de commande -e ou --extra-vars pour ansible-playbook. Fournissez des paires clé/valeur en YAML ou JSON. Consultez la documentation pour un exemple de syntaxe.\"],\"voRH7M\":[\"Exemples :\"],\"vq1XXv\":[\"Créer un nouvel inventaire smart avec le filtre appliqué\"],\"vq2WxD\":[\"Mar.\"],\"vq9gg6\":[\"Vous n'êtes pas en mesure d'agir sur les approbations de workflow suivantes\xA0: \",[\"itemsUnableToApprove\"]],\"vqAmQC\":[\"Module\"],\"vvY8pz\":[\"Demander les balises à ignorer au lancement.\"],\"vye-ip\":[\"Demander le délai d'expiration au lancement.\"],\"vzsN_5\":[[\"interval\"],\" day\"],\"w07pgp\":[\"Demander la verbosité au lancement.\"],\"w0kTk8\":[\"Relancer à partir du nœud défaillant\"],\"w14eW4\":[\"Voir tous les jetons.\"],\"w1RiT6\":[[\"0\",\"plural\",{\"one\":[\"Cette source d'inventaire est actuellement utilisée par d'autres ressources qui en dépendent. Êtes-vous sûr de vouloir la supprimer ?\"],\"other\":[\"La suppression de ces sources d'inventaire pourrait affecter d'autres ressources qui en dépendent. Êtes-vous sûr de vouloir les supprimer quand même ?\"]}]],\"w2VTLB\":[\"Moins que la comparaison.\"],\"w3EE8S\":[\"Hôtes automatisés\"],\"w4j7js\":[\"Voir les détails de l'équipe\"],\"w6zx64\":[\"Utiliser la langue du navigateur\"],\"wCnaTT\":[\"Remplacer le champ par la nouvelle valeur\"],\"wF-BAU\":[\"Ajouter un inventaire\"],\"wFnb77\":[\"ID Inventaire\"],\"wKEfMu\":[\"Traitement des événements terminé.\"],\"wO29qX\":[\"Organisation non trouvée.\"],\"wW08QA\":[\"Différent de\"],\"wX6sAX\":[\"Location de fonds de terres Recours au travail à forfait Bail avec partage des risques\"],\"wXAVe-\":[\"Arguments du module\"],\"wXB7k5\":[\"Spécifiez une couleur de notification. Les couleurs acceptables sont un code\\n de couleur hexadécimal (exemple : #3af ou #789abc).\"],\"waFx9W\":[\"Géré\"],\"wdxz7K\":[\"Source\"],\"wgNoIs\":[\"Tout sélectionner\"],\"wkgHlv\":[\"Ajouter un nouveau noeud\"],\"wlQNTg\":[\"Membres\"],\"wnizTi\":[\"Sélectionnez un abonnement\"],\"wpT1VN\":[\"Condition\"],\"wpt6vB\":[\"LDAP2\"],\"wqXiR2\":[\"Transmettez des modifications supplémentaires de ligne de commande. Il existe deux paramètres de ligne de commande ansible : \"],\"wsggVq\":[\"Si cette case n'est pas cochée, les hôtes enfants locaux et les groupes introuvables sur la source externe ne seront pas touchés par le processus de mise à jour de l'inventaire.\"],\"x-a4Mr\":[\"Informations d'identification du webhook\"],\"x02hbg\":[\"Rappels de provisionnement : active la création d'une URL de rappel de provisionnement. À l'aide de l'URL, un hôte peut contacter Ansible AWX et demander une mise à jour de configuration à l'aide de ce modèle de job.\"],\"x4Xp3c\":[\"actualisé\"],\"x5DnMs\":[\"Dernière modification\"],\"x6_dAC\":[\"Inventaire fédéré\"],\"x6oT_o\":[\"Hôtes disponibles\"],\"x7PDL5\":[\"Journalisation\"],\"x8uKc7\":[\"État de l'instance\"],\"x9WS62\":[\"Annuler \",[\"0\"]],\"xAYSEs\":[\"Heure de début\"],\"xAqth4\":[\"Voir les paramètres de Google OAuth 2.0\"],\"xC9EVu\":[\"Nœud annulé\"],\"xCJdfg\":[\"Effacer\"],\"xDr_ct\":[\"Fin\"],\"xESTou\":[\"N'a pas réussi à supprimer le job.\"],\"xF5tnT\":[\"Mot de passe Archivage sécurisé\"],\"xGQZwx\":[\"Ajouter un groupe de conteneurs\"],\"xGVfLh\":[\"Continuer\"],\"xHZS6u\":[\"Tâches ayant réussi\"],\"xHokxV\":[[\"0\",\"plural\",{\"one\":[\"The selected job cannot be deleted due to insufficient permission or a running job status\"],\"other\":[\"The selected jobs cannot be deleted due to insufficient permissions or a running job status\"]}]],\"xHt036\":[\"Jeton d'accès personnel\"],\"xKQRBr\":[\"Longueur maximale\"],\"xM01Pk\":[\"Réponse par défaut\"],\"xONDaO\":[\"Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?\"],\"xOl1yT\":[\"Recherche exacte sur le champ nom.\"],\"xPO5w7\":[\"Connectez-vous à GitHub\"],\"xPpkbX\":[\"Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway\"],\"xPxMOJ\":[\"Format d'heure non valide\"],\"xQioPk\":[\"Conditions préalables à l'exécution de ce nœud lorsqu'il y a plusieurs parents. Reportez-vous à \"],\"xSytdh\":[\"TERMINÉ :\"],\"xUhTCP\":[\"Choisissez une source\"],\"xVhQZV\":[\"Ven.\"],\"xY9DEq\":[\"Le modèle utilisé pour cibler les hôtes dans l'inventaire. En laissant le champ vide, tous et * cibleront tous les hôtes de l'inventaire. Vous pouvez trouver plus d'informations sur les modèles d'hôtes d'Ansible\"],\"xY9s5E\":[\"Délai d'attente\"],\"x_Ej3K\":[\"Choisissez un type ou un format de réponse que vous souhaitez comme invite pour l'utilisateur.\\n Consultez la documentation Ascender pour obtenir des informations supplémentaires sur chaque option.\"],\"x_ugm_\":[\"Total des groupes\"],\"xa7N9Z\":[\"URL de remplacement pour la redirection de connexion\"],\"xcaG5l\":[\"Modifier le flux de travail\"],\"xd2LI3\":[\"Expire le \",[\"0\"]],\"xdA_-p\":[\"Outils\"],\"xe5RvT\":[\"Onglet YAML\"],\"xefC7k\":[\"Port du serveur IRC\"],\"xeiujy\":[\"Texte\"],\"xg771-\":[\"LDAP1\"],\"xhj1Rt\":[\"La page que vous avez demandée n'a pas été trouvée.\"],\"xi4nE2\":[\"Message d'erreur\"],\"xnSIXG\":[\"N'a pas réussi à supprimer un ou plusieurs hôtes.\"],\"xoCdYY\":[\"Vérifiez si la valeur du champ donné est présente dans la liste fournie ; attendez-vous à une liste d'éléments séparés par des virgules.\"],\"xoXoBo\":[\"Supprimer l'erreur\"],\"xrG8k4\":[\"Google Compute Engine\"],\"xtRU96\":[\"Organisation GitHub Enterprise\"],\"xuYTJb\":[\"N'a pas réussi à supprimer le modèle de Job.\"],\"xw06rt\":[\"Le réglage correspond à la valeur d’usine par défaut.\"],\"xxTtJH\":[\"Expression régulière où seuls les noms d'hôtes correspondants seront importés. Le filtre est appliqué comme une étape de post-traitement après l'application de tout filtre de plugin d'inventaire.\"],\"y11WBZ\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"Annuler la tâche sélectionnée\"],\"other\":[\"Annuler les tâches sélectionnées\"]}]],\"y8ibKI\":[\"Supprimer les instances\"],\"yCCaoF\":[\"N'a pas réussi à mettre à jour l'instance.\"],\"yDeNnS\":[\"Créer un nouvel inventaire construit\"],\"yDifzB\":[\"Confirmer la sélection\"],\"yGS9cI\":[\"Fonctionne correctement\"],\"yGUKlf\":[\"Jobs de gestion\"],\"yGfW7Y\":[\"Modifiez PROJECTS_ROOT lors du déploiement de \",[\"brandName\"],\" pour changer cet emplacement.\"],\"yMIahh\":[\"Bienvenue dans Red Hat Ansible Automation Platform !\\n Veuillez suivre les étapes ci-dessous pour activer votre abonnement.\"],\"yMYuDg\":[\"Version de contrôleur d’Automation\"],\"yMfU4O\":[\"E-mail de l'expéditeur\"],\"yNcGa2\":[\"Expiration du jeton d'accès\"],\"yOXgbH\":[\"Remarque : lorsque vous utilisez le protocole SSH pour GitHub ou Bitbucket, saisissez uniquement une clé SSH, n'entrez pas de nom d'utilisateur (autre que git). De plus, GitHub et Bitbucket ne prennent pas en charge l'authentification par mot de passe lors de l'utilisation de SSH. Le protocole GIT en lecture seule (git://) n'utilise pas d'informations de nom d'utilisateur ou de mot de passe.\"],\"yQE2r9\":[\"Chargement en cours...\"],\"yRiHPB\":[\"Veuillez ajouter un job pour remplir cette liste\"],\"yRkqG9\":[\"Limite\"],\"yRsSBw\":[\"Approbations\"],\"yUlffE\":[\"Relancer\"],\"yVgnJA\":[\"Le nombre maximum d'hôtes autorisés à être gérés par cette organisation.\\n La valeur par défaut est 0, ce qui signifie aucune limite. Reportez-vous à la documentation\\n d'Ansible pour plus de détails.\"],\"yX3qAQ\":[\"Nœuds de modèle de Job de flux de travail\"],\"yaG1CX\":[\"LDAP\"],\"yaX9sM\":[\"Modèle de flux de travail\"],\"yb_fjw\":[\"Approbation\"],\"ydoZpB\":[\"Équipe non trouvée.\"],\"ydw9CW\":[\"Échec des hôtes\"],\"yfG3F2\":[\"Clés directes\"],\"yjwMJ8\":[\"Combien de fois l'hôte a-t-il été automatisé\"],\"yjyGja\":[\"Développer l'entrée\"],\"ylXj1N\":[\"Sélectionné\"],\"yq6OqI\":[\"C'est la seule fois où la valeur du jeton et la valeur du jeton de rafraîchissement associée seront affichées.\"],\"yqiwAW\":[\"Annuler le flux de travail\"],\"yrUyDQ\":[\"Définit l'étape actuelle du cycle de vie de cette instance. La valeur par défaut est \\\"installé\\\".\"],\"yrwl2P\":[\"Conforme\"],\"yuXsFE\":[\"N'a pas réussi à supprimer une ou plusieurs approbations de flux de travail.\"],\"yuvDX_\":[[\"intervalValue\",\"plural\",{\"one\":[\"month\"],\"other\":[\"months\"]}]],\"ywSBEn\":[\"Erreur de rôle d’associé\"],\"yxDqcD\":[\"Expiration du code d'autorisation\"],\"yy1cWw\":[\"Personnaliser les messages...\"],\"yz7wBu\":[\"Fermer\"],\"yzQhLU\":[\"Instances de stratégies minimum\"],\"yzdDia\":[\"Supprimer le questionnaire\"],\"z-BNGk\":[\"Supprimer un jeton d'utilisateur\"],\"z0DcIS\":[\"crypté\"],\"z3XA1I\":[\"Nouvel essai de l'hôte\"],\"z409y8\":[\"Service webhook\"],\"z7NLxJ\":[\"Si vous souhaitez uniquement supprimer l'accès de cet utilisateur particulier, veuillez le supprimer de l'équipe.\"],\"z8mwbl\":[\"Pourcentage minimum de toutes les instances qui seront automatiquement attribuées à ce groupe lorsque de nouvelles instances seront mises en ligne.\"],\"zBO1TV\":[[\"numOccurrences\",\"plural\",{\"one\":[\"Après \",\"#\",\" occurrence\"],\"other\":[\"Après \",\"#\",\" occurrences\"]}]],\"zHcXAG\":[\"Laissez ce champ vide pour rendre l'environnement d'exécution globalement disponible.\"],\"zICM7E\":[\"Ignorez les modifications locales avant de synchroniser\"],\"zJY4Uj\":[\"Playbook\"],\"zKJMiH\":[\"Répertoire Playbook\"],\"zK_63z\":[\"Nom d’utilisateur et/ou mot de passe non valide. Veuillez réessayer.\"],\"zLsDix\":[\"utilisateur ldap\"],\"zMKkOk\":[\"Retour à Organisations\"],\"zN0nhk\":[\"Fournissez vos informations d'identification Red Hat ou Red Hat Satellite pour activer Automation Analytics.\"],\"zQRgi-\":[\"Début de la notification de basculement\"],\"zTediT\":[\"Ce champ doit être un nombre et avoir une valeur comprise entre \",[\"min\"],\" et \",[\"max\"]],\"zUIPys\":[\"Ajoutez des hôtes au groupe en fonction des conditions Jinja2.\"],\"z_PZxu\":[\"N'a pas réussi à supprimer l'approbation du flux de travail.\"],\"zbLCH1\":[\"Type d’inventaire\"],\"zcQj5X\":[\"Tout d'abord, sélectionnez une clé\"],\"zdl7YZ\":[\"Sélectionner le chemin d'accès de la source\"],\"zeEQd_\":[\"Juin\"],\"zf7FzC\":[\"Jeton pour s'authentifier auprès de Kubernetes ou OpenShift. Doit être de type \\\"Kubernetes/OpenShift API Bearer Token\\\". S'il est laissé vide, le compte de service du Pod sous-jacent sera utilisé.\"],\"zfZydd\":[\"Modalité d'aperçu de l'enquête\"],\"zfsBaJ\":[\"Pour en savoir plus sur Automation Analytics\"],\"zgInnV\":[\"Vue modale du nœud de flux de travail\"],\"zga9sT\":[\"OK\"],\"zhPLvU\":[\"N'a pas réussi à associer.\"],\"zhrjek\":[\"Groupes\"],\"zi_YNm\":[\"Échec de l'annulation \",[\"0\"]],\"zmu4-P\":[\"SID de compte\"],\"znG7ed\":[\"Choisir un playbook\"],\"znTz5r\":[\"Programme non trouvé.\"],\"znuW_M\":[\"Si oui, considérer les entrées non valides comme une erreur fatale, sinon ignorer et\\n continuer.\"],\"zq0gmb\":[\"Sélectionnez une période\"],\"ztOzCj\":[\"Mettre à jour au lancement\"],\"ztw2L3\":[\"Il doit y avoir une valeur dans au moins un champ\"],\"zvfXp0\":[\"Basculer les approbations de notification\"],\"zx4BuL\":[\"Semaine\"],\"zzDlyQ\":[\"Réussite\"],\"{count, plural, one {# fork} other {# forks}}\":[[\"count\",\"plural\",{\"one\":[\"#\",\" fork\"],\"other\":[\"#\",\" forks\"]}]]}")}; \ No newline at end of file diff --git a/awx/ui/src/locales/fr/messages.po b/awx/ui/src/locales/fr/messages.po index 64094dba..ff356622 100644 --- a/awx/ui/src/locales/fr/messages.po +++ b/awx/ui/src/locales/fr/messages.po @@ -57,7 +57,7 @@ msgid "TACACS+" msgstr "TACACS+" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:637 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:232 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:251 msgid "Workflow timed out message body" msgstr "Corps du message d’expiration de flux de travail" @@ -115,6 +115,10 @@ msgstr "Sélectionnez l'environnement d'exécution dans lequel vous voulez que c msgid "Add a new node between these two nodes" msgstr "Ajouter un nouveau nœud entre ces deux nœuds" +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:170 +msgid "Changed message" +msgstr "Message de modification" + #: screens/Job/JobOutput/JobOutputSearch.js:120 msgid "Host Polling" msgstr "Interrogation de l'hôte" @@ -148,7 +152,7 @@ msgid "Maximum number of forks to allow across all jobs running concurrently on msgstr "Nombre maximum de forks autorisés pour l'ensemble des jobs exécutés simultanément sur ce groupe.\n" " Zéro signifie qu'aucune limite ne sera appliquée." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:341 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:349 #: screens/Inventory/InventorySources/InventorySourceListItem.js:89 msgid "Failed to cancel Inventory Source Sync" msgstr "N'a pas réussi à annuler la synchronisation des sources d'inventaire." @@ -332,8 +336,8 @@ msgstr "Branche à extraire. En plus des branches, vous pouvez saisir des balise #: components/JobList/JobList.js:265 #: components/JobList/JobListItem.js:109 #: components/Lookup/ProjectLookup.js:134 -#: components/NotificationList/NotificationList.js:219 -#: components/NotificationList/NotificationListItem.js:34 +#: components/NotificationList/NotificationList.js:230 +#: components/NotificationList/NotificationListItem.js:36 #: components/PromptDetail/PromptDetail.js:125 #: components/RelatedTemplateList/RelatedTemplateList.js:200 #: components/TemplateList/TemplateList.js:219 @@ -433,7 +437,7 @@ msgstr "Cliquez pour voir les détails de ce Job" msgid "Sync Project" msgstr "Projet Sync" -#: components/NotificationList/NotificationList.js:194 +#: components/NotificationList/NotificationList.js:205 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:135 msgid "Grafana" msgstr "Grafana" @@ -513,7 +517,7 @@ msgstr "Événement" msgid "Repeat Frequency" msgstr "Fréquence de répétition" -#: screens/Inventory/shared/Inventory.helptext.js:171 +#: screens/Inventory/shared/Inventory.helptext.js:172 msgid "Variables used to configure the constructed inventory plugin. For a detailed description of how to configure this plugin, see" msgstr "Variables utilisées pour configurer le plugin d'inventaire construit. Pour une description détaillée de la configuration de ce plugin, voir" @@ -575,8 +579,8 @@ msgstr "Groupe de conteneurs" msgid "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" msgstr "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" -#: components/NotificationList/NotificationList.js:220 -#: components/NotificationList/NotificationListItem.js:35 +#: components/NotificationList/NotificationList.js:231 +#: components/NotificationList/NotificationListItem.js:38 #: screens/Credential/shared/TypeInputsSubForm.js:46 #: screens/InstanceGroup/shared/ContainerGroupForm.js:79 #: screens/Instances/Shared/InstanceForm.js:95 @@ -600,7 +604,7 @@ msgid "You cannot select multiple vault credentials with the same vault ID. Doin msgstr "Vous ne pouvez pas sélectionner plusieurs identifiants d’archivage sécurisé (Vault) avec le même identifiant de d’archivage sécurisé. Cela désélectionnerait automatiquement les autres identifiants d’archivage sécurisé." #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:334 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:342 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:350 #: screens/Project/ProjectDetail/ProjectDetail.js:354 msgid "Cancel Sync" msgstr "Annuler Sync" @@ -713,8 +717,8 @@ msgstr "Métriques" msgid "Create new credential Type" msgstr "Créer un nouveau type d'informations d'identification." -#: screens/Inventory/shared/Inventory.helptext.js:103 -#: screens/Inventory/shared/Inventory.helptext.js:118 +#: screens/Inventory/shared/Inventory.helptext.js:104 +#: screens/Inventory/shared/Inventory.helptext.js:119 msgid "If you want the Inventory Source to update on launch, click on Update on Launch, and also go to " msgstr "Si vous voulez que la source d'inventaire se mette à jour au lancement, cliquez sur Mettre à jour au lancement, et allez également à " @@ -732,7 +736,7 @@ msgid "Start Time" msgstr "Heure de début" #: screens/Inventory/shared/Inventory.helptext.js:48 -#: screens/Inventory/shared/Inventory.helptext.js:184 +#: screens/Inventory/shared/Inventory.helptext.js:185 msgid "Variables must be in JSON or YAML syntax. Use the radio button to toggle between the two." msgstr "Variables avec la syntaxe JSON ou YAML. Utilisez le bouton radio pour basculer entre les deux." @@ -748,7 +752,7 @@ msgstr "Écart entre les fichiers" msgid "Relaunch from canceled node" msgstr "Relancer à partir du nœud annulé" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:271 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:279 msgid "Cache timeout" msgstr "Expiration du délai d’attente du cache" @@ -828,7 +832,7 @@ msgstr "Veuillez saisir un nombre d'occurrences." msgid "Fuzzy search on name field." msgstr "Recherche floue sur le champ du nom." -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:106 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:107 msgid "Ansible Controller Documentation." msgstr "Documentation du contrôleur Ansible." @@ -836,7 +840,7 @@ msgstr "Documentation du contrôleur Ansible." msgid "The Instance Groups to which this instance belongs." msgstr "Les groupes d'instances auxquels appartient cette instance." -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:97 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:98 msgid "You may apply a number of possible variables in the\n" " message. For more information, refer to the" msgstr "Vous pouvez appliquer un certain nombre de variables possibles dans le\n" @@ -885,7 +889,7 @@ msgstr "Nœuds de flux de travail" msgid "Overwrite" msgstr "Remplacer" -#: components/NotificationList/NotificationList.js:195 +#: components/NotificationList/NotificationList.js:206 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:136 msgid "Hipchat" msgstr "HipChat" @@ -920,7 +924,7 @@ msgstr "Branche Contrôle de la source" msgid "Tabs" msgstr "Balises" -#: screens/Template/Template.js:273 +#: screens/Template/Template.js:274 #: screens/Template/WorkflowJobTemplate.js:286 msgid "View Template Details" msgstr "Voir les détails du modèle" @@ -966,7 +970,7 @@ msgstr "{interval, plural, one {# année} other {# années}}" msgid "Inventory Source Sync" msgstr "Sync Source d’inventaire" -#: screens/Inventory/shared/Inventory.helptext.js:146 +#: screens/Inventory/shared/Inventory.helptext.js:147 msgid "Inventory Plugins" msgstr "Extensions d'inventaire" @@ -1036,7 +1040,7 @@ msgstr "1 (info)" msgid "Set the instance enabled or disabled. If disabled, jobs will not be assigned to this instance." msgstr "Mettez l'instance en ligne ou hors ligne. Si elle est hors ligne, les Jobs ne seront pas attribués à cette instance." -#: screens/Inventory/shared/Inventory.helptext.js:105 +#: screens/Inventory/shared/Inventory.helptext.js:106 msgid "and click on Update Revision on Launch." msgstr "et cliquez sur Mettre à jour la révision au lancement." @@ -1525,8 +1529,8 @@ msgstr "N'a pas réussi à supprimer un ou plusieurs Jobs." msgid "Run Command" msgstr "Exécuter Commande" -#: screens/Inventory/shared/Inventory.helptext.js:156 -#: screens/Inventory/shared/Inventory.helptext.js:179 +#: screens/Inventory/shared/Inventory.helptext.js:157 +#: screens/Inventory/shared/Inventory.helptext.js:180 msgid "plugin configuration guide." msgstr "guide de configuration du plugin." @@ -1637,9 +1641,9 @@ msgstr "Créer un nouvel inventaire fédéré" #: components/Lookup/OrganizationLookup.js:141 #: components/Lookup/ProjectLookup.js:129 #: components/Lookup/ProjectLookup.js:159 -#: components/NotificationList/NotificationList.js:181 -#: components/NotificationList/NotificationList.js:218 -#: components/NotificationList/NotificationListItem.js:29 +#: components/NotificationList/NotificationList.js:192 +#: components/NotificationList/NotificationList.js:229 +#: components/NotificationList/NotificationListItem.js:31 #: components/OptionsList/OptionsList.js:48 #: components/PaginatedTable/PaginatedTable.js:76 #: components/PromptDetail/PromptDetail.js:115 @@ -1753,14 +1757,14 @@ msgstr "Créer un nouvel inventaire fédéré" #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:182 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:197 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:238 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:204 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:205 #: screens/Inventory/InventorySources/InventorySourceList.js:212 #: screens/Inventory/InventorySources/InventorySourceListItem.js:60 #: screens/Inventory/shared/ConstructedInventoryForm.js:66 #: screens/Inventory/shared/FederatedInventoryForm.js:56 #: screens/Inventory/shared/InventoryForm.js:50 #: screens/Inventory/shared/InventoryGroupForm.js:33 -#: screens/Inventory/shared/InventorySourceForm.js:133 +#: screens/Inventory/shared/InventorySourceForm.js:139 #: screens/Inventory/shared/SmartInventoryForm.js:46 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:98 #: screens/ManagementJob/ManagementJobList/ManagementJobList.js:91 @@ -1883,7 +1887,7 @@ msgstr "{automatedInstancesCount} depuis {automatedInstancesSinceDateTime}" msgid "No job data available" msgstr "Aucune donnée de tâche disponible." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:309 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:317 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:22 msgid "Source variables" msgstr "Variables sources" @@ -2020,7 +2024,7 @@ msgid "Confirm" msgstr "Confirmer" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:526 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:142 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:143 msgid "Success message body" msgstr "Corps du message de réussite" @@ -2295,7 +2299,7 @@ msgstr "Échec Hôtes" msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?" msgstr "Cet environnement d'exécution est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?" -#: components/NotificationList/NotificationList.js:196 +#: components/NotificationList/NotificationList.js:207 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:137 msgid "IRC" msgstr "IRC" @@ -2499,7 +2503,7 @@ msgstr "Activer la journalisation externe" #: components/Sparkline/Sparkline.js:30 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:51 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:181 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:182 #: screens/Inventory/InventorySources/InventorySourceListItem.js:31 #: screens/Project/ProjectDetail/ProjectDetail.js:134 #: screens/Project/ProjectList/ProjectListItem.js:56 @@ -2539,7 +2543,7 @@ msgstr "Activer le système de journalisation traçant des facts individuellemen msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" msgstr "Les modèles de Job dont les informations d'identification demandent un mot de passe ne peuvent pas être sélectionnés lors de la création ou de la modification de nœuds" -#: screens/Inventory/shared/Inventory.helptext.js:193 +#: screens/Inventory/shared/Inventory.helptext.js:194 msgid "If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on. Note: If this setting is enabled and you provided an empty list, the global instance groups will be applied." msgstr "Empêcher le repli des groupes d'instances : s'il est activé, l'inventaire empêchera l'ajout de tout groupe d'instances d'organisation à la liste des groupes d'instances préférés pour exécuter les modèles de tâches associés. Remarque : si ce paramètre est activé et que vous avez fourni une liste vide, les groupes d'instances globaux seront appliqués." @@ -2676,7 +2680,7 @@ msgstr "N'a pas réussi à dissocier un ou plusieurs hôtes." #: components/Sparkline/Sparkline.js:27 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:48 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:178 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:179 #: screens/Inventory/InventorySources/InventorySourceListItem.js:28 #: screens/Project/ProjectDetail/ProjectDetail.js:131 #: screens/Project/ProjectList/ProjectListItem.js:53 @@ -2763,7 +2767,7 @@ msgstr "Élément OK" msgid "Icon URL" msgstr "Icône URL" -#: screens/Inventory/shared/InventorySourceForm.js:159 +#: screens/Inventory/shared/InventorySourceForm.js:165 msgid "Select the Instance Groups this inventory source sync should run on. If unset, the sync runs on the instance groups of the inventory or its organization." msgstr "Sélectionnez les groupes d’instances sur lesquels la synchronisation de cette source d’inventaire doit s’exécuter. Si aucun n’est défini, la synchronisation s’exécute sur les groupes d’instances de l’inventaire ou de son organisation." @@ -2772,7 +2776,7 @@ msgid "Select the port that Receptor will listen on for incoming connections, e. msgstr "Sélectionnez le port sur lequel le récepteur écoutera les connexions entrantes, par exemple 27199." #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:517 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:133 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:134 msgid "Success message" msgstr "Message de réussite" @@ -2829,7 +2833,7 @@ msgstr "Méthode HTTP" msgid "The execution environment that will be used for jobs inside of this organization. This will be used as a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." msgstr "L'environnement d'exécution qui sera utilisé pour les tâches au sein de cette organisation. Il sera utilisé comme solution de repli lorsqu'aucun environnement d'exécution n'a été explicitement attribué au niveau du projet, du modèle de tâche ou du flux de travail." -#: components/NotificationList/NotificationList.js:190 +#: components/NotificationList/NotificationList.js:201 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:131 msgid "Notification type" msgstr "Type de notification" @@ -2863,7 +2867,7 @@ msgstr "Annuler la suppression d'un lien" msgid "There was an error loading this content. Please reload the page." msgstr "Il y a eu une erreur lors du chargement de ce contenu. Veuillez recharger la page." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:292 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:300 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:135 msgid "Enabled Value" msgstr "Valeur activée" @@ -3176,7 +3180,7 @@ msgstr "<0>Remarque : les instances peuvent être réassociées à ce groupe d' msgid "Timeout minutes" msgstr "Délai d'attente (minutes)" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:353 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:361 msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" msgstr "Cette source d'inventaire est actuellement utilisée par d'autres ressources qui en dépendent. Êtes-vous sûr de vouloir la supprimer ?" @@ -3331,7 +3335,7 @@ msgstr "Moins ou égal à la comparaison." #: screens/Inventory/FederatedInventoryDetail/FederatedInventoryDetail.js:187 #: screens/Inventory/InventoryDetail/InventoryDetail.js:185 #: screens/Inventory/InventoryGroups/InventoryGroupsList.js:102 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:356 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:364 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:67 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:71 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:76 @@ -3354,6 +3358,7 @@ msgstr "Moins ou égal à la comparaison." msgid "Delete" msgstr "Supprimer" +#: components/NotificationList/NotificationListItem.js:105 #: components/StatusLabel/StatusLabel.js:53 #: screens/Job/JobOutput/shared/HostStatusBar.js:43 msgid "Changed" @@ -3485,7 +3490,7 @@ msgstr "GitHub Team" #: screens/Inventory/InventoryDetail/InventoryDetail.js:157 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:43 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:78 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:317 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:325 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:133 #: screens/Job/JobDetail/JobDetail.js:578 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:425 @@ -3859,7 +3864,7 @@ msgstr "Environnement d'exécution par défaut" #: components/PromptDetail/PromptJobTemplateDetail.js:122 #: components/PromptDetail/PromptJobTemplateDetail.js:130 #: components/TemplateList/TemplateListItem.js:263 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:245 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:246 #: screens/Job/JobDetail/JobDetail.js:180 #: screens/Job/JobDetail/JobDetail.js:214 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:216 @@ -3980,7 +3985,7 @@ msgstr "Vue topologique" msgid "Syncing" msgstr "Synchronisation" -#: screens/Inventory/shared/InventorySourceForm.js:192 +#: screens/Inventory/shared/InventorySourceForm.js:198 msgid "Source details" msgstr "Détails de la source" @@ -4072,7 +4077,7 @@ msgstr "Supprimer les informations d’identification" #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:56 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:61 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:100 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:332 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:340 #: screens/Inventory/InventorySources/InventorySourceListItem.js:105 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:148 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:450 @@ -4154,7 +4159,7 @@ msgstr "Aucun délai d'attente spécifié" msgid "On Timeout" msgstr "En cas d'expiration" -#: screens/Inventory/shared/Inventory.helptext.js:196 +#: screens/Inventory/shared/Inventory.helptext.js:197 msgid "Prevent Instance Group Fallback: If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on." msgstr "Empêcher le repli des groupes d'instances : s'il est activé, l'inventaire empêchera l'ajout de tout groupe d'instances d'organisation à la liste des groupes d'instances préférés pour exécuter les modèles de tâches associés." @@ -4496,7 +4501,7 @@ msgstr "chargement-contenu-en-cours" msgid "Mon" msgstr "Lun." -#: screens/Organization/Organization.js:239 +#: screens/Organization/Organization.js:240 msgid "View Organization Details" msgstr "Voir les détails de l'organisation" @@ -4509,7 +4514,7 @@ msgstr "Voir les détails de l'organisation" #: components/JobList/JobList.js:345 #: components/LaunchButton/LaunchButton.js:248 #: components/LaunchPrompt/LaunchPrompt.js:99 -#: components/NotificationList/NotificationList.js:246 +#: components/NotificationList/NotificationList.js:259 #: components/PaginatedTable/ToolbarDeleteButton.js:148 #: components/RelatedTemplateList/RelatedTemplateList.js:254 #: components/ResourceAccessList/ResourceAccessList.js:249 @@ -4553,7 +4558,7 @@ msgstr "Voir les détails de l'organisation" #: screens/Inventory/InventoryHosts/InventoryHostList.js:204 #: screens/Inventory/InventoryList/InventoryList.js:300 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:270 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:363 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:371 #: screens/Inventory/InventorySources/InventorySourceList.js:240 #: screens/Inventory/InventorySources/InventorySourceList.js:252 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:155 @@ -4705,11 +4710,11 @@ msgid "Notification Templates" msgstr "Modèles de notification" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:508 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:124 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:125 msgid "Start message body" msgstr "Démarrer le corps du message" -#: screens/Inventory/shared/Inventory.helptext.js:128 +#: screens/Inventory/shared/Inventory.helptext.js:129 msgid "Branch to use on inventory sync. Project default used if blank. Only allowed if project allow_override field is set to true." msgstr "Branche à utiliser pour la synchronisation de l'inventaire. La valeur par défaut du projet est utilisée si elle est vide. Cette option n'est autorisée que si le champ allow_override du projet est défini sur vrai." @@ -4818,7 +4823,7 @@ msgid "Failed to delete one or more user tokens." msgstr "N'a pas réussi à supprimer un ou plusieurs jetons d'utilisateur." #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:553 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:169 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:188 msgid "Workflow approved message" msgstr "Message de flux de travail approuvé" @@ -4999,12 +5004,12 @@ msgstr "En cas d'expiration" msgid "Create New Team" msgstr "Créer une nouvelle équipe" -#: screens/Inventory/shared/Inventory.helptext.js:148 +#: screens/Inventory/shared/Inventory.helptext.js:149 msgid "in the documentation and the" msgstr "dans la documentation et les" #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:152 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:206 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:207 #: screens/Project/ProjectDetail/ProjectDetail.js:160 msgid "Last Job Status" msgstr "Statut du dernier Job" @@ -5336,7 +5341,7 @@ msgid "Preferred Theme" msgstr "Thème préféré" #: screens/Instances/Shared/InstanceForm.js:31 -#: screens/Inventory/shared/InventorySourceForm.js:92 +#: screens/Inventory/shared/InventorySourceForm.js:98 #: screens/Project/shared/ProjectForm.js:121 msgid "Set a value for this field" msgstr "Définir une valeur pour ce champ" @@ -5469,7 +5474,7 @@ msgid "Download Bundle" msgstr "Téléchargement du Bundle" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:577 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:187 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:206 msgid "Workflow denied message" msgstr "Message de flux de travail refusé" @@ -5522,7 +5527,7 @@ msgstr "Type de nœud" msgid "View Credential Details" msgstr "Afficher les détails des informations d'identification" -#: components/NotificationList/NotificationList.js:177 +#: components/NotificationList/NotificationList.js:188 #: routeConfig.js:140 #: screens/Inventory/Inventories.js:119 #: screens/Inventory/InventorySource/InventorySource.js:101 @@ -5742,7 +5747,7 @@ msgstr "Notification test" #: screens/Credential/CredentialDetail/CredentialDetail.js:262 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:234 #: screens/Inventory/InventoryDetail/InventoryDetail.js:122 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:305 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:313 #: screens/Project/ProjectDetail/ProjectDetail.js:333 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:357 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:193 @@ -5791,7 +5796,7 @@ msgstr "branche du contrôle de la source" #: screens/Instances/InstanceDetail/InstanceDetail.js:248 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:225 #: screens/Inventory/InventoryDetail/InventoryDetail.js:107 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:239 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:240 #: screens/Organization/OrganizationDetail/OrganizationDetail.js:116 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:418 #: util/getRelatedResourceDeleteDetails.js:282 @@ -6121,7 +6126,7 @@ msgid "View YAML examples at" msgstr "Voir des exemples YAML sur" #: components/PromptDetail/PromptInventorySourceDetail.js:35 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:142 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:143 msgid "Overwrite local groups and hosts from remote inventory source" msgstr "Remplacer les groupes locaux et les hôtes de la source d'inventaire distante." @@ -6130,7 +6135,7 @@ msgid "Resource deleted" msgstr "Ressource supprimée" #: screens/Inventory/shared/Inventory.helptext.js:54 -#: screens/Inventory/shared/Inventory.helptext.js:187 +#: screens/Inventory/shared/Inventory.helptext.js:188 msgid "YAML:" msgstr "YAML :" @@ -6217,7 +6222,7 @@ msgid "Initiated By" msgstr "Initié par" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:499 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:115 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:116 msgid "Start message" msgstr "Message de départ" @@ -6281,7 +6286,7 @@ msgstr "Basculer l'instance" msgid "Back to Inventories" msgstr "Retour aux inventaires" -#: screens/Inventory/shared/Inventory.helptext.js:113 +#: screens/Inventory/shared/Inventory.helptext.js:114 msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format." msgstr "Après chaque mise à jour du projet où la révision SCM change, actualisez l'inventaire à partir de la source sélectionnée avant d'exécuter les tâches. Ceci est destiné au contenu statique, comme le format de fichier .ini d'inventaire Ansible." @@ -6375,7 +6380,7 @@ msgstr "Instance" msgid "Including File" msgstr "Ajout de fichier" -#: screens/Inventory/shared/Inventory.helptext.js:81 +#: screens/Inventory/shared/Inventory.helptext.js:82 msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." msgstr "Si cette case est cochée, tous les hôtes et groupes qui étaient présents auparavant sur la source externe mais qui ont maintenant été supprimés seront retirés de l'inventaire. Les hôtes et groupes qui n'étaient pas gérés par la source d'inventaire seront promus au prochain groupe créé manuellement ou, s'il n'existe aucun groupe créé manuellement pour les y promouvoir, ils seront laissés dans le groupe « all » par défaut de l'inventaire." @@ -6412,7 +6417,7 @@ msgstr "Onglet Détails" #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:100 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:72 #: screens/InstanceGroup/shared/ContainerGroupForm.js:50 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:298 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:306 #: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:39 #: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:38 #: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:38 @@ -6423,7 +6428,7 @@ msgstr "Onglet Détails" #: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:117 #: screens/Inventory/shared/InventorySourceSubForms/TerraformSubForm.js:38 #: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:39 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:39 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:44 msgid "Credential" msgstr "Information d’identification" @@ -6432,7 +6437,7 @@ msgid "First node" msgstr "Premier nœud" #: components/PromptDetail/PromptInventorySourceDetail.js:97 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:273 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:281 msgid "{update_cache_timeout, plural, one {# second} other {# seconds}}" msgstr "{update_cache_timeout, plural, one {# seconde} other {# secondes}}" @@ -6496,7 +6501,7 @@ msgstr "Voir les paramètres des Jobs" #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:122 #: screens/Instances/InstanceDetail/InstanceDetail.js:349 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:96 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:329 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:337 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:145 #: screens/Project/ProjectDetail/ProjectDetail.js:340 #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:229 @@ -6550,7 +6555,7 @@ msgstr "Utilisateur normal" msgid "host-name-{0}" msgstr "nom-hôte-{0}" -#: components/NotificationList/NotificationList.js:198 +#: components/NotificationList/NotificationList.js:209 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:139 msgid "Pagerduty" msgstr "Pagerduty" @@ -6609,7 +6614,7 @@ msgstr "Nombre minimum d'instances qui seront automatiquement attribuées à ce msgid "Launch | {0}" msgstr "Lancer | {0}" -#: components/NotificationList/NotificationListItem.js:79 +#: components/NotificationList/NotificationListItem.js:84 msgid "Toggle notification success" msgstr "Succès de la notification de basculement" @@ -6702,7 +6707,7 @@ msgstr "Activer les tâches parallèles" msgid "Smart Inventory" msgstr "Inventaire smart" -#: components/NotificationList/NotificationList.js:200 +#: components/NotificationList/NotificationList.js:211 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:141 msgid "Slack" msgstr "Slack" @@ -6738,7 +6743,7 @@ msgstr "Ajouter" msgid "System administrators have unrestricted access to all resources." msgstr "Les administrateurs système ont un accès illimité à toutes les ressources." -#: components/NotificationList/NotificationListItem.js:86 +#: components/NotificationList/NotificationListItem.js:91 msgid "Failure" msgstr "Échec" @@ -6883,7 +6888,7 @@ msgstr "Suivez" #: components/Lookup/MultiCredentialsLookup.js:205 #: components/Lookup/OrganizationLookup.js:135 #: components/Lookup/ProjectLookup.js:149 -#: components/NotificationList/NotificationList.js:210 +#: components/NotificationList/NotificationList.js:221 #: components/RelatedTemplateList/RelatedTemplateList.js:183 #: components/Schedule/ScheduleList/ScheduleList.js:205 #: components/TemplateList/TemplateList.js:235 @@ -7095,7 +7100,7 @@ msgstr "Ce champ doit être un nombre et avoir une valeur supérieure à {min}" msgid "All" msgstr "Tous" -#: screens/Inventory/shared/Inventory.helptext.js:177 +#: screens/Inventory/shared/Inventory.helptext.js:178 msgid "constructed inventory" msgstr "inventaire construit" @@ -7109,7 +7114,7 @@ msgid "Confirm Delete" msgstr "Confirmer Effacer" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:625 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:223 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:242 msgid "Workflow timed out message" msgstr "Message d'expiration de flux de travail" @@ -7205,7 +7210,7 @@ msgstr "Jamais" msgid "Organization Name" msgstr "Nom de l'organisation" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:282 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:290 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:149 msgid "Host Filter" msgstr "Filtre d'hôte" @@ -7257,7 +7262,7 @@ msgstr "{pluralizedItemName} Liste" msgid "Please add survey questions." msgstr "Veuillez ajouter des questions d'enquête." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:287 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:295 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:121 msgid "Enabled Variable" msgstr "Variable activée" @@ -7369,7 +7374,7 @@ msgstr "Sync" #: components/Lookup/ApplicationLookup.js:128 #: components/Lookup/HostFilterLookup.js:439 #: components/Lookup/HostListItem.js:10 -#: components/NotificationList/NotificationList.js:186 +#: components/NotificationList/NotificationList.js:197 #: components/PromptDetail/PromptDetail.js:120 #: components/Schedule/ScheduleDetail/ScheduleDetail.js:337 #: components/Schedule/ScheduleList/ScheduleList.js:197 @@ -7404,13 +7409,13 @@ msgstr "Sync" #: screens/Inventory/InventoryHosts/InventoryHostList.js:125 #: screens/Inventory/InventoryHosts/InventoryHostList.js:141 #: screens/Inventory/InventoryList/InventoryList.js:215 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:221 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:222 #: screens/Inventory/shared/ConstructedInventoryForm.js:74 #: screens/Inventory/shared/ConstructedInventoryHint.js:63 #: screens/Inventory/shared/FederatedInventoryForm.js:64 #: screens/Inventory/shared/InventoryForm.js:58 #: screens/Inventory/shared/InventoryGroupForm.js:41 -#: screens/Inventory/shared/InventorySourceForm.js:141 +#: screens/Inventory/shared/InventorySourceForm.js:147 #: screens/Inventory/shared/SmartInventoryForm.js:54 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:104 #: screens/Job/JobOutput/HostEventModal.js:118 @@ -7555,7 +7560,7 @@ msgstr "Connectez-vous à GitHub Enterprise" #: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130 #: screens/Inventory/shared/InventorySourceSubForms/TerraformSubForm.js:46 #: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:47 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:47 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:52 #: screens/Inventory/shared/SmartInventoryForm.js:66 #: screens/NotificationTemplate/shared/NotificationTemplateForm.js:29 #: screens/NotificationTemplate/shared/NotificationTemplateForm.js:66 @@ -7588,7 +7593,7 @@ msgstr "Connectez-vous avec SAML {samlIDP}" msgid "Browse" msgstr "Navigation" -#: components/NotificationList/NotificationList.js:193 +#: components/NotificationList/NotificationList.js:204 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:134 #: screens/User/shared/UserForm.js:104 #: screens/User/UserDetail/UserDetail.js:71 @@ -8011,7 +8016,7 @@ msgid "Sat" msgstr "Sam." #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:46 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:176 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:177 #: screens/Inventory/InventorySources/InventorySourceListItem.js:26 #: screens/Project/ProjectDetail/ProjectDetail.js:129 #: screens/Project/ProjectList/ProjectListItem.js:51 @@ -8048,7 +8053,7 @@ msgid "Specify HTTP Headers in JSON format. Refer to\n" msgstr "Spécifiez les en-têtes HTTP au format JSON. Reportez-vous à\n" " la documentation d'Ansible Controller pour un exemple de syntaxe." -#: components/NotificationList/NotificationList.js:199 +#: components/NotificationList/NotificationList.js:210 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:140 msgid "Rocket.Chat" msgstr "Rocket.Chat" @@ -8106,7 +8111,7 @@ msgstr "Régler le zoom à 100% et centrer le graphique" msgid "Revert all to default" msgstr "Revenir aux valeurs par défaut" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:255 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:256 #: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:135 msgid "Inventory file" msgstr "Fichier d'inventaire" @@ -8183,6 +8188,11 @@ msgstr "Empêcher le repli du groupe d'instances" msgid "Maximum number of forks to allow across all jobs running concurrently on this group. Zero means no limit will be enforced." msgstr "Nombre maximum de fourches pour permettre à tous les travaux exécutés simultanément sur ce groupe. Zéro signifie qu'aucune limite ne sera appliquée." +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:263 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:56 +msgid "Collection" +msgstr "Collection" + #: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:207 msgid "Failed to delete one or more credential types." msgstr "N'a pas réussi à supprimer un ou plusieurs types d’identifiants." @@ -8197,7 +8207,7 @@ msgstr "Régions" #: components/WorkflowOutputNavigation/WorkflowOutputNavigation.js:148 msgid "Workflow Jobs ({total})" -msgstr "" +msgstr "Jobs de flux de travail ({total})" #: components/Search/AdvancedSearch.js:315 msgid "Set type disabled for related search field fuzzy searches" @@ -8233,11 +8243,11 @@ msgstr "Aucun hôte restant" msgid "ID of the dashboard (optional)" msgstr "ID du tableau de bord (facultatif)" -#: screens/Inventory/shared/Inventory.helptext.js:127 +#: screens/Inventory/shared/Inventory.helptext.js:128 msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'" msgstr "Récupérer l'état activé à partir de la dictée donnée des variables hôtes. La variable activée peut être spécifiée en utilisant la notation par points, par exemple : 'foo.bar'" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:339 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:347 #: screens/Inventory/InventorySources/InventorySourceListItem.js:88 msgid "Inventory Source Sync Error" msgstr "Erreur de synchronisation de la source de l'inventaire" @@ -8264,14 +8274,14 @@ msgstr "" #: components/VerbositySelectField/VerbositySelectField.js:35 #: components/VerbositySelectField/VerbositySelectField.js:45 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:217 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:261 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:269 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:47 #: screens/Job/JobDetail/JobDetail.js:369 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:257 msgid "Verbosity" msgstr "Verbosité" -#: components/NotificationList/NotificationList.js:197 +#: components/NotificationList/NotificationList.js:208 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:138 msgid "Mattermost" msgstr "Mattermost" @@ -8498,6 +8508,10 @@ msgstr "Retour à Approbation des flux de travail" msgid "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Controller documentation for example syntax." msgstr "Entrez les injecteurs avec la syntaxe JSON ou YAML. Consultez la documentation sur le contrôleur Ansible pour avoir un exemple de syntaxe." +#: components/NotificationList/NotificationListItem.js:112 +msgid "Toggle notification changed" +msgstr "Modification de la notification de basculement" + #: components/Workflow/WorkflowLegend.js:122 #: screens/Job/JobOutput/JobOutputSearch.js:140 msgid "Warning" @@ -8566,7 +8580,7 @@ msgid "Prompt for instance groups on launch." msgstr "Demander les groupes d'instances au lancement." #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:613 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:214 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:233 msgid "Workflow pending message body" msgstr "Corps du message d'exécution de flux de travail" @@ -8608,7 +8622,7 @@ msgstr "IRC Nick" msgid "Expires on" msgstr "Expire le" -#: screens/Inventory/shared/Inventory.helptext.js:98 +#: screens/Inventory/shared/Inventory.helptext.js:99 msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." msgstr "Chaque fois qu'une tâche est exécutée à l'aide de cet inventaire, actualisez l'inventaire à partir de la source sélectionnée avant d'exécuter les tâches de la tâche." @@ -8733,7 +8747,7 @@ msgstr "Activer le webhook pour ce modèle." msgid "On date" msgstr "À la date du" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:340 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:348 #: screens/Inventory/InventorySources/InventorySourceListItem.js:90 msgid "Cancel Inventory Source Sync" msgstr "Annuler Sync Source d’inventaire" @@ -8810,7 +8824,7 @@ msgid "Greater than comparison." msgstr "Supérieur à la comparaison." #: components/PromptDetail/PromptInventorySourceDetail.js:40 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:148 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:149 msgid "Overwrite local variables from remote inventory source" msgstr "Remplacer les variables locales de la source d'inventaire distante." @@ -8882,7 +8896,7 @@ msgstr "N'a pas réussi à supprimer un ou plusieurs utilisateurs." msgid "On Success" msgstr "En cas de succès" -#: screens/Inventory/shared/Inventory.helptext.js:192 +#: screens/Inventory/shared/Inventory.helptext.js:193 msgid "The inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." msgstr "Le fichier d'inventaire à synchroniser par cette source. Vous pouvez sélectionner dans la liste déroulante ou saisir un fichier dans l'entrée." @@ -8947,7 +8961,7 @@ msgstr "Non configuré" msgid "Workflow Job" msgstr "Job de flux de travail" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:82 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:83 msgid "Use custom messages to change the content of\n" " notifications sent when a job starts, succeeds, or fails. Use\n" " curly braces to access information about the job:" @@ -9151,7 +9165,7 @@ msgid "Go to previous page" msgstr "Obtenir la page précédente" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:565 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:178 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:197 msgid "Workflow approved message body" msgstr "Corps de message de flux de travail approuvé" @@ -9168,7 +9182,7 @@ msgid "required" msgstr "requis" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:589 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:196 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:215 msgid "Workflow denied message body" msgstr "Corps de message de flux de travail refusé" @@ -9270,7 +9284,7 @@ msgstr "docs.ansible.com" msgid "Edit Schedule" msgstr "Modifier la programmation" -#: components/NotificationList/NotificationList.js:250 +#: components/NotificationList/NotificationList.js:263 msgid "Failed to toggle notification." msgstr "N'a pas réussi à basculer la notification." @@ -9359,6 +9373,10 @@ msgstr "Enregistrer" msgid "Click to create a new link to this node." msgstr "Cliquez pour créer un nouveau lien vers ce nœud." +#: screens/Inventory/shared/Inventory.helptext.js:78 +msgid "Select the Ansible collection providing the inventory plugin used to sync from vCenter. The community.vmware collection is deprecated in favor of the newer vmware.vmware collection. The selection is applied via the \"plugin\" key in the source variables; when the key is absent, the default collection is used." +msgstr "Sélectionnez la collection Ansible fournissant le plugin d'inventaire utilisé pour la synchronisation depuis vCenter. La collection community.vmware est obsolète au profit de la collection plus récente vmware.vmware. La sélection est appliquée via la clé \"plugin\" dans les variables sources ; lorsque la clé est absente, la collection par défaut est utilisée." + #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:167 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:136 msgid "Operator" @@ -9476,7 +9494,7 @@ msgid "Deprovisioning" msgstr "Déprovisionnement" #: components/DetailList/LaunchedByDetail.js:27 -#: components/NotificationList/NotificationList.js:202 +#: components/NotificationList/NotificationList.js:213 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:143 msgid "Webhook" msgstr "Webhook" @@ -9517,7 +9535,7 @@ msgstr "N'a pas réussi à supprimer l’identifiant." msgid "Private key passphrase" msgstr "Phrase de passe pour la clé privée" -#: components/NotificationList/NotificationListItem.js:58 +#: components/NotificationList/NotificationListItem.js:63 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:47 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:53 msgid "Start" @@ -9537,7 +9555,7 @@ msgstr "Un inventaire doit être sélectionné" #: components/PromptDetail/PromptProjectDetail.js:100 #: components/PromptDetail/PromptWFJobTemplateDetail.js:81 #: components/Schedule/ScheduleDetail/ScheduleDetail.js:477 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:266 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:274 #: screens/Job/JobDetail/JobDetail.js:345 #: screens/Project/ProjectDetail/ProjectDetail.js:229 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 @@ -9591,7 +9609,7 @@ msgstr "Red Hat Insights" msgid "View GitHub Settings" msgstr "Voir les paramètres de GitHub" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:257 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:258 msgid "/ (project root)" msgstr "/ (project root)" @@ -9620,7 +9638,7 @@ msgstr "Nombre de processus parallèles ou simultanés à utiliser lors de l'ex msgid "View all Workflow Approvals." msgstr "Voir toutes les approbations de flux de travail." -#: screens/Inventory/shared/Inventory.helptext.js:92 +#: screens/Inventory/shared/Inventory.helptext.js:93 msgid "When not checked, a merge will be performed, combining local variables with those found on the external source." msgstr "Lorsqu'elle n'est pas cochée, une fusion sera effectuée, combinant les variables locales avec celles trouvées sur la source externe." @@ -9714,7 +9732,7 @@ msgstr "Basculer les outils" #: screens/Inventory/InventoryList/InventoryList.js:211 #: screens/Inventory/InventoryList/InventoryList.js:241 #: screens/Inventory/InventoryList/InventoryListItem.js:121 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:225 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:226 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:107 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:153 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:163 @@ -9765,7 +9783,7 @@ msgid "Test External Credential" msgstr "Tester les informations d'identification externes" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:601 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:205 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:224 msgid "Workflow pending message" msgstr "Message de flux de travail en attente" @@ -9948,7 +9966,7 @@ msgstr "Navigation" msgid "If enabled, control nodes will peer to this instance automatically. If disabled, instance will be connected only to associated peers." msgstr "Si activé, les nœuds de contrôle apparieront automatiquement à cette instance. Si elle est désactivée, l'instance sera connectée uniquement aux pairs associés." -#: screens/Inventory/shared/Inventory.helptext.js:120 +#: screens/Inventory/shared/Inventory.helptext.js:121 msgid "and click on Update Revision on Launch" msgstr "et cliquez sur Mise à jour de la révision au lancement" @@ -9967,6 +9985,10 @@ msgstr "Sélectionnez un projet avant de modifier l'environnement d'exécution." msgid "Order" msgstr "Commande" +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:179 +msgid "Changed message body" +msgstr "Corps du message de modification" + #: components/Schedule/Schedule.js:65 msgid "Back to Schedules" msgstr "Retour aux horaires" @@ -10085,7 +10107,7 @@ msgstr "Créer un nouveau groupe de conteneurs" msgid "Bitbucket Data Center" msgstr "Centre de données Bitbucket" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:367 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:375 msgid "Failed to delete inventory source {name}." msgstr "Impossible de supprimer la source d'inventaire {name}." @@ -10151,7 +10173,7 @@ msgstr "Modifier les détails" msgid "Deleted" msgstr "Supprimé" -#: screens/Inventory/shared/Inventory.helptext.js:129 +#: screens/Inventory/shared/Inventory.helptext.js:130 msgid "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import." msgstr "Ce champ est ignoré à moins qu'une variable activée ne soit définie. Si la variable activée correspond à cette valeur, l'hôte sera activé lors de l'importation." @@ -10250,11 +10272,11 @@ msgstr "Module" msgid "Confirm revert all" msgstr "Confirmer annuler tout" -#: screens/Inventory/shared/Inventory.helptext.js:89 +#: screens/Inventory/shared/Inventory.helptext.js:90 msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source." msgstr "Si cette case est cochée, toutes les variables pour les groupes enfants et les hôtes seront supprimées et remplacées par celles trouvées sur la source externe." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:350 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:358 msgid "Delete inventory source" msgstr "Supprimer la source de l'inventaire" @@ -10325,7 +10347,7 @@ msgstr "Temps écoulé (en secondes) pendant lequel la tâche s'est exécutée." msgid "GitLab" msgstr "GitLab" -#: components/NotificationList/NotificationListItem.js:93 +#: components/NotificationList/NotificationListItem.js:98 msgid "Toggle notification failure" msgstr "Échec de la notification de basculement" @@ -10426,8 +10448,8 @@ msgstr "Ce champ doit comporter au moins {0} caractères" #: components/JobList/JobListItem.js:197 #: components/PromptDetail/PromptInventorySourceDetail.js:78 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:222 -#: screens/Inventory/shared/InventorySourceForm.js:162 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:223 +#: screens/Inventory/shared/InventorySourceForm.js:168 #: screens/Job/JobDetail/JobDetail.js:180 #: screens/Job/JobDetail/JobDetail.js:332 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:93 @@ -10511,7 +10533,7 @@ msgstr "Sélection de la clé" msgid "Pass extra command line changes. There are two ansible command line parameters: " msgstr "Transmettez des modifications supplémentaires de ligne de commande. Il existe deux paramètres de ligne de commande ansible : " -#: screens/Inventory/shared/Inventory.helptext.js:84 +#: screens/Inventory/shared/Inventory.helptext.js:85 msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process." msgstr "Si cette case n'est pas cochée, les hôtes enfants locaux et les groupes introuvables sur la source externe ne seront pas touchés par le processus de mise à jour de l'inventaire." @@ -10554,7 +10576,7 @@ msgid "Specify a notification color. Acceptable colors are hex\n" msgstr "Spécifiez une couleur de notification. Les couleurs acceptables sont un code\n" " de couleur hexadécimal (exemple : #3af ou #789abc)." -#: components/NotificationList/NotificationList.js:201 +#: components/NotificationList/NotificationList.js:212 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:142 msgid "Twilio" msgstr "Twilio" @@ -10594,7 +10616,7 @@ msgid "updated" msgstr "actualisé" #: screens/Inventory/AdvancedInventoryHostDetail/AdvancedInventoryHostDetail.js:50 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:320 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:328 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:135 #: screens/Project/ProjectList/ProjectListItem.js:274 #: screens/TopologyView/Tooltip.js:347 @@ -10795,7 +10817,7 @@ msgid "Successful jobs" msgstr "Tâches ayant réussi" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:535 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:151 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:152 msgid "Error message" msgstr "Message d'erreur" @@ -10924,7 +10946,7 @@ msgstr "Projet inconnu" msgid "Preconditions for running this node when there are multiple parents. Refer to the" msgstr "Conditions préalables à l'exécution de ce nœud lorsqu'il y a plusieurs parents. Reportez-vous à " -#: screens/Inventory/shared/Inventory.helptext.js:140 +#: screens/Inventory/shared/Inventory.helptext.js:141 msgid "Variables used to configure the inventory source. For a detailed description of how to configure this plugin, see" msgstr "Variables utilisées pour configurer la source d'inventaire. Pour une description détaillée de la configuration de ce plugin, voir" @@ -10934,7 +10956,7 @@ msgstr "Google Compute Engine" #: components/Sparkline/Sparkline.js:34 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:55 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:185 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:186 #: screens/Inventory/InventorySources/InventorySourceListItem.js:35 #: screens/Project/ProjectDetail/ProjectDetail.js:138 #: screens/Project/ProjectList/ProjectListItem.js:60 @@ -10956,7 +10978,7 @@ msgstr "Tous les types de tâche" msgid "GitHub Enterprise Organization" msgstr "Organisation GitHub Enterprise" -#: screens/Inventory/shared/InventorySourceForm.js:170 +#: screens/Inventory/shared/InventorySourceForm.js:176 msgid "Choose a source" msgstr "Choisissez une source" @@ -10990,7 +11012,7 @@ msgstr "Sélection par simple pression d'une touche" msgid "You have automated against more hosts than your subscription allows." msgstr "Vous avez automatisé contre plus d'hôtes que votre abonnement ne le permet." -#: screens/Inventory/shared/Inventory.helptext.js:130 +#: screens/Inventory/shared/Inventory.helptext.js:131 msgid "Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied." msgstr "Expression régulière où seuls les noms d'hôtes correspondants seront importés. Le filtre est appliqué comme une étape de post-traitement après l'application de tout filtre de plugin d'inventaire." @@ -11116,7 +11138,7 @@ msgstr "LDAP" msgid "Workflow Template" msgstr "Modèle de flux de travail" -#: components/NotificationList/NotificationListItem.js:40 +#: components/NotificationList/NotificationListItem.js:45 #: components/Workflow/WorkflowLegend.js:118 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:76 msgid "Approval" @@ -11278,7 +11300,7 @@ msgstr "Échec du provisionnement" msgid "Whether the approval node is automatically approved or denied when the timeout expires." msgstr "Indique si le nœud d'approbation est automatiquement approuvé ou refusé à l'expiration du délai." -#: screens/Inventory/shared/Inventory.helptext.js:125 +#: screens/Inventory/shared/Inventory.helptext.js:126 msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed." msgstr "Temps en secondes pour considérer qu'une synchronisation d'inventaire est à jour. Pendant les exécutions de tâches et les rappels, le système de tâches évaluera l'horodatage de la dernière synchronisation. S'il est plus ancien que le délai d'expiration du cache, il n'est pas considéré comme actuel et une nouvelle synchronisation de l'inventaire sera effectuée." @@ -11292,7 +11314,7 @@ msgstr "Expiration du jeton d'accès" #: components/WorkflowOutputNavigation/WorkflowOutputNavigation.js:147 msgid "Workflow Job {currentPosition}/{total}" -msgstr "" +msgstr "Job de flux de travail {currentPosition}/{total}" #: components/Schedule/ScheduleDetail/FrequencyDetails.js:69 msgid "{interval, plural, one {# minute} other {# minutes}}" @@ -11436,7 +11458,7 @@ msgstr "ID du système Insights" msgid "Authorization Code Expiration" msgstr "Expiration du code d'autorisation" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:69 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:70 msgid "Customize messages…" msgstr "Personnaliser les messages..." @@ -11662,7 +11684,7 @@ msgid "{interval, plural, one {# week} other {# weeks}}" msgstr "{interval, plural, one {# semaine} other {# semaines}}" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:544 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:160 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:161 msgid "Error message body" msgstr "Corps du message d'erreur" @@ -11705,7 +11727,7 @@ msgstr "Nœuds gérés" #: components/Lookup/MultiCredentialsLookup.js:201 #: components/Lookup/OrganizationLookup.js:131 #: components/Lookup/ProjectLookup.js:153 -#: components/NotificationList/NotificationList.js:206 +#: components/NotificationList/NotificationList.js:217 #: components/RelatedTemplateList/RelatedTemplateList.js:179 #: components/Schedule/ScheduleList/ScheduleList.js:201 #: components/TemplateList/TemplateList.js:231 @@ -11821,7 +11843,7 @@ msgstr "Erreur lors de la suppression des jetons" msgid "Select period" msgstr "Sélectionnez une période" -#: components/NotificationList/NotificationListItem.js:65 +#: components/NotificationList/NotificationListItem.js:70 msgid "Toggle notification start" msgstr "Début de la notification de basculement" @@ -11869,7 +11891,7 @@ msgid "This field must be a number and have a value between {min} and {max}" msgstr "Ce champ doit être un nombre et avoir une valeur comprise entre {min} et {max}" #: components/PromptDetail/PromptInventorySourceDetail.js:45 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:154 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:155 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:93 msgid "Update on launch" msgstr "Mettre à jour au lancement" @@ -11886,7 +11908,7 @@ msgstr "Ajoutez des hôtes au groupe en fonction des conditions Jinja2." msgid "Copy Template" msgstr "Copier le modèle" -#: components/NotificationList/NotificationListItem.js:51 +#: components/NotificationList/NotificationListItem.js:56 msgid "Toggle notification approvals" msgstr "Basculer les approbations de notification" @@ -11914,7 +11936,7 @@ msgstr "L'année dernière" msgid "Week" msgstr "Semaine" -#: components/NotificationList/NotificationListItem.js:72 +#: components/NotificationList/NotificationListItem.js:77 #: components/StatusLabel/StatusLabel.js:39 msgid "Success" msgstr "Réussite" diff --git a/awx/ui/src/locales/hi/messages.js b/awx/ui/src/locales/hi/messages.js index a3076311..d1cab22d 100644 --- a/awx/ui/src/locales/hi/messages.js +++ b/awx/ui/src/locales/hi/messages.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"--iDlT\":[\"प्रोजेक्ट हटाएं\"],\"-0AkQd\":[[\"forks\",\"plural\",{\"one\":[\"#\",\" फ़ोर्क\"],\"other\":[\"#\",\" फ़ोर्क\"]}]],\"-0B-ue\":[\"प्रोजेक्ट्स\"],\"-5kO8P\":[\"शनिवार\"],\"-6EcFR\":[\"संपादित करने के लिए Enter दबाएं। संपादन रोकने के लिए ESC दबाएं।\"],\"-7M7WW\":[\"डिफ़ॉल्ट मान टॉगल करने के लिए क्लिक करें\"],\"-7VWRl\":[\"RAM \",[\"0\"]],\"-8WGoO\":[\"प्लगइन पैरामीटर आवश्यक है।\"],\"-9d7Ol\":[\"Pagerduty सबडोमेन\"],\"-9y9jy\":[\"हेल्थ चेक चल रहा है\"],\"-9yY_Q\":[\"इन्वेंटरी कॉपी करने में विफल।\"],\"-AZQnp\":[\"SAML\"],\"-FWz2-\":[\"पिछला स्क्रॉल करें\"],\"-FjWgX\":[\"गुरु\"],\"-GMFSa\":[\"प्रोजेक्ट कॉपी करने में विफल।\"],\"-GOG9X\":[\"विवरण छिपाएं\"],\"-NI2UI\":[\"इस जॉब टेम्पलेट द्वारा किए गए कार्य को निर्दिष्ट संख्या में जॉब स्लाइस में विभाजित करें, प्रत्येक इन्वेंटरी के एक हिस्से के विरुद्ध समान कार्य चलाता है।\"],\"-NezOR\":[\"यह क्रेडेंशियल प्रकार वर्तमान में कुछ क्रेडेंशियल्स द्वारा उपयोग किया जा रहा है और इसे हटाया नहीं जा सकता\"],\"-OpL2l\":[\"मूल नोड की अंतिम स्थिति की परवाह किए बिना निष्पादित करें।\"],\"-PyL32\":[\"क्या आप वाकई इस नोड को हटाना चाहते हैं?\"],\"-RAMET\":[\"इस लिंक को संपादित करें\"],\"-SAqJ3\":[\"क्रेडेंशियल कॉपी करने में विफल।\"],\"-Uepfb\":[\"नियंत्रण\"],\"-b3ghh\":[\"विशेषाधिकार वृद्धि\"],\"-cWxFz\":[\"यह सत्यापित करने के लिए सामग्री साइनिंग सक्षम करें कि प्रोजेक्ट के सिंक होने पर सामग्री सुरक्षित रही है। यदि सामग्री के साथ छेड़छाड़ की गई है, तो जॉब नहीं चलेगा।\"],\"-hh3vo\":[\"अंतिम जॉब अपडेट लोड करने में असमर्थ\"],\"-li8PK\":[\"सदस्यता उपयोग\"],\"-nb9qF\":[\"(लॉन्च पर संकेत)\"],\"-ohrPc\":[\"लुकअप टाइपअहेड\"],\"-rfqXD\":[\"सर्वेक्षण सक्षम\"],\"-uOi7U\":[\"बंडल डाउनलोड करने के लिए क्लिक करें\"],\"-vAlj5\":[\"जॉब लॉन्च करने में विफल।\"],\"-z0Ubz\":[\"लागू करने के लिए भूमिकाएं चुनें\"],\"-zW4qj\":[\"चेकआउट करने के लिए ब्रांच। ब्रांच के अलावा, आप टैग, कमिट हैश और मनमाने refs दर्ज कर सकते हैं। कुछ कमिट हैश और refs तब तक उपलब्ध नहीं हो सकते जब तक आप एक कस्टम refspec भी प्रदान न करें।\"],\"-zy2Nq\":[\"प्रकार\"],\"0-31GV\":[\"हटाया जा रहा है\"],\"0-yjzX\":[\"रिवीज़न उपलब्ध होने से पहले प्रोजेक्ट को सिंक किया जाना चाहिए।\"],\"00_HDq\":[\"नीति प्रकार\"],\"00cteM\":[\"इस फ़ील्ड में \",[\"0\"],\" से अधिक वर्ण नहीं होने चाहिए\"],\"01Zgfk\":[\"समय समाप्त\"],\"02FGuS\":[\"नया समूह बनाएं\"],\"02ePaq\":[[\"0\"],\" चुनें\"],\"02o5A-\":[\"नया प्रोजेक्ट बनाएं\"],\"05TJDT\":[\"जॉब विवरण देखने के लिए क्लिक करें\"],\"06Veq8\":[\"प्रोजेक्ट सिंक करें\"],\"08IuMU\":[\"वेरिएबल्स अधिलेखित करें\"],\"08dX0o\":[\"Grafana\"],\"0Ca6Bi\":[[\"dateStr\"],\" <0>\",[\"username\"],\" द्वारा\"],\"0DRyjU\":[\"हैंडलर्स चल रहे हैं\"],\"0JjrTf\":[\"फ़ाइल को पार्स करने में त्रुटि हुई। कृपया फ़ाइल स्वरूपण जांचें और पुनः प्रयास करें।\"],\"0K8MzY\":[\"इस फ़ील्ड में \",[\"max\"],\" से अधिक वर्ण नहीं होने चाहिए\"],\"0LUj25\":[\"इंस्टेंस समूह हटाएं\"],\"0MFMD5\":[\"एक या अधिक इंस्टेंसों पर हेल्थ चेक चलाने में विफल।\"],\"0Ohn6b\":[\"द्वारा लॉन्च किया गया\"],\"0PUWHV\":[\"पुनरावृत्ति आवृत्ति\"],\"0Pz6gk\":[\"निर्मित इन्वेंटरी प्लगइन को कॉन्फ़िगर करने के लिए उपयोग किए जाने वाले वेरिएबल्स। इस प्लगइन को कॉन्फ़िगर करने के तरीके के विस्तृत विवरण के लिए, देखें\"],\"0QsHpG\":[\"इनपुट स्कीमा जो उस प्रकार के लिए क्रमबद्ध फ़ील्ड्स का एक सेट परिभाषित करती है।\"],\"0Tddvz\":[\"Grafana सर्वर का आधार URL - \\n /api/annotations एंडपॉइंट स्वचालित रूप से आधार\\n Grafana URL में जोड़ा जाएगा।\"],\"0WL4_U\":[\"सभी नोड्स हटाएं\"],\"0WP27-\":[\"जॉब आउटपुट की प्रतीक्षा हो रही है…\"],\"0YAsXQ\":[\"कंटेनर समूह\"],\"0ZdD1M\":[[\"0\",\"plural\",{\"one\":[\"आप निम्न जॉब को रद्द नहीं कर सकते क्योंकि यह नहीं चल रही है:\"],\"other\":[\"आप निम्न जॉब्स को रद्द नहीं कर सकते क्योंकि वे नहीं चल रही हैं:\"]}]],\"0ZqUtV\":[\"अधिक जानकारी के लिए, देखें\"],\"0_ru-E\":[\"इन्वेंटरी कॉपी करें\"],\"0cqIWs\":[\"बेसिक प्रमाणीकरण पासवर्ड\"],\"0d48JM\":[\"बहुविकल्पीय (एकाधिक चयन)\"],\"0eOoxo\":[\"कृपया एक समाप्ति तिथि/समय चुनें जो प्रारंभ तिथि/समय के बाद आता हो।\"],\"0f7U0k\":[\"बुध\"],\"0gPQCa\":[\"हमेशा\"],\"0lvFRT\":[\"आप किसी क्रेडेंशियल का क्रेडेंशियल प्रकार नहीं बदल सकते, क्योंकि इससे इसका उपयोग करने वाले संसाधनों की कार्यक्षमता प्रभावित हो सकती है।\"],\"0pC_y6\":[\"इवेंट\"],\"0qOaMt\":[\"इस क्रेडेंशियल और मेटाडेटा का परीक्षण करने के अनुरोध में कुछ गलत हुआ।\"],\"0rVzXl\":[\"Google OAuth 2 सेटिंग्स\"],\"0sNe72\":[\"भूमिकाएं जोड़ें\"],\"0tNXE8\":[\"PUT\"],\"0tfvhT\":[\"इंस्टेंस समूह उपयोग की गई क्षमता\"],\"0wlLcO\":[\"सेट करें कि कितने दिनों का डेटा रखा जाना चाहिए।\"],\"0zpgxV\":[\"विकल्प\"],\"0zs8j5\":[\"विफल होने के बाद इस नोड की जॉब को उसके विफलता पथों का अनुसरण करने से पहले स्वचालित रूप से पुनः प्रयास किए जाने की अधिकतम संख्या। रद्द की गई जॉब्स को कभी पुनः प्रयास नहीं किया जाता।\"],\"1-4GhF\":[\"सिंक रद्द करें\"],\"10B0do\":[\"परीक्षण सूचना भेजने में विफल।\"],\"1280Tg\":[\"होस्ट नाम\"],\"12j25_\":[\"GPG सार्वजनिक कुंजी\"],\"12kemj\":[\"सोर्स कंट्रोल URL\"],\"14KOyT\":[\"स्रोत वेरिएबल्स\"],\"15GcuU\":[\"विविध प्रमाणीकरण सेटिंग्स देखें\"],\"17TKua\":[\"इंस्टेंस समूह\"],\"19zgn6\":[\"इंस्टेंस प्रकार\"],\"1A3EXy\":[\"विस्तृत करें\"],\"1C5cFl\":[\"अगला रन\"],\"1Ey8My\":[\"IP पता\"],\"1F0IaT\":[\"शेड्यूल देखें\"],\"1HMy92\":[\"JSON:\"],\"1I6UoR\":[\"दृश्य\"],\"1L3KBl\":[\"नया क्रेडेंशियल प्रकार बनाएं\"],\"1LRwvx\":[\"यदि आप चाहते हैं कि इन्वेंटरी स्रोत लॉन्च पर अपडेट हो, तो लॉन्च पर अपडेट करें पर क्लिक करें, और इस पर भी जाएं \"],\"1Ltnvs\":[\"नोड जोड़ें\"],\"1PQRWr\":[\"प्रारंभ समय\"],\"1QRNEs\":[\"पुनरावृत्ति आवृत्ति\"],\"1RYzKu\":[\"रद्द किए गए नोड से पुनः लॉन्च करें\"],\"1UJu6o\":[\"कृपया 1 और 31 के बीच एक दिन संख्या चुनें।\"],\"1UjRxI\":[\"कैश टाइमआउट\"],\"1UzENP\":[\"नहीं\"],\"1V4Yvg\":[\"विविध सिस्टम\"],\"1WlWk7\":[\"इन्वेंटरी होस्ट विवरण देखें\"],\"1WsB5U\":[\"हम इस खाते से संबद्ध सदस्यताएं ढूंढने में असमर्थ रहे।\"],\"1ZaQUH\":[\"अंतिम नाम\"],\"1_gTC7\":[\"आप समान वॉल्ट ID के साथ एकाधिक वॉल्ट क्रेडेंशियल्स नहीं चुन सकते। ऐसा करने पर समान वॉल्ट ID वाला दूसरा स्वचालित रूप से अचयनित हो जाएगा।\"],\"1abtmx\":[\"चाइल्ड समूहों और होस्ट्स को प्रोत्साहित करें\"],\"1ahgeV\":[\"Google OAuth2\"],\"1cT4RU\":[\"SCM अपडेट\"],\"1fO-kL\":[\"इंस्टेंस टॉगल करने में विफल।\"],\"1hCxP5\":[\"एक या अधिक इंस्टेंस समूह हटाने में विफल।\"],\"1kwHxg\":[\"होस्ट मेट्रिक्स\"],\"1n50PN\":[\"JSON टैब\"],\"1qd4yi\":[\"वेरिएबल्स JSON या YAML सिंटैक्स में होने चाहिए। दोनों के बीच टॉगल करने के लिए रेडियो बटन का उपयोग करें।\"],\"1rDBnp\":[\"फ़ाइल अंतर\"],\"1w2SCz\":[\"एक सोर्स कंट्रोल प्रकार चुनें\"],\"1xdJD7\":[\"स्क्रीन में फ़िट करें\"],\"1yHVE-\":[\"जोड़ा जा रहा है\"],\"2-iKER\":[\"गतिविधि स्ट्रीम देखें\"],\"2B_v7Y\":[\"नीति इंस्टेंस प्रतिशत\"],\"2CTKOa\":[\"प्रोजेक्ट्स पर वापस\"],\"2FB7vv\":[\"डिफ़ॉल्ट निष्पादन वातावरण संपादित करने से पहले एक संगठन चुनें।\"],\"2FeJcd\":[\"आइटम छोड़ा गया\"],\"2H9REH\":[\"नाम फ़ील्ड पर फ़ज़ी खोज।\"],\"2JV4mx\":[\"वे इंस्टेंस समूह जिनसे यह इंस्टेंस संबंधित है।\"],\"2KlsJC\":[\"आप संदेश में कई संभावित वेरिएबल्स लागू कर सकते हैं।\\n अधिक जानकारी के लिए, देखें\"],\"2MSEkM\":[\"इन्वेंटरी हटाने में विफल।\"],\"2a07Yj\":[\"सूचना टेम्पलेट कॉपी करें\"],\"2ekvhy\":[\"अपवाद आवृत्ति\"],\"2gDkH_\":[\"कृपया घटनाओं की संख्या दर्ज करें।\"],\"2iyx-2\":[\"Ansible Controller दस्तावेज़ीकरण।\"],\"2n41Wr\":[\"वर्कफ़्लो टेम्पलेट जोड़ें\"],\"2nsB1O\":[\"टोकन पर वापस\"],\"2ocqzE\":[\"वेबहुक: इस टेम्पलेट के लिए वेबहुक सक्षम करें।\"],\"2ooR7j\":[\"LDAP 5\"],\"2p6eVk\":[\"लुकअप मोडल\"],\"2pNIxF\":[\"वर्कफ़्लो नोड्स\"],\"2pgi-L\":[\"इंगित करता है कि क्या कोई होस्ट उपलब्ध है और चल रही\\n जॉब्स में शामिल किया जाना चाहिए। बाहरी इन्वेंटरी का हिस्सा होने वाले होस्ट्स के लिए, इसे\\n इन्वेंटरी सिंक प्रक्रिया द्वारा रीसेट किया जा सकता है।\"],\"2qfwJn\":[\"अधिलेखित करें\"],\"2r06bV\":[\"Hipchat\"],\"2rvMKg\":[\"रिफ़्रेश टोकन\"],\"2w-INk\":[\"होस्ट विवरण\"],\"2zs1kI\":[\"यह मान उस पासवर्ड से मेल नहीं खाता जो आपने पहले दर्ज किया था। कृपया उस पासवर्ड की पुष्टि करें।\"],\"3-SkJA\":[\"समूह को होस्ट से अलग करें?\"],\"3-sY1p\":[\"गंतव्य SMS नंबर\"],\"328Yxp\":[\"सोर्स कंट्रोल ब्रांच\"],\"38Or-7\":[\"टैब\"],\"38VIWI\":[\"टेम्पलेट विवरण देखें\"],\"39y5bn\":[\"शुक्रवार\"],\"3A9ATS\":[\"निष्पादन वातावरण नहीं मिला।\"],\"3AOZPn\":[\"डिबग विकल्प देखें और संपादित करें\"],\"3FUtN9\":[\"इन्वेंटरी स्रोत सिंक\"],\"3IVQDN\":[\"यह शेड्यूल जटिल नियमों का उपयोग करता है जो UI में\\n समर्थित नहीं हैं। कृपया इस शेड्यूल को प्रबंधित करने के लिए API का उपयोग करें।\"],\"3JjdaA\":[\"चलाएं\"],\"3JnvxN\":[\"वे संसाधन चुनें जो नई भूमिकाएं प्राप्त करेंगे। आप अगले चरण में लागू करने के लिए भूमिकाएं चुन सकेंगे। ध्यान दें कि यहां चुने गए संसाधन अगले चरण में चुनी गई सभी भूमिकाएं प्राप्त करेंगे।\"],\"3JzsDb\":[\"मई\"],\"3LoUor\":[\"गंतव्य चैनल\"],\"3LqMX2\":[\"CIQ Ascender Automation Platform\"],\"3PAU4M\":[\"वर्ष\"],\"3PZalO\":[\"होस्ट नहीं मिला।\"],\"3Rke7L\":[\"1 (जानकारी)\"],\"3WGwSW\":[\"अपडेट करने से पहले स्थानीय रिपॉजिटरी को पूरी तरह से हटा दें। रिपॉजिटरी के आकार के आधार पर, यह अपडेट पूर्ण करने के लिए आवश्यक समय को काफी बढ़ा सकता है।\"],\"3YSVMq\":[\"हटाने में त्रुटि\"],\"3aIe4Y\":[\"नया संगठन बनाएं\"],\"3b24mY\":[\"CPU \",[\"0\"]],\"3fG1e7\":[\"बीता हुआ समय\"],\"3fMc43\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" वर्ष\"],\"other\":[\"#\",\" वर्ष\"]}]],\"3hCQhK\":[\"इन्वेंटरी प्लगइन्स\"],\"3hvUyZ\":[\"नया विकल्प\"],\"3mTiHp\":[\"टेम्पलेट कॉपी करने में विफल।\"],\"3pBNb0\":[\"आउटपुट पुनः लोड करें\"],\"3sFvGC\":[\"इंस्टेंस को सक्षम या अक्षम सेट करें। यदि अक्षम है, तो इस इंस्टेंस को जॉब्स असाइन नहीं की जाएंगी।\"],\"3sXZ-V\":[\"और लॉन्च पर रिवीज़न अपडेट करें पर क्लिक करें।\"],\"3uAM50\":[\"अंतिम उपयोगकर्ता लाइसेंस अनुबंध\"],\"3wPA9L\":[\"सेटिंग श्रेणी\"],\"3y7qi5\":[\"क्रेडेंशियल्स पर वापस\"],\"3yy_k-\":[\"सभी टीमें देखें।\"],\"4-RjdJ\":[[\"interval\"],\" year\"],\"40lLFI\":[\"अगले पृष्ठ पर जाएं\"],\"41KRqu\":[\"क्रेडेंशियल पासवर्ड\"],\"45BzQy\":[\"हेल्थ चेक एसिंक्रोनस कार्य हैं। देखें\"],\"45cx0B\":[\"सदस्यता संपादन रद्द करें\"],\"45gLaI\":[\"लॉन्च पर क्रेडेंशियल्स के लिए संकेत दें।\"],\"46SUtl\":[\"समूह संपादित करें\"],\"479kuh\":[\"पूर्ण रिवीज़न क्लिपबोर्ड पर कॉपी करें।\"],\"47e97a\":[\"अधिकतम पुनः प्रयास\"],\"4BITzH\":[\"त्रुटि:\"],\"4LzLLz\":[\"सभी सेटिंग्स देखें\"],\"4Q4HZp\":[\"कोई \",[\"pluralizedItemName\"],\" नहीं मिला\"],\"4QXpWJ\":[\"समय समाप्त\"],\"4QfhOe\":[\"not__ और __search जैसे कुछ खोज संशोधक स्मार्ट इन्वेंटरी होस्ट फ़िल्टर में समर्थित नहीं हैं। इस फ़िल्टर के साथ नई स्मार्ट इन्वेंटरी बनाने के लिए इन्हें हटाएं।\"],\"4S2cNE\":[\"लॉगिंग सेटिंग्स देखें\"],\"4Wt2Ty\":[\"सूची से आइटम चुनें\"],\"4_ESDh\":[\"इस फ़ील्ड में एक नियमित अभिव्यक्ति होनी चाहिए\"],\"4_xiC_\":[\"आर्टिफ़ैक्ट्स\"],\"4alXD6\":[\"इस समूह पर एक साथ चलाने के लिए जॉब्स की अधिकतम संख्या।\\n शून्य का अर्थ है कोई सीमा लागू नहीं की जाएगी।\"],\"4bhLaA\":[\"एक क्रेडेंशियल प्रकार चुनें\"],\"4cWhxn\":[\"नियंत्रित करता है कि यह इंस्टेंस नीति द्वारा प्रबंधित है या नहीं। यदि सक्षम है, तो इंस्टेंस नीति नियमों के आधार पर इंस्टेंस समूहों में स्वचालित असाइनमेंट और अनअसाइनमेंट के लिए उपलब्ध होगा।\"],\"4dQFvz\":[\"समाप्त\"],\"4g1rw0\":[\"ईमेल सूचना द्वारा होस्ट तक पहुंचने का प्रयास बंद करने और समय समाप्त होने से पहले\\n का समय (सेकंड में)। 1 से 120 सेकंड\\n तक की सीमा।\"],\"4hPyPF\":[\"सहेजें और बाहर निकलें\"],\"4j2eOR\":[\"वह इन्वेंटरी चुनें जिससे यह होस्ट संबंधित होगा।\"],\"4jnim6\":[\"एक वेबहुक सेवा चुनें।\"],\"4km-Vu\":[\"अनुपालन से बाहर\"],\"4kw_um\":[[\"interval\"],\" minute\"],\"4lCMxZ\":[\"विफलता स्पष्टीकरण:\"],\"4lgLew\":[\"फ़रवरी\"],\"4mQyZf\":[\"वेबहुक सेवाएँ इसे साझा गुप्त के रूप में उपयोग कर सकती हैं।\"],\"4nLbTY\":[\"सभी प्रबंधन जॉब्स देखें\"],\"4o_cFL\":[\"एप्लिकेशन हटाएं\"],\"4s0pSB\":[\"होस्ट की उस सूची को और सीमित करने के लिए एक होस्ट पैटर्न प्रदान करें जिसे प्लेबुक द्वारा प्रबंधित या प्रभावित किया जाएगा। कई पैटर्न की अनुमति है। पैटर्न पर अधिक जानकारी और उदाहरणों के लिए Ansible दस्तावेज़ीकरण देखें।\"],\"4uVADI\":[\"क्लाइंट सीक्रेट\"],\"4vFDZV\":[\"नया जॉब टेम्पलेट बनाएं\"],\"4vkbaA\":[\"वह प्रोजेक्ट जिससे यह इन्वेंटरी अपडेट स्रोत किया गया है।\"],\"4yGeRr\":[\"इन्वेंटरी सिंक\"],\"4zue79\":[\"कॉपीराइट\"],\"5-qYGv\":[\"इंस्टेंस संपादित करें\"],\"54_SyV\":[[\"0\",\"plural\",{\"one\":[\"आपके पास निम्न जॉब को रद्द करने की अनुमति नहीं है:\"],\"other\":[\"आपके पास निम्न जॉब्स को रद्द करने की अनुमति नहीं है:\"]}]],\"56fd5u\":[\"क्या आप वाकई इस वर्कफ़्लो के सभी नोड्स हटाना चाहते हैं?\"],\"5B77Dm\":[\"अंतिम जॉब\"],\"5F5F4w\":[\"वर्कफ़्लो अनुमोदन\"],\"5IhYoj\":[\"नोड प्रकार\"],\"5K7kGO\":[\"दस्तावेज़ीकरण\"],\"5KMGbn\":[\"क्या आप वाकई इस जॉब को रद्द करना चाहते हैं?\"],\"5RMgCw\":[\"होस्ट्स\"],\"5S4tZv\":[\"आवृत्ति अपेक्षित मान से मेल नहीं खाती\"],\"5Sa1Ss\":[\"ई-मेल\"],\"5TnQp6\":[\"जॉब प्रकार\"],\"5WFDw4\":[\"केवल इसके द्वारा समूहित करें\"],\"5X2wog\":[\"लॉग इन करने में समस्या हुई। कृपया पुनः प्रयास करें।\"],\"5_vHPm\":[\"TACACS+ सेटिंग्स देखें\"],\"5ajaW1\":[\"मूल नोड का आर्टिफ़ैक्ट स्थिति से मेल खाने पर निष्पादित करें।\"],\"5dJK4M\":[\"भूमिकाएं\"],\"5eHyY-\":[\"परीक्षण सूचना\"],\"5eL2KN\":[\"लक्ष्य URL\"],\"5lqXf5\":[\"फ़ैक्टरी डिफ़ॉल्ट पर वापस लौटें।\"],\"5n_soj\":[\"लॉन्च पर जॉब स्लाइस संख्या के लिए संकेत दें।\"],\"5p6-Mk\":[\"विफल जॉब्स द्वारा फ़िल्टर करें\"],\"5pDe2G\":[\"Remove \",[\"0\"],\" Access\"],\"5pa4JT\":[\"प्लेबुक प्रारंभ हुई\"],\"5qauVA\":[\"यह वर्कफ़्लो जॉब टेम्पलेट वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"5vA8H0\":[\"कोई होस्ट मेल नहीं खाया\"],\"5xzS8Q\":[\"टोकन जो सुनिश्चित करता है कि यह ‘constructed’ प्लगइन\\n के लिए एक स्रोत फ़ाइल है।\"],\"5y9wkB\":[\"सूचनाओं पर वापस\"],\"6-OdGi\":[\"प्रोटोकॉल\"],\"6-ptnU\":[\"विकल्प\"],\"623gDt\":[\"उपयोगकर्ता हटाने में विफल।\"],\"63C4Yo\":[\"कंटेनर समूह\"],\"66Zq7T\":[\"लिंक परिवर्तन सहेजें\"],\"66qTfS\":[\"पिछला सप्ताह\"],\"679-JR\":[\"id, नाम या विवरण फ़ील्ड्स पर फ़ज़ी खोज।\"],\"68OTAn\":[\"This intance is currently being used by other resources. Are you sure you want to delete it?\"],\"68h6WG\":[\"प्रबंधन जॉब लॉन्च करें\"],\"69aXwM\":[\"मौजूदा समूह जोड़ें\"],\"69zuwn\":[\"Deprovisioning these instances could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"6ASSBg\":[\"LDAP 4\"],\"6BzDub\":[\"सॉफ़्ट डिलीट\"],\"6GBt0m\":[\"मेटाडेटा\"],\"6HLTEb\":[\"फ़िल्टर...\"],\"6J-cs1\":[\"टाइमआउट सेकंड\"],\"6KhU4s\":[\"क्या आप वाकई अपने परिवर्तन सहेजे बिना वर्कफ़्लो क्रिएटर से बाहर निकलना चाहते हैं?\"],\"6LTyxl\":[\"रिवीज़न\"],\"6PmtyP\":[\"लीजेंड टॉगल करें\"],\"6RDwJM\":[\"टोकन\"],\"6UYTy8\":[\"मिनट\"],\"6V3Ea3\":[\"कॉपी किया गया\"],\"6WwHL3\":[\"कुल नोड्स\"],\"6XOI1I\":[\"नई फ़ेडरेटेड इन्वेंटरी बनाएं\"],\"6XgEPi\":[\"घंटा\"],\"6YtxFj\":[\"नाम\"],\"6Z5ACo\":[\"होस्ट कॉन्फ़िग कुंजी\"],\"6bpC9t\":[\"विफल नोड\"],\"6cylr_\":[\"Stdout\"],\"6f961q\":[\"केवल यदि अनुपस्थित हो\"],\"6hEnxG\":[\"विशेषाधिकार वृद्धि सक्षम करें\"],\"6j6_0F\":[\"संबंधित संसाधन\"],\"6kpN96\":[\"सूचना हटाने में विफल।\"],\"6lGV3K\":[\"कम दिखाएं\"],\"6msU0q\":[\"एक या अधिक जॉब्स हटाने में विफल।\"],\"6nsio_\":[\"कमांड चलाएं\"],\"6oNH0E\":[\"प्लगइन कॉन्फ़िगरेशन गाइड।\"],\"6pMgh_\":[\"LDAP सेटिंग्स देखें\"],\"6rSKy6\":[\"इस फ़ेडरेटेड इन्वेंटरी के लिए स्रोत इन्वेंटरी चुनें। जब कोई जॉब लॉन्च की जाती है, तो होस्ट्स स्वचालित रूप से प्रत्येक स्रोत इन्वेंटरी के इंस्टेंस समूह में रूट किए जाएंगे।\"],\"6uvnKV\":[\"API सेवा/इंटीग्रेशन कुंजी\"],\"6vrz8I\":[\"एक या अधिक जॉब्स रद्द करने में विफल।\"],\"6zGHNM\":[\"शेष होस्ट्स\"],\"74MNbw\":[\"Ctrl IQ, Inc.\"],\"764xeZ\":[\"सर्वेक्षण अपडेट करने में विफल।\"],\"7Bj3x9\":[\"विफल\"],\"7ElOdS\":[\"डैशबोर्ड की ID\"],\"7IUE9q\":[\"स्रोत वेरिएबल्स\"],\"7JF9w9\":[\"प्रश्न जोड़ें\"],\"7L01XJ\":[\"क्रियाएं\"],\"7O5TcN\":[\"इवेंट सारांश उपलब्ध नहीं\"],\"7PzzBU\":[\"User\"],\"7UZtKb\":[\"वह संगठन जो इस वर्कफ़्लो जॉब टेम्पलेट का स्वामी है।\"],\"7VETeB\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"],\"7VpPHA\":[\"पुष्टि करें\"],\"7Xk3M1\":[\"वह प्रोजेक्ट चुनें जिसमें वह playbook है जिसे आप इस जॉब से निष्पादित कराना चाहते हैं।\"],\"7ZhNzL\":[\"पहले पृष्ठ पर जाएं\"],\"7b8TOD\":[\"विवरण।\"],\"7bDeKc\":[\"सदस्यता मैनिफ़ेस्ट\"],\"7fJwmW\":[\"चयनित आइटमों की सूची।\"],\"7hS02I\":[[\"automatedInstancesSinceDateTime\"],\" से \",[\"automatedInstancesCount\"]],\"7icMBj\":[\"कोई जॉब डेटा उपलब्ध नहीं\"],\"7kb4LU\":[\"अनुमोदित\"],\"7p5kLi\":[\"डैशबोर्ड\"],\"7q256R\":[\"ब्रांच ओवरराइड की अनुमति दें\"],\"7qFdk8\":[\"क्रेडेंशियल संपादित करें\"],\"7sMeHQ\":[\"कुंजी\"],\"7sNhEz\":[\"उपयोगकर्ता नाम\"],\"7w3QvK\":[\"सफलता संदेश मुख्य भाग\"],\"7wgt9A\":[\"प्लेबुक रन\"],\"7zmvk2\":[\"आइटम विफल\"],\"81eOdm\":[\"वर्कफ़्लो पुनः लॉन्च करें\"],\"82O8kJ\":[\"यह प्रोजेक्ट वर्तमान में सिंक पर है और सिंक प्रक्रिया पूर्ण होने तक इस पर क्लिक नहीं किया जा सकता\"],\"82sWFi\":[\"प्रशासन\"],\"84Usx_\":[\"प्रोजेक्ट हटाने में विफल।\"],\"87a_t_\":[\"लेबल\"],\"88ip8h\":[\"सभी वापस लौटाएं\"],\"8BkLPF\":[\"अनुमत URI सूची, स्थान द्वारा अलग की गई\"],\"8F8HYs\":[\"उपयोग करने के लिए अपनी Ansible Automation Platform सदस्यता चुनें।\"],\"8H3Igx\":[[\"interval\"],\" month\"],\"8Oef5v\":[\"GIT स्रोत नियंत्रण के लिए उदाहरण URL में शामिल हैं:\"],\"8XM8GW\":[\"भूमिकाएं सही ढंग से असाइन करने में विफल\"],\"8Z236a\":[\"ब्रांड लोगो\"],\"8ZsakT\":[\"पासवर्ड\"],\"8_wZUD\":[\"टीम भूमिकाएं\"],\"8d57h8\":[\"विविध सिस्टम सेटिंग्स देखें\"],\"8gCRbU\":[\"अन्य संकेत\"],\"8gaTqG\":[\"प्रकार विवरण\"],\"8kDNpI\":[\"स्थिति का मूल्यांकन करने से पहले मूल नोड परिणाम आवश्यक है।\"],\"8l9yyw\":[\"जॉब टेम्पलेट\"],\"8lEjQX\":[\"बंडल इंस्टॉल करें\"],\"8lb4Do\":[\"सदस्यता साफ़ करें\"],\"8oiwP_\":[\"इनपुट कॉन्फ़िगरेशन\"],\"8p_xVT\":[[\"0\",\"plural\",{\"one\":[[\"1\"]],\"other\":[[\"2\"]]}]],\"8u5g0S\":[\"स्मार्ट इन्वेंटरी हटाएं\"],\"8vETh9\":[\"दिखाएं\"],\"8wxHsh\":[\"इस वर्कफ़्लो जॉब टेम्पलेट के लिए वेबहुक कुंजी।\"],\"8yd882\":[\"एक या अधिक टीमों को अलग करने में विफल।\"],\"8zGO4o\":[\"फ़ील्ड दिए गए नियमित एक्सप्रेशन से मेल खाता है।\"],\"8zoIOi\":[[\"0\",\"plural\",{\"one\":[\"यह क्रेडेंशियल प्रकार वर्तमान में कुछ क्रेडेंशियल्स द्वारा उपयोग किया जा रहा है और इसे हटाया नहीं जा सकता।\"],\"other\":[\"क्रेडेंशियल्स द्वारा उपयोग किए जा रहे क्रेडेंशियल प्रकार हटाए नहीं जा सकते। क्या आप फिर भी हटाना चाहते हैं?\"]}]],\"8zvzWO\":[\"इस वर्कफ़्लो जॉब टेम्पलेट के समवर्ती रन की अनुमति दें।\"],\"9-wVFp\":[\"फ़ेडरेटेड इन्वेंटरी विवरण देखें\"],\"91UHfE\":[\"इन्वेंटरी अपडेट\"],\"91lyAf\":[\"समवर्ती जॉब्स\"],\"933cZy\":[\"विविध सिस्टम सेटिंग्स\"],\"954HqS\":[\"होस्ट पहली बार कब स्वचालित हुआ था\"],\"95p1BK\":[\"नया उपयोगकर्ता बनाएं\"],\"98Qtlu\":[\"हर बार जब कोई जॉब इस प्रोजेक्ट का उपयोग करके चलता है, तो जॉब शुरू करने से पहले प्रोजेक्ट का रिविज़न अपडेट करें।\"],\"991Df5\":[\"a new webhook key will be generated on save.\"],\"99qC6z\":[[\"interval\"],\" week\"],\"9Ah95g\":[[\"0\",\"plural\",{\"one\":[\"यह इन्वेंट्री वर्तमान में कुछ टेम्पलेट्स द्वारा उपयोग की जा रही है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"other\":[\"इन इन्वेंट्रीज़ को हटाने से उन पर निर्भर कुछ टेम्पलेट्स प्रभावित हो सकते हैं। क्या आप वाकई इन्हें हटाना चाहते हैं?\"]}]],\"9BTNYL\":[\"Expected at least one of client_email, project_id or private_key to be present in the file.\"],\"9BpfLa\":[\"लेबल चुनें\"],\"9DOXq6\":[\"सभी टेम्पलेट देखें।\"],\"9DugxF\":[\"सदस्यता प्रकार\"],\"9HhFQ8\":[\"ऐसे परिणाम लौटाता है जिनमें इस मान के अलावा अन्य मान होते हैं, साथ ही अन्य फ़िल्टर भी।\"],\"9L1ngr\":[\"कुल जॉब्स\"],\"9N-4tQ\":[\"क्रेडेंशियल प्रकार\"],\"9NyAH9\":[\"छोड़ा गया\"],\"9PB0sF\":[\"IRC\"],\"9Rsklx\":[\"सभी नोड्स हटाएं\"],\"9Tmez1\":[\"इंस्टेंस विवरण देखें\"],\"9UuGMQ\":[\"हटाना लंबित\"],\"9V-Un3\":[\"फ़ैक्ट स्टोरेज सक्षम करें\"],\"9VMv7k\":[\"निर्मित इन्वेंटरी\"],\"9Wm-J4\":[\"पासवर्ड टॉगल करें\"],\"9XA1Rs\":[\"प्रोजेक्ट वर्तमान में सिंक हो रहा है और सिंक पूरा होने के बाद रिवीज़न उपलब्ध होगा।\"],\"9Y3BQE\":[\"संगठन हटाएं\"],\"9YSB0Z\":[\"इस शेड्यूल में इन्वेंटरी अनुपस्थित है\"],\"9ZnrIx\":[\"अपनी सदस्यता जानकारी देखें और संपादित करें\"],\"9fRa7M\":[\"हटाने के लिए एक पंक्ति चुनें\"],\"9hmrEp\":[\"इस पर पुनः लॉन्च करें\"],\"9iX1S0\":[\"यह क्रिया निम्न इंस्टेंस को हटा देगी और आपको किसी भी इंस्टेंस के लिए इंस्टॉल बंडल पुनः चलाने की आवश्यकता हो सकती है जो पहले जुड़ा हुआ था:\"],\"9jfn-S\":[\"विस्तृत नहीं है\"],\"9l0RZY\":[\"नया लिंक बनाने के लिए किसी उपलब्ध नोड पर क्लिक करें। रद्द करने के लिए ग्राफ़ के बाहर क्लिक करें।\"],\"9m7jms\":[\"स्रोत इन्वेंटरी जिनके होस्ट्स इस फ़ेडरेटेड इन्वेंटरी के विरुद्ध कोई जॉब लॉन्च होने पर उनके संबंधित इंस्टेंस समूहों में रूट किए जाएंगे।\"],\"9mfJJf\":[\"जॉब टेम्पलेट\"],\"9nhhVW\":[\"पृष्ठ\"],\"9nypdt\":[\"प्रारंभिक मान पुनर्स्थापित करें।\"],\"9odS2n\":[\"विफल होस्ट्स\"],\"9og-0c\":[\"यह निष्पादन वातावरण वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"9rFgm2\":[\"सदस्यता क्षमता\"],\"9rvzNA\":[\"संबद्धता मोडल\"],\"9td1Wl\":[\"जांच\"],\"9uI_rE\":[\"पूर्ववत करें\"],\"9u_dDE\":[\"अगम्य होस्ट संख्या\"],\"9uxVdR\":[\"सोर्स कंट्रोल क्रेडेंशियल\"],\"9wvWk3\":[\"यह निर्मित इन्वेंटरी इनपुट \\n दोनों श्रेणियों के लिए एक समूह बनाता है और केवल उन होस्ट्स को \\n लौटाने के लिए सीमा (होस्ट पैटर्न) का उपयोग करता है जो \\n उन दोनों समूहों के प्रतिच्छेदन में हैं।\"],\"A1a8Ku\":[\"प्रबंधन जॉब लॉन्च त्रुटि\"],\"A1taO8\":[\"खोजें\"],\"A3o0Xd\":[\"इस संगठन के चलने के लिए इंस्टेंस समूह।\"],\"A6paZd\":[\"फ़ेडरेटेड इन्वेंटरी जोड़ें\"],\"A8lIi2\":[\"रिवीज़न के लिए सिंक करें\"],\"A9-PUr\":[\"हेल्थ चेक अनुरोध सबमिट किए गए। कृपया प्रतीक्षा करें और पृष्ठ पुनः लोड करें।\"],\"AA2ASV\":[\"निष्पादन वातावरण सफलतापूर्वक कॉपी किया गया\"],\"ADVQ46\":[\"लॉग इन करें\"],\"ARAUFe\":[\"इन्वेंटरी हटाएं\"],\"AV22aU\":[\"कुछ गलत हुआ...\"],\"AWOSPo\":[\"ज़ूम इन करें\"],\"Ab1y_G\":[\"निर्मित इन्वेंटरी स्रोत सिंक रद्द करें\"],\"AgTBbk\":[[\"intervalValue\",\"plural\",{\"one\":[\"सप्ताह\"],\"other\":[\"सप्ताह\"]}]],\"AgTuXC\":[\"आपके पास \",[\"pluralizedItemName\"],\" हटाने की अनुमति नहीं है: \",[\"itemsUnableToDelete\"]],\"Ai2U7L\":[\"होस्ट\"],\"Aj3on1\":[\"बाहरी लॉगिंग सक्षम करें\"],\"AoCBvp\":[\"जॉब स्लाइस\"],\"Apl-Vf\":[\"Red Hat सदस्यता मैनिफ़ेस्ट\"],\"Apv-R1\":[\"यदि आप अपग्रेड या नवीनीकरण के लिए तैयार हैं, तो कृपया <0>हमसे संपर्क करें।\"],\"AqdlyH\":[\"पासवर्ड के लिए संकेत देने वाले क्रेडेंशियल्स वाले जॉब टेम्पलेट नोड्स बनाते या संपादित करते समय नहीं चुने जा सकते\"],\"ArtxnQ\":[\"सोर्स कंट्रोल Refspec\"],\"AsLVdj\":[\"प्रति पंक्ति एक IRC चैनल या उपयोगकर्ता नाम का उपयोग करें। चैनलों के लिए पाउंड\\n प्रतीक (#), और उपयोगकर्ताओं के लिए एट (@) प्रतीक\\n आवश्यक नहीं हैं।\"],\"AwUsnG\":[\"इंस्टेंस\"],\"AxC8wb\":[\"आउटपुट कॉपी करें\"],\"AxPAXW\":[\"कोई परिणाम नहीं मिला\"],\"Axi4f8\":[\"Dragging item \",[\"id\"],\". Item with index \",[\"oldIndex\"],\" in now \",[\"newIndex\"],\".\"],\"Azw0EZ\":[\"नई स्मार्ट इन्वेंटरी बनाएं\"],\"B0HFJ8\":[\"एक या अधिक होस्ट्स को अलग करने में विफल।\"],\"B0P3qo\":[\"जॉब ID:\"],\"B0dbFG\":[\"शेड्यूल हटाएं\"],\"B2Zb_F\":[\"JSON\"],\"B3ZzHO\":[\"अंतिम स्वचालित\"],\"B4WcU9\":[[\"0\"],\" द्वारा अनुमोदित - \",[\"1\"]],\"B7FU4J\":[\"होस्ट प्रारंभ हुआ\"],\"B8bpYS\":[\"अपनी सदस्यता वाला Red Hat सदस्यता मैनिफ़ेस्ट अपलोड करें। अपना सदस्यता मैनिफ़ेस्ट जनरेट करने के लिए, Red Hat Customer Portal पर <0>सदस्यता आवंटन पर जाएं।\"],\"BAmn8K\":[\"एक संसाधन प्रकार चुनें\"],\"BERhj_\":[\"सफलता संदेश\"],\"BGNDgh\":[\"नोड उपनाम\"],\"BH7upP\":[\"POST\"],\"BIJ2_m\":[\"इस संगठन के भीतर कार्यों के लिए उपयोग किया जाने वाला निष्पादन वातावरण। इसका उपयोग तब फ़ॉलबैक के रूप में किया जाएगा जब प्रोजेक्ट, कार्य टेम्पलेट या वर्कफ़्लो स्तर पर कोई निष्पादन वातावरण स्पष्ट रूप से असाइन नहीं किया गया हो।\"],\"BNDplB\":[\"टेम्पलेट सफलतापूर्वक कॉपी किया गया\"],\"BWTzAb\":[\"मैनुअल\"],\"BaPk6N\":[\"प्लेबुक का पता लगाने के लिए उपयोग किया जाने वाला आधार पथ। इस पथ के अंदर पाई गई निर्देशिकाएँ प्लेबुक निर्देशिका ड्रॉप-डाउन में सूचीबद्ध होंगी। आधार पथ और चयनित प्लेबुक निर्देशिका मिलकर प्लेबुक का पता लगाने के लिए उपयोग किया जाने वाला पूर्ण पथ प्रदान करते हैं।\"],\"BfYq0G\":[\"सोर्स कंट्रोल प्रकार\"],\"Bg7M6U\":[\"कोई परिणाम नहीं मिला\"],\"Bl2Djq\":[\"टोकन देखें\"],\"Bl2eoO\":[\"एन्क्रिप्टेड\"],\"BskWMl\":[\"अगम्य\"],\"BsrdSv\":[\"JSON या YAML सिंटैक्स का उपयोग करके इन्वेंटरी वेरिएबल्स दर्ज करें। दोनों के बीच टॉगल करने के लिए रेडियो बटन का उपयोग करें। उदाहरण सिंटैक्स के लिए Ansible Controller दस्तावेज़ीकरण देखें।\"],\"Bv8zdm\":[\"इनपुट इन्वेंटरी\"],\"BwJKBw\":[\"में से\"],\"Bz7WRU\":[[\"0\",\"plural\",{\"one\":[\"कृपया एक मान्य फ़ोन नंबर दर्ज करें।\"],\"other\":[\"कृपया मान्य फ़ोन नंबर दर्ज करें।\"]}]],\"BzEFor\":[\"या\"],\"BzbzJb\":[\"फ़ैक्ट्स\"],\"BzfzPK\":[\"आइटम\"],\"C-gr_n\":[\"Azure AD सेटिंग्स\"],\"C0sUgI\":[\"नई इन्वेंटरी बनाएं\"],\"C2KEkR\":[\"SSH पासवर्ड\"],\"C3Q1LZ\":[\"OIDC सेटिंग्स देखें\"],\"C4C-qQ\":[\"शेड्यूल विवरण\"],\"C6GAUT\":[\"विस्तृत है\"],\"C7dP40\":[[\"0\"],\" को अस्वीकार करने में विफल।\"],\"C7s60U\":[\"वेबहुक विवरण\"],\"CAL6E9\":[\"टीमें\"],\"CDOlBM\":[\"इंस्टेंस ID\"],\"CE-M2e\":[\"जानकारी\"],\"CGOseh\":[\"शेड्यूल विवरण\"],\"CGZgZY\":[\"अलग करने के लिए एक पंक्ति चुनें\"],\"CG_9l6\":[\"LDAP 1\"],\"CGwKKr\":[[\"0\",\"plural\",{\"one\":[\"समूह हटाएं?\"],\"other\":[\"समूह हटाएं?\"]}]],\"CIEoqM\":[\"इंस्टेंस नाम\"],\"CKc7jz\":[\"होस्ट विवरण मोडल\"],\"CL7QiF\":[\"उत्तर टाइप करें फिर उत्तर को डिफ़ॉल्ट के रूप में चुनने के लिए\\nदाईं ओर चेकबॉक्स पर क्लिक करें।\"],\"CLTHnk\":[\"सर्वेक्षण प्रश्न क्रम\"],\"CMmwQ-\":[\"अज्ञात प्रारंभ तिथि\"],\"CNZ5h9\":[\"डेटा प्रतिधारण अवधि\"],\"CS8u6E\":[\"वेबहुक सक्षम करें\"],\"CSvk3a\":[\"Twilio में \\\"मैसेजिंग\\n सेवा\\\" से संबद्ध संख्या, +18005550199 प्रारूप में।\"],\"CW11B-\":[\"न्यूनतम\"],\"CXJHPJ\":[\"द्वारा संशोधित (उपयोगकर्ता नाम)\"],\"CZDqWd\":[\"प्रोजेक्ट रिवीज़न वर्तमान में पुराना है। सबसे हाल का रिवीज़न प्राप्त करने के लिए कृपया रीफ़्रेश करें।\"],\"CZg9aH\":[\"होस्ट्स चुनें\"],\"C_Lu89\":[\"JSON या YAML सिंटैक्स का उपयोग करके इनपुट दर्ज करें। उदाहरण सिंटैक्स के लिए Ansible Controller दस्तावेज़ीकरण देखें।\"],\"C_NnqT\":[\"नया होस्ट बनाएं\"],\"Cc8jO8\":[\"कमांड चलाने के लिए रिमोट होस्ट्स तक पहुंचते समय उपयोग करने के लिए क्रेडेंशियल चुनें। वह क्रेडेंशियल चुनें जिसमें उपयोगकर्ता नाम और SSH कुंजी या पासवर्ड हो जिसकी Ansible को रिमोट होस्ट्स में लॉग इन करने के लिए आवश्यकता होगी।\"],\"CcKMRv\":[\"यह जॉब टेम्पलेट वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"CczdmZ\":[\"सभी क्रेडेंशियल देखें।\"],\"CdGRti\":[\"सभी सूचना टेम्पलेट देखें।\"],\"Ce28nP\":[\"<0>नोट: यदि इंस्टेंस <1>नीति नियमों द्वारा प्रबंधित हैं तो उन्हें इस इंस्टेंस समूह के साथ पुनः संबद्ध किया जा सकता है।\"],\"Cev3QF\":[\"टाइमआउट मिनट\"],\"ChTa9Z\":[[\"intervalValue\",\"plural\",{\"one\":[\"घंटा\"],\"other\":[\"घंटे\"]}]],\"CoPs3y\":[\"इस वर्कफ़्लो में कोई नोड कॉन्फ़िगर नहीं किया गया है।\"],\"CoTqdo\":[\"\\n Note that you may still see the group in the list after\\n disassociating if the host is also a member of that group’s\\n children. This list shows all groups the host is associated\\n with directly and indirectly.\\n \"],\"Coyxic\":[\"चयनित क्रेडेंशियल और निर्दिष्ट इनपुट का उपयोग करके सीक्रेट प्रबंधन सिस्टम से कनेक्शन सत्यापित करने के लिए इस बटन पर क्लिक करें।\"],\"Cs0oSA\":[\"सेटिंग्स देखें\"],\"Csvbqs\":[\"निर्मित इन्वेंटरी प्लगइन दस्तावेज़ यहां देखें।\"],\"Cx8SDk\":[\"रिफ़्रेश टोकन समाप्ति\"],\"D-NlUC\":[\"सिस्टम\"],\"D1JWCq\":[[\"interval\"],\" minutes\"],\"D4euEu\":[\"विविध प्रमाणीकरण सेटिंग्स\"],\"D89zck\":[\"रवि\"],\"DBBU2q\":[\"इस फ़ील्ड के लिए कम से कम एक मान चुना जाना चाहिए।\"],\"DBC3t5\":[\"रविवार\"],\"DBHTm_\":[\"अगस्त\"],\"DFNPK8\":[\"हेल्थ चेक चलाएं\"],\"DGZ08x\":[\"सभी सिंक करें\"],\"DHf0mx\":[\"नया इंस्टेंस बनाएं\"],\"DHrOgD\":[\"प्रोजेक्ट अपडेट स्थिति\"],\"DIKUI7\":[\"न्यूनतम लंबाई\"],\"DIX823\":[\"इस फ़ील्ड में एक संख्या होनी चाहिए और इसका मान \",[\"max\"],\" से कम होना चाहिए\"],\"DJIazz\":[\"सफलतापूर्वक अनुमोदित\"],\"DNLiC8\":[\"सेटिंग्स वापस लौटाएं\"],\"DNqHaO\":[\"यह तालिका निर्मित इन्वेंटरी प्लगइन के कुछ उपयोगी\\n पैरामीटर देती है। पैरामीटर की पूरी सूची के लिए \"],\"DPfwMq\":[\"पूर्ण\"],\"DV-Xbw\":[\"पसंदीदा भाषा\"],\"DVIUId\":[\"संकेत ओवरराइड\"],\"DZNGtI\":[\"प्रोजेक्ट चेकआउट परिणाम\"],\"D_oBkC\":[\"GitHub Team\"],\"DdlJTq\":[\"सटीक मिलान (यदि निर्दिष्ट न हो तो डिफ़ॉल्ट लुकअप)।\"],\"De2WsK\":[\"यह क्रिया इस उपयोगकर्ता की सभी भूमिकाओं को चयनित टीमों से अलग कर देगी।\"],\"DhSza7\":[\"Controller नोड\"],\"DnkUe2\":[\"एक वेबहुक सेवा चुनें\"],\"DqnAO4\":[\"पहला स्वचालित\"],\"Du6bPw\":[\"पता\"],\"Dug0C-\":[\"घटनाओं की संख्या के बाद\"],\"DyYigF\":[\"TACACS+ सेटिंग्स\"],\"Dz7fsq\":[\"ज़ूम इन करें\"],\"E6Z4zF\":[\"अमान्य फ़ाइल प्रारूप। कृपया एक मान्य Red Hat सदस्यता मैनिफ़ेस्ट अपलोड करें।\"],\"E86aJB\":[\"भूमिका अलग करें!\"],\"E9wN_Q\":[\"अंतिम हेल्थ चेक\"],\"EH6-2h\":[\"टोपोलॉजी दृश्य\"],\"EHu0x2\":[\"सिंक हो रहा है\"],\"EIBcgD\":[\"किसी प्रोजेक्ट से स्रोतित\"],\"EIkRy0\":[\"गंतव्य चैनल\"],\"EJQLCT\":[\"वर्कफ़्लो जॉब टेम्पलेट हटाने में विफल।\"],\"ENDbv1\":[\"सभी होस्ट्स देखें।\"],\"ENRWp9\":[\"एनोटेशन के लिए टैग\"],\"ENyw54\":[\"संबंधित समूह\"],\"EP-eCv\":[\"SAML सेटिंग्स\"],\"EQ-qsg\":[\"वर्कफ़्लो जॉब टेम्पलेट\"],\"ES0WE_\":[\"टाइमआउट पर\"],\"ETUQuF\":[\"एक या अधिक इन्वेंटरी हटाने में विफल।\"],\"EWL-h4\":[\"host-description-\",[\"0\"]],\"E_QGRL\":[\"अक्षम\"],\"E_tJey\":[\"डिफ़ॉल्ट निष्पादन वातावरण\"],\"Eb5CN1\":[[\"0\",\"plural\",{\"one\":[\"यह संगठन वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"other\":[\"इन संगठनों को हटाने से उन पर निर्भर अन्य संसाधन प्रभावित हो सकते हैं। क्या आप फिर भी हटाना चाहते हैं?\"]}]],\"EdQY6l\":[\"कोई नहीं\"],\"Eff_76\":[\"स्थानीय समय क्षेत्र\"],\"Eg4kGP\":[\"डिफ़ॉल्ट उत्तर\"],\"EmSrGB\":[\"पहले\"],\"EmfKjn\":[\"समस्या निवारण सेटिंग्स देखें\"],\"Emna_v\":[\"स्रोत संपादित करें\"],\"EmzUsN\":[\"नोड विवरण देखें\"],\"EnC3hS\":[\"कस्टम पॉड स्पेक\"],\"EpH7Cd\":[\"क्रेडेंशियल हटाएं\"],\"Eq6_y5\":[\"this Tower documentation page\"],\"Eqp9wv\":[\"JSON उदाहरण यहां देखें\"],\"EwxKbE\":[\"हटाया गया\"],\"EzwCw7\":[\"प्रश्न संपादित करें\"],\"F-0xxR\":[\"इस टेम्पलेट से संसाधन अनुपस्थित हैं।\"],\"F-LGli\":[\"आपके पास निम्न को अलग करने की अनुमति नहीं है: \",[\"itemsUnableToDisassociate\"]],\"F-_-es\":[\"इंस्टेंस चुनें\"],\"F0xJYs\":[\"क्षमता समायोजन अपडेट करने में विफल।\"],\"F2l57P\":[\"सभी इंस्टेंसों का न्यूनतम प्रतिशत जो नए इंस्टेंस ऑनलाइन आने पर\\n स्वचालित रूप से इस समूह को असाइन किया जाएगा।\"],\"FCnKmF\":[\"उपयोगकर्ता टोकन बनाएं\"],\"FD8Y9V\":[\"विवरण प्रदर्शित करने के लिए किसी नोड आइकन पर क्लिक करें।\"],\"FEr96N\":[\"थीम\"],\"FFv0Vh\":[\"स्वचालन\"],\"FG2mko\":[\"सूची से आइटम चुनें\"],\"FGnH0p\":[\"यह इस वर्कफ़्लो के सभी बाद के नोड्स रद्द कर देगा\"],\"FMpB-A\":[\"<0>नोट: यदि इंस्टेंस <1>नीति नियमों द्वारा प्रबंधित है तो मैन्युअल रूप से संबद्ध इंस्टेंसों को इंस्टेंस समूह से स्वचालित रूप से अलग किया जा सकता है।\"],\"FO7Rwo\":[\"पीयर हटाएं?\"],\"FQto51\":[\"सभी पंक्तियां विस्तृत करें\"],\"FTuS3P\":[\"यह फ़ील्ड रिक्त नहीं हो सकता\"],\"FV5MUV\":[\"यदि उपयोगकर्ताओं को उनके निर्मित समूहों की\\n शुद्धता के बारे में प्रतिक्रिया की आवश्यकता है, तो प्लगइन कॉन्फ़िगरेशन\\n में strict: true का उपयोग करने की अत्यधिक अनुशंसा की जाती है।\"],\"FXmp8Q\":[\"भूमिका संबद्ध करने में विफल\"],\"FYJRCY\":[\"एक या अधिक प्रोजेक्ट हटाने में विफल।\"],\"F_Nk65\":[\"आउटपुट डाउनलोड करें\"],\"F_c3Jb\":[\"कस्टम Kubernetes या OpenShift पॉड विनिर्देश।\"],\"Failed\":[\"विफल\"],\"Fanpmj\":[\"संकेतित वेरिएबल्स\"],\"FblMFO\":[\"एक मेट्रिक चुनें\"],\"FclH3w\":[\"सफलतापूर्वक सहेजा गया!\"],\"FfGhiE\":[\"वर्कफ़्लो सहेजने में त्रुटि!\"],\"FhTYgi\":[\"एक या अधिक जॉब टेम्पलेट हटाने में विफल।\"],\"FhhvWu\":[\"यह इस वर्कफ़्लो के सभी बाद के नोड्स रद्द कर देगा।\"],\"FiyMaa\":[\"एक .json फ़ाइल चुनें\"],\"FjVFQ-\":[\"एक मॉड्यूल चुनें\"],\"FjkaiT\":[\"ज़ूम आउट करें\"],\"FkQvI0\":[\"टेम्पलेट संपादित करें\"],\"FlvpdU\":[\"If enabled, show the changes made\\n by Ansible tasks, where supported. This is equivalent to Ansible’s\\n --diff mode.\"],\"FnSb-y\":[\"जॉब रद्द करें\"],\"FnZzou\":[\"इंस्टेंस स्थिति\"],\"FncCci\":[\"RADIUS\"],\"Fo2bwm\":[\"अभिनेता\"],\"Fo6qAq\":[\"Subversion स्रोत नियंत्रण के लिए उदाहरण URL में शामिल हैं:\"],\"Fp0Rk4\":[\"इस इन्वेंटरी का वर्णन करने वाले वैकल्पिक लेबल,\\n जैसे 'dev' या 'test'। लेबल का उपयोग इन्वेंटरी और पूर्ण की गई जॉब्स को\\n समूहित करने और फ़िल्टर करने के लिए किया जा सकता है।\"],\"FqW8E0\":[\"उपयोग की गई क्षमता\"],\"FsGJXJ\":[\"साफ़ करें\"],\"Fx2-x_\":[\"उपयोगकर्ता भूमिकाएं जोड़ें\"],\"G-jHgL\":[\"स्रोत पथ को इस पर सेट करें\"],\"G2KpGE\":[\"प्रोजेक्ट संपादित करें\"],\"G3myU-\":[\"मंगलवार\"],\"G768_0\":[\"अस्वीकृत\"],\"G8jcl6\":[\"सूचना टेम्पलेट\"],\"G9MOps\":[\"इन्वेंटरी सिंक पर उपयोग करने के लिए ब्रांच। रिक्त होने पर प्रोजेक्ट डिफ़ॉल्ट उपयोग किया जाता है। केवल तभी अनुमति है जब प्रोजेक्ट allow_override फ़ील्ड true पर सेट हो।\"],\"GDvlUT\":[\"भूमिका\"],\"GGWsTU\":[\"रद्द किया गया\"],\"GGuAXg\":[\"SAML सेटिंग्स देखें\"],\"GHDQ7i\":[\"एक या अधिक संगठन हटाने में विफल।\"],\"GJKwN0\":[\"शेड्यूल\"],\"GLZDtF\":[\"सिस्टम चेतावनी\"],\"GLwo_j\":[\"0 (चेतावनी)\"],\"GMaU6_\":[\"लॉन्च पर जॉब प्रकार के लिए संकेत दें।\"],\"GO6s6F\":[\"जॉब्स सेटिंग्स\"],\"GRwtth\":[\"इंस्टेंस पर हेल्थ चेक चलाएं\"],\"GSYBQc\":[\"API सेवा/इंटीग्रेशन कुंजी\"],\"GTOcxw\":[\"उपयोगकर्ता संपादित करें\"],\"GU9vaV\":[\"अगम्य होस्ट्स\"],\"GXiLKo\":[\"टेक्स्ट क्षेत्र\"],\"GZIG7_\":[\"इन्वेंटरी सफलतापूर्वक कॉपी की गई\"],\"G_Dwo_\":[\"Choose an answer type or format you want as the prompt for the user.\\n Refer to the Ansible Controller Documentation for more additional\\n information about each option.\"],\"GaJLE6\":[\"द्वारा आरंभ किया गया\"],\"Gd-B71\":[\"क्रेडेंशियल प्रकार नहीं मिला।\"],\"Ge5ecx\":[\"अधिकतम होस्ट्स\"],\"GeIrWJ\":[[\"brandName\"],\" लोगो\"],\"Gf3vm8\":[\"प्रति पृष्ठ\"],\"GiXRTS\":[\"एक या अधिक उपयोगकर्ता टोकन हटाने में विफल।\"],\"Gix1h_\":[\"सभी जॉब्स देखें\"],\"GkbHM9\":[\"सभी प्रोजेक्ट देखें।\"],\"Gn7TK5\":[\"टूल टॉगल करें\"],\"GpNoVG\":[\"इस सूची को भरने के लिए कृपया एक शेड्यूल जोड़ें।\"],\"GpWp6E\":[\"सिस्टम-स्तरीय सुविधाओं और कार्यों को परिभाषित करें\"],\"GtycJ_\":[\"कार्य\"],\"H0z3JJ\":[\"इन तर्कों का उपयोग निर्दिष्ट मॉड्यूल के साथ किया जाता है। आप निम्नलिखित पर क्लिक करके \",[\"moduleName\"],\" के बारे में जानकारी प्राप्त कर सकते हैं \"],\"H1M6a6\":[\"सभी इंस्टेंस देखें।\"],\"H3kCln\":[\"होस्टनाम\"],\"H6jbKn\":[\"उपयोगकर्ता इंटरफ़ेस सेटिंग्स\"],\"H7OUPr\":[\"दिन\"],\"H7e4dl\":[\"YAML या JSON का उपयोग करके\\n कुंजी/मान जोड़े प्रदान करें।\"],\"H86f9p\":[\"संक्षिप्त करें\"],\"H9MIed\":[\"निष्पादन नोड\"],\"HAi1aX\":[\"वेबहुक कुंजी अपडेट करें\"],\"HAzhV7\":[\"क्रेडेंशियल\"],\"HDULRt\":[\"अद्वितीय होस्ट्स\"],\"HGOtRu\":[\"सूचना परीक्षण विफल।\"],\"HIfMSF\":[\"बहुविकल्पीय विकल्प\"],\"HLAK2g\":[\"This action will cancel the following jobs:\"],\"HODq3s\":[\"एक या अधिक वर्कफ़्लो अनुमोदन अस्वीकार करने में विफल।\"],\"HQ7e8y\":[\"exact का केस-असंवेदनशील संस्करण।\"],\"HQ7oEt\":[\"टीमों पर वापस\"],\"HUx6pW\":[\"इंजेक्टर कॉन्फ़िगरेशन\"],\"HajiZl\":[\"माह\"],\"HbaQks\":[\"इस प्रकार की सूचना के लिए प्राप्तकर्ता सूची बनाने हेतु प्रति पंक्ति एक ईमेल पता उपयोग करें।\"],\"HbnjOn\":[[\"interval\"],\" weeks\"],\"HcznyH\":[\"कुछ या सभी इन्वेंटरी स्रोत सिंक करने में विफल।\"],\"HdE1If\":[\"चैनल\"],\"HdErwL\":[\"अनुमोदित करने के लिए एक पंक्ति चुनें\"],\"Hf0QDK\":[\"प्रोजेक्ट सफलतापूर्वक कॉपी किया गया\"],\"Hhnh8d\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" दिन\"],\"other\":[\"#\",\" दिन\"]}]],\"HiTf1W\":[\"वापस लौटाना रद्द करें\"],\"HjxnnB\":[\"मॉड्यूल चुनें\"],\"HlhZ5D\":[\"TLS का उपयोग करें\"],\"HoHveO\":[\"ऐसे परिणाम लौटाता है जो इस फ़िल्टर के साथ-साथ अन्य फ़िल्टर को भी संतुष्ट करते हैं। यदि कुछ भी चयनित नहीं है तो यह डिफ़ॉल्ट सेट प्रकार है।\"],\"HpK_8d\":[\"पुनः लोड करें\"],\"Ht1JWm\":[\"सूचना रंग\"],\"HwpTx4\":[\"प्लेबुक के निष्पादित होने पर ansible द्वारा उत्पन्न आउटपुट के स्तर को नियंत्रित करें।\"],\"I0LRRn\":[\"बंडल डाउनलोड करें\"],\"I7Epp-\":[\"विकल्प विवरण\"],\"I9NouQ\":[\"कोई सदस्यता नहीं मिली\"],\"ICi4pv\":[\"अंतिम स्वचालन\"],\"ICt7Id\":[\"नोड प्रकार\"],\"IEKPuq\":[\"अगला स्क्रॉल करें\"],\"IGQ11b\":[\"वेबहुक सेवा के साथ साझा किया गया सीक्रेट। सेवा इसका उपयोग अपने अनुरोधों पर हस्ताक्षर करने के लिए करती है, ताकि केवल आपकी रिपॉजिटरी ही प्रोजेक्ट सिंक ट्रिगर कर सके। इसे कॉन्फ़िगरेशन के रूप में प्रबंधित करने के लिए अपना स्वयं का सीक्रेट टाइप करें, या सहेजने पर एक जनरेट करने के लिए फ़ील्ड को खाली छोड़ दें।\"],\"IJAVcb\":[\"एप्लिकेशन पर वापस\"],\"IKg_un\":[\"गंतव्य चैनल या उपयोगकर्ता\"],\"IMJYui\":[\"SMS संदेशों को कहां रूट करना है यह निर्दिष्ट करने के लिए\\n प्रति पंक्ति एक फ़ोन नंबर का उपयोग करें। फ़ोन नंबर +11231231234 के रूप में प्रारूपित होने चाहिए। अधिक जानकारी के लिए Twilio दस्तावेज़ीकरण देखें\"],\"IN6gbp\":[\"सर्वेक्षण प्रश्नों का क्रम पुनर्व्यवस्थित करने के लिए क्लिक करें\"],\"IPusY8\":[\"अपडेट करने से पहले किसी भी स्थानीय संशोधन को हटा दें।\"],\"ISuwrJ\":[\"निष्पादन वातावरण संपादित करें\"],\"IV0EjT\":[\"परीक्षण सूचना\"],\"IVvM2B\":[\"सक्षम विकल्प\"],\"IWoF_f\":[\"सर्वेक्षण देखें\"],\"IZfe0p\":[\"सोर्स कंट्रोल ब्रांच\"],\"Igz8MU\":[\"पिछले दो सप्ताह\"],\"IiR1sT\":[\"नोड प्रकार\"],\"IjDwKK\":[\"लॉगिन प्रकार\"],\"Ikhk0q\":[\"इस वर्कफ़्लो जॉब टेम्पलेट के लिए वेबहुक सेवा।\"],\"Iqm2E5\":[\"इस सूची को भरने के लिए कृपया \",[\"pluralizedItemName\"],\" जोड़ें\"],\"IrC12v\":[\"एप्लिकेशन\"],\"IrI9pg\":[\"समाप्ति तिथि\"],\"IsJ8i6\":[\"वर्कफ़्लो के लिए एक ब्रांच चुनें। यह ब्रांच उन सभी जॉब टेम्पलेट नोड्स पर लागू होती है जो ब्रांच के लिए पूछते हैं।\"],\"IspLSK\":[\"प्रबंधन जॉब नहीं मिली।\"],\"J0zi6q\":[\"टैग छोड़ें\"],\"J2HgCR\":[\"Red Hat, Inc.\"],\"J2d1y8\":[\"सफल जॉब्स द्वारा फ़िल्टर करें\"],\"J4y7Uk\":[\"वर्कफ़्लो रद्द किया गया \"],\"J8VgfD\":[\"जांचें कि दिया गया फ़ील्ड या संबंधित ऑब्जेक्ट null है या नहीं; एक boolean मान अपेक्षित है।\"],\"JEGlfK\":[\"प्रारंभ हुआ\"],\"JFnJqF\":[\"बीता हुआ\"],\"JFphCp\":[\"3 (डिबग)\"],\"JGvwnU\":[\"अंतिम उपयोग\"],\"JIX50w\":[\"इंस्टेंस समूह फ़ॉलबैक रोकें: यदि सक्षम है, तो जॉब टेम्पलेट किसी भी इन्वेंटरी या संगठन इंस्टेंस समूह को चलाने के लिए पसंदीदा इंस्टेंस समूहों की सूची में जोड़ने से रोकेगा।\"],\"JJwEMx\":[\"होस्ट्स हटाए गए\"],\"JKZTiL\":[\"ये चलाए गए कमांड के मानक आउटपुट के लिए समर्थित वर्बोसिटी स्तर हैं।\"],\"JL3si7\":[\"अपडेट हो रहा है\"],\"JLjfEs\":[\"एक या अधिक शेड्यूल हटाने में विफल।\"],\"JOmgRg\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" माह\"],\"other\":[\"#\",\" माह\"]}]],\"JRa4kV\":[\"जब स्रोत नियंत्रण रिपॉजिटरी में कोई पुश होता है तो प्रोजेक्ट को सिंक करें, ताकि हर जॉब लॉन्च पर पोलिंग या अपडेट किए बिना स्थानीय प्रति हमेशा अद्यतित रहे।\"],\"JTHoCu\":[\"परिवर्तन टॉगल करें\"],\"JUwjsw\":[\"Select an activity type\"],\"JXgd33\":[\"डैशबोर्ड पर वापस।\"],\"J_2nGO\":[\"The execution environment that will be used for jobs\\n inside of this organization. This will be used a fallback when\\n an execution environment has not been explicitly assigned at the\\n project, job template or workflow level.\"],\"J_DUZt\":[\"इंस्टेंस समूह\"],\"Ja4VHl\":[[\"0\"],\" और\"],\"JgP090\":[\"सबमॉड्यूल ट्रैक करें\"],\"JjcTk5\":[\"सोशल लॉगिन\"],\"JjfsZM\":[\"वर्कफ़्लो अनुमोदन हटाएं\"],\"JppQoT\":[\"अंतिम पुनर्गणना तिथि:\"],\"JsY1p5\":[\"अस्वीकृत\"],\"Jvv6rS\":[\"बहुविकल्पीय\"],\"JwqOfG\":[\"इस पर मूल्यांकन करें\"],\"Jy9qCv\":[\"लॉगिन रीडायरेक्ट संपादन रद्द करें\"],\"K5AykR\":[\"टीम हटाएं\"],\"K93j4j\":[\"लेबल नाम\"],\"KC2nS5\":[\"संसाधन हटाया गया\"],\"KDcLJ6\":[\"YAML:\"],\"KEY0qH\":[\"परीक्षण उत्तीर्ण\"],\"KM6m8p\":[\"Team\"],\"KNOsJ0\":[\"इस जॉब टेम्पलेट का वर्णन करने वाले वैकल्पिक लेबल, जैसे 'dev' या 'test'। लेबल का उपयोग जॉब टेम्पलेट और पूर्ण किए गए जॉब को समूहित और फ़िल्टर करने के लिए किया जा सकता है।\"],\"KQ9EQm\":[\"निर्मित इन्वेंटरी प्लगइन का उपयोग कैसे करें\"],\"KR9Aiy\":[\"This inventory is currently being used by some templates. Are you sure you want to delete it?\"],\"KRf0wm\":[\"क्रेडेंशियल प्रकार\"],\"KTvwHj\":[\"क्रेडेंशियल इनपुट स्रोत\"],\"KVbzjm\":[\"विज़ुअलाइज़र\"],\"KXFYp9\":[\"सदस्यता प्राप्त करें\"],\"KXnokb\":[\"वैश्विक रूप से उपलब्ध निष्पादन वातावरण को किसी विशिष्ट संगठन को पुनः असाइन नहीं किया जा सकता\"],\"KZp4lW\":[\"Lookup select\"],\"K_MYeX\":[\"उपयोगकर्ता विवरण देखें\"],\"KeRkFA\":[\"सदस्यता चयन साफ़ करें\"],\"KeqCdz\":[\"नियंत्रण नोड्स से पीयर\"],\"Ki_j_-\":[\"सहेजने पर नई वेबहुक कुंजी जनरेट करने के लिए रिक्त छोड़ें\"],\"KjBkMe\":[\"यह कंटेनर समूह वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"KjVvNP\":[\"पैनल की ID\"],\"KkMfgW\":[\"जॉब टेम्पलेट\"],\"KkzJWF\":[\"पहला स्वचालन\"],\"KlQd8_\":[\"टोकन की पहुंच के लिए स्कोप\"],\"KnN1Tu\":[\"समाप्त होता है\"],\"KoCnPE\":[\"जॉब रद्द करें\"],\"KopV8H\":[\"केवल रूट समूह दिखाएं\"],\"KxIA0h\":[\"होस्ट टॉगल करें\"],\"Kz9DSl\":[\"मौजूदा होस्ट जोड़ें\"],\"KzQFvE\":[\"संगठन संपादित करें\"],\"L1Ob4t\":[\"विवरण टैब\"],\"L3ooU6\":[\"क्रेडेंशियल\"],\"L7Nz3F\":[\"अनुपस्थित संसाधन\"],\"L8fEEm\":[\"समूह\"],\"L973Qq\":[\"सदस्यता अनुरोध करें\"],\"LCl8Ck\":[\"तिथि खोज इनपुट\"],\"LGl_pR\":[\"जॉब्स सेटिंग्स देखें\"],\"LGryaQ\":[\"नया क्रेडेंशियल बनाएं\"],\"LQ29yc\":[\"इन्वेंटरी स्रोत सिंक प्रारंभ करें\"],\"LQRys9\":[\"सबमॉड्यूल अपनी master ब्रांच (या .gitmodules में निर्दिष्ट अन्य ब्रांच) पर नवीनतम कमिट को ट्रैक करेंगे। यदि नहीं, तो सबमॉड्यूल मुख्य प्रोजेक्ट द्वारा निर्दिष्ट रिविज़न पर रखे जाएंगे। यह git submodule update में --remote फ़्लैग निर्दिष्ट करने के समतुल्य है।\"],\"LQTgjH\":[\"प्रोजेक्ट नहीं मिला।\"],\"LRePxk\":[\"नए इंस्टेंस ऑनलाइन आने पर इस समूह को स्वचालित रूप से असाइन किए जाने वाले इंस्टेंसों की न्यूनतम संख्या।\"],\"LSUePQ\":[\"लॉन्च करें | \",[\"0\"]],\"LULLsO\":[\"सभी संगठन देखें।\"],\"LV5a9V\":[\"पीयर\"],\"LVecP9\":[\"उपयोगकर्ता भूमिकाएं\"],\"LYAQ1X\":[\"समवर्ती जॉब्स सक्षम करें\"],\"LZr1lR\":[\"इंस्टेंस समूह नहीं मिला।\"],\"Lc0RHh\":[\"शेड्यूल टॉगल करें\"],\"LgD0Cy\":[\"एप्लिकेशन नाम\"],\"LhMjLm\":[\"समय\"],\"Ll7Jei\":[\"LDAP3\"],\"LnYbGj\":[\"सर्वेक्षण संपादित करें\"],\"Lnnjmk\":[\"<0><1/> नए \",[\"brandName\"],\" उपयोगकर्ता इंटरफ़ेस का एक तकनीकी पूर्वावलोकन <2>यहां पाया जा सकता है।\"],\"Lqygiq\":[\"प्रोविज़निंग कॉलबैक\"],\"LtBtED\":[\"सूचना सफलता टॉगल करें\"],\"LuXP9q\":[\"पहुंच\"],\"LwHwt1\":[[\"brandName\"],\" सदस्यता\"],\"Lwovp8\":[\"यदि सक्षम है, तो इस जॉब टेम्पलेट के एक साथ चलने की अनुमति होगी।\"],\"M0okDw\":[\"डेटा संग्रह, लोगो और लॉगिन के लिए प्राथमिकताएं सेट करें\"],\"M73whl\":[\"संदर्भ\"],\"MA-mp9\":[\"वेबहुक Ref फ़िल्टर\"],\"MA7cMf\":[\"निर्मित इन्वेंटरी पैरामीटर तालिका\"],\"MAI_nw\":[\"कृपया ऊपर दिए गए फ़िल्टर का उपयोग करके एक और खोज का प्रयास करें\"],\"MAV-SQ\":[\"क्रेडेंशियल नहीं मिला।\"],\"MApRef\":[\"क्या आप वाकई लॉगिन रीडायरेक्ट ओवरराइड URL संपादित करना चाहते हैं? ऐसा करने से स्थानीय प्रमाणीकरण भी अक्षम होने के बाद उपयोगकर्ताओं की सिस्टम में लॉग इन करने की क्षमता प्रभावित हो सकती है।\"],\"MD0-Al\":[\"आपका सत्र समाप्त होने वाला है\"],\"MDQLec\":[\"इन्वेंटरी स्रोत अपडेट जॉब्स के लिए Ansible द्वारा उत्पादित आउटपुट के स्तर को नियंत्रित करें।\"],\"MGpavd\":[\"कुंजी टाइपअहेड\"],\"MHM-bv\":[\"अमान्य लिंक लक्ष्य। चाइल्ड या पूर्वज नोड्स से लिंक करने में असमर्थ। ग्राफ़ चक्र समर्थित नहीं हैं।\"],\"MHbbol\":[\" जॉब स्लाइसिंग\"],\"MKEPCY\":[\"अनुसरण करें\"],\"MP1v-1\":[\"लीजेंड\"],\"MP8dU9\":[\"पूर्ण इमेज स्थान, जिसमें कंटेनर रजिस्ट्री, इमेज नाम और संस्करण टैग शामिल है।\"],\"MQPvAa\":[\"लॉन्च पर लेबल के लिए संकेत दें।\"],\"MQoyj6\":[\"वर्कफ़्लो जॉब टेम्पलेट\"],\"MTLPCv\":[\"मूल नोड के विफलता स्थिति में परिणत होने पर निष्पादित करें।\"],\"MVw5um\":[\"2 (अधिक विस्तृत)\"],\"MZU5bt\":[\"एक या अधिक समूह हटाने में विफल।\"],\"M_gXds\":[\"Note: This instance may be re-associated with this instance group if it is managed by \"],\"MdhgLT\":[\"IRC सर्वर पासवर्ड\"],\"MfCEiB\":[\"Galaxy क्रेडेंशियल\"],\"MfQHgE\":[\"रखने के लिए दिन\"],\"Mfk6hJ\":[\"एक या अधिक टेम्पलेट हटाने में विफल।\"],\"Mhn5m4\":[\"रजिस्ट्री क्रेडेंशियल\"],\"Mn45Gz\":[\"इंस्टेंस समूहों पर वापस\"],\"MnbH31\":[\"पृष्ठ\"],\"MofjBu\":[\"इस प्रोजेक्ट का उपयोग करने वाले जॉब के लिए उपयोग किया जाने वाला निष्पादन वातावरण। इसका उपयोग फ़ॉलबैक के रूप में तब किया जाएगा जब जॉब टेम्पलेट या वर्कफ़्लो स्तर पर कोई निष्पादन वातावरण स्पष्ट रूप से असाइन नहीं किया गया हो।\"],\"MpLngK\":[\"इस प्रोजेक्ट का वेबहुक एंडपॉइंट। पुश को प्रोजेक्ट सिंक ट्रिगर करने के लिए इसे रिपॉजिटरी के वेबहुक कॉन्फ़िगरेशन में जोड़ें।\"],\"MpZRQy\":[\"Git\"],\"MuhG5I\":[[\"0\",\"plural\",{\"one\":[\"अपर्याप्त अनुमतियों या लंबित जॉब स्थिति के कारण यह अनुमोदन हटाया नहीं जा सकता\"],\"other\":[\"अपर्याप्त अनुमतियों या लंबित जॉब स्थिति के कारण ये अनुमोदन हटाए नहीं जा सकते\"]}]],\"MwCc2O\":[\"इस वर्कफ़्लो जॉब टेम्पलेट के लिए वेबहुक क्रेडेंशियल।\"],\"Mwf3Mw\":[\"एक खोज फ़िल्टर का उपयोग करके इस इन्वेंटरी के लिए होस्ट्स भरें।\\n उदाहरण: ansible_facts__ansible_distribution:\\\"RedHat\\\"।\\n आगे के सिंटैक्स और उदाहरणों के लिए दस्तावेज़ीकरण देखें।\\n आगे के सिंटैक्स और उदाहरणों के लिए Ansible Controller दस्तावेज़ीकरण\\n देखें।\"],\"MzcRa_\":[\"उपयोगकर्ता और Automation Analytics\"],\"Mzqo60\":[\"आर्टिफ़ैक्ट की तुलना करने के लिए मान। जब संभव हो तो JSON के रूप में व्याख्या किया जाता है (उदा. true, 3), अन्यथा एक सादे स्ट्रिंग के रूप में।\"],\"N1U4ZG\":[\"सदस्यता अनुपालन\"],\"N36GRB\":[\"इस फ़ील्ड में एक संख्या होनी चाहिए और इसका मान \",[\"min\"],\" से अधिक होना चाहिए\"],\"N40H-G\":[\"सभी\"],\"N5vmCy\":[\"निर्मित इन्वेंटरी\"],\"N6GBcC\":[\"हटाने की पुष्टि करें\"],\"N7wOty\":[\"इस जॉब द्वारा निष्पादित की जाने वाली प्लेबुक चुनें।\"],\"NAKA53\":[\"होस्ट विफलता\"],\"NBONaK\":[\"फ़ैक्ट्स एकत्र किए जा रहे हैं\"],\"NCVKhy\":[\"हाल की जॉब्स\"],\"NDQvUO\":[\"लॉन्च पर टैग के लिए संकेत दें।\"],\"NIuIk1\":[\"असीमित\"],\"NLKsgx\":[[\"pluralizedItemName\"],\" सूची\"],\"NO1ZxL\":[\"एप्लिकेशन नाम\"],\"NPfgIB\":[\"सेकंड\"],\"NQHZnb\":[\"Integer\"],\"NRn4V6\":[[\"interval\"],\" months\"],\"NUNUrW\":[\"एनोटेशन के लिए टैग (वैकल्पिक)\"],\"NW-xDQ\":[\"यह इस पृष्ठ के सभी कॉन्फ़िगरेशन मानों को उनके\\n फ़ैक्टरी डिफ़ॉल्ट पर वापस लौटा देगा। क्या आप वाकई आगे बढ़ना चाहते हैं?\"],\"NX18CF\":[\"इस पर या इसके बाद\"],\"NYxilo\":[\"अधिकतम समवर्ती जॉब्स\"],\"Na9fIV\":[\"कोई आइटम नहीं मिला।\"],\"NcVaYu\":[\"समाप्ति समय\"],\"NeA1eI\":[\"दाएं पैन करें\"],\"Never\":[\"कभी नहीं\"],\"NgD4On\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"यह क्रिया निम्नलिखित कार्य को रद्द कर देगी:\"],\"other\":[\"यह क्रिया निम्नलिखित कार्यों को रद्द कर देगी:\"]}]],\"NjnDuY\":[\"Dragging started for item id: \",[\"newId\"],\".\"],\"NjqMGF\":[\"संसाधन प्रकार\"],\"NnH3pK\":[\"परीक्षण\"],\"No Jobs\":[\"कोई जॉब्स नहीं\"],\"NpJHAp\":[\"अनुपस्थित इन्वेंटरी या प्रोजेक्ट वाले जॉब टेम्पलेट नोड्स बनाते या संपादित करते समय नहीं चुने जा सकते। आगे बढ़ने के लिए दूसरा टेम्पलेट चुनें या अनुपस्थित फ़ील्ड्स ठीक करें।\"],\"NqIlWb\":[\"अंतिम बार चला\"],\"NrGRF4\":[\"सदस्यता चयन मोडल\"],\"NsXTPu\":[\"ansible फ़ैक्ट्स का उपयोग करके स्मार्ट इन्वेंटरी बनाने के लिए, स्मार्ट इन्वेंटरी स्क्रीन पर जाएं।\"],\"NtD3hJ\":[\"संबंधित कुंजियां\"],\"Nu4DdT\":[\"सिंक करें\"],\"Nu4oKW\":[\"विवरण\"],\"Nu7VHX\":[\"चयनित संसाधनों पर लागू करने के लिए भूमिकाएं चुनें। ध्यान दें कि सभी चयनित भूमिकाएं सभी चयनित संसाधनों पर लागू होंगी।\"],\"O-OYOe\":[\"टीम संपादित करें\"],\"O06Rp6\":[\"उपयोगकर्ता इंटरफ़ेस\"],\"O1Aswy\":[\"कभी समाप्त नहीं होता\"],\"O28qFz\":[\"जॉब \",[\"0\"],\" देखें\"],\"O2EuOK\":[\"SAML \",[\"samlIDP\"],\" से साइन इन करें\"],\"O2UpM1\":[\"ब्राउज़ करें\"],\"O3oNi5\":[\"ईमेल\"],\"O4ilec\":[\"regex का केस-असंवेदनशील संस्करण।\"],\"O5pAaX\":[\"चार्ट दिखाने के लिए एक इंस्टेंस और एक मेट्रिक चुनें\"],\"O78b13\":[\"वह एप्लिकेशन जिससे यह टोकन संबंधित है, या व्यक्तिगत एक्सेस टोकन बनाने के लिए इस फ़ील्ड को खाली छोड़ दें।\"],\"O8_96D\":[\"लिसनर पोर्ट\"],\"O9VQlh\":[\"आवृत्ति चुनें\"],\"OA8xiA\":[\"बाएं पैन करें\"],\"OA99Nq\":[\"होस्ट अंतिम बार कब स्वचालित हुआ था\"],\"OC4Tzv\":[\"यहां\"],\"OGoqLy\":[\"# sources with sync failures.\"],\"OHGMM6\":[\"प्रारंभ तिथि/समय\"],\"OIv5hN\":[\"सदस्यता विवरण पर रीडायरेक्ट किया जा रहा है\"],\"OJ9bHy\":[\"एक या अधिक समूहों को अलग करने में विफल।\"],\"OOq_rD\":[\"प्लेबुक रन\"],\"OPTWH4\":[\"HTTPS प्रमाणपत्र सत्यापन सक्षम करें\"],\"ORxrw7\":[\"शेष दिन\"],\"OSH8xi\":[\"हॉप\"],\"OcRJRt\":[\"जॉब रद्द करने की पुष्टि करें\"],\"Oe_VOY\":[\"एक या अधिक इंस्टेंस हटाने में विफल।\"],\"OgB1k4\":[\"तर्क\"],\"OiCz65\":[\"Grafana URL\"],\"Oiqdmc\":[\"GitHub Organizations से साइन इन करें\"],\"Oj2Ix6\":[\"जॉब रद्द होने से पहले चलने का समय (सेकंड में)। कोई जॉब टाइमआउट न होने के लिए डिफ़ॉल्ट 0 है।\"],\"OjwX8k\":[\"टोकन जानकारी\"],\"OlpaBt\":[\"समवर्ती जॉब: यदि सक्षम है, तो इस जॉब टेम्पलेट के एक साथ चलने की अनुमति होगी।\"],\"OmbooC\":[\"कार्य प्रारंभ हुआ\"],\"OogRLI\":[\"फ़ेडरेटेड इन्वेंटरी नहीं मिली।\"],\"OqE3G-\":[\"id फ़ील्ड पर सटीक खोज।\"],\"Osn70z\":[\"डिबग\"],\"OvBnOM\":[\"सेटिंग्स पर वापस\"],\"OyGPiW\":[\"सदस्यता सेटिंग्स\"],\"OzssJK\":[\"कमांड चलाएं\"],\"P3spiP\":[\"टेम्पलेट पर वापस\"],\"P7d85D\":[\"टीम पहुंच हटाएं\"],\"P8fBlG\":[\"प्रमाणीकरण\"],\"PByO0X\":[\"वोट\"],\"PCEmEr\":[\"उपयोगकर्ता टोकन\"],\"PJ1B0S\":[[\"0\",\"plural\",{\"one\":[\"यह प्रोजेक्ट वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"other\":[\"इन प्रोजेक्ट्स को हटाने से उन पर निर्भर अन्य संसाधन प्रभावित हो सकते हैं। क्या आप फिर भी हटाना चाहते हैं?\"]}]],\"PJf54Q\":[\"स्रोतों पर वापस\"],\"PKTjJ3\":[[\"0\",\"selectordinal\",{\"3\":[[\"month\"],\" का तीसरा \",[\"weekday\"]],\"4\":[[\"month\"],\" का चौथा \",[\"weekday\"]],\"5\":[[\"month\"],\" का पांचवां \",[\"weekday\"]],\"one\":[[\"month\"],\" का पहला \",[\"weekday\"]],\"two\":[[\"month\"],\" का दूसरा \",[\"weekday\"]]}]],\"PLzYyl\":[\"आवृत्ति अपवाद विवरण\"],\"PMk2Wg\":[\"डीप्रोविज़निंग विफल\"],\"POKy-m\":[\"निष्पादन वातावरण कॉपी करें\"],\"PPsHsC\":[\"सभी को डिफ़ॉल्ट पर वापस लौटाएं\"],\"PQPOpT\":[\"इन्वेंटरी फ़ाइल\"],\"PRuZiQ\":[\"रिवीज़न के लिए रीफ़्रेश करें\"],\"PUnovD\":[\"Amazon EC2\"],\"PVCOQE\":[\"पीयर हटाया गया। परिवर्तन प्रभावी होते देखने के लिए कृपया \",[\"0\"],\" के लिए इंस्टॉल बंडल फिर से चलाना सुनिश्चित करें।\"],\"PWwwY2\":[\"अलग करें\"],\"PYPqaM\":[\"पैनल की ID (वैकल्पिक)\"],\"PZBWpL\":[\"Switch to light mode\"],\"P_s0vy\":[\"इस वेबहुक सेवा के लिए क्रेडेंशियल प्रकार देखने में असमर्थ, इसलिए वेबहुक क्रेडेंशियल फ़ील्ड अनुपलब्ध है।\"],\"PaTL2O\":[\"प्राप्तकर्ता सूची\"],\"PhufXn\":[\"जॉब स्लाइस मूल\"],\"Pi5vnX\":[\"निर्मित इन्वेंटरी स्रोत सिंक करने में विफल\"],\"PiK6Ld\":[\"शनि\"],\"PiRb8z\":[\"सबसे हाल का सिंक\"],\"PjkoCm\":[\"क्या आप वाकई नीचे दिए गए नोड को हटाना चाहते हैं:\"],\"PkVlOm\":[\"JSON प्रारूप में HTTP हेडर निर्दिष्ट करें। उदाहरण सिंटैक्स के लिए\\n Ansible Controller दस्तावेज़ीकरण देखें।\"],\"Po1btV\":[\"वैश्विक नेविगेशन\"],\"Po7y5X\":[\"निष्पादन वातावरण कॉपी करने में विफल\"],\"PvgcEq\":[\"Draggable list to reorder and remove selected items.\"],\"PwAMWD\":[\"सभी जॉब इवेंट संक्षिप्त करें\"],\"PyV1wC\":[\"इंस्टेंस समूह फ़ॉलबैक रोकें\"],\"Q3P_4s\":[\"कार्य\"],\"Q4hWRC\":[\"Workflow Jobs (\",[\"total\"],\")\"],\"Q5ZW8j\":[\"सदस्यता तालिका\"],\"QF_MpS\":[\"\\n ध्यान दें कि केवल इस समूह में सीधे मौजूद होस्ट्स\\n को अलग किया जा सकता है। उप-समूहों में होस्ट्स को उनके\\n संबंधित उप-समूह स्तर से सीधे अलग किया जाना चाहिए।\\n \"],\"QFdBqu\":[\"Mattermost\"],\"QGbLBK\":[\"जॉब ID\"],\"QHF6CU\":[\"प्ले\"],\"QIOH6p\":[\"द्वारा आरंभ किया गया (उपयोगकर्ता नाम)\"],\"QIpNLR\":[\"कोई इन्वेंटरी सिंक विफलता नहीं।\"],\"QIq3_3\":[\"नोट: इन्हें जिस क्रम में चुना जाता है वह निष्पादन प्राथमिकता निर्धारित करता है। खींचने को सक्षम करने के लिए एक से अधिक चुनें।\"],\"QJbMvX\":[\"लॉन्च के समय पासवर्ड की आवश्यकता वाले क्रेडेंशियल की अनुमति नहीं है। आगे बढ़ने के लिए कृपया निम्नलिखित क्रेडेंशियल को हटाएँ या समान प्रकार के क्रेडेंशियल से बदलें: \",[\"0\"]],\"QJowYS\":[\"हटाने की पुष्टि करें\"],\"QKUQw1\":[\"नया होस्ट बनाएं\"],\"QKbQTN\":[\"गतिविधि स्ट्रीम प्रकार चयनकर्ता\"],\"QOF7Jg\":[[\"0\"],\" को अनुमोदित करने में विफल।\"],\"QPRWww\":[\"रन प्रकार\"],\"QR908H\":[\"सेटिंग नाम\"],\"QT1rDU\":[\"GitHub Enterprise\"],\"QTwM6Y\":[\"वह प्रोजेक्ट जिसमें वह प्लेबुक है जिसे यह जॉब निष्पादित करेगा।\"],\"QYKS3D\":[\"हाल की जॉब्स\"],\"QamIPZ\":[\"प्रारंभ करने के लिए कृपया प्रारंभ बटन पर क्लिक करें।\"],\"Qay_5h\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"Qd2E32\":[\"होस्ट वेरिएबल्स के दिए गए dict से सक्षम स्थिति प्राप्त करें। सक्षम वेरिएबल को डॉट नोटेशन का उपयोग करके निर्दिष्ट किया जा सकता है, उदा: 'foo.bar'\"],\"Qf36YE\":[\"वर्बोसिटी\"],\"QgnNyZ\":[\"सिंक त्रुटि\"],\"Qhb8lT\":[\"नया एप्लिकेशन बनाएं\"],\"QmvYrA\":[\"वर्कफ़्लो जॉब टेम्पलेट के लिए वैकल्पिक विवरण।\"],\"QnJn75\":[\"अंतिम रन\"],\"Qv59HG\":[\"क्रेडेंशियल प्रकार चुनें\"],\"Qv91_c\":[\"LDAP 2\"],\"QyjCeq\":[\"क्षमता\"],\"R-uZ8Y\":[\"SAML से साइन इन करें\"],\"R633QG\":[\"वर्कफ़्लो अनुमोदन पर वापस\"],\"R7s3iG\":[\"इस पर लौटें\"],\"R9Khdg\":[\"स्वतः\"],\"R9sZsA\":[\"सभी समूह और होस्ट्स हटाएं\"],\"RBDHUE\":[\"लॉन्च पर निष्पादन वातावरण के लिए संकेत दें।\"],\"RI8cIw\":[\"इस संगठन द्वारा प्रबंधित किए जाने की अनुमति वाले होस्ट्स की\\n अधिकतम संख्या। मान डिफ़ॉल्ट रूप से 0 होता है जिसका अर्थ है कोई सीमा नहीं।\\n अधिक विवरण के लिए Ansible दस्तावेज़ीकरण देखें।\"],\"RIcSTA\":[\"इस पर समाप्त होता है\"],\"RIeAlp\":[\"हर बार जब इस इन्वेंटरी का उपयोग करके कोई जॉब चलती है, तो जॉब कार्य निष्पादित करने से पहले चयनित स्रोत से इन्वेंटरी रीफ़्रेश करें।\"],\"RK1gDV\":[\"Azure AD से साइन इन करें\"],\"RMdd1C\":[\"कोई नहीं (एक बार चलाएं)\"],\"RO9G1f\":[\"इस फ़ील्ड का मान 0 से अधिक होना चाहिए\"],\"RPnV2o\":[\"खोज फ़िल्टर ने कोई परिणाम नहीं दिया…\"],\"RThfvh\":[\"संबंधित टीम को अलग करें?\"],\"R_mzhp\":[\"उपयोगकर्ता टोकन में विफल।\"],\"RbIaa9\":[\"टोकन नहीं मिला।\"],\"RdLvW9\":[\"जॉब्स पुनः लॉन्च करें\"],\"Rguqao\":[\"हटाने के लिए एक पंक्ति चुनें\"],\"RhOukN\":[[\"interval\"],\" hour\"],\"RiQMUh\":[\"चल रहा है\"],\"RjIKOw\":[\"किसी होस्ट पर इन्वेंटरी बदलने में असमर्थ\"],\"RjkhdY\":[\"फ़ील्ड मान से प्रारंभ होता है।\"],\"RkXlPZ\":[\"GitHub\"],\"RlsPz7\":[\"क्या आप वाकई इस लिंक को हटाना चाहते हैं?\"],\"Rm1iI_\":[\"लॉन्च पर वेरिएबल्स के लिए संकेत दें।\"],\"Roaswv\":[\"User Guide\"],\"RpKSl3\":[\"क्रेडेंशियल सफलतापूर्वक कॉपी किया गया\"],\"RsZ4BA\":[\"अंतिम स्क्रॉल करें\"],\"RtKKbA\":[\"अंतिम\"],\"Ru59oZ\":[\"इस टेम्पलेट के लिए वेबहुक सक्षम करें।\"],\"RuEWFx\":[\"इस तिथि पर\"],\"RuiOO0\":[\"एक या अधिक एप्लिकेशन हटाने में विफल।\"],\"Rw1xwN\":[\"सामग्री लोड हो रही है\"],\"RxzN1M\":[\"सक्षम\"],\"RyPas1\":[\"Cancel selected jobs\"],\"S0kLOH\":[\"ID\"],\"S2nsEw\":[\"इससे बड़ा तुलना।\"],\"S5gO6Y\":[\"वर्कफ़्लो को अतिरिक्त कमांड लाइन वेरिएबल्स पास करें।\"],\"S6zj7M\":[\"जॉब टेम्पलेट के लिए, प्लेबुक निष्पादित करने के लिए run चुनें। प्लेबुक को निष्पादित किए बिना केवल प्लेबुक सिंटैक्स की जाँच करने, पर्यावरण सेटअप का परीक्षण करने और समस्याओं की रिपोर्ट करने के लिए check चुनें।\"],\"S7kN8O\":[\"एक या अधिक उपयोगकर्ता हटाने में विफल।\"],\"S7tNdv\":[\"सफलता पर\"],\"S8FW2i\":[\"इस स्रोत द्वारा सिंक की जाने वाली इन्वेंटरी फ़ाइल। आप ड्रॉपडाउन से चुन सकते हैं या इनपुट के भीतर एक फ़ाइल दर्ज कर सकते हैं।\"],\"SA-KXq\":[\"ऊपर पैन करें\"],\"SAw-Ux\":[\"क्या आप वाकई \",[\"username\"],\" से \",[\"0\"],\" पहुंच हटाना चाहते हैं?\"],\"SBfnbf\":[\"सभी निष्पादन वातावरण देखें\"],\"SC1Cur\":[\"अज्ञात स्थिति\"],\"SDND4q\":[\"कॉन्फ़िगर नहीं किया गया\"],\"SIJDi3\":[\"क्षमता समायोजन\"],\"SJjggI\":[\"अपडेट विकल्प\"],\"SJmHMo\":[\"दस्तावेज़ीकरण।\"],\"SLm_0U\":[\"IRC सर्वर पोर्ट\"],\"SODyJ3\":[\"होस्ट एसिंक ठीक\"],\"SRiPhD\":[\"नोड हटाना रद्द करें\"],\"SV5nA1\":[\"पिछले कुछ चरणों में त्रुटियां हैं\"],\"SVG6MY\":[\"फ़ील्ड को पहले सहेजे गए मान पर वापस लौटाएं\"],\"SYbJcn\":[\"सूचना टेम्पलेट संपादित करें\"],\"SZvybZ\":[\"LDAP डिफ़ॉल्ट\"],\"SZw9tS\":[\"विवरण देखें\"],\"SbRHme\":[\"टेक्स्ट क्षेत्र\"],\"Se_E0z\":[\"वर्कफ़्लो जॉब\"],\"Sgr5NW\":[\"हेल्थ चेक चलाने के लिए एक इंस्टेंस चुनें।\"],\"Sh2XTJ\":[\"सूचना प्रकार\"],\"SiexHs\":[\"डैशबोर्ड (सभी गतिविधि)\"],\"Sja7f-\":[\"होस्ट कितनी बार हटाया गया था\"],\"Sjoj4f\":[\"क्रेडेंशियल नाम\"],\"SlfejT\":[\"त्रुटि\"],\"SoREmD\":[\"एप्लिकेशन और टोकन\"],\"SqA8uD\":[\"जॉब रन\"],\"SqLEdN\":[\"स्मार्ट इन्वेंटरी हटाने में विफल।\"],\"SqYo9m\":[\"इंस्टेंस पर वापस\"],\"Ssdrw4\":[\"बहिष्कृत\"],\"Successful\":[\"सफल\"],\"SvPvEX\":[\"वर्कफ़्लो अनुमोदित संदेश मुख्य भाग\"],\"Svkela\":[\"पिछले पृष्ठ पर जाएं\"],\"SwJLlZ\":[\"वर्कफ़्लो अस्वीकृत संदेश मुख्य भाग\"],\"SxGqey\":[\"जेनेरिक OIDC सेटिंग्स\"],\"Sxm8rQ\":[\"उपयोगकर्ता\"],\"SzFxHC\":[\"LDAP सेटिंग्स\"],\"SzQMpA\":[\"फ़ोर्क्स\"],\"T2M20E\":[\"The\"],\"T2mGOG\":[\"docs.ansible.com\"],\"T2x15z\":[\"सूचना टॉगल करने में विफल।\"],\"T4a4A4\":[\"वेबहुक कुंजी\"],\"T7yEGN\":[\"अनुदान प्रकार जिसका उपयोग उपयोगकर्ता को इस एप्लिकेशन के लिए टोकन प्राप्त करने के लिए करना चाहिए\"],\"T91vKp\":[\"प्ले\"],\"T9hZ3D\":[\"GitHub Enterprise Team\"],\"TAnffV\":[\"इस नोड को संपादित करें\"],\"TBH48u\":[\"टीम हटाने में विफल।\"],\"TC32CH\":[\"रखे जाने वाले डेटा के दिन\"],\"TD1APv\":[\"सदस्यताएं प्राप्त करें\"],\"TJVvMD\":[\"संबंधित खोज प्रकार\"],\"TLomdD\":[[\"sessionCountdown\",\"plural\",{\"one\":[\"निष्क्रियता के कारण आपको \",\"#\",\" सेकंड में लॉग आउट कर दिया जाएगा\"],\"other\":[\"निष्क्रियता के कारण आपको \",\"#\",\" सेकंड में लॉग आउट कर दिया जाएगा\"]}]],\"TMJ39S\":[\"भूमिका अलग करें\"],\"TMLAx2\":[\"आवश्यक\"],\"TO3h59\":[\"बाहरी सीक्रेट प्रबंधन सिस्टम से फ़ील्ड भरें\"],\"TO4OtU\":[\"Insights क्रेडेंशियल\"],\"TOjYb_\":[\"निर्मित इन्वेंटरी होस्ट विवरण देखें\"],\"TP9_K5\":[\"टोकन\"],\"TRDppN\":[\"वेबहुक\"],\"TTMvf7\":[\"समूह प्रकार\"],\"TU6IDa\":[\"उपयोगकर्ता प्रकार\"],\"TXKmNM\":[\"एक इन्वेंटरी चुनी जानी चाहिए\"],\"TZEuIE\":[\"क्रेडेंशियल प्रकार पर वापस\"],\"T_87By\":[\"पैरामीटर\"],\"Ta0ts5\":[\"परिवर्तन दिखाएं\"],\"TcnG-2\":[\"नया निष्पादन वातावरण बनाएं\"],\"TgSxH9\":[\"प्रोविज़निंग कॉलबैक URL\"],\"TkiN8D\":[\"उपयोगकर्ता विवरण\"],\"Tmh24b\":[\"यदि सक्षम है, तो जॉब टेम्पलेट किसी भी इन्वेंटरी या संगठन इंस्टेंस समूह को चलाने के लिए पसंदीदा इंस्टेंस समूहों की सूची में जोड़ने से रोकेगा। नोट: यदि यह सेटिंग सक्षम है और आपने एक खाली सूची प्रदान की है, तो वैश्विक इंस्टेंस समूह लागू किए जाएंगे।\"],\"Tmuvry\":[\"प्रकार सेट करें टाइपअहेड\"],\"ToOoEw\":[\"क्रेडेंशियल कॉपी करें\"],\"Tof7pX\":[\"जॉब्स\"],\"Tq71UT\":[\"कार्यदिवस\"],\"Tx3NMN\":[\"निजी कुंजी पासफ़्रेज़\"],\"TxKKED\":[\"निर्मित इन्वेंटरी विवरण देखें\"],\"TyaPAx\":[\"सिस्टम प्रशासक\"],\"Tz0i8g\":[\"सेटिंग्स\"],\"U-nEJl\":[\"GitHub सेटिंग्स देखें\"],\"U011Uh\":[\"अंतिम बार देखा गया\"],\"U7rA2a\":[\"जब चेक नहीं किया जाता है, तो एक मर्ज किया जाएगा, स्थानीय वेरिएबल्स को बाहरी स्रोत पर पाए गए वेरिएबल्स के साथ संयोजित किया जाएगा।\"],\"UDf-wR\":[\"उपभोग की गई सदस्यताएं\"],\"UEaj7U\":[\"इन्वेंटरी सिंक विफलताएं\"],\"UJpDop\":[\"Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"UJsNNk\":[\"सोर्स कंट्रोल रिवीज़न\"],\"UPasE4\":[\"Azure AD डिफ़ॉल्ट\"],\"UPmrRI\":[\"endswith का केस-असंवेदनशील संस्करण।\"],\"URmyfc\":[\"विवरण\"],\"UX2wV1\":[[\"0\",\"plural\",{\"one\":[\"यह क्रेडेंशियल वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"other\":[\"इन क्रेडेंशियल्स को हटाने से उन पर निर्भर अन्य संसाधन प्रभावित हो सकते हैं। क्या आप फिर भी हटाना चाहते हैं?\"]}]],\"UXBCwc\":[\"अंतिम नाम\"],\"UY6iPZ\":[\"यदि सक्षम है, तो नियंत्रण नोड्स स्वचालित रूप से इस इंस्टेंस से पीयर करेंगे। यदि अक्षम है, तो इंस्टेंस केवल संबद्ध पीयर से कनेक्ट होगा।\"],\"UYD5ld\":[\"और लॉन्च पर रिवीज़न अपडेट करें पर क्लिक करें\"],\"UYUgdb\":[\"क्रम\"],\"U_JUCL\":[\"Red Hat Insights\"],\"Ua-Kc6\":[\"www.json.org\"],\"UbOul8\":[\"क्या आप वाकई हटाना चाहते हैं:\"],\"UbRKMZ\":[\"लंबित\"],\"UbqhuT\":[\"पूर्ण नोड संसाधन ऑब्जेक्ट प्राप्त करने में विफल।\"],\"Uc_tSU\":[\"टूल टॉगल करें\"],\"UgFDh3\":[\"यह इन्वेंटरी वर्तमान में अन्य संसाधनों द्वारा उपयोग की जा रही है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"UirGxE\":[\"त्रुटियां\"],\"UlykKR\":[\"तीसरा\"],\"Uo1S9q\":[\"Azure AD Tenant से साइन इन करें\"],\"UueF8b\":[\"निष्पादन वातावरण अनुपस्थित या हटा दिया गया है।\"],\"UvGjRK\":[\"यदि सक्षम है, तो इस playbook को व्यवस्थापक के रूप में चलाएँ।\"],\"UwJJCk\":[\"विफल होस्ट्स पुनः लॉन्च करें\"],\"UxKoFf\":[\"नेविगेशन\"],\"V-7saq\":[[\"pluralizedItemName\"],\" हटाएं?\"],\"V-rJKF\":[\"Seconds\"],\"V0Xv3_\":[[\"intervalValue\",\"plural\",{\"one\":[\"दिन\"],\"other\":[\"दिन\"]}]],\"V0fM4k\":[\"उपयोगकर्ता एनालिटिक्स\"],\"V1EGGU\":[\"पहला नाम\"],\"V2-omF\":[[\"0\",\"plural\",{\"one\":[\"अंतिम विलोपन संसाधित होने तक इन्वेंट्री लंबित स्थिति में रहेगी।\"],\"other\":[\"अंतिम विलोपन संसाधित होने तक इन्वेंट्रीज़ लंबित स्थिति में रहेंगी।\"]}]],\"V2RwJr\":[\"लिसनर पते\"],\"V2q9w9\":[\"If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode.\"],\"V3z83V\":[\"LDAP 3\"],\"V4WsyL\":[\"लिंक जोड़ें\"],\"V5RUpn\":[\"प्राप्तकर्ता सूची\"],\"V7qsYh\":[\"नोट: इन क्रेडेंशियल्स का क्रम सामग्री के सिंक और लुकअप के लिए प्राथमिकता निर्धारित करता है। खींचने को सक्षम करने के लिए एक से अधिक चुनें।\"],\"V9xR6T\":[\"अनुभाग विस्तृत करें\"],\"VAI2fh\":[\"नया कंटेनर समूह बनाएं\"],\"VAcXNz\":[\"बुधवार\"],\"VEj6_Y\":[\"वर्कफ़्लो अनुमोदन\"],\"VFvVc6\":[\"विवरण संपादित करें\"],\"VJUm9p\":[\"वर्तमान पृष्ठ\"],\"VK2gzi\":[\"प्लेबुक निष्पादित करते समय उपयोग करने के लिए समानांतर या एक साथ चलने वाली प्रक्रियाओं की संख्या। एक खाली मान, या 1 से कम मान, Ansible डिफ़ॉल्ट का उपयोग करेगा जो आमतौर पर 5 होता है। डिफ़ॉल्ट फ़ोर्क्स की संख्या को निम्नलिखित में परिवर्तन करके ओवरराइट किया जा सकता है\"],\"VL2WkJ\":[\"अंतिम \",[\"dayOfWeek\"]],\"VLdRt2\":[\"सिंक स्रोत प्रारंभ करें\"],\"VNUs2y\":[\"अधिकतम फ़ोर्क्स\"],\"VSJ6r5\":[\"शेड्यूल सक्रिय है\"],\"VSim_H\":[\"इन्वेंटरी स्रोत हटाएं\"],\"VTDO7X\":[\"इवेंट विवरण मोडल\"],\"VU3Nrn\":[\"अनुपस्थित\"],\"VWL2DK\":[\"GitHub Organization\"],\"VXFjd8\":[\"मेट्रिक्स\"],\"VZfXhQ\":[\"हॉप नोड\"],\"VdcFUD\":[\"अंतिम उपयोगकर्ता लाइसेंस अनुबंध\"],\"ViDr6F\":[\"नया समूह जोड़ें\"],\"VmClsw\":[\"इस नोड से संबद्ध संसाधन हटा दिया गया है।\"],\"VmvLj9\":[\"क्लाइंट डिवाइस कितना सुरक्षित है, इसके आधार पर Public या Confidential पर सेट करें।\"],\"Vqd-tq\":[\"सभी वापस लौटाने की पुष्टि करें\"],\"Vqgeac\":[\"Press space or enter to begin dragging,\\n and use the arrow keys to navigate up or down.\\n Press enter to confirm the drag, or any other key to\\n cancel the drag operation.\"],\"Vvbbn2\":[\"भूमिका हटाने में विफल।\"],\"Vw8l6h\":[\"एक त्रुटि हुई\"],\"VzE_M-\":[\"सूचना विफलता टॉगल करें\"],\"W-O1E9\":[\"प्रोजेक्ट कॉपी करें\"],\"W1iIqa\":[\"इन्वेंटरी समूह देखें\"],\"W3TNvn\":[\"उपयोगकर्ताओं पर वापस\"],\"W3pOzF\":[\"इस प्रोजेक्ट का उपयोग करने वाले जॉब टेम्पलेट में स्रोत नियंत्रण ब्रांच या रिविज़न बदलने की अनुमति दें।\"],\"W6uTJi\":[\"इंस्टेंस प्राप्त करने में विफल।\"],\"W7DGsV\":[\"द्वारा लॉन्च किया गया (उपयोगकर्ता नाम)\"],\"W9XAF4\":[\"कार्यदिवस\"],\"W9uQXX\":[\"संकेत\"],\"WAjFYI\":[\"प्रारंभ तिथि\"],\"WD8djW\":[\"लिंक हटाने की पुष्टि करें\"],\"WL91Ms\":[\"Delete Groups?\"],\"WPM2RV\":[\"उत्तर प्रकार\"],\"WQJduu\":[\"कुंजी चयन\"],\"WTN9YX\":[\"खाता टोकन\"],\"WTV15I\":[\"लॉगिन रीडायरेक्ट ओवरराइड URL संपादित करें\"],\"WVzGc2\":[\"सदस्यता\"],\"WX9-kf\":[\"IRC निक\"],\"Wc6m4J\":[\"लाने के लिए एक refspec (Ansible git मॉड्यूल को पास किया गया)। यह पैरामीटर ब्रांच फ़ील्ड के माध्यम से उन संदर्भों तक पहुँच की अनुमति देता है जो अन्यथा उपलब्ध नहीं होते।\"],\"Wdl2f2\":[\"इस फ़ील्ड में कम से कम \",[\"0\"],\" वर्ण होने चाहिए\"],\"WgsBEi\":[\"एक नई स्मार्ट इन्वेंटरी बनाने के लिए कम से कम एक खोज फ़िल्टर दर्ज करें\"],\"WhSFGl\":[[\"name\"],\" द्वारा फ़िल्टर करें\"],\"Wi1pUG\":[[\"numJobsToCancel\",\"plural\",{\"one\":[[\"0\"]],\"other\":[[\"1\"]]}]],\"Wk1rOS\":[\"ग्राफ़ को उपलब्ध स्क्रीन आकार में फ़िट करें\"],\"Wm7XbF\":[\"एक या अधिक क्रेडेंशियल हटाने में विफल।\"],\"WqaDMq\":[\"फ़ील्ड में मान शामिल है।\"],\"Wy25yg\":[\"Twilio\"],\"X03-eC\":[\"कृपया एक मान दर्ज करें।\"],\"X5V9DW\":[\"नोड को पुनः कॉन्फ़िगर करने के लिए नीचे संपादित करें बटन पर क्लिक करें।\"],\"X6d3Zy\":[\"संगठन हटाने में विफल।\"],\"X97mbf\":[\"एक जॉब प्रकार चुनें\"],\"XA12d8\":[\"स्लाइस के अपने होस्ट के अतिरिक्त, प्रत्येक जॉब स्लाइस में शामिल करने के लिए होस्ट नामों की वैकल्पिक अल्पविराम से अलग की गई सूची। यह तब उपयोगी है जब कोई play किसी समन्वयकारी होस्ट, जैसे localhost, को लक्षित करता है, जिस पर सभी स्लाइस निर्भर करते हैं। नाम इन्वेंटरी होस्ट के साथ बिल्कुल मिलान किए जाते हैं; समूह और पैटर्न समर्थित नहीं हैं। पिन किए गए होस्ट प्रति स्लाइस एक बार अपने play चलाते हैं।\"],\"XBROpk\":[\"वर्कफ़्लो द्वारा प्रबंधित या प्रभावित होने वाले होस्ट्स की सूची को और अधिक सीमित करने के लिए एक होस्ट पैटर्न प्रदान करें।\"],\"XCCkju\":[\"नोड संपादित करें\"],\"XFRygA\":[\"रिमोट संग्रह स्रोत नियंत्रण के लिए उदाहरण URL में शामिल हैं:\"],\"XHxwBV\":[\"चयनित तिथि सीमा में कम से कम 1 शेड्यूल घटना होनी चाहिए।\"],\"XILg0L\":[\"अमान्य ईमेल पता\"],\"XJOV1Y\":[\"गतिविधि\"],\"XKp83s\":[\"स्रोतों वाली इन्वेंटरी कॉपी नहीं की जा सकतीं\"],\"XLMJ7O\":[\"क्लाउड\"],\"XLpxoj\":[\"ईमेल विकल्प\"],\"XM-gTv\":[\"कॉन्फ़िगरेशन फ़ाइल के बारे में विवरण के लिए Ansible दस्तावेज़ीकरण देखें।\"],\"XOD7tz\":[\"परिवर्तन दिखाएं\"],\"XOaZX3\":[\"पृष्ठांकन\"],\"XP6TQ-\":[\"यदि निर्दिष्ट किया गया है, तो वर्कफ़्लो देखते समय यह फ़ील्ड संसाधन नाम के बजाय नोड पर दिखाया जाएगा\"],\"XREJvl\":[\"इन्वेंटरी स्रोत को कॉन्फ़िगर करने के लिए उपयोग किए जाने वाले वेरिएबल्स। इस प्लगइन को कॉन्फ़िगर करने के तरीके के विस्तृत विवरण के लिए, देखें\"],\"XViLWZ\":[\"विफलता पर\"],\"XWDz5f\":[\"सरल कुंजी चयन\"],\"X_5TsL\":[\"सर्वेक्षण टॉगल\"],\"XaxYwV\":[\"संकेतित मान\"],\"XbIM8f\":[\"कुल इन्वेंटरी स्रोत\"],\"XdyHT-\":[\"आयातित होस्ट्स\"],\"XfmfOA\":[\"हर बार चलाएं\"],\"Xg3aVa\":[\"SSL का उपयोग करें\"],\"XgTa_2\":[\"The inventory will be in a pending status until the final delete is processed.\"],\"XilEsm\":[\"इंस्टेंस समूह\"],\"Xm7ruy\":[\"5 (WinRM डिबग)\"],\"XmJfZT\":[\"नाम\"],\"XmVvzl\":[\"लागू करने के लिए भूमिकाएं चुनें\"],\"XnxCSh\":[\"मानक त्रुटि\"],\"XozZ38\":[\"एक या अधिक इन्वेंटरी स्रोत हटाने में विफल।\"],\"Xq9A0U\":[\"अज्ञात प्रोजेक्ट\"],\"Xt4N6V\":[\"संकेत | \",[\"0\"]],\"XtpZSU\":[\"सभी जॉब प्रकार\"],\"Xx-ftH\":[\"आपने अपनी सदस्यता की अनुमति से अधिक होस्ट्स के विरुद्ध स्वचालन किया है।\"],\"XyTWuQ\":[\"कृपया तब तक प्रतीक्षा करें जब तक टोपोलॉजी दृश्य भर न जाए...\"],\"XyW2nH\":[[\"0\",\"plural\",{\"one\":[\"क्या आप वाकई नीचे दिए गए समूह को हटाना चाहते हैं?\"],\"other\":[\"क्या आप वाकई नीचे दिए गए समूहों को हटाना चाहते हैं?\"]}]],\"XzD7xj\":[\"आइटम चुनें\"],\"Y1YKad\":[\"विवरण संपादित करें\"],\"Y296GK\":[\"भूमिका हटाने में विफल\"],\"Y2ml-n\":[\"अनुमोदित - \",[\"0\"],\". अधिक जानकारी के लिए गतिविधि स्ट्रीम देखें।\"],\"Y5VrmH\":[\"इन्वेंटरी सिंक के लिए कॉन्फ़िगर नहीं किया गया।\"],\"Y5vgVF\":[\"सफलतापूर्वक अस्वीकृत\"],\"Y5xJ7I\":[\"प्लेबुक नाम\"],\"Y60pX3\":[\"निर्मित इन्वेंटरी जोड़ें\"],\"YA4I45\":[\"एक मॉड्यूल चुनें\"],\"YFmVSY\":[\"अलग करें?\"],\"YJddb4\":[\"इंस्टेंस प्रकार\"],\"YLMfol\":[\"उस संसाधन का प्रकार चुनें जो नई भूमिकाएं प्राप्त करेगा। उदाहरण के लिए, यदि आप उपयोगकर्ताओं के एक समूह में नई भूमिकाएं जोड़ना चाहते हैं तो कृपया उपयोगकर्ता चुनें और अगला क्लिक करें। आप अगले चरण में विशिष्ट संसाधन चुन सकेंगे।\"],\"YM06Nm\":[\"क्रेडेंशियल प्रकार संपादित करें\"],\"YMLB2b\":[\"टाइमआउट समाप्त होने पर अनुमोदन नोड स्वचालित रूप से अनुमोदित या अस्वीकृत होता है या नहीं।\"],\"YMpSlP\":[\"किसी इन्वेंटरी सिंक को वर्तमान मानने के लिए सेकंड में समय। जॉब रन और कॉलबैक के दौरान कार्य सिस्टम नवीनतम सिंक के टाइमस्टैम्प का मूल्यांकन करेगा। यदि यह कैश टाइमआउट से पुराना है, तो इसे वर्तमान नहीं माना जाता है, और एक नया इन्वेंटरी सिंक किया जाएगा।\"],\"YOOdGq\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" मिनट\"],\"other\":[\"#\",\" मिनट\"]}]],\"YOh7Aw\":[\"Workflow Job \",[\"currentPosition\"],\"/\",[\"total\"]],\"YP5KRj\":[\"सहेजने पर एक नया वेबहुक url जनरेट किया जाएगा।\"],\"YPDLLX\":[\"निष्पादन वातावरण पर वापस\"],\"YQqM-5\":[\"निष्पादन के लिए उपयोग की जाने वाली कंटेनर छवि।\"],\"Yd45Xn\":[\"प्रोसेसर प्रकार द्वारा होस्ट्स\"],\"Yfw7TK\":[\"सूचना का समय समाप्त हुआ\"],\"YgqgXs\":[[\"intervalValue\",\"plural\",{\"one\":[\"मिनट\"],\"other\":[\"मिनट\"]}]],\"YiQ03p\":[\"शेड्यूल हटाने में विफल।\"],\"YiUAZm\":[\"<0>नोट: यदि यह इंस्टेंस <1>पॉलिसी नियमों द्वारा प्रबंधित है, तो इसे इस इंस्टेंस समूह के साथ फिर से संबद्ध किया जा सकता है।\"],\"YlGAPh\":[\"जॉब स्लाइस पिन किए गए होस्ट्स\"],\"Ym7-mu\":[\"प्रति पंक्ति एक Slack चैनल। चैनलों के लिए पाउंड प्रतीक (#)\\n आवश्यक है। किसी विशिष्ट संदेश का उत्तर देने या उसके लिए थ्रेड प्रारंभ करने के लिए पैरेंट संदेश Id को चैनल में जोड़ें जहां पैरेंट संदेश Id 16 अंकों का हो। 10वें अंक के बाद एक डॉट (.) मैन्युअल रूप से डाला जाना चाहिए। उदा:#destination-channel, 1231257890.006423। Slack देखें\"],\"YmEWZH\":[\"टेम्पलेट लॉन्च करें\"],\"YmjTf2\":[\"प्रोविज़निंग विफल\"],\"YoXjSs\":[\"लॉन्च पर इन्वेंटरी के लिए संकेत दें।\"],\"Yq4Eaf\":[\"इस जॉब के लिए होस्ट स्थिति जानकारी अनुपलब्ध है।\"],\"YsN-3o\":[\"इन्वेंटरी स्रोत विवरण देखें\"],\"Yt-rBv\":[\"यह प्रोजेक्ट वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"YuC9dj\":[\"संबद्ध करें\"],\"YxDLmM\":[\"Insights सिस्टम ID\"],\"Z17FAa\":[\"अज्ञात इन्वेंटरी\"],\"Z1Vtl5\":[\"प्रोजेक्ट सिंक रद्द करने में विफल\"],\"Z25_RC\":[\"इनपुट चुनें\"],\"Z2hVSb\":[\"हाइब्रिड\"],\"Z40J8D\":[\"प्रोविज़निंग कॉलबैक URL के निर्माण को सक्षम करता है। URL का उपयोग करके, एक होस्ट \",[\"brandName\"],\" से संपर्क कर सकता है और इस जॉब टेम्पलेट का उपयोग करके कॉन्फ़िगरेशन अपडेट का अनुरोध कर सकता है।\"],\"Z5HWHd\":[\"चालू\"],\"Z7ZXbT\":[\"अनुमोदित करें\"],\"Z88yEl\":[\"इससे बड़ा या बराबर तुलना।\"],\"Z9EFpE\":[\"Automation Analytics डैशबोर्ड\"],\"ZAWGCX\":[[\"0\"],\" सेकंड\"],\"ZEP8tT\":[\"लॉन्च करें\"],\"ZGDCzb\":[\"इंस्टेंस नहीं मिला।\"],\"ZJjKDg\":[\"प्रबंधित नोड्स\"],\"ZKKnVf\":[\"नया वर्कफ़्लो टेम्पलेट बनाएं\"],\"ZL3d6Z\":[\"IRC सर्वर पता\"],\"ZO4CYH\":[\"चल रही जॉब्स\"],\"ZOLfb2\":[\"यह फ़ील्ड रिक्त नहीं होना चाहिए।\"],\"ZWhZbs\":[\"नोड हटाने की पुष्टि करें\"],\"ZajTWA\":[\"स्रोत फ़ोन नंबर\"],\"Zf6u-6\":[\"स्पष्टीकरण\"],\"ZfrRb0\":[\"कृपया एक इन्वेंटरी चुनें या लॉन्च पर संकेत विकल्प चेक करें\"],\"ZhUwVw\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" सप्ताह\"],\"other\":[\"#\",\" सप्ताह\"]}]],\"ZhxwOq\":[\"त्रुटि संदेश मुख्य भाग\"],\"Zikd-1\":[\"आपने जिन होस्ट्स के विरुद्ध स्वचालन किया है उनकी संख्या आपकी सदस्यता गणना से कम है।\"],\"ZjC8QM\":[\"होस्ट हटाने में विफल।\"],\"ZjvPb1\":[\"द्वारा बनाया गया (उपयोगकर्ता नाम)\"],\"Zkh5np\":[[\"0\"],\" पर पीयर अपडेट होते हैं। परिवर्तन प्रभावी होते देखने के लिए कृपया \",[\"1\"],\" के लिए इंस्टॉल बंडल फिर से चलाना सुनिश्चित करें।\"],\"ZpdX6R\":[\"टोकन हटाने में त्रुटि\"],\"ZrsGjm\":[\"इन्वेंटरी\"],\"ZumtuZ\":[\"टेम्पलेट कॉपी करें\"],\"ZvVF4C\":[\"सर्वेक्षण प्रश्न हटाएं\"],\"ZwCTcT\":[\"हाल की जॉब्स सूची टैब\"],\"ZwujDQ\":[\"पिछला वर्ष\"],\"_-NKbo\":[\"शेड्यूल टॉगल करने में विफल।\"],\"_2LfCe\":[\"सर्वेक्षण प्रश्नों को पुनः क्रमबद्ध करने के लिए उन्हें खींचकर इच्छित स्थान पर छोड़ें।\"],\"_4gGIX\":[\"क्लिपबोर्ड पर कॉपी करें\"],\"_5REdR\":[\"निर्मित इन्वेंटरी प्लगइन के लिए इनपुट इन्वेंटरी चुनें।\"],\"_Fg1cM\":[\"वर्कफ़्लो टाइम आउट संदेश मुख्य भाग\"],\"_ITcnz\":[\"दिन\"],\"_Ia62Q\":[\"निर्मित इन्वेंटरी उदाहरण\"],\"_JN1gB\":[\"कार्य संख्या\"],\"_K2CvV\":[\"टेम्पलेट\"],\"_LQZpR\":[[\"intervalValue\",\"plural\",{\"one\":[\"वर्ष\"],\"other\":[\"वर्ष\"]}]],\"_LVfwJ\":[\"निर्मित इन्वेंटरी स्रोत सिंक त्रुटि\"],\"_M4FeF\":[\"वह निष्पादन वातावरण चुनें जिसके अंदर आप इस कमांड को चलाना चाहते हैं।\"],\"_MdgrM\":[\"इन दो नोड्स के बीच एक नया नोड जोड़ें\"],\"_PRaan\":[\"एक या अधिक सूचना टेम्पलेट हटाने में विफल।\"],\"_Pz_QH\":[\"नीति द्वारा प्रबंधित\"],\"_W3ZAw\":[[\"selectedItemsCount\",\"plural\",{\"one\":[\"चयनित इंस्टेंस पर हेल्थ चेक चलाने के लिए क्लिक करें।\"],\"other\":[\"चयनित इंस्टेंसों पर हेल्थ चेक चलाने के लिए क्लिक करें।\"]}]],\"_WBq2_\":[\"अस्वीकृत - \",[\"0\"],\". अधिक जानकारी के लिए गतिविधि स्ट्रीम देखें।\"],\"_Yq4TU\":[\"इस समूह पर एक साथ चल रहे सभी जॉब्स में अनुमत फ़ोर्क्स की अधिकतम संख्या।\\n शून्य का अर्थ है कोई सीमा लागू नहीं की जाएगी।\"],\"_ZBhqw\":[\"इन्वेंटरी स्रोत सिंक रद्द करने में विफल\"],\"_bAUGi\":[\"एक HTTP विधि चुनें\"],\"_bE0AS\":[\"एक इंस्टेंस चुनें\"],\"_cV6Mf\":[\"ब्राउज़ करें…\"],\"_cq4Aa\":[\"वर्कफ़्लो अनुमोदन नहीं मिला।\"],\"_ereyb\":[\"TACACS+\"],\"_gCD76\":[\"इंस्टेंस समूह संपादित करें\"],\"_ismew\":[\"आर्टिफ़ैक्ट कुंजी\"],\"_kYJq6\":[\"रखने के लिए डेटा के दिन\"],\"_khNCh\":[\"जॉब टेम्पलेट के ड़िफ़ॉल्ट क्रेडेंशियल को समान प्रकार के किसी एक से बदला जाना चाहिए। आगे बढ़ने के लिए कृपया निम्नलिखित प्रकारों के लिए एक क्रेडेंशियल चुनें: \",[\"0\"]],\"_oeZtS\":[\"होस्ट पोलिंग\"],\"_rCRcH\":[\"उन्नत खोज दस्तावेज़ीकरण\"],\"_vI8Rx\":[\"Delete Group?\"],\"a02Xjc\":[\"IRC सर्वर पता\"],\"a3AD0M\":[\"लॉगिन रीडायरेक्ट संपादन की पुष्टि करें\"],\"a5zD9f\":[\"परिवर्तन\"],\"a6E-_p\":[\"contains का केस-असंवेदनशील संस्करण\"],\"a8AgQY\":[\"होस्ट विवरण देखें\"],\"a8nooQ\":[\"चौथा\"],\"a9BTUD\":[\"सप्ताहांत का दिन\"],\"aBgwis\":[\"स्कोप\"],\"aLlb3-\":[\"boolean\"],\"aNxqSL\":[\"निष्पादन वातावरण हटाएं\"],\"aQ4XJX\":[\"लॉग सिस्टम को फ़ैक्ट्स को व्यक्तिगत रूप से ट्रैक करने में सक्षम करें\"],\"aSuBiU\":[\"Microsoft Azure Resource Manager\"],\"aTK0Fh\":[\"दिनों पर\"],\"aUNPq3\":[\"निष्पादन नोड\"],\"aVoVcG\":[\"बहु-चयन\"],\"aXBrSq\":[\"Red Hat Virtualization\"],\"a_vlog\":[[\"0\"],\" चिप हटाएं\"],\"adPhRK\":[\"वह इन्वेंटरी जिससे यह होस्ट संबंधित है।\"],\"adjqlB\":[[\"0\"],\" (हटाया गया)\"],\"aht2s_\":[\"सूचना रंग\"],\"aiejXq\":[\"संसाधन प्रकार जोड़ें\"],\"ajDpGH\":[\"स्थिति:\"],\"anfIXl\":[\"उपयोगकर्ता विवरण\"],\"aqqAbL\":[\"यदि सक्षम है, तो इन्वेंटरी संबद्ध जॉब टेम्पलेट चलाने के लिए पसंदीदा इंस्टेंस समूहों की सूची में किसी भी संगठन इंस्टेंस समूह को जोड़ने से रोकेगी। नोट: यदि यह सेटिंग सक्षम है और आपने एक खाली सूची प्रदान की है, तो वैश्विक इंस्टेंस समूह लागू किए जाएंगे।\"],\"ar5AA2\":[\"अधिक जानकारी के लिए।\"],\"ataY5Z\":[\"जॉब हटाने में त्रुटि\"],\"ax6e8j\":[\"होस्ट फ़िल्टर संपादित करने से पहले कृपया एक संगठन चुनें\"],\"az8lvo\":[\"बंद\"],\"b1CAkh\":[\"प्रबंधन जॉब्स\"],\"b2Z0Zq\":[\"लिंक परिवर्तन रद्द करें\"],\"b433OF\":[\"समूह संपादित करें\"],\"b4SLah\":[\"बाईं ओर त्रुटियां देखें\"],\"b9Y4up\":[\"क्लाइंट ID\"],\"bDa_hW\":[\"उन इंस्टेंस समूहों का चयन करें जिन पर इस इन्वेंटरी स्रोत का समन्वयन चलना चाहिए। यदि सेट नहीं किया गया है, तो समन्वयन इन्वेंटरी या उसके संगठन के इंस्टेंस समूहों पर चलता है।\"],\"bE4zYn\":[\"वह पोर्ट चुनें जिस पर Receptor आने वाले कनेक्शन के लिए सुनेगा, उदा. 27199।\"],\"bHXYoC\":[\"HTTP विधि\"],\"bKR18T\":[\"सब्सक्रिप्शन मैनिफ़ेस्ट Red Hat सब्सक्रिप्शन का एक निर्यात है। सब्सक्रिप्शन मैनिफ़ेस्ट जनरेट करने के लिए, <0>access.redhat.com पर जाएं। अधिक जानकारी के लिए, <1>उपयोगकर्ता गाइड देखें।\"],\"bLt_0J\":[\"वर्कफ़्लो\"],\"bPq357\":[\"सक्षम मान\"],\"bQZByw\":[\"प्रति पंक्ति एक एनोटेशन टैग का उपयोग करें, बिना अल्पविराम के।\"],\"bTu5jX\":[\"उपयोगकर्ता नाम / पासवर्ड\"],\"bWr6j5\":[\"इस फ़ील्ड में कम से कम \",[\"min\"],\" वर्ण होने चाहिए\"],\"bY8C86\":[\"सभी उपयोगकर्ता देखें।\"],\"bYXbel\":[\"वर्कफ़्लो जॉब टेम्पलेट वेबहुक कुंजी\"],\"baP8gx\":[\"4 (कनेक्शन डिबग)\"],\"baqrhc\":[\"HTTP हेडर\"],\"bbJ-VR\":[\"ज़ूम आउट करें\"],\"bcyJXs\":[\"आइटम ठीक है\"],\"bd1Kuw\":[\"आइकन URL\"],\"bf7UKi\":[\"कैश टाइमआउट अपडेट करें\"],\"bfgr_e\":[\"प्रश्न\"],\"bgjTnp\":[\"0 (सामान्य)\"],\"bgq1rW\":[\"खोज सबमिट बटन\"],\"bhxnLH\":[\"आपके पास निम्न समूह हटाने की अनुमति नहीं है: \",[\"itemsUnableToDelete\"]],\"bkPO0d\":[\"सूचना प्रकार\"],\"bpECfE\":[\"लिंक हटाना रद्द करें\"],\"bpnj1H\":[\"इस सामग्री को लोड करने में त्रुटि हुई। कृपया पृष्ठ पुनः लोड करें।\"],\"bwRvnp\":[\"क्रिया\"],\"bx2rrL\":[\"स्मार्ट इन्वेंटरी\"],\"bxaVlf\":[\"नया क्रेडेंशियल प्रकार बनाएं\"],\"byXCTu\":[\"घटनाएं\"],\"bznJUg\":[\"वह इन्वेंटरी चुनें जिसमें वे होस्ट हैं जिन्हें आप इस वर्कफ़्लो से प्रबंधित करना चाहते हैं।\"],\"bzv8Dv\":[\"हटाने में त्रुटि\"],\"c-xCSz\":[\"सत्य\"],\"c0n4p3\":[\"फ़ैक्ट स्टोरेज\"],\"c1Rsz1\":[\"वर्कफ़्लो अनुमोदन विवरण देखें\"],\"c3XJ18\":[\"सहायता\"],\"c4kHK7\":[\"सदस्यता मोडल बंद करें\"],\"c6IFRs\":[\"सेवा खाता JSON फ़ाइल\"],\"c6u6gk\":[\"इस संगठन के चलने के लिए इंस्टेंस समूह चुनें।\"],\"c7-Adk\":[\"इन्वेंटरी स्रोत सिंक करने में विफल।\"],\"c8HyJq\":[\"इस इन्वेंटरी के चलने के लिए इंस्टेंस समूह चुनें।\"],\"c8sV0t\":[\"यह सुविधा बहिष्कृत है और भविष्य के रिलीज़ में हटा दी जाएगी।\"],\"c9V3Yo\":[\"होस्ट विफल\"],\"c9iw51\":[\"चल रही जॉब्स\"],\"c9pF61\":[\"क्लाइंट पहचानकर्ता\"],\"cFC8w7\":[\"यह इन्वेंटरी स्रोत वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है जो इस पर निर्भर हैं। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"cFCKYZ\":[\"अस्वीकार करें\"],\"cFOXv9\":[\"जेनेरिक OIDC\"],\"cGRiaP\":[\"इवेंट विवरण\"],\"cIdUma\":[\"\\n \",[\"project_base_dir\"],\" में कोई उपलब्ध प्लेबुक निर्देशिका नहीं है।\\n या तो वह निर्देशिका खाली है, या सभी सामग्री पहले से ही\\n अन्य प्रोजेक्ट्स को असाइन की गई है। वहां एक नई निर्देशिका बनाएं और सुनिश्चित\\n करें कि प्लेबुक फ़ाइलें \\\"awx\\\" सिस्टम उपयोगकर्ता द्वारा पढ़ी जा सकती हैं,\\n या ऊपर दिए गए सोर्स कंट्रोल प्रकार विकल्प का उपयोग करके \",[\"brandName\"],\" को\\n सोर्स कंट्रोल से सीधे आपकी प्लेबुक प्राप्त करने दें।\"],\"cNsIJf\":[\"बदला गया\"],\"cPTnDL\":[\"प्रोजेक्ट सिंक\"],\"cQIQa2\":[\"समूह चुनें\"],\"cQlPDN\":[\"पढ़ें\"],\"cUKLzq\":[\"क्रम संपादित करें\"],\"cYir0h\":[\"विकल्प चुनें\"],\"c_PGsA\":[\"वर्कफ़्लो जॉब विवरण\"],\"cbSPfq\":[\"इस वर्कफ़्लो पर पहले ही कार्रवाई की जा चुकी है\"],\"ccA_Bz\":[\"वेरिएबल नामों के लिए सुझाया गया प्रारूप लोअरकेस और\\n अंडरस्कोर-पृथक है (उदाहरण के लिए, foo_bar, user_id, host_name,\\n आदि)। रिक्त स्थान वाले वेरिएबल नामों की अनुमति नहीं है।\"],\"cdm6_X\":[\"उपयोग की गई क्षमता\"],\"chbm2W\":[\"इंस्टेंस फ़िल्टर\"],\"ci3mwY\":[\"यह फ़ील्ड रिक्त नहीं होना चाहिए\"],\"cit9TY\":[\"मूल नोड द्वारा set_stats के माध्यम से उत्पादित आर्टिफ़ैक्ट का नाम। लिंक का अनुसरण केवल तभी किया जाता है जब मूल जॉब चुने गए परिणाम से मेल खाती है और स्थिति सत्य होती है। अनुपस्थित कुंजी कभी मेल नहीं खाती।\"],\"cj1KTQ\":[\"सभी इन्वेंटरी देखें।\"],\"cjJXKx\":[\"होस्ट एसिंक विफलता\"],\"ckH3fT\":[\"तैयार\"],\"ckdiAB\":[\"सूचना हटाएं\"],\"cmWTxn\":[\"इससे कम या बराबर तुलना।\"],\"cnGeoo\":[\"हटाएं\"],\"cnnWD0\":[\"By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>\",[\"0\"],\". Uncheck the following boxes to disable this feature.\"],\"ct_Puj\":[\"यह फ़ील्ड निर्दिष्ट क्रेडेंशियल का उपयोग करके बाहरी सीक्रेट प्रबंधन सिस्टम से प्राप्त की जाएगी।\"],\"cucDBz\":[\"संदर्भ टेम्पलेट\"],\"cucG_7\":[\"कोई YAML उपलब्ध नहीं\"],\"cxjfgY\":[\"हॉप नोड्स पर हेल्थ चेक नहीं चलाया जा सकता।\"],\"cy3yJa\":[\"स्थापित\"],\"d-F6q9\":[\"बनाया गया\"],\"d-zGjA\":[\"यह क्रिया निम्न को हटा देगी:\"],\"d1BVnY\":[\"A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>\",[\"0\"],\".\"],\"d5zxa4\":[\"स्थानीय\"],\"d6in1T\":[\"उन होस्ट वाली इन्वेंटरी चुनें जिन्हें आप इस जॉब से प्रबंधित करना चाहते हैं।\"],\"d73flf\":[\"अलर्ट मोडल\"],\"d75lEw\":[\"प्रकार सेट करें\"],\"d7VUIS\":[\"नोड \",[\"nodeName\"],\" हटाएं\"],\"d8B-tr\":[\"जॉब स्थिति ग्राफ़ टैब\"],\"dAZObA\":[\"रीडायरेक्ट URI\"],\"dBNZkl\":[\"स्मार्ट इन्वेंटरी होस्ट विवरण देखें\"],\"dCcO-F\":[\"कॉन्फ़िगरेशन प्राप्त करने में विफल।\"],\"dELxuP\":[\"इन्वेंटरी नहीं मिली।\"],\"dEgA5A\":[\"रद्द करें\"],\"dH6aQY\":[\"Azure AD Tenant\"],\"dIb9tv\":[\"सभी एप्लिकेशन देखें।\"],\"dJcvVX\":[\"स्मार्ट होस्ट फ़िल्टर\"],\"dNAHKF\":[\"जॉब स्लाइसिंग\"],\"dOjocz\":[\"अभिसरण चयन\"],\"dPGRd8\":[\"यदि सक्षम है, तो जहाँ समर्थित हो वहाँ Ansible कार्यों द्वारा किए गए परिवर्तन दिखाएँ। यह Ansible के --diff मोड के समतुल्य है।\"],\"dPY1x1\":[\"अधिक जानकारी के लिए।\"],\"dQFAgv\":[\"इस प्रोजेक्ट को अपडेट करने की आवश्यकता है\"],\"dQjRO3\":[\"सिंक प्रक्रिया प्रारंभ करें\"],\"dbWo0h\":[\"Google से साइन इन करें\"],\"dcGoCm\":[\"इन्वेंटरी फ़ाइल\"],\"ddIcfH\":[\"अंतिम पृष्ठ पर जाएं\"],\"dfWFox\":[\"होस्ट संख्या\"],\"dk7qNl\":[\"नियंत्रण नोड\"],\"dkGxGj\":[\"Subversion\"],\"dlHFy7\":[\"एक या अधिक निष्पादन वातावरण हटाने में विफल\"],\"dnCwNB\":[\"सफलतापूर्वक क्लिपबोर्ड पर कॉपी किया गया!\"],\"dov9kY\":[\"इस फ़ील्ड में एक संख्या होनी चाहिए और इसका मान \",[\"0\"],\" और \",[\"1\"],\" के बीच होना चाहिए\"],\"dqxQzB\":[\"dictionary\"],\"dzQfDY\":[\"अक्टूबर\"],\"e0NrBM\":[\"प्रोजेक्ट\"],\"e3pQqT\":[\"एक सूचना प्रकार चुनें\"],\"e4GHWP\":[\"पुल\"],\"e5CMOi\":[\"पर्यावरण वेरिएबल्स या अतिरिक्त वेरिएबल्स जो उन मानों को निर्दिष्ट करते हैं जो एक क्रेडेंशियल प्रकार इंजेक्ट कर सकता है।\"],\"e5VbKq\":[\"वर्कफ़्लो जॉब टेम्पलेट\"],\"e6BtDv\":[\"<0>\",[\"0\"],\"<1>\",[\"1\"],\"\"],\"e70-_3\":[\"लीजेंड टॉगल करें\"],\"e8GyQg\":[\"मेट्रिक\"],\"e8U63Z\":[\"प्रोजेक्ट को केवल तभी सिंक करें जब पुश किया गया ref इस पैटर्न से मेल खाता हो, उदाहरण के लिए refs/heads/main या refs/heads/release-*। किसी भी पुश या टैग इवेंट पर सिंक करने के लिए रिक्त छोड़ें।\"],\"e91aLH\":[\"सभी क्रेडेंशियल प्रकार देखें\"],\"e9k5zp\":[\"इस सूची को भरने के लिए कृपया एक शेड्यूल जोड़ें। शेड्यूल को टेम्पलेट, प्रोजेक्ट, या इन्वेंटरी स्रोत में जोड़ा जा सकता है।\"],\"eAR1n4\":[\"संबंधित खोज प्रकार टाइपअहेड\"],\"eD_0Fo\":[\"एक या अधिक टीमें हटाने में विफल।\"],\"eDjsWq\":[\"नया सूचना टेम्पलेट बनाएं\"],\"eGkahQ\":[\"जॉब टेम्पलेट हटाएं\"],\"eHx-29\":[\"स्रोत विवरण\"],\"ePK91l\":[\"संपादित करें\"],\"ePS9As\":[\"RADIUS सेटिंग्स\"],\"eQkgKV\":[\"इंस्टॉल किया गया\"],\"eRV9Z3\":[\"कोई टाइमआउट निर्दिष्ट नहीं\"],\"eRlz2Q\":[\"गंतव्य SMS नंबर\"],\"eSXF_i\":[\"एप्लिकेशन हटाने में विफल।\"],\"eTsJYJ\":[\"विवरण\"],\"eVJ2lo\":[\"Float\"],\"eXOp7I\":[\"आपके पास इंस्टेंस हटाने की अनुमति नहीं है: \",[\"itemsUnableToremove\"]],\"eXWuGz\":[\"हाल के टेम्पलेट सूची टैब\"],\"eYJ4TK\":[\"निर्मित इन्वेंटरी नहीं मिली।\"],\"eeke40\":[\"Automation Analytics\"],\"ekUnNJ\":[\"टैग चुनें\"],\"el9nUc\":[\"शेड्यूल निष्क्रिय है\"],\"emqNXf\":[\"प्लेबुक जांच\"],\"eqiT7d\":[\"वह भूमिका सेट करता है जो यह इंस्टेंस मेश टोपोलॉजी के भीतर निभाएगा। डिफ़ॉल्ट \\\"execution\\\" है।\"],\"espHeZ\":[\"इंस्टेंस समूह फ़ॉलबैक रोकें: यदि सक्षम है, तो इन्वेंटरी संबद्ध जॉब टेम्पलेट चलाने के लिए पसंदीदा इंस्टेंस समूहों की सूची में किसी भी संगठन इंस्टेंस समूह को जोड़ने से रोकेगी।\"],\"etQEqZ\":[\"इस लिंक को हटाने से ब्रांच का शेष भाग अनाथ हो जाएगा और लॉन्च पर तुरंत निष्पादित हो जाएगा।\"],\"ewSXyG\":[[\"pluralizedItemName\"],\" सॉफ़्ट डिलीट करें?\"],\"f-fQK9\":[\"Grafana API कुंजी\"],\"f2o-xB\":[\"रद्दीकरण की पुष्टि करें\"],\"f6Hub0\":[\"क्रमबद्ध करें\"],\"f9yJNM\":[\"बराबर\"],\"fCZSgU\":[\"सभी इंस्टेंस समूह देखें\"],\"fDzxi_\":[\"सहेजे बिना बाहर निकलें\"],\"fE2kOY\":[\"तिथि ऑपरेटर चयन\"],\"fGEOCn\":[\"जॉब स्थिति\"],\"fGLpQj\":[\"सोर्स कंट्रोल ब्रांच/टैग/कमिट\"],\"fGQ9Ug\":[\"उन नोड्स तक पहुँचने के लिए क्रेडेंशियल चुनें जिनके विरुद्ध यह जॉब चलाया जाएगा। आप प्रत्येक प्रकार का केवल एक क्रेडेंशियल चुन सकते हैं। मशीन क्रेडेंशियल (SSH) के लिए, क्रेडेंशियल चुने बिना “लॉन्च पर पूछें” को चेक करने पर आपको रनटाइम पर एक मशीन क्रेडेंशियल चुनना होगा। यदि आप क्रेडेंशियल चुनते हैं और “लॉन्च पर पूछें” को चेक करते हैं, तो चयनित क्रेडेंशियल डिफ़ॉल्ट बन जाते हैं जिन्हें रनटाइम पर अपडेट किया जा सकता है।\"],\"fJ9xam\":[\"इंस्टेंस सक्षम करें\"],\"fKew5B\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"जॉब रद्द करें\"],\"other\":[\"जॉब्स रद्द करें\"]}]],\"fL7WXr\":[\"एप्लिकेशन\"],\"fMUEsk\":[\"दिन \",[\"0\"]],\"fMulwN\":[\"प्रोजेक्ट रिवीज़न रीफ़्रेश करें\"],\"fOAyP5\":[\"खोज टेक्स्ट इनपुट\"],\"fODqV4\":[\"वह मान नहीं मिला। कृपया एक मान्य मान दर्ज करें या चुनें।\"],\"fQCM-p\":[\"संगठन विवरण देखें\"],\"fQGOXc\":[\"त्रुटि!\"],\"fR8DDt\":[\"सभी नोड्स हटाने की पुष्टि करें\"],\"fVjyJ4\":[\"अलग करने की पुष्टि करें\"],\"f_Xpp2\":[\"यह क्रिया निम्न को अलग कर देगी:\"],\"fcTDCh\":[\"नीचे अपने Red Hat या Red Hat Satellite क्रेडेंशियल्स\\n प्रदान करें और आप अपनी उपलब्ध सदस्यताओं की सूची में से चुन सकते हैं।\\n आपके द्वारा उपयोग किए गए क्रेडेंशियल्स नवीनीकरण या विस्तारित सदस्यताएं\\n प्राप्त करने में भविष्य के उपयोग के लिए संग्रहीत किए जाएंगे।\"],\"ff_JYN\":[\"नेस्टेड समूह नाम पर फ़िल्टर करें\"],\"fgrmWn\":[\"लॉन्च पर डिफ़ मोड के लिए संकेत दें।\"],\"fhFmMp\":[\"क्लाइंट पहचानकर्ता\"],\"fjX9i5\":[\"स्मार्ट इन्वेंटरी नहीं मिली।\"],\"fk1WEw\":[\"एन्क्रिप्टेड\"],\"fld-O4\":[\"सभी जॉब्स\"],\"fnbZWe\":[\"वैकल्पिक रूप से वेबहुक सेवा को स्थिति अपडेट वापस भेजने के लिए उपयोग किए जाने वाले क्रेडेंशियल का चयन करें।\"],\"foItBN\":[\"सप्ताहांत दिन\"],\"fp4RS1\":[\"सामग्री-लोडिंग-प्रगति-पर\"],\"fpMgHS\":[\"सोम\"],\"fqSfXY\":[\"बदलें\"],\"fqmP_m\":[\"होस्ट अगम्य\"],\"fthJP1\":[\"वेबहुक सेवाएँ इस URL पर POST अनुरोध करके इस वर्कफ़्लो जॉब टेम्पलेट के साथ जॉब लॉन्च कर सकती हैं।\"],\"fwX7gC\":[\"VMware vCenter\"],\"g4o5Lr\":[\"विस्तृत\"],\"g6ekO4\":[\"होस्ट टॉगल करने में विफल।\"],\"g7CZ-8\":[\"GitHub Enterprise Organizations से साइन इन करें\"],\"g9d3sF\":[\"प्रारंभ संदेश मुख्य भाग\"],\"gALXcv\":[\"इस नोड को हटाएं\"],\"gBnBJa\":[\"स्रोत वर्कफ़्लो जॉब\"],\"gDx5MG\":[\"लिंक संपादित करें\"],\"gIGcbR\":[\"इस समूह पर एक साथ चलाने के लिए जॉब्स की अधिकतम संख्या। शून्य का अर्थ है कोई सीमा लागू नहीं की जाएगी।\"],\"gJccsJ\":[\"वर्कफ़्लो अनुमोदित संदेश\"],\"gK06zh\":[\"जॉब टेम्पलेट जोड़ें\"],\"gM3pS9\":[\"निष्पादन वातावरण\"],\"gN3aF4\":[\"LDAP5\"],\"gSVH9P\":[\"सभी स्रोत सिंक करें\"],\"gUaMtt\":[\"टाइमआउट पर\"],\"gVYePj\":[\"नई टीम बनाएं\"],\"gWlcwd\":[\"अंतिम जॉब स्थिति\"],\"gYWK-5\":[\"उपयोगकर्ता इंटरफ़ेस सेटिंग्स देखें\"],\"gZXc5U\":[\"वर्कफ़्लो जारी रहने से पहले अनुमोदन करने वाले अलग-अलग उपयोगकर्ताओं की संख्या। एकल अस्वीकृति हमेशा नोड को अस्वीकार कर देती है।\"],\"gZaMqy\":[\"GitHub Teams से साइन इन करें\"],\"gZkstf\":[\"यदि सक्षम है, तो यह एकत्रित तथ्यों को संग्रहीत करेगा ताकि उन्हें होस्ट स्तर पर देखा जा सके। तथ्य बने रहते हैं और रनटाइम पर फ़ैक्ट कैश में इंजेक्ट किए जाते हैं।\"],\"gcFnpl\":[\"जॉब स्थिति\"],\"geTfDb\":[\"जॉब विवरण देखें\"],\"ged_ZE\":[\"संगठन\"],\"gezukD\":[\"रद्द करने के लिए एक जॉब चुनें\"],\"gfyddN\":[\"एक .zip फ़ाइल अपलोड करें\"],\"gh06VD\":[\"आउटपुट\"],\"ghJsq8\":[\"पहला स्क्रॉल करें\"],\"gmB6oO\":[\"शेड्यूल\"],\"gmBQqV\":[\"प्रोजेक्ट अपडेट\"],\"gnveFZ\":[\"मानक त्रुटि टैब\"],\"goVc-x\":[\"क्रेडेंशियल प्लगइन कॉन्फ़िगरेशन संपादित करें\"],\"go_DGX\":[\"टीम भूमिकाएं जोड़ें\"],\"gpKdxJ\":[\"हटाने के लिए एक प्रश्न चुनें\"],\"gpmbqk\":[\"वेरिएबल्स\"],\"gpnvle\":[\"हटाने में त्रुटि\"],\"gsj32g\":[\"प्रोजेक्ट सिंक रद्द करें\"],\"gtB4z-\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" घंटा\"],\"other\":[\"#\",\" घंटे\"]}]],\"gwKtbI\":[\"दस्तावेज़ीकरण में और\"],\"h25sKn\":[\"सदस्यता प्रबंधन\"],\"h51QFW\":[\"YAML\"],\"h8DugX\":[\"लेबल\"],\"hAjDQy\":[\"स्थिति चुनें\"],\"hBHRCF\":[\"नए इंस्टेंस ऑनलाइन आने पर इस समूह को स्वचालित रूप से\\n असाइन किए जाने वाले इंस्टेंसों की न्यूनतम संख्या।\"],\"hEBjSg\":[\"Red Hat Satellite 6\"],\"hEnNCI\":[\"इस कुंजी का उपयोग करके एक और खोज सक्षम करने के लिए ansible फ़ैक्ट्स से संबंधित वर्तमान खोज हटाएं।\"],\"hG89Ed\":[\"इमेज\"],\"hHKoQD\":[\"पीयर पते चुनें\"],\"hLDu5N\":[\"एप्लिकेशन संपादित करें\"],\"hNudM0\":[\"इस फ़ील्ड के लिए एक मान सेट करें\"],\"hPa_zN\":[\"संगठन (नाम)\"],\"hQ0dMQ\":[\"नया होस्ट जोड़ें\"],\"hQRttt\":[\"सबमिट करें\"],\"hVPa4O\":[\"एक विकल्प चुनें\"],\"hX8KyU\":[\"यह जॉब विफल हो गई और इसका कोई आउटपुट नहीं है।\"],\"hXDKWN\":[\"आवृत्ति विवरण\"],\"hXzOVo\":[\"अगला\"],\"hYH0cE\":[\"क्या आप वाकई इस जॉब को रद्द करने का अनुरोध सबमिट करना चाहते हैं?\"],\"hYgDIe\":[\"बनाएं\"],\"hZ6znB\":[\"पोर्ट\"],\"hZke6f\":[\"क्या आप वाकई स्थानीय प्रमाणीकरण अक्षम करना चाहते हैं? ऐसा करने से उपयोगकर्ताओं की लॉग इन करने की क्षमता और सिस्टम प्रशासक की इस परिवर्तन को उलटने की क्षमता प्रभावित हो सकती है।\"],\"hc_ufD\":[\"जॉब टैग\"],\"hdyeZ0\":[\"जॉब हटाएं\"],\"he3ygx\":[\"कॉपी करें\"],\"heqHpI\":[\"प्रोजेक्ट बेस पथ\"],\"hg6l4j\":[\"मार्च\"],\"hgJ0FN\":[\"होस्ट फ़िल्टर परिभाषित करने के लिए एक खोज करें\"],\"hgr8eo\":[\"आइटम\"],\"hgvbYY\":[\"सितंबर\"],\"hhzh14\":[\"हम इस खाते से संबद्ध लाइसेंस ढूंढने में असमर्थ रहे।\"],\"hi1n6B\":[[\"brandName\"],\" के भीतर जॉब्स से संबंधित सेटिंग्स अपडेट करें\"],\"hiDMCa\":[\"प्रोविज़निंग\"],\"hjsbgA\":[\"अतिरिक्त वेरिएबल्स\"],\"hjwN_s\":[\"संसाधन नाम\"],\"hlbQEq\":[\"सामग्री हस्ताक्षर सत्यापन क्रेडेंशियल\"],\"hmEecN\":[\"प्रबंधन जॉब\"],\"hmjNLv\":[\"पसंदीदा थीम\"],\"hty0d5\":[\"सोमवार\"],\"hvs-Js\":[\"एप्लिकेशन जानकारी\"],\"i0VMLn\":[\"वर्कफ़्लो अस्वीकृत संदेश\"],\"i2izXk\":[\"शेड्यूल में rrule अनुपस्थित है\"],\"i4_LY_\":[\"लिखें\"],\"i9sC0B\":[\"टीम अनुमतियां जोड़ें\"],\"iASwqf\":[\"This action will cancel the following job:\"],\"iCFhEl\":[\"स्रोत फ़ोन नंबर\"],\"iDNBZe\":[\"सूचनाएं\"],\"iDWfOR\":[\"एक या अधिक वर्कफ़्लो अनुमोदन अनुमोदित करने में विफल।\"],\"iDjyID\":[\"क्रेडेंशियल विवरण देखें\"],\"iE1s1P\":[\"वर्कफ़्लो लॉन्च करें\"],\"iEUzMn\":[\"सिस्टम\"],\"iH8pgl\":[\"वापस\"],\"iI4bLJ\":[\"अंतिम लॉगिन\"],\"iIVceM\":[\"त्रुटि कॉपी करें\"],\"iJWOeZ\":[\"कोई JSON उपलब्ध नहीं\"],\"iJiCFw\":[\"समूह विवरण\"],\"iLO3nG\":[\"प्ले संख्या\"],\"iMaC2H\":[\"इंस्टेंस समूह\"],\"iPp22p\":[\"यह शेड्यूल जटिल नियमों का उपयोग करता है जो UI में\\n समर्थित नहीं हैं। कृपया इस शेड्यूल को प्रबंधित करने के लिए API का उपयोग करें।\"],\"iQdYL_\":[\"स्मार्ट इन्वेंटरी जोड़ें\"],\"iRWxmA\":[\"SSL सत्यापन अक्षम करें\"],\"iTylMl\":[\"टेम्पलेट\"],\"iWKCzl\":[\"प्रोजेक्ट आधार पथ में पाई गई निर्देशिकाओं की सूची में से चुनें। आधार पथ और प्लेबुक निर्देशिका मिलकर प्लेबुक का पता लगाने के लिए उपयोग किया जाने वाला पूर्ण पथ प्रदान करते हैं।\"],\"iXmHtI\":[\"जॉब प्रकार चुनें\"],\"iZBwau\":[\"इस चरण में त्रुटियां हैं\"],\"i_CDGy\":[\"ब्रांच ओवरराइड की अनुमति दें\"],\"i_Kv21\":[\"नया स्रोत बनाएं\"],\"ifckL-\":[\"पंक्ति चयन\"],\"ifdViT\":[\"इन्वेंटरी विवरण देखें\"],\"ig0q8s\":[\"यह इन्वेंटरी इस वर्कफ़्लो (\",[\"0\"],\") के भीतर उन सभी वर्कफ़्लो नोड्स पर लागू होती है जो इन्वेंटरी के लिए संकेत देते हैं।\"],\"inP0J5\":[\"सदस्यता विवरण\"],\"isRobC\":[\"नया\"],\"itlxml\":[\"प्रबंधन जॉब\"],\"ittbfT\":[\"ansible_facts द्वारा खोज के लिए विशेष सिंटैक्स की आवश्यकता होती है। देखें\"],\"itu2NQ\":[\"लिंक स्थिति प्रकार\"],\"j1a5f1\":[\"होस्ट संपादित करें\"],\"j6gqC6\":[\"जॉब रन में उपयोग करने के लिए ब्रांच। रिक्त होने पर प्रोजेक्ट डिफ़ॉल्ट का उपयोग किया जाता है। केवल तभी अनुमति है जब प्रोजेक्ट का allow_override फ़ील्ड true पर सेट हो।\"],\"j7zAEo\":[\"वर्कफ़्लो स्थितियां\"],\"j8QfHv\":[\"होस्ट संपादित करें\"],\"jAxdt7\":[\"हटाना रद्द करें\"],\"jBGh4u\":[\"नेस्टेड समूह इन्वेंटरी परिभाषा:\"],\"jCVu9g\":[\"Cancel selected job\"],\"jEJtMA\":[\"लंबित वर्कफ़्लो अनुमोदन\"],\"jEw0Mr\":[\"कृपया एक मान्य URL दर्ज करें\"],\"jFaaUJ\":[\"कैनोनिकल\"],\"jGUu_G\":[\"आवश्यक अनुमोदन\"],\"jIaeJK\":[\"सर्वेक्षण\"],\"jJdwCB\":[\"वापस लौटाएं\"],\"jKibyt\":[\"ज़ूम रीसेट करें\"],\"jMyq_x\":[\"Workflow Job 1/\",[\"0\"]],\"jaUa4e\":[\"इस डेटा का उपयोग Tower सॉफ़्टवेयर के भविष्य के\\n रिलीज़ को बेहतर बनाने और ग्राहक अनुभव और सफलता को\\n सुव्यवस्थित करने में मदद के लिए किया जाता है।\"],\"jc86YO\":[\"लॉन्च पर सीमा के लिए संकेत दें।\"],\"ji-8F7\":[\"यह क्रेडेंशियल वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"jiE6Vn\":[\"संगठन\"],\"jifz9m\":[\"कोई नहीं (एक बार चलाएं)\"],\"jkQOCm\":[\"अपवाद जोड़ें\"],\"jljuYN\":[\"वह सेवा जिससे वेबहुक अनुरोध स्वीकार किए जाएंगे।\"],\"jluR-N\":[\"चेतावनी: \",[\"selectedValue\"],\" \",[\"0\"],\" का एक लिंक है और उसी रूप में सहेजा जाएगा।\"],\"joAQQS\":[\"The inventories will be in a pending status until the final delete is processed.\"],\"jqVo_k\":[\"यहां।\"],\"jqzUyM\":[\"अनुपलब्ध\"],\"jrkyDn\":[\"प्ले प्रारंभ हुआ\"],\"jrsFB3\":[\"आउटपुट टैब\"],\"jsz-PY\":[\"अज्ञात समाप्ति तिथि\"],\"jwmkq1\":[\"मशीन क्रेडेंशियल\"],\"jzD-D6\":[\"स्किप टैग तब उपयोगी होते हैं जब आपके पास एक बड़ी प्लेबुक हो और आप किसी play या कार्य के विशिष्ट भागों को छोड़ना चाहते हों। कई टैग अलग करने के लिए अल्पविराम का उपयोग करें। टैग के उपयोग के विवरण के लिए दस्तावेज़ीकरण देखें।\"],\"k020kO\":[\"गतिविधि स्ट्रीम\"],\"k2dzu3\":[\"UTC पर समाप्त होता है\"],\"k30JvV\":[\"चयनित श्रेणी\"],\"k5nHqi\":[\"इस जॉब टेम्पलेट को लॉन्च करते समय उपयोग किया जाने वाला निष्पादन वातावरण। हल किए गए निष्पादन वातावरण को इस जॉब टेम्पलेट को स्पष्ट रूप से एक अलग वातावरण असाइन करके ओवरराइड किया जा सकता है।\"],\"kALwhk\":[\"seconds\"],\"kDWprA\":[\"इन तर्कों का उपयोग निर्दिष्ट मॉड्यूल के साथ किया जाता है।\"],\"kEhyki\":[\"फ़ील्ड मान से समाप्त होता है।\"],\"kLja4m\":[\"द्वारा आरंभ किया गया\"],\"kLk5bG\":[\"प्रारंभ संदेश\"],\"kNUkGV\":[\"लुकअप प्रकार\"],\"kNfXib\":[\"मॉड्यूल नाम\"],\"kODvZJ\":[\"पहला नाम\"],\"kOVkPY\":[\"इंस्टेंस टॉगल करें\"],\"kP-3Hw\":[\"इन्वेंटरी पर वापस\"],\"kQerRU\":[\"इस फ़ील्ड में रिक्त स्थान नहीं होने चाहिए\"],\"kX-GZH\":[\"जॉब पुनः लॉन्च करें\"],\"kXzl6Z\":[\"स्रोत वेरिएबल्स\"],\"kYDvK4\":[\"फ़ाइल सहित\"],\"kah1PX\":[\"YAML उदाहरण यहां देखें\"],\"kaux7o\":[\"रिमोट इन्वेंटरी स्रोत से स्थानीय समूहों और होस्ट्स को अधिलेखित करें\"],\"kgtWJ0\":[\"इस जॉब टेम्पलेट को चलाने के लिए इंस्टेंस समूह चुनें।\"],\"kiMHN-\":[\"सिस्टम ऑडिटर\"],\"kjrq_8\":[\"अधिक जानकारी\"],\"kkDQ8m\":[\"गुरुवार\"],\"kkc8HD\":[\"अपने \",[\"brandName\"],\" एप्लिकेशन के लिए सरलीकृत लॉगिन सक्षम करें\"],\"kpRn7y\":[\"प्रश्न हटाएं\"],\"kpnWnY\":[\"प्रत्येक प्रोजेक्ट अपडेट के बाद जहां SCM रिवीज़न बदलता है, जॉब कार्य निष्पादित करने से पहले चयनित स्रोत से इन्वेंटरी रीफ़्रेश करें। यह स्थिर सामग्री के लिए है, जैसे Ansible इन्वेंटरी .ini फ़ाइल प्रारूप।\"],\"ks-HYT\":[\"उपयोगकर्ता अनुमतियां जोड़ें\"],\"ks71ra\":[\"अपवाद\"],\"kt8V8M\":[\"वर्कफ़्लो के लिए एक ब्रांच चुनें।\"],\"ktPOqw\":[\"देखें\"],\"kuIbuV\":[\"हेल्थ चेक केवल निष्पादन नोड्स पर चलाए जा सकते हैं।\"],\"ku__5b\":[\"दूसरा\"],\"kyAi7k\":[\"इंस्टेंस\"],\"kyHUFI\":[\"वॉल्ट पासवर्ड | \",[\"credId\"]],\"kyfr2I\":[\"यदि चेक किया गया है, तो कोई भी होस्ट और समूह जो पहले बाहरी स्रोत पर मौजूद थे लेकिन अब हटा दिए गए हैं, इन्वेंटरी से हटा दिए जाएंगे। जो होस्ट और समूह इन्वेंटरी स्रोत द्वारा प्रबंधित नहीं थे, उन्हें अगले मैन्युअल रूप से बनाए गए समूह में प्रोत्साहित किया जाएगा या यदि उन्हें प्रोत्साहित करने के लिए कोई मैन्युअल रूप से बनाया गया समूह नहीं है, तो उन्हें इन्वेंटरी के लिए \\\"all\\\" डिफ़ॉल्ट समूह में छोड़ दिया जाएगा।\"],\"kz7G1W\":[\"क्या आप वाकई \",[\"1\"],\" से \",[\"0\"],\" पहुंच हटाना चाहते हैं? ऐसा करने से टीम के सभी सदस्य प्रभावित होते हैं।\"],\"l4MzBY\":[[\"update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" सेकंड\"],\"other\":[\"#\",\" सेकंड\"]}]],\"l4k9lc\":[\"पहला नोड\"],\"l5XUoS\":[\"वेबहुक क्रेडेंशियल\"],\"l75CjT\":[\"हां\"],\"l9ZmWD\":[[\"scm_update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" सेकंड\"],\"other\":[\"#\",\" सेकंड\"]}]],\"lCF0wC\":[\"रीफ़्रेश करें\"],\"lJFsGr\":[\"नया इंस्टेंस समूह बनाएं\"],\"lKxoCA\":[\"जॉब इवेंट विस्तृत करें\"],\"lM9cbX\":[\"ध्यान दें कि अलग करने के बाद भी आप सूची में समूह देख सकते हैं यदि होस्ट उस समूह के चाइल्ड का भी सदस्य है। यह सूची उन सभी समूहों को दिखाती है जिनसे होस्ट प्रत्यक्ष और अप्रत्यक्ष रूप से संबद्ध है।\"],\"lURfHJ\":[\"अनुभाग संक्षिप्त करें\"],\"lWkKSO\":[\"मिनट\"],\"lWmv3p\":[\"इन्वेंटरी स्रोत\"],\"lYDyXS\":[\"स्मार्ट इन्वेंटरी\"],\"l_jRvf\":[\"प्लेबुक पूर्ण\"],\"lfoFSg\":[\"होस्ट हटाएं\"],\"lgm7y2\":[\"संपादित करें\"],\"lgphOX\":[\"अपेक्षित मान\"],\"lhgU4l\":[\"टेम्पलेट नहीं मिला।\"],\"lhkaAC\":[\"परीक्षण\"],\"ljGeYw\":[\"सामान्य उपयोगकर्ता\"],\"lk5WJ7\":[\"host-name-\",[\"0\"]],\"lkgIYt\":[\"Pagerduty\"],\"lo-rJO\":[\"नीचे पैन करें\"],\"ltvmAF\":[\"एप्लिकेशन नहीं मिला।\"],\"lu2qW5\":[\"कोई भी\"],\"lucaxq\":[\"लॉगिंग एग्रीगेटर होस्ट और लॉगिंग एग्रीगेटर प्रकार प्रदान किए बिना लॉग एग्रीगेटर सक्षम नहीं किया जा सकता।\"],\"luxcrf\":[[\"label\"],\" के लिए अधिक जानकारी\"],\"lyjq5X\":[\"Slack\"],\"m-eV2_\":[\"कंटेनर समूह नहीं मिला।\"],\"m16xKo\":[\"जोड़ें\"],\"m1tKEz\":[\"सिस्टम प्रशासकों की सभी संसाधनों तक अप्रतिबंधित पहुंच होती है।\"],\"m2ErDa\":[\"विफलता\"],\"m3k6kn\":[\"निर्मित इन्वेंटरी स्रोत सिंक रद्द करने में विफल\"],\"m5MOUX\":[\"होस्ट्स पर वापस\"],\"mGJIOu\":[\"यह निर्मित इन्वेंटरी इनपुट\\n दोनों श्रेणियों के लिए एक समूह बनाता है और केवल उन होस्ट्स को\\n लौटाने के लिए सीमा (होस्ट पैटर्न) का उपयोग करता है जो\\n उन दोनों समूहों के प्रतिच्छेदन में हैं।\"],\"mNBZ1R\":[\"नोट: यह फ़ील्ड मानता है कि रिमोट का नाम “origin” है।\"],\"mOFgdC\":[\"अधिकतम\"],\"mPiYpP\":[\"नोड स्थिति प्रकार\"],\"mSv_7k\":[\"पिछले तीन वर्ष\"],\"mXRKES\":[\"LDAP4\"],\"mXfNlE\":[\"इस शेड्यूल में आवश्यक सर्वेक्षण मान अनुपस्थित हैं\"],\"mYGY3B\":[\"तिथि\"],\"mZiQNk\":[\"विशेषाधिकार वृद्धि: यदि सक्षम है, तो इस playbook को व्यवस्थापक के रूप में चलाएँ।\"],\"m_tELA\":[\"हटाना रद्द करें\"],\"ma7cO9\":[\"समूह \",[\"0\"],\" हटाने में विफल।\"],\"mahPLs\":[\"विशेषाधिकार वृद्धि पासवर्ड\"],\"mcGG2z\":[[\"minutes\"],\" मिनट \",[\"seconds\"],\" सेकंड\"],\"mdNruY\":[\"API टोकन\"],\"mgJ1oe\":[\"हटाने की पुष्टि करें\"],\"mgjN5u\":[\"इंस्टेंस को इंस्टेंस समूह से अलग करें?\"],\"mhg7Av\":[\"एड हॉक कमांड चलाएं\"],\"mi9ffh\":[\"होस्ट विवरण\"],\"mk4anB\":[\"ब्राउज़र डिफ़ॉल्ट\"],\"mlDUq3\":[\"द्वारा संशोधित (उपयोगकर्ता नाम)\"],\"mnm1rs\":[\"GitHub डिफ़ॉल्ट\"],\"moZ0VP\":[\"सिंक स्थिति\"],\"momgZ_\":[\"वर्कफ़्लो जॉब टेम्पलेट का नाम।\"],\"mqAOoN\":[\"एक प्लेबुक निर्देशिका चुनें\"],\"n-37ya\":[\"स्थानीय प्राधिकरण अक्षम करने की पुष्टि करें\"],\"n-LISx\":[\"वर्कफ़्लो सहेजने में त्रुटि हुई।\"],\"n-ZioH\":[\"अपडेट किया गया प्रोजेक्ट प्राप्त करने में त्रुटि\"],\"n-qmM7\":[\"निम्न फ़ील्ड्स को स्वतः भरने के लिए एक JSON प्रारूपित सेवा खाता कुंजी चुनें।\"],\"n12Go4\":[\"संबंधित समूह लोड करने में विफल।\"],\"n60kiJ\":[\"* यह फ़ील्ड निर्दिष्ट क्रेडेंशियल का उपयोग करके बाहरी सीक्रेट प्रबंधन सिस्टम से प्राप्त की जाएगी।\"],\"n6mYYY\":[\"वर्कफ़्लो टाइम आउट संदेश\"],\"n9Idrk\":[\"(पहले 10 तक सीमित)\"],\"n9lz4A\":[\"विफल जॉब्स\"],\"nBAIS_\":[\"इवेंट विवरण देखें\"],\"nC35Na\":[\"Are you sure you want delete the group below?\"],\"nCU-1E\":[\"एक प्रोविज़निंग\\n कॉलबैक URL बनाने में सक्षम करता है। URL का उपयोग करके एक होस्ट \",[\"brandName\"],\"\\n से संपर्क कर सकता है और इस जॉब टेम्पलेट का उपयोग करके एक\\n कॉन्फ़िगरेशन अपडेट का अनुरोध कर सकता है\"],\"nCY9IL\":[\"होस्ट छोड़ा गया\"],\"nDjIzD\":[\"प्रोजेक्ट विवरण देखें\"],\"nGbNEN\":[\"किसी प्रोजेक्ट को वर्तमान मानने के लिए सेकंड में समय। जॉब रन और कॉलबैक के दौरान, कार्य प्रणाली नवीनतम प्रोजेक्ट अपडेट के टाइमस्टैम्प का मूल्यांकन करेगी। यदि यह कैश टाइमआउट से पुराना है, तो इसे वर्तमान नहीं माना जाता है, और एक नया प्रोजेक्ट अपडेट किया जाएगा।\"],\"nI54lc\":[\"सिंक करने से पहले प्रोजेक्ट हटाएं\"],\"nJPBvA\":[\"फ़ाइल, निर्देशिका या स्क्रिप्ट\"],\"nJTOTZ\":[\"वह निष्पादन वातावरण जो इस संगठन के भीतर जॉब्स के लिए उपयोग किया जाएगा। इसका उपयोग फ़ॉलबैक के रूप में तब किया जाएगा जब प्रोजेक्ट, जॉब टेम्पलेट या वर्कफ़्लो स्तर पर स्पष्ट रूप से कोई निष्पादन वातावरण असाइन नहीं किया गया हो।\"],\"nLGsp4\":[\"इस वर्कफ़्लो जॉब टेम्पलेट के लिए एक सर्वेक्षण सक्षम करें।\"],\"nMiE53\":[\"सक्षम वेरिएबल\"],\"nOhz3x\":[\"लॉग आउट\"],\"nPH1Cr\":[\"ये निष्पादन वातावरण उन पर निर्भर अन्य संसाधनों द्वारा उपयोग में हो सकते हैं। क्या आप फिर भी उन्हें हटाना चाहते हैं?\"],\"nQOwDS\":[[\"0\",\"selectordinal\",{\"3\":[\"तीसरा \",[\"dayOfWeek\"]],\"4\":[\"चौथा \",[\"dayOfWeek\"]],\"5\":[\"पांचवां \",[\"dayOfWeek\"]],\"one\":[\"पहला \",[\"dayOfWeek\"]],\"two\":[\"दूसरा \",[\"dayOfWeek\"]]}]],\"nRXCOn\":[\"विफल होस्ट संख्या\"],\"nSTT11\":[\"इससे पुनः लॉन्च करें:\"],\"nTENWI\":[\"सदस्यता प्रबंधन पर लौटें।\"],\"nU16mp\":[\"कैश टाइमआउट\"],\"nZPX7r\":[\"चेतावनी: सहेजे न गए परिवर्तन\"],\"nZW6P0\":[\"स्थानीय समय क्षेत्र\"],\"nZYB4j\":[\"कोई स्थिति उपलब्ध नहीं\"],\"nZYxse\":[\"होस्ट को समूह से अलग करें?\"],\"n_qDNz\":[\"Switch to dark mode\"],\"naCW6Z\":[\"अप्रैल\"],\"ncxIQL\":[\"एक या अधिक इंस्टेंसों को अलग करने में विफल।\"],\"neiOWk\":[\"निर्मित इन्वेंटरी दस्तावेज़ीकरण यहां देखें\"],\"nfnm9D\":[\"संगठन नाम\"],\"ng00aZ\":[\"होस्ट फ़िल्टर\"],\"nhxAdQ\":[\"कीवर्ड\"],\"nlsWzF\":[\"कृपया सर्वेक्षण प्रश्न जोड़ें।\"],\"nnY7VU\":[\"Pagerduty सबडोमेन\"],\"noGZlf\":[\"कैश टाइमआउट (सेकंड)\"],\"npGo-z\":[[\"label\"],\" से साइन इन करें\"],\"nuh_Wq\":[\"वेबहुक URL\"],\"nvUq8j\":[\"1 (विस्तृत)\"],\"nzozOC\":[\"उपयोगकर्ता हटाएं\"],\"nzr1qE\":[\"फ़ाइल अपलोड अस्वीकृत। कृपया एक एकल .json फ़ाइल चुनें।\"],\"o-JPE2\":[\"कोई सर्वेक्षण प्रश्न नहीं मिला।\"],\"o0RwAq\":[\"GitHub Enterprise से साइन इन करें\"],\"o0x5-R\":[\"इस फ़ील्ड के लिए एक मान चुनें\"],\"o4NRE0\":[\"उन्नत खोज मान इनपुट\"],\"o5J6dR\":[\"उन शर्तों को निर्दिष्ट करें जिनके तहत यह नोड निष्पादित किया जाना चाहिए\"],\"o9R2tO\":[\"SSL कनेक्शन\"],\"oABS9f\":[\"इस फ़ील्ड के लिए एक मान प्रदान करें या लॉन्च पर संकेत विकल्प चुनें।\"],\"oB5EwG\":[\"बाहरी सीक्रेट प्रबंधन सिस्टम\"],\"oBmCtD\":[\"Are you sure you want delete the groups below?\"],\"oC5JSb\":[\"अपडेट किया गया प्रोजेक्ट डेटा प्राप्त करने में विफल।\"],\"oCKCYp\":[\"सूचना सफलतापूर्वक भेजी गई\"],\"oEijQ7\":[\"startswith का केस-असंवेदनशील संस्करण।\"],\"oFtmtl\":[\"Select the inventory containing the hosts\\n you want this job to manage.\"],\"oGKq12\":[\"2 समूह बनाएं, प्रतिच्छेदन तक सीमित करें\"],\"oH1Qle\":[\"इस वर्कफ़्लो जॉब टेम्पलेट के लिए वेबहुक URL।\"],\"oHOOxn\":[\"डिफ़ॉल्ट रूप से, हम सेवा उपयोग पर एनालिटिक्स डेटा एकत्र करते हैं और Red Hat को भेजते हैं। सेवा द्वारा एकत्र किए गए डेटा की दो श्रेणियां हैं। अधिक जानकारी के लिए, <0>यह Tower दस्तावेज़ पृष्ठ देखें। इस सुविधा को अक्षम करने के लिए निम्नलिखित बॉक्स अनचेक करें।\"],\"oII7vS\":[\"GitHub सेटिंग्स\"],\"oKMFX4\":[\"कभी अपडेट नहीं किया गया\"],\"oKbBFU\":[\"# source with sync failures.\"],\"oNOjE7\":[\"समाप्ति तिथि/समय\"],\"oNZQUQ\":[\"Kubernetes या OpenShift के साथ प्रमाणित करने के लिए क्रेडेंशियल\"],\"oQqtoP\":[\"प्रबंधन जॉब्स पर वापस\"],\"oRt7Uv\":[[\"interval\"],\" years\"],\"oTDA5P\":[[\"0\",\"plural\",{\"one\":[\"यह इंस्टेंस वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"other\":[\"इन इंस्टेंस को डीप्रोविजन करने से उन पर निर्भर अन्य संसाधन प्रभावित हो सकते हैं। क्या आप वाकई इन्हें हटाना चाहते हैं?\"]}]],\"oWvSIB\":[\"प्रेषक ईमेल\"],\"oX_mCH\":[\"प्रोजेक्ट सिंक त्रुटि\"],\"oZvDsd\":[[\"interval\"],\" hours\"],\"ocUvR-\":[\"असत्य\"],\"ofO19Q\":[\"GitHub Enterprise Teams से साइन इन करें\"],\"ofcQVG\":[\"सहेजे न गए परिवर्तन मोडल\"],\"olEUh2\":[\"सफल\"],\"opS--k\":[\"इंस्टेंस समूहों पर वापस\"],\"orh4t6\":[\"होस्ट ठीक है\"],\"osCeRO\":[\"Azure AD सेटिंग्स देखें\"],\"ot7qsv\":[\"सभी फ़िल्टर साफ़ करें\"],\"ovBPCi\":[\"डिफ़ॉल्ट\"],\"owBGkJ\":[\"अंत अपेक्षित मान से मेल नहीं खाता (\",[\"0\"],\")\"],\"owQ8JH\":[\"इंस्टेंस समूह जोड़ें\"],\"ozbhWy\":[\"हटाने में त्रुटि\"],\"p-nfFx\":[\"अपलोड करने के लिए यहां एक फ़ाइल खींचें या ब्राउज़ करें\"],\"p-ngUo\":[\"अनुसरण न करें\"],\"p-pp9U\":[\"string\"],\"p2LEhJ\":[\"व्यक्तिगत एक्सेस टोकन\"],\"p2_GCq\":[\"पासवर्ड की पुष्टि करें\"],\"p3PM8G\":[\"पहले नोड से पुनः लॉन्च करें\"],\"p6-JME\":[\"पहला सभी संदर्भ लाता है। दूसरा Github पुल अनुरोध संख्या 62 लाता है, इस उदाहरण में ब्रांच “pull/62/head” होनी चाहिए।\"],\"pAtylB\":[\"नहीं मिला\"],\"pCCQER\":[\"वैश्विक रूप से उपलब्ध\"],\"pH8j40\":[\"पहले हटाए गए सक्रिय होस्ट्स\"],\"pHyx6k\":[\"बहुविकल्पीय (एकल चयन)\"],\"pKQcta\":[\"पॉड विनिर्देश अनुकूलित करें\"],\"pOJNDA\":[\"कमांड\"],\"pOd3wA\":[\"अधिक उत्तर विकल्प जोड़ने के लिए 'Enter' दबाएं। प्रति पंक्ति एक\\nउत्तर विकल्प।\"],\"pOhwkU\":[\"यह क्रिया \",[\"0\"],\" से निम्न भूमिका को अलग कर देगी:\"],\"pRZ6hs\":[\"इस पर चलाएं\"],\"pSypIG\":[\"विवरण दिखाएं\"],\"pYENvg\":[\"प्राधिकरण अनुदान प्रकार\"],\"pZJ0-s\":[\"इस समूह पर एक साथ चल रहे सभी जॉब्स में अनुमत फ़ोर्क्स की अधिकतम संख्या। शून्य का अर्थ है कोई सीमा लागू नहीं की जाएगी।\"],\"pa1SrG\":[[\"interval\"],\" days\"],\"peCAyQ\":[\"RADIUS सेटिंग्स देखें\"],\"pfw0Wr\":[\"सभी\"],\"pguZh2\":[\"jinja2 एक्सप्रेशन से वेरिएबल्स बनाएं। यह उपयोगी हो सकता है\\n यदि आप जिन निर्मित समूहों को परिभाषित करते हैं उनमें अपेक्षित\\n होस्ट्स नहीं हैं। इसका उपयोग एक्सप्रेशन से hostvars जोड़ने के लिए किया जा सकता है ताकि\\n आप जान सकें कि उन एक्सप्रेशन के परिणामी मान क्या हैं।\"],\"phTgAm\":[\"Ansible फ़ैक्ट्स के लिए इन्वेंटरी का विनिर्देश देना\\n कठिन है, क्योंकि सिस्टम फ़ैक्ट्स भरने के लिए आपको\\n उस इन्वेंटरी के विरुद्ध एक प्लेबुक चलानी होगी जिसमें\\n `gather_facts: true` हो। वास्तविक\\n फ़ैक्ट्स सिस्टम-से-सिस्टम भिन्न होंगे।\"],\"pkY73W\":[\"Rocket.Chat\"],\"pn7Xy3\":[\"Django देखें\"],\"poMgBa\":[\"लॉन्च पर SCM ब्रांच के लिए संकेत दें।\"],\"ppcQy0\":[\"ज़ूम को 100% पर सेट करें और ग्राफ़ केंद्रित करें\"],\"prydaE\":[\"प्रोजेक्ट सिंक विफलताएं\"],\"pw2VDK\":[[\"month\"],\" का अंतिम \",[\"weekday\"]],\"q-Uk_P\":[\"एक या अधिक क्रेडेंशियल प्रकार हटाने में विफल।\"],\"q45OlW\":[\"क्षेत्र\"],\"q5tQBE\":[\"संबंधित खोज फ़ील्ड फ़ज़ी खोजों के लिए प्रकार सेट करना अक्षम\"],\"q67y3T\":[\"सूचना टेम्पलेट नहीं मिला।\"],\"qAlZNb\":[\"आप निम्न वर्कफ़्लो अनुमोदन पर कार्रवाई करने में असमर्थ हैं: \",[\"itemsUnableToDeny\"]],\"qCUUnr\":[\"कोई होस्ट शेष नहीं\"],\"qChjCy\":[\"पहला रन\"],\"qD-pvR\":[\"डैशबोर्ड की ID (वैकल्पिक)\"],\"qEMgTP\":[\"इन्वेंटरी स्रोत सिंक त्रुटि\"],\"qJK-de\":[\"OIDC से साइन इन करें\"],\"qS0GhO\":[\"निष्पादन वातावरण अनुपस्थित\"],\"qSSVmd\":[\"गंतव्य चैनल या उपयोगकर्ता\"],\"qSSg1L\":[\"एक उपलब्ध नोड से लिंक करें\"],\"qWD0iN\":[\"इस डेटा का उपयोग सॉफ़्टवेयर के भविष्य के\\n रिलीज़ को बेहतर बनाने और Automation Analytics\\n प्रदान करने के लिए किया जाता है।\"],\"qXRYa2\":[\"ब्रांच पर सबमॉड्यूल का नवीनतम कमिट ट्रैक करें\"],\"qYkrfg\":[\"प्रोविज़निंग कॉलबैक विवरण\"],\"qZ2MTC\":[\"ये वे मॉड्यूल हैं जिनके विरुद्ध \",[\"brandName\"],\" कमांड चलाने का समर्थन करता है।\"],\"qgjtIt\":[\"अभिसरण\"],\"qlhQw_\":[\"इन्वेंटरी सिंक\"],\"qliDbL\":[\"रिमोट संग्रह\"],\"qlwLcm\":[\"समस्या निवारण\"],\"qmBmJJ\":[\"यह एकमात्र बार है जब क्लाइंट सीक्रेट दिखाया जाएगा।\"],\"qmYgP7\":[\"अनुमोदित\"],\"qqeAJM\":[\"कभी नहीं\"],\"qtFFSS\":[\"लॉन्च पर रिवीज़न अपडेट करें\"],\"qtaMu8\":[\"इन्वेंटरी (नाम)\"],\"qvCD_i\":[\"उदाहरणों में शामिल हैं:\"],\"qwaCoN\":[\"सोर्स कंट्रोल अपडेट\"],\"qxZ5RX\":[\"होस्ट्स\"],\"qznBkw\":[\"वर्कफ़्लो लिंक मोडल\"],\"r6Aglb\":[\"JSON या YAML सिंटैक्स का उपयोग करके इंजेक्टर दर्ज करें। उदाहरण सिंटैक्स के लिए Ansible Controller दस्तावेज़ीकरण देखें।\"],\"r6y-jM\":[\"चेतावनी\"],\"r6zgGo\":[\"दिसंबर\"],\"r8ojWq\":[\"हटाने की पुष्टि करें\"],\"r8oq0Y\":[\"पिछले 24 घंटे\"],\"rBdPPP\":[[\"name\"],\" हटाने में विफल।\"],\"rE95l8\":[\"क्लाइंट प्रकार\"],\"rG3WVm\":[\"चुनें\"],\"rHK_Sg\":[\"कस्टम वर्चुअल वातावरण \",[\"virtualEnvironment\"],\" को एक निष्पादन वातावरण से बदला जाना चाहिए। निष्पादन वातावरण में माइग्रेट करने के बारे में अधिक जानकारी के लिए <0>दस्तावेज़ीकरण। देखें\"],\"rK7UBZ\":[\"सभी होस्ट्स पुनः लॉन्च करें\"],\"rKS_55\":[\"फ़ैक्ट संग्रहण: यदि सक्षम है, तो यह एकत्रित तथ्यों को संग्रहीत करेगा ताकि उन्हें होस्ट स्तर पर देखा जा सके। तथ्य बने रहते हैं और रनटाइम पर फ़ैक्ट कैश में इंजेक्ट किए जाते हैं।\"],\"rKTFNB\":[\"क्रेडेंशियल प्रकार हटाएं\"],\"rLznGJ\":[\"अनुमोदन बनाए जाने पर अपस्ट्रीम set_stats आर्टिफ़ैक्ट्स के साथ रेंडर किया गया एक Jinja2 टेम्पलेट। अनुमोदक को पिछले जॉब चरणों से प्रासंगिक संदर्भ दिखाने के लिए इसका उपयोग करें। उपलब्ध वेरिएबल्स मूल नोड्स के set_stats डेटा से आते हैं।\"],\"rMrKOB\":[\"प्रोजेक्ट सिंक करने में विफल।\"],\"rOZRCa\":[\"वर्कफ़्लो लिंक\"],\"rSYkIY\":[\"इस फ़ील्ड में एक संख्या होनी चाहिए\"],\"rXhu41\":[\"2 (डिबग)\"],\"rYHzDr\":[\"प्रति पृष्ठ आइटम\"],\"r_IfWZ\":[\"इन्वेंटरी संपादित करें\"],\"rdUucN\":[\"पूर्वावलोकन\"],\"rfYaVc\":[\"उत्तर वेरिएबल नाम\"],\"rfpIXM\":[\"लॉन्च पर इंस्टेंस समूहों के लिए संकेत दें।\"],\"rfx2oA\":[\"वर्कफ़्लो लंबित संदेश मुख्य भाग\"],\"riBcU5\":[\"IRC निक\"],\"rjVfy3\":[\"वर्कफ़्लो दस्तावेज़ीकरण\"],\"rjyWPb\":[\"जनवरी\"],\"rmb2GE\":[[\"0\"],\" द्वारा अस्वीकृत - \",[\"1\"]],\"rmt9Tu\":[\"कुल होस्ट्स\"],\"ruhGSG\":[\"इन्वेंटरी स्रोत सिंक रद्द करें\"],\"rvia3m\":[\"विविध प्रमाणीकरण\"],\"rw1pRJ\":[\"बंडल डाउनलोड करें\"],\"rwWNpy\":[\"इन्वेंटरी\"],\"s-MGs7\":[\"संसाधन\"],\"s2xYUy\":[\"रिमोट इन्वेंटरी स्रोत से स्थानीय वेरिएबल्स अधिलेखित करें\"],\"s3KtlK\":[\"चयनित अपवादों के कारण इस शेड्यूल की कोई घटना नहीं है।\"],\"s4Qnj2\":[\"निष्पादन वातावरण\"],\"s4fge-\":[\"पिछला माह\"],\"s5aIEB\":[\"वर्कफ़्लो जॉब टेम्पलेट हटाएं\"],\"s5mACA\":[\"इंस्टेंस विवरण\"],\"s5r5nt\":[[\"0\",\"plural\",{\"one\":[\"यह इंस्टेंस समूह वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"other\":[\"इन इंस्टेंस समूहों को हटाने से उन पर निर्भर अन्य संसाधन प्रभावित हो सकते हैं। क्या आप वाकई फिर भी हटाना चाहते हैं?\"]}]],\"s6F6Ks\":[\"इस जॉब के लिए कोई आउटपुट नहीं मिला।\"],\"s70SJY\":[\"लॉगिंग सेटिंग्स\"],\"s8hQty\":[\"सभी जॉब्स देखें।\"],\"s9EKbs\":[\"SSL सत्यापन अक्षम करें\"],\"sAz1tZ\":[\"अलग करने की पुष्टि करें\"],\"sBJ5MF\":[\"स्रोत\"],\"sCEb_0\":[\"सभी इन्वेंटरी होस्ट्स देखें।\"],\"sGodAp\":[\"पॉड स्पेक ओवरराइड\"],\"sMDRa_\":[\"समूहों पर वापस\"],\"sOMf4x\":[\"हाल के टेम्पलेट\"],\"sSFxX6\":[\"जॉब लॉन्च पर रिवीज़न अपडेट करें\"],\"sTkKoT\":[\"अस्वीकार करने के लिए एक पंक्ति चुनें\"],\"sUyFTB\":[\"डैशबोर्ड पर रीडायरेक्ट किया जा रहा है\"],\"sV3kNp\":[\"यह इंस्टेंस समूह वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"sVh4-e\":[\"इस लिंक को हटाएं\"],\"sW5OjU\":[\"आवश्यक\"],\"sZif4m\":[\"संबंधित समूह को अलग करें?\"],\"s_XkZs\":[\"प्रारंभ\"],\"s_r4Az\":[\"इस फ़ील्ड में एक पूर्णांक होना चाहिए\"],\"sesAIn\":[\"जॉब प्रारंभ होने, सफल होने या विफल होने पर भेजी गई सूचनाओं की सामग्री\\n बदलने के लिए कस्टम संदेशों का उपयोग करें। जॉब के बारे में जानकारी तक पहुंचने के लिए\\n कर्ली ब्रेसेस का उपयोग करें:\"],\"sgRZMG\":[\"हाइब्रिड नोड\"],\"siJgSI\":[\"उपयोगकर्ता नहीं मिला।\"],\"sjMCOP\":[\"अंतिम संशोधित\"],\"sjVfrA\":[\"कमांड\"],\"smFRaX\":[\"एक जॉब पहले ही लॉन्च की जा चुकी है\"],\"sqMsvU\":[[\"0\",\"plural\",{\"one\":[\"#\",\" स्रोत में समन्वयन विफलताएं।\"],\"other\":[\"#\",\" स्रोतों में समन्वयन विफलताएं।\"]}]],\"sr4LMa\":[\"इन्वेंटरी स्रोत\"],\"svR3aM\":[\"OpenStack\"],\"svy2x9\":[\"ऐसे परिणाम लौटाता है जो इस फ़िल्टर या किसी अन्य फ़िल्टर को संतुष्ट करते हैं।\"],\"sxkWRg\":[\"उन्नत\"],\"syupn5\":[\"ब्रांड इमेज\"],\"syyeb9\":[\"पहला\"],\"t-R8-P\":[\"निष्पादन\"],\"t2q1xO\":[\"शेड्यूल संपादित करें\"],\"t4v_7X\":[\"एक नोड प्रकार चुनें\"],\"t9QlBd\":[\"नवंबर\"],\"tRm9qR\":[\"टैग तब उपयोगी होते हैं जब आपके पास एक बड़ी प्लेबुक हो और आप किसी play या कार्य के किसी विशिष्ट भाग को चलाना चाहते हों। कई टैग अलग करने के लिए अल्पविराम का उपयोग करें। टैग के उपयोग के विवरण के लिए दस्तावेज़ीकरण देखें।\"],\"tVEot_\":[[\"0\",\"plural\",{\"one\":[\"यह टेम्पलेट वर्तमान में कुछ वर्कफ़्लो नोड्स द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"other\":[\"इन टेम्पलेट्स को हटाने से उन पर निर्भर कुछ वर्कफ़्लो नोड्स प्रभावित हो सकते हैं। क्या आप फिर भी हटाना चाहते हैं?\"]}]],\"tXkhj_\":[\"प्रारंभ\"],\"t_YqKh\":[\"हटाएं\"],\"tbSVlt\":[\"उपयोगकर्ता पहुंच हटाएं\"],\"tfDRzk\":[\"सहेजें\"],\"tfh2eq\":[\"इस नोड से नया लिंक बनाने के लिए क्लिक करें।\"],\"tgPwON\":[\"ऑपरेटर\"],\"tgSBSE\":[\"लिंक हटाएं\"],\"tgWuMB\":[\"संशोधित\"],\"thJljW\":[\"चेतावनी: \"],\"toJdZA\":[\"Reorder\"],\"tpCmSt\":[\"policy rules.\"],\"tqlcfo\":[\"डीप्रोविज़निंग\"],\"trjiIV\":[\"पीयर संबद्ध करने में विफल।\"],\"tst44n\":[\"इवेंट\"],\"twE5a9\":[\"क्रेडेंशियल हटाने में विफल।\"],\"txNbrI\":[\"सोर्स कंट्रोल ब्रांच\"],\"ty2DZX\":[\"यह संगठन वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"tzgOKK\":[\"इस पर पहले ही कार्रवाई की जा चुकी है\"],\"u-sh8m\":[\"/ (प्रोजेक्ट रूट)\"],\"u4ex5r\":[\"जुलाई\"],\"u4n8Fm\":[\"पीयर हटाने में विफल।\"],\"u4x6Jy\":[\"जॉब्स पर वापस\"],\"u5AJST\":[\"प्लेबुक निष्पादित करते समय उपयोग करने के लिए समानांतर या एक साथ चलने वाली प्रक्रियाओं की संख्या। कोई मान न देने पर ansible कॉन्फ़िगरेशन फ़ाइल से डिफ़ॉल्ट मान का उपयोग किया जाएगा। आप अधिक जानकारी पा सकते हैं\"],\"u7f6WK\":[\"सभी वर्कफ़्लो अनुमोदन देखें।\"],\"u84wS1\":[\"जॉब रद्द करने में त्रुटि\"],\"uAQUqI\":[\"स्थिति\"],\"uAhZbx\":[\"विफलताओं वाले इन्वेंटरी स्रोत\"],\"uCjD1h\":[\"आपका सत्र समाप्त हो गया है। जहां आपने छोड़ा था वहां से जारी रखने के लिए कृपया लॉग इन करें।\"],\"uImfEm\":[\"वर्कफ़्लो लंबित संदेश\"],\"uJz8NJ\":[\"जॉब चलने के दौरान खोज अक्षम है\"],\"uPRp5U\":[\"लुकअप रद्द करें\"],\"uTDtiS\":[\"पांचवां\"],\"uUehLT\":[\"प्रतीक्षा हो रही है\"],\"uVu1Yt\":[\"प्रकार सेट करें चयन\"],\"uYtvvN\":[\"निष्पादन वातावरण संपादित करने से पहले एक प्रोजेक्ट चुनें।\"],\"ucSTeu\":[\"द्वारा बनाया गया (उपयोगकर्ता नाम)\"],\"ucgZ0o\":[\"संगठन\"],\"ugZpot\":[\"बाहरी क्रेडेंशियल का परीक्षण करें\"],\"ulRNXw\":[\"Dragging cancelled. List is unchanged.\"],\"upC07l\":[\"Survey Disabled\"],\"uuPCEU\":[\"If you want the Inventory Source to update on launch , click on Update on Launch, and also go to \"],\"uyJsf6\":[\"के बारे में\"],\"uzTiFQ\":[\"शेड्यूल पर वापस\"],\"v-CZEv\":[\"लॉन्च पर संकेत\"],\"v-EbDj\":[\"समस्या निवारण सेटिंग्स\"],\"v-M-LP\":[\"टेम्पलेट लॉन्च करें\"],\"v0urVb\":[\"यदि आपके पास कोई सदस्यता नहीं है, तो आप ट्रायल सदस्यता प्राप्त करने के लिए\\n Red Hat पर जा सकते हैं।\"],\"v1kQyJ\":[\"वेबहुक\"],\"v2dMHj\":[\"होस्ट पैरामीटर का उपयोग करके पुनः लॉन्च करें\"],\"v2gmVS\":[\"यह क्रिया निम्न को सॉफ़्ट डिलीट कर देगी:\"],\"v45yUL\":[\"अलग करें\"],\"v7vAuj\":[\"कुल जॉब्स\"],\"vCS_TJ\":[\"इन्वेंटरी स्रोत \",[\"name\"],\" हटाने में विफल।\"],\"vEr6TL\":[\"इन तर्कों का उपयोग निर्दिष्ट मॉड्यूल के साथ किया जाता है। आप \",[\"0\"],\" के बारे में जानकारी क्लिक करके पा सकते हैं \"],\"vF82C6\":[\"मूल नोड के सफल स्थिति में परिणत होने पर निष्पादित करें।\"],\"vFKI2e\":[\"शेड्यूल नियम\"],\"vFVhzc\":[\"सोशल\"],\"vGVmd5\":[\"यह फ़ील्ड तब तक अनदेखा किया जाता है जब तक कि एक सक्षम वेरिएबल सेट न हो। यदि सक्षम वेरिएबल इस मान से मेल खाता है, तो आयात पर होस्ट सक्षम हो जाएगा।\"],\"vGjmyl\":[\"हटाया गया\"],\"vHAaZi\":[\"हर बार छोड़ें\"],\"vIb3RK\":[\"नया शेड्यूल बनाएं\"],\"vKRQJB\":[\"कस्टम Kubernetes या OpenShift पॉड विनिर्देश पास करने के लिए फ़ील्ड।\"],\"vLyv1R\":[\"छिपाएं\"],\"vPrMqH\":[\"रिवीज़न #\"],\"vQHUI6\":[\"यदि चेक किया गया है, तो चाइल्ड समूहों और होस्ट्स के सभी वेरिएबल्स हटा दिए जाएंगे और बाहरी स्रोत पर पाए गए वेरिएबल्स से बदल दिए जाएंगे।\"],\"vTL8gi\":[\"समाप्ति समय\"],\"vUOn9d\":[\"वापस\"],\"vYFWsi\":[\"टीमें चुनें\"],\"vYuE8q\":[\"जॉब के चलने का बीता हुआ समय\"],\"vZbIkJ\":[\"GitLab\"],\"vcH-SH\":[\"Bitbucket Data Center\"],\"ve_jRy\":[\"स्थिति पर\"],\"vgwVkd\":[\"UTC\"],\"vlHGDw\":[\"प्लेबुक को अतिरिक्त कमांड लाइन वेरिएबल पास करें। यह ansible-playbook के लिए -e या --extra-vars कमांड लाइन पैरामीटर है। YAML या JSON का उपयोग करके की/मान युग्म प्रदान करें। सिंटैक्स उदाहरण के लिए दस्तावेज़ीकरण देखें।\"],\"voRH7M\":[\"उदाहरण:\"],\"vq1XXv\":[\"लागू फ़िल्टर के साथ एक नई स्मार्ट इन्वेंटरी बनाएं\"],\"vq2WxD\":[\"मंगल\"],\"vq9gg6\":[\"आप निम्न वर्कफ़्लो अनुमोदन पर कार्रवाई करने में असमर्थ हैं: \",[\"itemsUnableToApprove\"]],\"vqAmQC\":[\"मॉड्यूल\"],\"vvY8pz\":[\"लॉन्च पर छोड़ें टैग के लिए संकेत दें।\"],\"vye-ip\":[\"लॉन्च पर टाइमआउट के लिए संकेत दें।\"],\"vzsN_5\":[[\"interval\"],\" day\"],\"w07pgp\":[\"लॉन्च पर वर्बोसिटी के लिए संकेत दें।\"],\"w0kTk8\":[\"विफल नोड से पुनः लॉन्च करें\"],\"w14eW4\":[\"सभी टोकन देखें।\"],\"w1RiT6\":[[\"0\",\"plural\",{\"one\":[\"यह इन्वेंटरी स्रोत वर्तमान में उस पर निर्भर अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"other\":[\"इन इन्वेंटरी स्रोतों को हटाने से उन पर निर्भर अन्य संसाधन प्रभावित हो सकते हैं। क्या आप वाकई उन्हें फिर भी हटाना चाहते हैं?\"]}]],\"w2VTLB\":[\"इससे कम तुलना।\"],\"w3EE8S\":[\"स्वचालित होस्ट्स\"],\"w4j7js\":[\"टीम विवरण देखें\"],\"w6zx64\":[\"ब्राउज़र डिफ़ॉल्ट का उपयोग करें\"],\"wCnaTT\":[\"फ़ील्ड को नए मान से बदलें\"],\"wF-BAU\":[\"इन्वेंटरी जोड़ें\"],\"wFnb77\":[\"इन्वेंटरी ID\"],\"wKEfMu\":[\"इवेंट प्रोसेसिंग पूर्ण।\"],\"wO29qX\":[\"संगठन नहीं मिला।\"],\"wW08QA\":[\"बराबर नहीं\"],\"wX6sAX\":[\"पिछले दो वर्ष\"],\"wXAVe-\":[\"मॉड्यूल तर्क\"],\"wXB7k5\":[\"एक सूचना रंग निर्दिष्ट करें। स्वीकार्य रंग हेक्स\\n रंग कोड हैं (उदाहरण: #3af या #789abc)।\"],\"waFx9W\":[\"प्रबंधित\"],\"wdxz7K\":[\"स्रोत\"],\"wgNoIs\":[\"सभी चुनें\"],\"wkgHlv\":[\"एक नया नोड जोड़ें\"],\"wlQNTg\":[\"सदस्य\"],\"wnizTi\":[\"एक सदस्यता चुनें\"],\"wpT1VN\":[\"स्थिति\"],\"wpt6vB\":[\"LDAP2\"],\"wqXiR2\":[\"अतिरिक्त कमांड लाइन परिवर्तन पास करें। दो ansible कमांड लाइन पैरामीटर हैं: \"],\"wsggVq\":[\"जब चेक नहीं किया जाता है, तो बाहरी स्रोत पर न मिलने वाले स्थानीय चाइल्ड होस्ट्स और समूह इन्वेंटरी अपडेट प्रक्रिया द्वारा अछूते रहेंगे।\"],\"x-a4Mr\":[\"वेबहुक क्रेडेंशियल\"],\"x02hbg\":[\"प्रोविज़निंग कॉलबैक: प्रोविज़निंग कॉलबैक URL के निर्माण को सक्षम करता है। URL का उपयोग करके, एक होस्ट Ansible AWX से संपर्क कर सकता है और इस जॉब टेम्पलेट का उपयोग करके कॉन्फ़िगरेशन अपडेट का अनुरोध कर सकता है।\"],\"x4Xp3c\":[\"अपडेट किया गया\"],\"x5DnMs\":[\"अंतिम संशोधित\"],\"x6_dAC\":[\"फ़ेडरेटेड इन्वेंटरी\"],\"x6oT_o\":[\"उपलब्ध होस्ट्स\"],\"x7PDL5\":[\"लॉगिंग\"],\"x8uKc7\":[\"इंस्टेंस स्थिति\"],\"x9WS62\":[[\"0\"],\" रद्द करें\"],\"xAYSEs\":[\"प्रारंभ समय\"],\"xAqth4\":[\"Google OAuth 2.0 सेटिंग्स देखें\"],\"xC9EVu\":[\"रद्द किया गया नोड\"],\"xCJdfg\":[\"साफ़ करें\"],\"xDr_ct\":[\"समाप्ति\"],\"xESTou\":[\"जॉब हटाने में विफल।\"],\"xF5tnT\":[\"वॉल्ट पासवर्ड\"],\"xGQZwx\":[\"कंटेनर समूह जोड़ें\"],\"xGVfLh\":[\"जारी रखें\"],\"xHZS6u\":[\"सफल जॉब्स\"],\"xHokxV\":[[\"0\",\"plural\",{\"one\":[\"अपर्याप्त अनुमति या चल रही जॉब स्थिति के कारण चयनित जॉब हटाई नहीं जा सकती\"],\"other\":[\"अपर्याप्त अनुमतियों या चल रही जॉब स्थिति के कारण चयनित जॉब्स हटाई नहीं जा सकतीं\"]}]],\"xHt036\":[\"व्यक्तिगत एक्सेस टोकन\"],\"xKQRBr\":[\"अधिकतम लंबाई\"],\"xM01Pk\":[\"डिफ़ॉल्ट उत्तर\"],\"xONDaO\":[\"Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?\"],\"xOl1yT\":[\"नाम फ़ील्ड पर सटीक खोज।\"],\"xPO5w7\":[\"GitHub से साइन इन करें\"],\"xPpkbX\":[\"Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway\"],\"xPxMOJ\":[\"अमान्य समय प्रारूप\"],\"xQioPk\":[\"एकाधिक मूल होने पर इस नोड को चलाने के लिए पूर्व शर्तें। देखें\"],\"xSytdh\":[\"समाप्त:\"],\"xUhTCP\":[\"एक स्रोत चुनें\"],\"xVhQZV\":[\"शुक्र\"],\"xY9DEq\":[\"इन्वेंटरी में होस्ट्स को लक्षित करने के लिए उपयोग किया जाने वाला पैटर्न। फ़ील्ड को रिक्त छोड़ने, all, और * सभी इन्वेंटरी में सभी होस्ट्स को लक्षित करेंगे। आप Ansible के होस्ट पैटर्न के बारे में अधिक जानकारी पा सकते हैं\"],\"xY9s5E\":[\"टाइमआउट\"],\"x_Ej3K\":[\"उपयोगकर्ता के लिए प्रॉम्प्ट के रूप में आप जो उत्तर प्रकार या प्रारूप चाहते हैं उसे चुनें।\\n प्रत्येक विकल्प के बारे में अतिरिक्त जानकारी के लिए Ascender दस्तावेज़ देखें।\"],\"x_ugm_\":[\"कुल समूह\"],\"xa7N9Z\":[\"लॉगिन रीडायरेक्ट ओवरराइड URL संपादित करें\"],\"xcaG5l\":[\"वर्कफ़्लो संपादित करें\"],\"xd2LI3\":[[\"0\"],\" को समाप्त होता है\"],\"xdA_-p\":[\"टूल\"],\"xe5RvT\":[\"YAML टैब\"],\"xefC7k\":[\"IRC सर्वर पोर्ट\"],\"xeiujy\":[\"टेक्स्ट\"],\"xg771-\":[\"LDAP1\"],\"xhj1Rt\":[\"आपके द्वारा अनुरोधित पृष्ठ नहीं मिला।\"],\"xi4nE2\":[\"त्रुटि संदेश\"],\"xnSIXG\":[\"एक या अधिक होस्ट्स हटाने में विफल।\"],\"xoCdYY\":[\"जांचें कि दिए गए फ़ील्ड का मान प्रदान की गई सूची में मौजूद है या नहीं; आइटमों की अल्पविराम-पृथक सूची अपेक्षित है।\"],\"xoXoBo\":[\"हटाने में त्रुटि\"],\"xrG8k4\":[\"Google Compute Engine\"],\"xtRU96\":[\"GitHub Enterprise Organization\"],\"xuYTJb\":[\"जॉब टेम्पलेट हटाने में विफल।\"],\"xw06rt\":[\"सेटिंग फ़ैक्टरी डिफ़ॉल्ट से मेल खाती है।\"],\"xxTtJH\":[\"नियमित एक्सप्रेशन जहां केवल मेल खाते होस्ट नाम आयात किए जाएंगे। फ़िल्टर किसी भी इन्वेंटरी प्लगइन फ़िल्टर लागू होने के बाद पोस्ट-प्रोसेसिंग चरण के रूप में लागू किया जाता है।\"],\"y11WBZ\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"चयनित कार्य रद्द करें\"],\"other\":[\"चयनित कार्य रद्द करें\"]}]],\"y8ibKI\":[\"इंस्टेंस हटाएं\"],\"yCCaoF\":[\"इंस्टेंस अपडेट करने में विफल।\"],\"yDeNnS\":[\"नई निर्मित इन्वेंटरी बनाएं\"],\"yDifzB\":[\"चयन की पुष्टि करें\"],\"yGS9cI\":[\"स्वस्थ\"],\"yGUKlf\":[\"प्रबंधन जॉब्स\"],\"yGfW7Y\":[\"इस स्थान को बदलने के लिए \",[\"brandName\"],\" को तैनात करते समय PROJECTS_ROOT बदलें।\"],\"yMIahh\":[\"Red Hat Ansible Automation Platform में आपका स्वागत है!\\n अपनी सदस्यता सक्रिय करने के लिए कृपया नीचे दिए गए चरण पूरे करें।\"],\"yMYuDg\":[\"Automation controller संस्करण\"],\"yMfU4O\":[\"प्रेषक ई-मेल\"],\"yNcGa2\":[\"एक्सेस टोकन समाप्ति\"],\"yOXgbH\":[\"नोट: GitHub या Bitbucket के लिए SSH प्रोटोकॉल का उपयोग करते समय, केवल एक SSH कुंजी दर्ज करें, उपयोगकर्ता नाम (git के अलावा) दर्ज न करें। इसके अतिरिक्त, GitHub और Bitbucket SSH का उपयोग करते समय पासवर्ड प्रमाणीकरण का समर्थन नहीं करते हैं। केवल-पठन GIT प्रोटोकॉल (git://) उपयोगकर्ता नाम या पासवर्ड जानकारी का उपयोग नहीं करता है।\"],\"yQE2r9\":[\"लोड हो रहा है\"],\"yRiHPB\":[\"इस सूची को भरने के लिए कृपया एक जॉब चलाएं।\"],\"yRkqG9\":[\"सीमा\"],\"yRsSBw\":[\"अनुमोदन\"],\"yUlffE\":[\"पुनः लॉन्च करें\"],\"yVgnJA\":[\"इस संगठन द्वारा प्रबंधित किए जाने की अनुमति वाले होस्ट्स की अधिकतम संख्या।\\n मान डिफ़ॉल्ट रूप से 0 होता है जिसका अर्थ है कोई सीमा नहीं। अधिक विवरण के लिए Ansible\\n दस्तावेज़ीकरण देखें।\"],\"yX3qAQ\":[\"वर्कफ़्लो जॉब टेम्पलेट नोड्स\"],\"yaG1CX\":[\"LDAP\"],\"yaX9sM\":[\"वर्कफ़्लो टेम्पलेट\"],\"yb_fjw\":[\"अनुमोदन\"],\"ydoZpB\":[\"टीम नहीं मिली।\"],\"ydw9CW\":[\"विफल होस्ट्स\"],\"yfG3F2\":[\"प्रत्यक्ष कुंजियां\"],\"yjwMJ8\":[\"होस्ट कितनी बार स्वचालित हुआ था\"],\"yjyGja\":[\"इनपुट विस्तृत करें\"],\"ylXj1N\":[\"चयनित\"],\"yq6OqI\":[\"यह एकमात्र बार है जब टोकन मान और संबद्ध रिफ़्रेश टोकन मान दिखाया जाएगा।\"],\"yqiwAW\":[\"वर्कफ़्लो रद्द करें\"],\"yrUyDQ\":[\"इस इंस्टेंस का वर्तमान जीवन चक्र चरण सेट करता है। डिफ़ॉल्ट \\\"installed\\\" है।\"],\"yrwl2P\":[\"अनुपालक\"],\"yuXsFE\":[\"एक या अधिक वर्कफ़्लो अनुमोदन हटाने में विफल।\"],\"yuvDX_\":[[\"intervalValue\",\"plural\",{\"one\":[\"माह\"],\"other\":[\"माह\"]}]],\"ywSBEn\":[\"भूमिका संबद्ध करने में त्रुटि\"],\"yxDqcD\":[\"प्राधिकरण कोड समाप्ति\"],\"yy1cWw\":[\"संदेश अनुकूलित करें…\"],\"yz7wBu\":[\"बंद करें\"],\"yzQhLU\":[\"नीति इंस्टेंस न्यूनतम\"],\"yzdDia\":[\"सर्वेक्षण हटाएं\"],\"z-BNGk\":[\"उपयोगकर्ता टोकन हटाएं\"],\"z0DcIS\":[\"एन्क्रिप्टेड\"],\"z3XA1I\":[\"होस्ट पुनः प्रयास\"],\"z409y8\":[\"वेबहुक सेवा\"],\"z7NLxJ\":[\"यदि आप केवल इस विशेष उपयोगकर्ता की पहुंच हटाना चाहते हैं, तो कृपया उन्हें टीम से हटाएं।\"],\"z8mwbl\":[\"नए इंस्टेंस ऑनलाइन आने पर इस समूह को स्वचालित रूप से असाइन किए जाने वाले सभी इंस्टेंसों का न्यूनतम प्रतिशत।\"],\"zBO1TV\":[[\"numOccurrences\",\"plural\",{\"one\":[\"#\",\" घटना के बाद\"],\"other\":[\"#\",\" घटनाओं के बाद\"]}]],\"zHcXAG\":[\"निष्पादन वातावरण को वैश्विक रूप से उपलब्ध बनाने के लिए इस फ़ील्ड को रिक्त छोड़ें।\"],\"zICM7E\":[\"सिंक करने से पहले स्थानीय परिवर्तन त्यागें\"],\"zJY4Uj\":[\"प्लेबुक\"],\"zKJMiH\":[\"प्लेबुक निर्देशिका\"],\"zK_63z\":[\"अमान्य उपयोगकर्ता नाम या पासवर्ड। कृपया पुनः प्रयास करें।\"],\"zLsDix\":[\"ldap उपयोगकर्ता\"],\"zMKkOk\":[\"संगठनों पर वापस\"],\"zN0nhk\":[\"Automation Analytics सक्षम करने के लिए अपने Red Hat या Red Hat Satellite क्रेडेंशियल्स प्रदान करें।\"],\"zQRgi-\":[\"सूचना प्रारंभ टॉगल करें\"],\"zTediT\":[\"इस फ़ील्ड में एक संख्या होनी चाहिए और इसका मान \",[\"min\"],\" और \",[\"max\"],\" के बीच होना चाहिए\"],\"zUIPys\":[\"Jinja2 शर्तों के आधार पर समूह में होस्ट्स जोड़ें।\"],\"z_PZxu\":[\"वर्कफ़्लो अनुमोदन हटाने में विफल।\"],\"zbLCH1\":[\"इन्वेंटरी प्रकार\"],\"zcQj5X\":[\"पहले, एक कुंजी चुनें\"],\"zdl7YZ\":[\"स्रोत पथ चुनें\"],\"zeEQd_\":[\"जून\"],\"zf7FzC\":[\"Kubernetes या OpenShift के साथ प्रमाणित करने के लिए क्रेडेंशियल। \\\"Kubernetes/OpenShift API Bearer Token\\\" प्रकार का होना चाहिए। यदि रिक्त छोड़ा जाता है, तो अंतर्निहित पॉड के सेवा खाते का उपयोग किया जाएगा।\"],\"zfZydd\":[\"सर्वेक्षण पूर्वावलोकन मोडल\"],\"zfsBaJ\":[\"Automation Analytics के बारे में अधिक जानें\"],\"zgInnV\":[\"वर्कफ़्लो नोड दृश्य मोडल\"],\"zga9sT\":[\"ठीक है\"],\"zhPLvU\":[\"संबद्ध करने में विफल।\"],\"zhrjek\":[\"समूह\"],\"zi_YNm\":[[\"0\"],\" रद्द करने में विफल\"],\"zmu4-P\":[\"खाता SID\"],\"znG7ed\":[\"एक प्लेबुक चुनें\"],\"znTz5r\":[\"शेड्यूल नहीं मिला।\"],\"znuW_M\":[\"यदि हां तो अमान्य प्रविष्टियों को एक घातक त्रुटि बनाएं, अन्यथा छोड़ें और\\n जारी रखें।\"],\"zq0gmb\":[\"अवधि चुनें\"],\"ztOzCj\":[\"लॉन्च पर अपडेट करें\"],\"ztw2L3\":[\"कम से कम एक इनपुट में एक मान होना चाहिए\"],\"zvfXp0\":[\"सूचना अनुमोदन टॉगल करें\"],\"zx4BuL\":[\"सप्ताह\"],\"zzDlyQ\":[\"सफलता\"],\"{count, plural, one {# fork} other {# forks}}\":[[\"count\",\"plural\",{\"one\":[\"#\",\" fork\"],\"other\":[\"#\",\" forks\"]}]]}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"--iDlT\":[\"प्रोजेक्ट हटाएं\"],\"-0AkQd\":[[\"forks\",\"plural\",{\"one\":[\"#\",\" फ़ोर्क\"],\"other\":[\"#\",\" फ़ोर्क\"]}]],\"-0B-ue\":[\"प्रोजेक्ट्स\"],\"-5kO8P\":[\"शनिवार\"],\"-6EcFR\":[\"संपादित करने के लिए Enter दबाएं। संपादन रोकने के लिए ESC दबाएं।\"],\"-7M7WW\":[\"डिफ़ॉल्ट मान टॉगल करने के लिए क्लिक करें\"],\"-7VWRl\":[\"RAM \",[\"0\"]],\"-8WGoO\":[\"प्लगइन पैरामीटर आवश्यक है।\"],\"-9d7Ol\":[\"Pagerduty सबडोमेन\"],\"-9y9jy\":[\"हेल्थ चेक चल रहा है\"],\"-9yY_Q\":[\"इन्वेंटरी कॉपी करने में विफल।\"],\"-AZQnp\":[\"SAML\"],\"-FWz2-\":[\"पिछला स्क्रॉल करें\"],\"-FjWgX\":[\"गुरु\"],\"-GMFSa\":[\"प्रोजेक्ट कॉपी करने में विफल।\"],\"-GOG9X\":[\"विवरण छिपाएं\"],\"-NI2UI\":[\"इस जॉब टेम्पलेट द्वारा किए गए कार्य को निर्दिष्ट संख्या में जॉब स्लाइस में विभाजित करें, प्रत्येक इन्वेंटरी के एक हिस्से के विरुद्ध समान कार्य चलाता है।\"],\"-NezOR\":[\"यह क्रेडेंशियल प्रकार वर्तमान में कुछ क्रेडेंशियल्स द्वारा उपयोग किया जा रहा है और इसे हटाया नहीं जा सकता\"],\"-OpL2l\":[\"मूल नोड की अंतिम स्थिति की परवाह किए बिना निष्पादित करें।\"],\"-PyL32\":[\"क्या आप वाकई इस नोड को हटाना चाहते हैं?\"],\"-RAMET\":[\"इस लिंक को संपादित करें\"],\"-SAqJ3\":[\"क्रेडेंशियल कॉपी करने में विफल।\"],\"-Uepfb\":[\"नियंत्रण\"],\"-b3ghh\":[\"विशेषाधिकार वृद्धि\"],\"-cWxFz\":[\"यह सत्यापित करने के लिए सामग्री साइनिंग सक्षम करें कि प्रोजेक्ट के सिंक होने पर सामग्री सुरक्षित रही है। यदि सामग्री के साथ छेड़छाड़ की गई है, तो जॉब नहीं चलेगा।\"],\"-hh3vo\":[\"अंतिम जॉब अपडेट लोड करने में असमर्थ\"],\"-li8PK\":[\"सदस्यता उपयोग\"],\"-nb9qF\":[\"(लॉन्च पर संकेत)\"],\"-ohrPc\":[\"लुकअप टाइपअहेड\"],\"-rfqXD\":[\"सर्वेक्षण सक्षम\"],\"-uOi7U\":[\"बंडल डाउनलोड करने के लिए क्लिक करें\"],\"-vAlj5\":[\"जॉब लॉन्च करने में विफल।\"],\"-z0Ubz\":[\"लागू करने के लिए भूमिकाएं चुनें\"],\"-zW4qj\":[\"चेकआउट करने के लिए ब्रांच। ब्रांच के अलावा, आप टैग, कमिट हैश और मनमाने refs दर्ज कर सकते हैं। कुछ कमिट हैश और refs तब तक उपलब्ध नहीं हो सकते जब तक आप एक कस्टम refspec भी प्रदान न करें।\"],\"-zy2Nq\":[\"प्रकार\"],\"0-31GV\":[\"हटाया जा रहा है\"],\"0-yjzX\":[\"रिवीज़न उपलब्ध होने से पहले प्रोजेक्ट को सिंक किया जाना चाहिए।\"],\"00_HDq\":[\"नीति प्रकार\"],\"00cteM\":[\"इस फ़ील्ड में \",[\"0\"],\" से अधिक वर्ण नहीं होने चाहिए\"],\"01Zgfk\":[\"समय समाप्त\"],\"02FGuS\":[\"नया समूह बनाएं\"],\"02ePaq\":[[\"0\"],\" चुनें\"],\"02o5A-\":[\"नया प्रोजेक्ट बनाएं\"],\"05TJDT\":[\"जॉब विवरण देखने के लिए क्लिक करें\"],\"06Veq8\":[\"प्रोजेक्ट सिंक करें\"],\"08IuMU\":[\"वेरिएबल्स अधिलेखित करें\"],\"08dX0o\":[\"Grafana\"],\"0Ca6Bi\":[[\"dateStr\"],\" <0>\",[\"username\"],\" द्वारा\"],\"0DRyjU\":[\"हैंडलर्स चल रहे हैं\"],\"0JjrTf\":[\"फ़ाइल को पार्स करने में त्रुटि हुई। कृपया फ़ाइल स्वरूपण जांचें और पुनः प्रयास करें।\"],\"0K8MzY\":[\"इस फ़ील्ड में \",[\"max\"],\" से अधिक वर्ण नहीं होने चाहिए\"],\"0LUj25\":[\"इंस्टेंस समूह हटाएं\"],\"0MFMD5\":[\"एक या अधिक इंस्टेंसों पर हेल्थ चेक चलाने में विफल।\"],\"0Ohn6b\":[\"द्वारा लॉन्च किया गया\"],\"0PUWHV\":[\"पुनरावृत्ति आवृत्ति\"],\"0Pz6gk\":[\"निर्मित इन्वेंटरी प्लगइन को कॉन्फ़िगर करने के लिए उपयोग किए जाने वाले वेरिएबल्स। इस प्लगइन को कॉन्फ़िगर करने के तरीके के विस्तृत विवरण के लिए, देखें\"],\"0QsHpG\":[\"इनपुट स्कीमा जो उस प्रकार के लिए क्रमबद्ध फ़ील्ड्स का एक सेट परिभाषित करती है।\"],\"0Tddvz\":[\"Grafana सर्वर का आधार URL - \\n /api/annotations एंडपॉइंट स्वचालित रूप से आधार\\n Grafana URL में जोड़ा जाएगा।\"],\"0WL4_U\":[\"सभी नोड्स हटाएं\"],\"0WP27-\":[\"जॉब आउटपुट की प्रतीक्षा हो रही है…\"],\"0YAsXQ\":[\"कंटेनर समूह\"],\"0ZdD1M\":[[\"0\",\"plural\",{\"one\":[\"आप निम्न जॉब को रद्द नहीं कर सकते क्योंकि यह नहीं चल रही है:\"],\"other\":[\"आप निम्न जॉब्स को रद्द नहीं कर सकते क्योंकि वे नहीं चल रही हैं:\"]}]],\"0ZqUtV\":[\"अधिक जानकारी के लिए, देखें\"],\"0_ru-E\":[\"इन्वेंटरी कॉपी करें\"],\"0cqIWs\":[\"बेसिक प्रमाणीकरण पासवर्ड\"],\"0d48JM\":[\"बहुविकल्पीय (एकाधिक चयन)\"],\"0eOoxo\":[\"कृपया एक समाप्ति तिथि/समय चुनें जो प्रारंभ तिथि/समय के बाद आता हो।\"],\"0f7U0k\":[\"बुध\"],\"0gPQCa\":[\"हमेशा\"],\"0lvFRT\":[\"आप किसी क्रेडेंशियल का क्रेडेंशियल प्रकार नहीं बदल सकते, क्योंकि इससे इसका उपयोग करने वाले संसाधनों की कार्यक्षमता प्रभावित हो सकती है।\"],\"0pC_y6\":[\"इवेंट\"],\"0qOaMt\":[\"इस क्रेडेंशियल और मेटाडेटा का परीक्षण करने के अनुरोध में कुछ गलत हुआ।\"],\"0rVzXl\":[\"Google OAuth 2 सेटिंग्स\"],\"0sNe72\":[\"भूमिकाएं जोड़ें\"],\"0tNXE8\":[\"PUT\"],\"0tfvhT\":[\"इंस्टेंस समूह उपयोग की गई क्षमता\"],\"0wlLcO\":[\"सेट करें कि कितने दिनों का डेटा रखा जाना चाहिए।\"],\"0zpgxV\":[\"विकल्प\"],\"0zs8j5\":[\"विफल होने के बाद इस नोड की जॉब को उसके विफलता पथों का अनुसरण करने से पहले स्वचालित रूप से पुनः प्रयास किए जाने की अधिकतम संख्या। रद्द की गई जॉब्स को कभी पुनः प्रयास नहीं किया जाता।\"],\"1-4GhF\":[\"सिंक रद्द करें\"],\"10B0do\":[\"परीक्षण सूचना भेजने में विफल।\"],\"1280Tg\":[\"होस्ट नाम\"],\"12j25_\":[\"GPG सार्वजनिक कुंजी\"],\"12kemj\":[\"सोर्स कंट्रोल URL\"],\"14KOyT\":[\"स्रोत वेरिएबल्स\"],\"15GcuU\":[\"विविध प्रमाणीकरण सेटिंग्स देखें\"],\"17TKua\":[\"इंस्टेंस समूह\"],\"19zgn6\":[\"इंस्टेंस प्रकार\"],\"1A3EXy\":[\"विस्तृत करें\"],\"1C5cFl\":[\"अगला रन\"],\"1Ey8My\":[\"IP पता\"],\"1F0IaT\":[\"शेड्यूल देखें\"],\"1HMy92\":[\"JSON:\"],\"1I6UoR\":[\"दृश्य\"],\"1L3KBl\":[\"नया क्रेडेंशियल प्रकार बनाएं\"],\"1LRwvx\":[\"यदि आप चाहते हैं कि इन्वेंटरी स्रोत लॉन्च पर अपडेट हो, तो लॉन्च पर अपडेट करें पर क्लिक करें, और इस पर भी जाएं \"],\"1Ltnvs\":[\"नोड जोड़ें\"],\"1PQRWr\":[\"प्रारंभ समय\"],\"1QRNEs\":[\"पुनरावृत्ति आवृत्ति\"],\"1RYzKu\":[\"रद्द किए गए नोड से पुनः लॉन्च करें\"],\"1UJu6o\":[\"कृपया 1 और 31 के बीच एक दिन संख्या चुनें।\"],\"1UjRxI\":[\"कैश टाइमआउट\"],\"1UzENP\":[\"नहीं\"],\"1V4Yvg\":[\"विविध सिस्टम\"],\"1WlWk7\":[\"इन्वेंटरी होस्ट विवरण देखें\"],\"1WsB5U\":[\"हम इस खाते से संबद्ध सदस्यताएं ढूंढने में असमर्थ रहे।\"],\"1ZaQUH\":[\"अंतिम नाम\"],\"1_gTC7\":[\"आप समान वॉल्ट ID के साथ एकाधिक वॉल्ट क्रेडेंशियल्स नहीं चुन सकते। ऐसा करने पर समान वॉल्ट ID वाला दूसरा स्वचालित रूप से अचयनित हो जाएगा।\"],\"1abtmx\":[\"चाइल्ड समूहों और होस्ट्स को प्रोत्साहित करें\"],\"1ahgeV\":[\"Google OAuth2\"],\"1cT4RU\":[\"SCM अपडेट\"],\"1fO-kL\":[\"इंस्टेंस टॉगल करने में विफल।\"],\"1hCxP5\":[\"एक या अधिक इंस्टेंस समूह हटाने में विफल।\"],\"1kwHxg\":[\"होस्ट मेट्रिक्स\"],\"1n50PN\":[\"JSON टैब\"],\"1qd4yi\":[\"वेरिएबल्स JSON या YAML सिंटैक्स में होने चाहिए। दोनों के बीच टॉगल करने के लिए रेडियो बटन का उपयोग करें।\"],\"1rDBnp\":[\"फ़ाइल अंतर\"],\"1w2SCz\":[\"एक सोर्स कंट्रोल प्रकार चुनें\"],\"1xdJD7\":[\"स्क्रीन में फ़िट करें\"],\"1yHVE-\":[\"जोड़ा जा रहा है\"],\"2-iKER\":[\"गतिविधि स्ट्रीम देखें\"],\"2B_v7Y\":[\"नीति इंस्टेंस प्रतिशत\"],\"2CTKOa\":[\"प्रोजेक्ट्स पर वापस\"],\"2FB7vv\":[\"डिफ़ॉल्ट निष्पादन वातावरण संपादित करने से पहले एक संगठन चुनें।\"],\"2FeJcd\":[\"आइटम छोड़ा गया\"],\"2H9REH\":[\"नाम फ़ील्ड पर फ़ज़ी खोज।\"],\"2JV4mx\":[\"वे इंस्टेंस समूह जिनसे यह इंस्टेंस संबंधित है।\"],\"2KlsJC\":[\"आप संदेश में कई संभावित वेरिएबल्स लागू कर सकते हैं।\\n अधिक जानकारी के लिए, देखें\"],\"2MSEkM\":[\"इन्वेंटरी हटाने में विफल।\"],\"2a07Yj\":[\"सूचना टेम्पलेट कॉपी करें\"],\"2ekvhy\":[\"अपवाद आवृत्ति\"],\"2gDkH_\":[\"कृपया घटनाओं की संख्या दर्ज करें।\"],\"2iyx-2\":[\"Ansible Controller दस्तावेज़ीकरण।\"],\"2n41Wr\":[\"वर्कफ़्लो टेम्पलेट जोड़ें\"],\"2nsB1O\":[\"टोकन पर वापस\"],\"2ocqzE\":[\"वेबहुक: इस टेम्पलेट के लिए वेबहुक सक्षम करें।\"],\"2ooR7j\":[\"LDAP 5\"],\"2p6eVk\":[\"लुकअप मोडल\"],\"2pNIxF\":[\"वर्कफ़्लो नोड्स\"],\"2pgi-L\":[\"इंगित करता है कि क्या कोई होस्ट उपलब्ध है और चल रही\\n जॉब्स में शामिल किया जाना चाहिए। बाहरी इन्वेंटरी का हिस्सा होने वाले होस्ट्स के लिए, इसे\\n इन्वेंटरी सिंक प्रक्रिया द्वारा रीसेट किया जा सकता है।\"],\"2qfwJn\":[\"अधिलेखित करें\"],\"2r06bV\":[\"Hipchat\"],\"2rvMKg\":[\"रिफ़्रेश टोकन\"],\"2w-INk\":[\"होस्ट विवरण\"],\"2zs1kI\":[\"यह मान उस पासवर्ड से मेल नहीं खाता जो आपने पहले दर्ज किया था। कृपया उस पासवर्ड की पुष्टि करें।\"],\"3-SkJA\":[\"समूह को होस्ट से अलग करें?\"],\"3-sY1p\":[\"गंतव्य SMS नंबर\"],\"328Yxp\":[\"सोर्स कंट्रोल ब्रांच\"],\"38Or-7\":[\"टैब\"],\"38VIWI\":[\"टेम्पलेट विवरण देखें\"],\"39y5bn\":[\"शुक्रवार\"],\"3A9ATS\":[\"निष्पादन वातावरण नहीं मिला।\"],\"3AOZPn\":[\"डिबग विकल्प देखें और संपादित करें\"],\"3FUtN9\":[\"इन्वेंटरी स्रोत सिंक\"],\"3IVQDN\":[\"यह शेड्यूल जटिल नियमों का उपयोग करता है जो UI में\\n समर्थित नहीं हैं। कृपया इस शेड्यूल को प्रबंधित करने के लिए API का उपयोग करें।\"],\"3JjdaA\":[\"चलाएं\"],\"3JnvxN\":[\"वे संसाधन चुनें जो नई भूमिकाएं प्राप्त करेंगे। आप अगले चरण में लागू करने के लिए भूमिकाएं चुन सकेंगे। ध्यान दें कि यहां चुने गए संसाधन अगले चरण में चुनी गई सभी भूमिकाएं प्राप्त करेंगे।\"],\"3JzsDb\":[\"मई\"],\"3LoUor\":[\"गंतव्य चैनल\"],\"3LqMX2\":[\"CIQ Ascender Automation Platform\"],\"3PAU4M\":[\"वर्ष\"],\"3PZalO\":[\"होस्ट नहीं मिला।\"],\"3Rke7L\":[\"1 (जानकारी)\"],\"3WGwSW\":[\"अपडेट करने से पहले स्थानीय रिपॉजिटरी को पूरी तरह से हटा दें। रिपॉजिटरी के आकार के आधार पर, यह अपडेट पूर्ण करने के लिए आवश्यक समय को काफी बढ़ा सकता है।\"],\"3YSVMq\":[\"हटाने में त्रुटि\"],\"3aIe4Y\":[\"नया संगठन बनाएं\"],\"3b24mY\":[\"CPU \",[\"0\"]],\"3fG1e7\":[\"बीता हुआ समय\"],\"3fMc43\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" वर्ष\"],\"other\":[\"#\",\" वर्ष\"]}]],\"3hCQhK\":[\"इन्वेंटरी प्लगइन्स\"],\"3hvUyZ\":[\"नया विकल्प\"],\"3mTiHp\":[\"टेम्पलेट कॉपी करने में विफल।\"],\"3pBNb0\":[\"आउटपुट पुनः लोड करें\"],\"3sFvGC\":[\"इंस्टेंस को सक्षम या अक्षम सेट करें। यदि अक्षम है, तो इस इंस्टेंस को जॉब्स असाइन नहीं की जाएंगी।\"],\"3sXZ-V\":[\"और लॉन्च पर रिवीज़न अपडेट करें पर क्लिक करें।\"],\"3uAM50\":[\"अंतिम उपयोगकर्ता लाइसेंस अनुबंध\"],\"3wPA9L\":[\"सेटिंग श्रेणी\"],\"3y7qi5\":[\"क्रेडेंशियल्स पर वापस\"],\"3yy_k-\":[\"सभी टीमें देखें।\"],\"4-RjdJ\":[[\"interval\"],\" year\"],\"40lLFI\":[\"अगले पृष्ठ पर जाएं\"],\"41KRqu\":[\"क्रेडेंशियल पासवर्ड\"],\"45BzQy\":[\"हेल्थ चेक एसिंक्रोनस कार्य हैं। देखें\"],\"45cx0B\":[\"सदस्यता संपादन रद्द करें\"],\"45gLaI\":[\"लॉन्च पर क्रेडेंशियल्स के लिए संकेत दें।\"],\"46SUtl\":[\"समूह संपादित करें\"],\"479kuh\":[\"पूर्ण रिवीज़न क्लिपबोर्ड पर कॉपी करें।\"],\"47e97a\":[\"अधिकतम पुनः प्रयास\"],\"4BITzH\":[\"त्रुटि:\"],\"4LzLLz\":[\"सभी सेटिंग्स देखें\"],\"4Q4HZp\":[\"कोई \",[\"pluralizedItemName\"],\" नहीं मिला\"],\"4QXpWJ\":[\"समय समाप्त\"],\"4QfhOe\":[\"not__ और __search जैसे कुछ खोज संशोधक स्मार्ट इन्वेंटरी होस्ट फ़िल्टर में समर्थित नहीं हैं। इस फ़िल्टर के साथ नई स्मार्ट इन्वेंटरी बनाने के लिए इन्हें हटाएं।\"],\"4S2cNE\":[\"लॉगिंग सेटिंग्स देखें\"],\"4Wt2Ty\":[\"सूची से आइटम चुनें\"],\"4_ESDh\":[\"इस फ़ील्ड में एक नियमित अभिव्यक्ति होनी चाहिए\"],\"4_xiC_\":[\"आर्टिफ़ैक्ट्स\"],\"4alXD6\":[\"इस समूह पर एक साथ चलाने के लिए जॉब्स की अधिकतम संख्या।\\n शून्य का अर्थ है कोई सीमा लागू नहीं की जाएगी।\"],\"4bhLaA\":[\"एक क्रेडेंशियल प्रकार चुनें\"],\"4cWhxn\":[\"नियंत्रित करता है कि यह इंस्टेंस नीति द्वारा प्रबंधित है या नहीं। यदि सक्षम है, तो इंस्टेंस नीति नियमों के आधार पर इंस्टेंस समूहों में स्वचालित असाइनमेंट और अनअसाइनमेंट के लिए उपलब्ध होगा।\"],\"4dQFvz\":[\"समाप्त\"],\"4g1rw0\":[\"ईमेल सूचना द्वारा होस्ट तक पहुंचने का प्रयास बंद करने और समय समाप्त होने से पहले\\n का समय (सेकंड में)। 1 से 120 सेकंड\\n तक की सीमा।\"],\"4hPyPF\":[\"सहेजें और बाहर निकलें\"],\"4j2eOR\":[\"वह इन्वेंटरी चुनें जिससे यह होस्ट संबंधित होगा।\"],\"4jnim6\":[\"एक वेबहुक सेवा चुनें।\"],\"4km-Vu\":[\"अनुपालन से बाहर\"],\"4kw_um\":[[\"interval\"],\" minute\"],\"4lCMxZ\":[\"विफलता स्पष्टीकरण:\"],\"4lgLew\":[\"फ़रवरी\"],\"4mQyZf\":[\"वेबहुक सेवाएँ इसे साझा गुप्त के रूप में उपयोग कर सकती हैं।\"],\"4nLbTY\":[\"सभी प्रबंधन जॉब्स देखें\"],\"4o_cFL\":[\"एप्लिकेशन हटाएं\"],\"4s0pSB\":[\"होस्ट की उस सूची को और सीमित करने के लिए एक होस्ट पैटर्न प्रदान करें जिसे प्लेबुक द्वारा प्रबंधित या प्रभावित किया जाएगा। कई पैटर्न की अनुमति है। पैटर्न पर अधिक जानकारी और उदाहरणों के लिए Ansible दस्तावेज़ीकरण देखें।\"],\"4uVADI\":[\"क्लाइंट सीक्रेट\"],\"4vFDZV\":[\"नया जॉब टेम्पलेट बनाएं\"],\"4vkbaA\":[\"वह प्रोजेक्ट जिससे यह इन्वेंटरी अपडेट स्रोत किया गया है।\"],\"4yGeRr\":[\"इन्वेंटरी सिंक\"],\"4zue79\":[\"कॉपीराइट\"],\"5-qYGv\":[\"इंस्टेंस संपादित करें\"],\"54_SyV\":[[\"0\",\"plural\",{\"one\":[\"आपके पास निम्न जॉब को रद्द करने की अनुमति नहीं है:\"],\"other\":[\"आपके पास निम्न जॉब्स को रद्द करने की अनुमति नहीं है:\"]}]],\"56fd5u\":[\"क्या आप वाकई इस वर्कफ़्लो के सभी नोड्स हटाना चाहते हैं?\"],\"5B77Dm\":[\"अंतिम जॉब\"],\"5F5F4w\":[\"वर्कफ़्लो अनुमोदन\"],\"5IhYoj\":[\"नोड प्रकार\"],\"5K7kGO\":[\"दस्तावेज़ीकरण\"],\"5KMGbn\":[\"क्या आप वाकई इस जॉब को रद्द करना चाहते हैं?\"],\"5RMgCw\":[\"होस्ट्स\"],\"5S4tZv\":[\"आवृत्ति अपेक्षित मान से मेल नहीं खाती\"],\"5Sa1Ss\":[\"ई-मेल\"],\"5TnQp6\":[\"जॉब प्रकार\"],\"5WFDw4\":[\"केवल इसके द्वारा समूहित करें\"],\"5X2wog\":[\"लॉग इन करने में समस्या हुई। कृपया पुनः प्रयास करें।\"],\"5_vHPm\":[\"TACACS+ सेटिंग्स देखें\"],\"5ajaW1\":[\"मूल नोड का आर्टिफ़ैक्ट स्थिति से मेल खाने पर निष्पादित करें।\"],\"5dJK4M\":[\"भूमिकाएं\"],\"5eHyY-\":[\"परीक्षण सूचना\"],\"5eL2KN\":[\"लक्ष्य URL\"],\"5lqXf5\":[\"फ़ैक्टरी डिफ़ॉल्ट पर वापस लौटें।\"],\"5n_soj\":[\"लॉन्च पर जॉब स्लाइस संख्या के लिए संकेत दें।\"],\"5p6-Mk\":[\"विफल जॉब्स द्वारा फ़िल्टर करें\"],\"5pDe2G\":[\"Remove \",[\"0\"],\" Access\"],\"5pa4JT\":[\"प्लेबुक प्रारंभ हुई\"],\"5qauVA\":[\"यह वर्कफ़्लो जॉब टेम्पलेट वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"5vA8H0\":[\"कोई होस्ट मेल नहीं खाया\"],\"5xzS8Q\":[\"टोकन जो सुनिश्चित करता है कि यह ‘constructed’ प्लगइन\\n के लिए एक स्रोत फ़ाइल है।\"],\"5y9wkB\":[\"सूचनाओं पर वापस\"],\"6-OdGi\":[\"प्रोटोकॉल\"],\"6-ptnU\":[\"विकल्प\"],\"623gDt\":[\"उपयोगकर्ता हटाने में विफल।\"],\"63C4Yo\":[\"कंटेनर समूह\"],\"66Zq7T\":[\"लिंक परिवर्तन सहेजें\"],\"66qTfS\":[\"पिछला सप्ताह\"],\"679-JR\":[\"id, नाम या विवरण फ़ील्ड्स पर फ़ज़ी खोज।\"],\"68OTAn\":[\"This intance is currently being used by other resources. Are you sure you want to delete it?\"],\"68h6WG\":[\"प्रबंधन जॉब लॉन्च करें\"],\"69aXwM\":[\"मौजूदा समूह जोड़ें\"],\"69zuwn\":[\"Deprovisioning these instances could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"6ASSBg\":[\"LDAP 4\"],\"6BzDub\":[\"सॉफ़्ट डिलीट\"],\"6GBt0m\":[\"मेटाडेटा\"],\"6HLTEb\":[\"फ़िल्टर...\"],\"6J-cs1\":[\"टाइमआउट सेकंड\"],\"6KhU4s\":[\"क्या आप वाकई अपने परिवर्तन सहेजे बिना वर्कफ़्लो क्रिएटर से बाहर निकलना चाहते हैं?\"],\"6LTyxl\":[\"रिवीज़न\"],\"6PmtyP\":[\"लीजेंड टॉगल करें\"],\"6RDwJM\":[\"टोकन\"],\"6UYTy8\":[\"मिनट\"],\"6V3Ea3\":[\"कॉपी किया गया\"],\"6WwHL3\":[\"कुल नोड्स\"],\"6XOI1I\":[\"नई फ़ेडरेटेड इन्वेंटरी बनाएं\"],\"6XgEPi\":[\"घंटा\"],\"6YtxFj\":[\"नाम\"],\"6Z5ACo\":[\"होस्ट कॉन्फ़िग कुंजी\"],\"6bpC9t\":[\"विफल नोड\"],\"6cylr_\":[\"Stdout\"],\"6f961q\":[\"केवल यदि अनुपस्थित हो\"],\"6hEnxG\":[\"विशेषाधिकार वृद्धि सक्षम करें\"],\"6j6_0F\":[\"संबंधित संसाधन\"],\"6kpN96\":[\"सूचना हटाने में विफल।\"],\"6lGV3K\":[\"कम दिखाएं\"],\"6msU0q\":[\"एक या अधिक जॉब्स हटाने में विफल।\"],\"6nsio_\":[\"कमांड चलाएं\"],\"6oNH0E\":[\"प्लगइन कॉन्फ़िगरेशन गाइड।\"],\"6pMgh_\":[\"LDAP सेटिंग्स देखें\"],\"6rSKy6\":[\"इस फ़ेडरेटेड इन्वेंटरी के लिए स्रोत इन्वेंटरी चुनें। जब कोई जॉब लॉन्च की जाती है, तो होस्ट्स स्वचालित रूप से प्रत्येक स्रोत इन्वेंटरी के इंस्टेंस समूह में रूट किए जाएंगे।\"],\"6uvnKV\":[\"API सेवा/इंटीग्रेशन कुंजी\"],\"6vrz8I\":[\"एक या अधिक जॉब्स रद्द करने में विफल।\"],\"6zGHNM\":[\"शेष होस्ट्स\"],\"74MNbw\":[\"Ctrl IQ, Inc.\"],\"764xeZ\":[\"सर्वेक्षण अपडेट करने में विफल।\"],\"7Bj3x9\":[\"विफल\"],\"7ElOdS\":[\"डैशबोर्ड की ID\"],\"7IUE9q\":[\"स्रोत वेरिएबल्स\"],\"7JF9w9\":[\"प्रश्न जोड़ें\"],\"7L01XJ\":[\"क्रियाएं\"],\"7O5TcN\":[\"इवेंट सारांश उपलब्ध नहीं\"],\"7PzzBU\":[\"User\"],\"7UZtKb\":[\"वह संगठन जो इस वर्कफ़्लो जॉब टेम्पलेट का स्वामी है।\"],\"7VETeB\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"],\"7VpPHA\":[\"पुष्टि करें\"],\"7Xk3M1\":[\"वह प्रोजेक्ट चुनें जिसमें वह playbook है जिसे आप इस जॉब से निष्पादित कराना चाहते हैं।\"],\"7ZhNzL\":[\"पहले पृष्ठ पर जाएं\"],\"7b8TOD\":[\"विवरण।\"],\"7bDeKc\":[\"सदस्यता मैनिफ़ेस्ट\"],\"7fJwmW\":[\"चयनित आइटमों की सूची।\"],\"7hS02I\":[[\"automatedInstancesSinceDateTime\"],\" से \",[\"automatedInstancesCount\"]],\"7icMBj\":[\"कोई जॉब डेटा उपलब्ध नहीं\"],\"7kb4LU\":[\"अनुमोदित\"],\"7p5kLi\":[\"डैशबोर्ड\"],\"7q256R\":[\"ब्रांच ओवरराइड की अनुमति दें\"],\"7qFdk8\":[\"क्रेडेंशियल संपादित करें\"],\"7sMeHQ\":[\"कुंजी\"],\"7sNhEz\":[\"उपयोगकर्ता नाम\"],\"7w3QvK\":[\"सफलता संदेश मुख्य भाग\"],\"7wgt9A\":[\"प्लेबुक रन\"],\"7zmvk2\":[\"आइटम विफल\"],\"81eOdm\":[\"वर्कफ़्लो पुनः लॉन्च करें\"],\"82O8kJ\":[\"यह प्रोजेक्ट वर्तमान में सिंक पर है और सिंक प्रक्रिया पूर्ण होने तक इस पर क्लिक नहीं किया जा सकता\"],\"82sWFi\":[\"प्रशासन\"],\"84Usx_\":[\"प्रोजेक्ट हटाने में विफल।\"],\"87a_t_\":[\"लेबल\"],\"88ip8h\":[\"सभी वापस लौटाएं\"],\"8BkLPF\":[\"अनुमत URI सूची, स्थान द्वारा अलग की गई\"],\"8F8HYs\":[\"उपयोग करने के लिए अपनी Ansible Automation Platform सदस्यता चुनें।\"],\"8H3Igx\":[[\"interval\"],\" month\"],\"8Oef5v\":[\"GIT स्रोत नियंत्रण के लिए उदाहरण URL में शामिल हैं:\"],\"8XM8GW\":[\"भूमिकाएं सही ढंग से असाइन करने में विफल\"],\"8Z236a\":[\"ब्रांड लोगो\"],\"8ZsakT\":[\"पासवर्ड\"],\"8_wZUD\":[\"टीम भूमिकाएं\"],\"8d57h8\":[\"विविध सिस्टम सेटिंग्स देखें\"],\"8gCRbU\":[\"अन्य संकेत\"],\"8gaTqG\":[\"प्रकार विवरण\"],\"8kDNpI\":[\"स्थिति का मूल्यांकन करने से पहले मूल नोड परिणाम आवश्यक है।\"],\"8l9yyw\":[\"जॉब टेम्पलेट\"],\"8lEjQX\":[\"बंडल इंस्टॉल करें\"],\"8lb4Do\":[\"सदस्यता साफ़ करें\"],\"8oiwP_\":[\"इनपुट कॉन्फ़िगरेशन\"],\"8p_xVT\":[[\"0\",\"plural\",{\"one\":[[\"1\"]],\"other\":[[\"2\"]]}]],\"8u5g0S\":[\"स्मार्ट इन्वेंटरी हटाएं\"],\"8vETh9\":[\"दिखाएं\"],\"8wxHsh\":[\"इस वर्कफ़्लो जॉब टेम्पलेट के लिए वेबहुक कुंजी।\"],\"8yd882\":[\"एक या अधिक टीमों को अलग करने में विफल।\"],\"8zGO4o\":[\"फ़ील्ड दिए गए नियमित एक्सप्रेशन से मेल खाता है।\"],\"8zoIOi\":[[\"0\",\"plural\",{\"one\":[\"यह क्रेडेंशियल प्रकार वर्तमान में कुछ क्रेडेंशियल्स द्वारा उपयोग किया जा रहा है और इसे हटाया नहीं जा सकता।\"],\"other\":[\"क्रेडेंशियल्स द्वारा उपयोग किए जा रहे क्रेडेंशियल प्रकार हटाए नहीं जा सकते। क्या आप फिर भी हटाना चाहते हैं?\"]}]],\"8zvzWO\":[\"इस वर्कफ़्लो जॉब टेम्पलेट के समवर्ती रन की अनुमति दें।\"],\"9-wVFp\":[\"फ़ेडरेटेड इन्वेंटरी विवरण देखें\"],\"91UHfE\":[\"इन्वेंटरी अपडेट\"],\"91lyAf\":[\"समवर्ती जॉब्स\"],\"933cZy\":[\"विविध सिस्टम सेटिंग्स\"],\"954HqS\":[\"होस्ट पहली बार कब स्वचालित हुआ था\"],\"95p1BK\":[\"नया उपयोगकर्ता बनाएं\"],\"98Qtlu\":[\"हर बार जब कोई जॉब इस प्रोजेक्ट का उपयोग करके चलता है, तो जॉब शुरू करने से पहले प्रोजेक्ट का रिविज़न अपडेट करें।\"],\"991Df5\":[\"a new webhook key will be generated on save.\"],\"99qC6z\":[[\"interval\"],\" week\"],\"9Ah95g\":[[\"0\",\"plural\",{\"one\":[\"यह इन्वेंट्री वर्तमान में कुछ टेम्पलेट्स द्वारा उपयोग की जा रही है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"other\":[\"इन इन्वेंट्रीज़ को हटाने से उन पर निर्भर कुछ टेम्पलेट्स प्रभावित हो सकते हैं। क्या आप वाकई इन्हें हटाना चाहते हैं?\"]}]],\"9BTNYL\":[\"Expected at least one of client_email, project_id or private_key to be present in the file.\"],\"9BpfLa\":[\"लेबल चुनें\"],\"9DOXq6\":[\"सभी टेम्पलेट देखें।\"],\"9DugxF\":[\"सदस्यता प्रकार\"],\"9HhFQ8\":[\"ऐसे परिणाम लौटाता है जिनमें इस मान के अलावा अन्य मान होते हैं, साथ ही अन्य फ़िल्टर भी।\"],\"9L1ngr\":[\"कुल जॉब्स\"],\"9N-4tQ\":[\"क्रेडेंशियल प्रकार\"],\"9NyAH9\":[\"छोड़ा गया\"],\"9PB0sF\":[\"IRC\"],\"9Rsklx\":[\"सभी नोड्स हटाएं\"],\"9Tmez1\":[\"इंस्टेंस विवरण देखें\"],\"9UuGMQ\":[\"हटाना लंबित\"],\"9V-Un3\":[\"फ़ैक्ट स्टोरेज सक्षम करें\"],\"9VMv7k\":[\"निर्मित इन्वेंटरी\"],\"9Wm-J4\":[\"पासवर्ड टॉगल करें\"],\"9XA1Rs\":[\"प्रोजेक्ट वर्तमान में सिंक हो रहा है और सिंक पूरा होने के बाद रिवीज़न उपलब्ध होगा।\"],\"9Y3BQE\":[\"संगठन हटाएं\"],\"9YSB0Z\":[\"इस शेड्यूल में इन्वेंटरी अनुपस्थित है\"],\"9ZnrIx\":[\"अपनी सदस्यता जानकारी देखें और संपादित करें\"],\"9fRa7M\":[\"हटाने के लिए एक पंक्ति चुनें\"],\"9hmrEp\":[\"इस पर पुनः लॉन्च करें\"],\"9iX1S0\":[\"यह क्रिया निम्न इंस्टेंस को हटा देगी और आपको किसी भी इंस्टेंस के लिए इंस्टॉल बंडल पुनः चलाने की आवश्यकता हो सकती है जो पहले जुड़ा हुआ था:\"],\"9jfn-S\":[\"विस्तृत नहीं है\"],\"9l0RZY\":[\"नया लिंक बनाने के लिए किसी उपलब्ध नोड पर क्लिक करें। रद्द करने के लिए ग्राफ़ के बाहर क्लिक करें।\"],\"9m7jms\":[\"स्रोत इन्वेंटरी जिनके होस्ट्स इस फ़ेडरेटेड इन्वेंटरी के विरुद्ध कोई जॉब लॉन्च होने पर उनके संबंधित इंस्टेंस समूहों में रूट किए जाएंगे।\"],\"9mfJJf\":[\"जॉब टेम्पलेट\"],\"9nhhVW\":[\"पृष्ठ\"],\"9nypdt\":[\"प्रारंभिक मान पुनर्स्थापित करें।\"],\"9odS2n\":[\"विफल होस्ट्स\"],\"9og-0c\":[\"यह निष्पादन वातावरण वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"9rFgm2\":[\"सदस्यता क्षमता\"],\"9rvzNA\":[\"संबद्धता मोडल\"],\"9td1Wl\":[\"जांच\"],\"9uI_rE\":[\"पूर्ववत करें\"],\"9u_dDE\":[\"अगम्य होस्ट संख्या\"],\"9uxVdR\":[\"सोर्स कंट्रोल क्रेडेंशियल\"],\"9wvWk3\":[\"यह निर्मित इन्वेंटरी इनपुट \\n दोनों श्रेणियों के लिए एक समूह बनाता है और केवल उन होस्ट्स को \\n लौटाने के लिए सीमा (होस्ट पैटर्न) का उपयोग करता है जो \\n उन दोनों समूहों के प्रतिच्छेदन में हैं।\"],\"A1a8Ku\":[\"प्रबंधन जॉब लॉन्च त्रुटि\"],\"A1taO8\":[\"खोजें\"],\"A3o0Xd\":[\"इस संगठन के चलने के लिए इंस्टेंस समूह।\"],\"A6paZd\":[\"फ़ेडरेटेड इन्वेंटरी जोड़ें\"],\"A8lIi2\":[\"रिवीज़न के लिए सिंक करें\"],\"A9-PUr\":[\"हेल्थ चेक अनुरोध सबमिट किए गए। कृपया प्रतीक्षा करें और पृष्ठ पुनः लोड करें।\"],\"AA2ASV\":[\"निष्पादन वातावरण सफलतापूर्वक कॉपी किया गया\"],\"ADVQ46\":[\"लॉग इन करें\"],\"ARAUFe\":[\"इन्वेंटरी हटाएं\"],\"AV22aU\":[\"कुछ गलत हुआ...\"],\"AWOSPo\":[\"ज़ूम इन करें\"],\"Ab1y_G\":[\"निर्मित इन्वेंटरी स्रोत सिंक रद्द करें\"],\"AgTBbk\":[[\"intervalValue\",\"plural\",{\"one\":[\"सप्ताह\"],\"other\":[\"सप्ताह\"]}]],\"AgTuXC\":[\"आपके पास \",[\"pluralizedItemName\"],\" हटाने की अनुमति नहीं है: \",[\"itemsUnableToDelete\"]],\"Ai2U7L\":[\"होस्ट\"],\"Aj3on1\":[\"बाहरी लॉगिंग सक्षम करें\"],\"AoCBvp\":[\"जॉब स्लाइस\"],\"Apl-Vf\":[\"Red Hat सदस्यता मैनिफ़ेस्ट\"],\"Apv-R1\":[\"यदि आप अपग्रेड या नवीनीकरण के लिए तैयार हैं, तो कृपया <0>हमसे संपर्क करें।\"],\"AqdlyH\":[\"पासवर्ड के लिए संकेत देने वाले क्रेडेंशियल्स वाले जॉब टेम्पलेट नोड्स बनाते या संपादित करते समय नहीं चुने जा सकते\"],\"ArtxnQ\":[\"सोर्स कंट्रोल Refspec\"],\"AsLVdj\":[\"प्रति पंक्ति एक IRC चैनल या उपयोगकर्ता नाम का उपयोग करें। चैनलों के लिए पाउंड\\n प्रतीक (#), और उपयोगकर्ताओं के लिए एट (@) प्रतीक\\n आवश्यक नहीं हैं।\"],\"AwUsnG\":[\"इंस्टेंस\"],\"AxC8wb\":[\"आउटपुट कॉपी करें\"],\"AxPAXW\":[\"कोई परिणाम नहीं मिला\"],\"Axi4f8\":[\"Dragging item \",[\"id\"],\". Item with index \",[\"oldIndex\"],\" in now \",[\"newIndex\"],\".\"],\"Azw0EZ\":[\"नई स्मार्ट इन्वेंटरी बनाएं\"],\"B0HFJ8\":[\"एक या अधिक होस्ट्स को अलग करने में विफल।\"],\"B0P3qo\":[\"जॉब ID:\"],\"B0dbFG\":[\"शेड्यूल हटाएं\"],\"B2Zb_F\":[\"JSON\"],\"B3ZzHO\":[\"अंतिम स्वचालित\"],\"B4WcU9\":[[\"0\"],\" द्वारा अनुमोदित - \",[\"1\"]],\"B7FU4J\":[\"होस्ट प्रारंभ हुआ\"],\"B8bpYS\":[\"अपनी सदस्यता वाला Red Hat सदस्यता मैनिफ़ेस्ट अपलोड करें। अपना सदस्यता मैनिफ़ेस्ट जनरेट करने के लिए, Red Hat Customer Portal पर <0>सदस्यता आवंटन पर जाएं।\"],\"BAmn8K\":[\"एक संसाधन प्रकार चुनें\"],\"BERhj_\":[\"सफलता संदेश\"],\"BGNDgh\":[\"नोड उपनाम\"],\"BH7upP\":[\"POST\"],\"BIJ2_m\":[\"इस संगठन के भीतर कार्यों के लिए उपयोग किया जाने वाला निष्पादन वातावरण। इसका उपयोग तब फ़ॉलबैक के रूप में किया जाएगा जब प्रोजेक्ट, कार्य टेम्पलेट या वर्कफ़्लो स्तर पर कोई निष्पादन वातावरण स्पष्ट रूप से असाइन नहीं किया गया हो।\"],\"BNDplB\":[\"टेम्पलेट सफलतापूर्वक कॉपी किया गया\"],\"BWTzAb\":[\"मैनुअल\"],\"BaPk6N\":[\"प्लेबुक का पता लगाने के लिए उपयोग किया जाने वाला आधार पथ। इस पथ के अंदर पाई गई निर्देशिकाएँ प्लेबुक निर्देशिका ड्रॉप-डाउन में सूचीबद्ध होंगी। आधार पथ और चयनित प्लेबुक निर्देशिका मिलकर प्लेबुक का पता लगाने के लिए उपयोग किया जाने वाला पूर्ण पथ प्रदान करते हैं।\"],\"BfYq0G\":[\"सोर्स कंट्रोल प्रकार\"],\"Bg7M6U\":[\"कोई परिणाम नहीं मिला\"],\"Bl2Djq\":[\"टोकन देखें\"],\"Bl2eoO\":[\"एन्क्रिप्टेड\"],\"BskWMl\":[\"अगम्य\"],\"BsrdSv\":[\"JSON या YAML सिंटैक्स का उपयोग करके इन्वेंटरी वेरिएबल्स दर्ज करें। दोनों के बीच टॉगल करने के लिए रेडियो बटन का उपयोग करें। उदाहरण सिंटैक्स के लिए Ansible Controller दस्तावेज़ीकरण देखें।\"],\"Bv8zdm\":[\"इनपुट इन्वेंटरी\"],\"BwJKBw\":[\"में से\"],\"Bz7WRU\":[[\"0\",\"plural\",{\"one\":[\"कृपया एक मान्य फ़ोन नंबर दर्ज करें।\"],\"other\":[\"कृपया मान्य फ़ोन नंबर दर्ज करें।\"]}]],\"BzEFor\":[\"या\"],\"BzbzJb\":[\"फ़ैक्ट्स\"],\"BzfzPK\":[\"आइटम\"],\"C-gr_n\":[\"Azure AD सेटिंग्स\"],\"C0sUgI\":[\"नई इन्वेंटरी बनाएं\"],\"C2KEkR\":[\"SSH पासवर्ड\"],\"C3Q1LZ\":[\"OIDC सेटिंग्स देखें\"],\"C4C-qQ\":[\"शेड्यूल विवरण\"],\"C6GAUT\":[\"विस्तृत है\"],\"C7dP40\":[[\"0\"],\" को अस्वीकार करने में विफल।\"],\"C7s60U\":[\"वेबहुक विवरण\"],\"CAL6E9\":[\"टीमें\"],\"CDOlBM\":[\"इंस्टेंस ID\"],\"CE-M2e\":[\"जानकारी\"],\"CGOseh\":[\"शेड्यूल विवरण\"],\"CGZgZY\":[\"अलग करने के लिए एक पंक्ति चुनें\"],\"CG_9l6\":[\"LDAP 1\"],\"CGwKKr\":[[\"0\",\"plural\",{\"one\":[\"समूह हटाएं?\"],\"other\":[\"समूह हटाएं?\"]}]],\"CIEoqM\":[\"इंस्टेंस नाम\"],\"CKc7jz\":[\"होस्ट विवरण मोडल\"],\"CL7QiF\":[\"उत्तर टाइप करें फिर उत्तर को डिफ़ॉल्ट के रूप में चुनने के लिए\\nदाईं ओर चेकबॉक्स पर क्लिक करें।\"],\"CLTHnk\":[\"सर्वेक्षण प्रश्न क्रम\"],\"CMmwQ-\":[\"अज्ञात प्रारंभ तिथि\"],\"CNZ5h9\":[\"डेटा प्रतिधारण अवधि\"],\"CS8u6E\":[\"वेबहुक सक्षम करें\"],\"CSvk3a\":[\"Twilio में \\\"मैसेजिंग\\n सेवा\\\" से संबद्ध संख्या, +18005550199 प्रारूप में।\"],\"CW11B-\":[\"न्यूनतम\"],\"CXJHPJ\":[\"द्वारा संशोधित (उपयोगकर्ता नाम)\"],\"CZDqWd\":[\"प्रोजेक्ट रिवीज़न वर्तमान में पुराना है। सबसे हाल का रिवीज़न प्राप्त करने के लिए कृपया रीफ़्रेश करें।\"],\"CZg9aH\":[\"होस्ट्स चुनें\"],\"C_Lu89\":[\"JSON या YAML सिंटैक्स का उपयोग करके इनपुट दर्ज करें। उदाहरण सिंटैक्स के लिए Ansible Controller दस्तावेज़ीकरण देखें।\"],\"C_NnqT\":[\"नया होस्ट बनाएं\"],\"Cc8jO8\":[\"कमांड चलाने के लिए रिमोट होस्ट्स तक पहुंचते समय उपयोग करने के लिए क्रेडेंशियल चुनें। वह क्रेडेंशियल चुनें जिसमें उपयोगकर्ता नाम और SSH कुंजी या पासवर्ड हो जिसकी Ansible को रिमोट होस्ट्स में लॉग इन करने के लिए आवश्यकता होगी।\"],\"CcKMRv\":[\"यह जॉब टेम्पलेट वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"CczdmZ\":[\"सभी क्रेडेंशियल देखें।\"],\"CdGRti\":[\"सभी सूचना टेम्पलेट देखें।\"],\"Ce28nP\":[\"<0>नोट: यदि इंस्टेंस <1>नीति नियमों द्वारा प्रबंधित हैं तो उन्हें इस इंस्टेंस समूह के साथ पुनः संबद्ध किया जा सकता है।\"],\"Cev3QF\":[\"टाइमआउट मिनट\"],\"ChTa9Z\":[[\"intervalValue\",\"plural\",{\"one\":[\"घंटा\"],\"other\":[\"घंटे\"]}]],\"CoPs3y\":[\"इस वर्कफ़्लो में कोई नोड कॉन्फ़िगर नहीं किया गया है।\"],\"CoTqdo\":[\"\\n Note that you may still see the group in the list after\\n disassociating if the host is also a member of that group’s\\n children. This list shows all groups the host is associated\\n with directly and indirectly.\\n \"],\"Coyxic\":[\"चयनित क्रेडेंशियल और निर्दिष्ट इनपुट का उपयोग करके सीक्रेट प्रबंधन सिस्टम से कनेक्शन सत्यापित करने के लिए इस बटन पर क्लिक करें।\"],\"Cs0oSA\":[\"सेटिंग्स देखें\"],\"Csvbqs\":[\"निर्मित इन्वेंटरी प्लगइन दस्तावेज़ यहां देखें।\"],\"Cx8SDk\":[\"रिफ़्रेश टोकन समाप्ति\"],\"D-NlUC\":[\"सिस्टम\"],\"D1JWCq\":[[\"interval\"],\" minutes\"],\"D4euEu\":[\"विविध प्रमाणीकरण सेटिंग्स\"],\"D89zck\":[\"रवि\"],\"DBBU2q\":[\"इस फ़ील्ड के लिए कम से कम एक मान चुना जाना चाहिए।\"],\"DBC3t5\":[\"रविवार\"],\"DBHTm_\":[\"अगस्त\"],\"DFNPK8\":[\"हेल्थ चेक चलाएं\"],\"DGZ08x\":[\"सभी सिंक करें\"],\"DHf0mx\":[\"नया इंस्टेंस बनाएं\"],\"DHrOgD\":[\"प्रोजेक्ट अपडेट स्थिति\"],\"DIKUI7\":[\"न्यूनतम लंबाई\"],\"DIX823\":[\"इस फ़ील्ड में एक संख्या होनी चाहिए और इसका मान \",[\"max\"],\" से कम होना चाहिए\"],\"DJIazz\":[\"सफलतापूर्वक अनुमोदित\"],\"DNLiC8\":[\"सेटिंग्स वापस लौटाएं\"],\"DNqHaO\":[\"यह तालिका निर्मित इन्वेंटरी प्लगइन के कुछ उपयोगी\\n पैरामीटर देती है। पैरामीटर की पूरी सूची के लिए \"],\"DPfwMq\":[\"पूर्ण\"],\"DV-Xbw\":[\"पसंदीदा भाषा\"],\"DVIUId\":[\"संकेत ओवरराइड\"],\"DZNGtI\":[\"प्रोजेक्ट चेकआउट परिणाम\"],\"D_oBkC\":[\"GitHub Team\"],\"DdlJTq\":[\"सटीक मिलान (यदि निर्दिष्ट न हो तो डिफ़ॉल्ट लुकअप)।\"],\"De2WsK\":[\"यह क्रिया इस उपयोगकर्ता की सभी भूमिकाओं को चयनित टीमों से अलग कर देगी।\"],\"DhSza7\":[\"Controller नोड\"],\"DnkUe2\":[\"एक वेबहुक सेवा चुनें\"],\"DqnAO4\":[\"पहला स्वचालित\"],\"Du6bPw\":[\"पता\"],\"Dug0C-\":[\"घटनाओं की संख्या के बाद\"],\"DyYigF\":[\"TACACS+ सेटिंग्स\"],\"Dz7fsq\":[\"ज़ूम इन करें\"],\"E6Z4zF\":[\"अमान्य फ़ाइल प्रारूप। कृपया एक मान्य Red Hat सदस्यता मैनिफ़ेस्ट अपलोड करें।\"],\"E86aJB\":[\"भूमिका अलग करें!\"],\"E9wN_Q\":[\"अंतिम हेल्थ चेक\"],\"EH6-2h\":[\"टोपोलॉजी दृश्य\"],\"EHu0x2\":[\"सिंक हो रहा है\"],\"EIBcgD\":[\"किसी प्रोजेक्ट से स्रोतित\"],\"EIkRy0\":[\"गंतव्य चैनल\"],\"EJQLCT\":[\"वर्कफ़्लो जॉब टेम्पलेट हटाने में विफल।\"],\"ENDbv1\":[\"सभी होस्ट्स देखें।\"],\"ENRWp9\":[\"एनोटेशन के लिए टैग\"],\"ENyw54\":[\"संबंधित समूह\"],\"EP-eCv\":[\"SAML सेटिंग्स\"],\"EQ-qsg\":[\"वर्कफ़्लो जॉब टेम्पलेट\"],\"ES0WE_\":[\"टाइमआउट पर\"],\"ETUQuF\":[\"एक या अधिक इन्वेंटरी हटाने में विफल।\"],\"EWL-h4\":[\"host-description-\",[\"0\"]],\"E_QGRL\":[\"अक्षम\"],\"E_tJey\":[\"डिफ़ॉल्ट निष्पादन वातावरण\"],\"Eb5CN1\":[[\"0\",\"plural\",{\"one\":[\"यह संगठन वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"other\":[\"इन संगठनों को हटाने से उन पर निर्भर अन्य संसाधन प्रभावित हो सकते हैं। क्या आप फिर भी हटाना चाहते हैं?\"]}]],\"EdQY6l\":[\"कोई नहीं\"],\"Eff_76\":[\"स्थानीय समय क्षेत्र\"],\"Eg4kGP\":[\"डिफ़ॉल्ट उत्तर\"],\"EmSrGB\":[\"पहले\"],\"EmfKjn\":[\"समस्या निवारण सेटिंग्स देखें\"],\"Emna_v\":[\"स्रोत संपादित करें\"],\"EmzUsN\":[\"नोड विवरण देखें\"],\"EnC3hS\":[\"कस्टम पॉड स्पेक\"],\"EpH7Cd\":[\"क्रेडेंशियल हटाएं\"],\"Eq6_y5\":[\"this Tower documentation page\"],\"Eqp9wv\":[\"JSON उदाहरण यहां देखें\"],\"EwxKbE\":[\"हटाया गया\"],\"EzwCw7\":[\"प्रश्न संपादित करें\"],\"F-0xxR\":[\"इस टेम्पलेट से संसाधन अनुपस्थित हैं।\"],\"F-LGli\":[\"आपके पास निम्न को अलग करने की अनुमति नहीं है: \",[\"itemsUnableToDisassociate\"]],\"F-_-es\":[\"इंस्टेंस चुनें\"],\"F0xJYs\":[\"क्षमता समायोजन अपडेट करने में विफल।\"],\"F2l57P\":[\"सभी इंस्टेंसों का न्यूनतम प्रतिशत जो नए इंस्टेंस ऑनलाइन आने पर\\n स्वचालित रूप से इस समूह को असाइन किया जाएगा।\"],\"FCnKmF\":[\"उपयोगकर्ता टोकन बनाएं\"],\"FD8Y9V\":[\"विवरण प्रदर्शित करने के लिए किसी नोड आइकन पर क्लिक करें।\"],\"FEr96N\":[\"थीम\"],\"FFv0Vh\":[\"स्वचालन\"],\"FG2mko\":[\"सूची से आइटम चुनें\"],\"FGnH0p\":[\"यह इस वर्कफ़्लो के सभी बाद के नोड्स रद्द कर देगा\"],\"FMpB-A\":[\"<0>नोट: यदि इंस्टेंस <1>नीति नियमों द्वारा प्रबंधित है तो मैन्युअल रूप से संबद्ध इंस्टेंसों को इंस्टेंस समूह से स्वचालित रूप से अलग किया जा सकता है।\"],\"FO7Rwo\":[\"पीयर हटाएं?\"],\"FQto51\":[\"सभी पंक्तियां विस्तृत करें\"],\"FTuS3P\":[\"यह फ़ील्ड रिक्त नहीं हो सकता\"],\"FV5MUV\":[\"यदि उपयोगकर्ताओं को उनके निर्मित समूहों की\\n शुद्धता के बारे में प्रतिक्रिया की आवश्यकता है, तो प्लगइन कॉन्फ़िगरेशन\\n में strict: true का उपयोग करने की अत्यधिक अनुशंसा की जाती है।\"],\"FXmp8Q\":[\"भूमिका संबद्ध करने में विफल\"],\"FYJRCY\":[\"एक या अधिक प्रोजेक्ट हटाने में विफल।\"],\"F_Nk65\":[\"आउटपुट डाउनलोड करें\"],\"F_c3Jb\":[\"कस्टम Kubernetes या OpenShift पॉड विनिर्देश।\"],\"Failed\":[\"विफल\"],\"Fanpmj\":[\"संकेतित वेरिएबल्स\"],\"FblMFO\":[\"एक मेट्रिक चुनें\"],\"FclH3w\":[\"सफलतापूर्वक सहेजा गया!\"],\"FfGhiE\":[\"वर्कफ़्लो सहेजने में त्रुटि!\"],\"FhTYgi\":[\"एक या अधिक जॉब टेम्पलेट हटाने में विफल।\"],\"FhhvWu\":[\"यह इस वर्कफ़्लो के सभी बाद के नोड्स रद्द कर देगा।\"],\"FiyMaa\":[\"एक .json फ़ाइल चुनें\"],\"FjVFQ-\":[\"एक मॉड्यूल चुनें\"],\"FjkaiT\":[\"ज़ूम आउट करें\"],\"FkQvI0\":[\"टेम्पलेट संपादित करें\"],\"FlvpdU\":[\"If enabled, show the changes made\\n by Ansible tasks, where supported. This is equivalent to Ansible’s\\n --diff mode.\"],\"FnSb-y\":[\"जॉब रद्द करें\"],\"FnZzou\":[\"इंस्टेंस स्थिति\"],\"FncCci\":[\"RADIUS\"],\"Fo2bwm\":[\"अभिनेता\"],\"Fo6qAq\":[\"Subversion स्रोत नियंत्रण के लिए उदाहरण URL में शामिल हैं:\"],\"Fp0Rk4\":[\"इस इन्वेंटरी का वर्णन करने वाले वैकल्पिक लेबल,\\n जैसे 'dev' या 'test'। लेबल का उपयोग इन्वेंटरी और पूर्ण की गई जॉब्स को\\n समूहित करने और फ़िल्टर करने के लिए किया जा सकता है।\"],\"FqW8E0\":[\"उपयोग की गई क्षमता\"],\"FsGJXJ\":[\"साफ़ करें\"],\"Fx2-x_\":[\"उपयोगकर्ता भूमिकाएं जोड़ें\"],\"G-jHgL\":[\"स्रोत पथ को इस पर सेट करें\"],\"G2KpGE\":[\"प्रोजेक्ट संपादित करें\"],\"G3myU-\":[\"मंगलवार\"],\"G768_0\":[\"अस्वीकृत\"],\"G8jcl6\":[\"सूचना टेम्पलेट\"],\"G9MOps\":[\"इन्वेंटरी सिंक पर उपयोग करने के लिए ब्रांच। रिक्त होने पर प्रोजेक्ट डिफ़ॉल्ट उपयोग किया जाता है। केवल तभी अनुमति है जब प्रोजेक्ट allow_override फ़ील्ड true पर सेट हो।\"],\"GDvlUT\":[\"भूमिका\"],\"GGWsTU\":[\"रद्द किया गया\"],\"GGuAXg\":[\"SAML सेटिंग्स देखें\"],\"GHDQ7i\":[\"एक या अधिक संगठन हटाने में विफल।\"],\"GJKwN0\":[\"शेड्यूल\"],\"GLZDtF\":[\"सिस्टम चेतावनी\"],\"GLwo_j\":[\"0 (चेतावनी)\"],\"GMaU6_\":[\"लॉन्च पर जॉब प्रकार के लिए संकेत दें।\"],\"GO6s6F\":[\"जॉब्स सेटिंग्स\"],\"GRwtth\":[\"इंस्टेंस पर हेल्थ चेक चलाएं\"],\"GSYBQc\":[\"API सेवा/इंटीग्रेशन कुंजी\"],\"GTOcxw\":[\"उपयोगकर्ता संपादित करें\"],\"GU9vaV\":[\"अगम्य होस्ट्स\"],\"GXiLKo\":[\"टेक्स्ट क्षेत्र\"],\"GZIG7_\":[\"इन्वेंटरी सफलतापूर्वक कॉपी की गई\"],\"G_Dwo_\":[\"Choose an answer type or format you want as the prompt for the user.\\n Refer to the Ansible Controller Documentation for more additional\\n information about each option.\"],\"GaJLE6\":[\"द्वारा आरंभ किया गया\"],\"Gd-B71\":[\"क्रेडेंशियल प्रकार नहीं मिला।\"],\"Ge5ecx\":[\"अधिकतम होस्ट्स\"],\"GeIrWJ\":[[\"brandName\"],\" लोगो\"],\"Gf3vm8\":[\"प्रति पृष्ठ\"],\"GiXRTS\":[\"एक या अधिक उपयोगकर्ता टोकन हटाने में विफल।\"],\"Gix1h_\":[\"सभी जॉब्स देखें\"],\"GkbHM9\":[\"सभी प्रोजेक्ट देखें।\"],\"Gn7TK5\":[\"टूल टॉगल करें\"],\"GpNoVG\":[\"इस सूची को भरने के लिए कृपया एक शेड्यूल जोड़ें।\"],\"GpWp6E\":[\"सिस्टम-स्तरीय सुविधाओं और कार्यों को परिभाषित करें\"],\"GtycJ_\":[\"कार्य\"],\"H0z3JJ\":[\"इन तर्कों का उपयोग निर्दिष्ट मॉड्यूल के साथ किया जाता है। आप निम्नलिखित पर क्लिक करके \",[\"moduleName\"],\" के बारे में जानकारी प्राप्त कर सकते हैं \"],\"H1M6a6\":[\"सभी इंस्टेंस देखें।\"],\"H3kCln\":[\"होस्टनाम\"],\"H6jbKn\":[\"उपयोगकर्ता इंटरफ़ेस सेटिंग्स\"],\"H7OUPr\":[\"दिन\"],\"H7e4dl\":[\"YAML या JSON का उपयोग करके\\n कुंजी/मान जोड़े प्रदान करें।\"],\"H86f9p\":[\"संक्षिप्त करें\"],\"H9MIed\":[\"निष्पादन नोड\"],\"HAi1aX\":[\"वेबहुक कुंजी अपडेट करें\"],\"HAzhV7\":[\"क्रेडेंशियल\"],\"HDULRt\":[\"अद्वितीय होस्ट्स\"],\"HGOtRu\":[\"सूचना परीक्षण विफल।\"],\"HIfMSF\":[\"बहुविकल्पीय विकल्प\"],\"HLAK2g\":[\"This action will cancel the following jobs:\"],\"HODq3s\":[\"एक या अधिक वर्कफ़्लो अनुमोदन अस्वीकार करने में विफल।\"],\"HQ7e8y\":[\"exact का केस-असंवेदनशील संस्करण।\"],\"HQ7oEt\":[\"टीमों पर वापस\"],\"HUx6pW\":[\"इंजेक्टर कॉन्फ़िगरेशन\"],\"HajiZl\":[\"माह\"],\"HbaQks\":[\"इस प्रकार की सूचना के लिए प्राप्तकर्ता सूची बनाने हेतु प्रति पंक्ति एक ईमेल पता उपयोग करें।\"],\"HbnjOn\":[[\"interval\"],\" weeks\"],\"HcznyH\":[\"कुछ या सभी इन्वेंटरी स्रोत सिंक करने में विफल।\"],\"HdE1If\":[\"चैनल\"],\"HdErwL\":[\"अनुमोदित करने के लिए एक पंक्ति चुनें\"],\"Hf0QDK\":[\"प्रोजेक्ट सफलतापूर्वक कॉपी किया गया\"],\"Hhnh8d\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" दिन\"],\"other\":[\"#\",\" दिन\"]}]],\"HiTf1W\":[\"वापस लौटाना रद्द करें\"],\"HjxnnB\":[\"मॉड्यूल चुनें\"],\"HlhZ5D\":[\"TLS का उपयोग करें\"],\"HoHveO\":[\"ऐसे परिणाम लौटाता है जो इस फ़िल्टर के साथ-साथ अन्य फ़िल्टर को भी संतुष्ट करते हैं। यदि कुछ भी चयनित नहीं है तो यह डिफ़ॉल्ट सेट प्रकार है।\"],\"HpK_8d\":[\"पुनः लोड करें\"],\"Ht1JWm\":[\"सूचना रंग\"],\"HwpTx4\":[\"प्लेबुक के निष्पादित होने पर ansible द्वारा उत्पन्न आउटपुट के स्तर को नियंत्रित करें।\"],\"I0LRRn\":[\"बंडल डाउनलोड करें\"],\"I7Epp-\":[\"विकल्प विवरण\"],\"I9NouQ\":[\"कोई सदस्यता नहीं मिली\"],\"ICi4pv\":[\"अंतिम स्वचालन\"],\"ICt7Id\":[\"नोड प्रकार\"],\"IEKPuq\":[\"अगला स्क्रॉल करें\"],\"IGQ11b\":[\"वेबहुक सेवा के साथ साझा किया गया सीक्रेट। सेवा इसका उपयोग अपने अनुरोधों पर हस्ताक्षर करने के लिए करती है, ताकि केवल आपकी रिपॉजिटरी ही प्रोजेक्ट सिंक ट्रिगर कर सके। इसे कॉन्फ़िगरेशन के रूप में प्रबंधित करने के लिए अपना स्वयं का सीक्रेट टाइप करें, या सहेजने पर एक जनरेट करने के लिए फ़ील्ड को खाली छोड़ दें।\"],\"IJAVcb\":[\"एप्लिकेशन पर वापस\"],\"IKg_un\":[\"गंतव्य चैनल या उपयोगकर्ता\"],\"IMJYui\":[\"SMS संदेशों को कहां रूट करना है यह निर्दिष्ट करने के लिए\\n प्रति पंक्ति एक फ़ोन नंबर का उपयोग करें। फ़ोन नंबर +11231231234 के रूप में प्रारूपित होने चाहिए। अधिक जानकारी के लिए Twilio दस्तावेज़ीकरण देखें\"],\"IN6gbp\":[\"सर्वेक्षण प्रश्नों का क्रम पुनर्व्यवस्थित करने के लिए क्लिक करें\"],\"IPusY8\":[\"अपडेट करने से पहले किसी भी स्थानीय संशोधन को हटा दें।\"],\"ISuwrJ\":[\"निष्पादन वातावरण संपादित करें\"],\"IV0EjT\":[\"परीक्षण सूचना\"],\"IVvM2B\":[\"सक्षम विकल्प\"],\"IWoF_f\":[\"सर्वेक्षण देखें\"],\"IZfe0p\":[\"सोर्स कंट्रोल ब्रांच\"],\"Igz8MU\":[\"पिछले दो सप्ताह\"],\"IiR1sT\":[\"नोड प्रकार\"],\"IjDwKK\":[\"लॉगिन प्रकार\"],\"Ikhk0q\":[\"इस वर्कफ़्लो जॉब टेम्पलेट के लिए वेबहुक सेवा।\"],\"Iqm2E5\":[\"इस सूची को भरने के लिए कृपया \",[\"pluralizedItemName\"],\" जोड़ें\"],\"IrC12v\":[\"एप्लिकेशन\"],\"IrI9pg\":[\"समाप्ति तिथि\"],\"IsJ8i6\":[\"वर्कफ़्लो के लिए एक ब्रांच चुनें। यह ब्रांच उन सभी जॉब टेम्पलेट नोड्स पर लागू होती है जो ब्रांच के लिए पूछते हैं।\"],\"IspLSK\":[\"प्रबंधन जॉब नहीं मिली।\"],\"J0zi6q\":[\"टैग छोड़ें\"],\"J2HgCR\":[\"Red Hat, Inc.\"],\"J2d1y8\":[\"सफल जॉब्स द्वारा फ़िल्टर करें\"],\"J4y7Uk\":[\"वर्कफ़्लो रद्द किया गया \"],\"J8VgfD\":[\"जांचें कि दिया गया फ़ील्ड या संबंधित ऑब्जेक्ट null है या नहीं; एक boolean मान अपेक्षित है।\"],\"JEGlfK\":[\"प्रारंभ हुआ\"],\"JFnJqF\":[\"बीता हुआ\"],\"JFphCp\":[\"3 (डिबग)\"],\"JGvwnU\":[\"अंतिम उपयोग\"],\"JIX50w\":[\"इंस्टेंस समूह फ़ॉलबैक रोकें: यदि सक्षम है, तो जॉब टेम्पलेट किसी भी इन्वेंटरी या संगठन इंस्टेंस समूह को चलाने के लिए पसंदीदा इंस्टेंस समूहों की सूची में जोड़ने से रोकेगा।\"],\"JJwEMx\":[\"होस्ट्स हटाए गए\"],\"JKZTiL\":[\"ये चलाए गए कमांड के मानक आउटपुट के लिए समर्थित वर्बोसिटी स्तर हैं।\"],\"JL3si7\":[\"अपडेट हो रहा है\"],\"JLjfEs\":[\"एक या अधिक शेड्यूल हटाने में विफल।\"],\"JOmgRg\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" माह\"],\"other\":[\"#\",\" माह\"]}]],\"JRa4kV\":[\"जब स्रोत नियंत्रण रिपॉजिटरी में कोई पुश होता है तो प्रोजेक्ट को सिंक करें, ताकि हर जॉब लॉन्च पर पोलिंग या अपडेट किए बिना स्थानीय प्रति हमेशा अद्यतित रहे।\"],\"JTHoCu\":[\"परिवर्तन टॉगल करें\"],\"JUwjsw\":[\"Select an activity type\"],\"JXgd33\":[\"डैशबोर्ड पर वापस।\"],\"J_2nGO\":[\"The execution environment that will be used for jobs\\n inside of this organization. This will be used a fallback when\\n an execution environment has not been explicitly assigned at the\\n project, job template or workflow level.\"],\"J_DUZt\":[\"इंस्टेंस समूह\"],\"Ja4VHl\":[[\"0\"],\" और\"],\"JgP090\":[\"सबमॉड्यूल ट्रैक करें\"],\"JjcTk5\":[\"सोशल लॉगिन\"],\"JjfsZM\":[\"वर्कफ़्लो अनुमोदन हटाएं\"],\"JppQoT\":[\"अंतिम पुनर्गणना तिथि:\"],\"JsY1p5\":[\"अस्वीकृत\"],\"Jvv6rS\":[\"बहुविकल्पीय\"],\"JwqOfG\":[\"इस पर मूल्यांकन करें\"],\"Jy9qCv\":[\"लॉगिन रीडायरेक्ट संपादन रद्द करें\"],\"K5AykR\":[\"टीम हटाएं\"],\"K93j4j\":[\"लेबल नाम\"],\"KC2nS5\":[\"संसाधन हटाया गया\"],\"KDcLJ6\":[\"YAML:\"],\"KEY0qH\":[\"परीक्षण उत्तीर्ण\"],\"KM6m8p\":[\"Team\"],\"KNOsJ0\":[\"इस जॉब टेम्पलेट का वर्णन करने वाले वैकल्पिक लेबल, जैसे 'dev' या 'test'। लेबल का उपयोग जॉब टेम्पलेट और पूर्ण किए गए जॉब को समूहित और फ़िल्टर करने के लिए किया जा सकता है।\"],\"KQ9EQm\":[\"निर्मित इन्वेंटरी प्लगइन का उपयोग कैसे करें\"],\"KR9Aiy\":[\"This inventory is currently being used by some templates. Are you sure you want to delete it?\"],\"KRf0wm\":[\"क्रेडेंशियल प्रकार\"],\"KTvwHj\":[\"क्रेडेंशियल इनपुट स्रोत\"],\"KVbzjm\":[\"विज़ुअलाइज़र\"],\"KXFYp9\":[\"सदस्यता प्राप्त करें\"],\"KXnokb\":[\"वैश्विक रूप से उपलब्ध निष्पादन वातावरण को किसी विशिष्ट संगठन को पुनः असाइन नहीं किया जा सकता\"],\"KZp4lW\":[\"Lookup select\"],\"K_MYeX\":[\"उपयोगकर्ता विवरण देखें\"],\"KeRkFA\":[\"सदस्यता चयन साफ़ करें\"],\"KeqCdz\":[\"नियंत्रण नोड्स से पीयर\"],\"Ki_j_-\":[\"सहेजने पर नई वेबहुक कुंजी जनरेट करने के लिए रिक्त छोड़ें\"],\"KjBkMe\":[\"यह कंटेनर समूह वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"KjVvNP\":[\"पैनल की ID\"],\"KkMfgW\":[\"जॉब टेम्पलेट\"],\"KkzJWF\":[\"पहला स्वचालन\"],\"KlQd8_\":[\"टोकन की पहुंच के लिए स्कोप\"],\"KnN1Tu\":[\"समाप्त होता है\"],\"KoCnPE\":[\"जॉब रद्द करें\"],\"KopV8H\":[\"केवल रूट समूह दिखाएं\"],\"KxIA0h\":[\"होस्ट टॉगल करें\"],\"Kz9DSl\":[\"मौजूदा होस्ट जोड़ें\"],\"KzQFvE\":[\"संगठन संपादित करें\"],\"L1Ob4t\":[\"विवरण टैब\"],\"L3ooU6\":[\"क्रेडेंशियल\"],\"L7Nz3F\":[\"अनुपस्थित संसाधन\"],\"L8fEEm\":[\"समूह\"],\"L973Qq\":[\"सदस्यता अनुरोध करें\"],\"LCl8Ck\":[\"तिथि खोज इनपुट\"],\"LGl_pR\":[\"जॉब्स सेटिंग्स देखें\"],\"LGryaQ\":[\"नया क्रेडेंशियल बनाएं\"],\"LQ29yc\":[\"इन्वेंटरी स्रोत सिंक प्रारंभ करें\"],\"LQRys9\":[\"सबमॉड्यूल अपनी master ब्रांच (या .gitmodules में निर्दिष्ट अन्य ब्रांच) पर नवीनतम कमिट को ट्रैक करेंगे। यदि नहीं, तो सबमॉड्यूल मुख्य प्रोजेक्ट द्वारा निर्दिष्ट रिविज़न पर रखे जाएंगे। यह git submodule update में --remote फ़्लैग निर्दिष्ट करने के समतुल्य है।\"],\"LQTgjH\":[\"प्रोजेक्ट नहीं मिला।\"],\"LRePxk\":[\"नए इंस्टेंस ऑनलाइन आने पर इस समूह को स्वचालित रूप से असाइन किए जाने वाले इंस्टेंसों की न्यूनतम संख्या।\"],\"LSUePQ\":[\"लॉन्च करें | \",[\"0\"]],\"LULLsO\":[\"सभी संगठन देखें।\"],\"LV5a9V\":[\"पीयर\"],\"LVecP9\":[\"उपयोगकर्ता भूमिकाएं\"],\"LYAQ1X\":[\"समवर्ती जॉब्स सक्षम करें\"],\"LZr1lR\":[\"इंस्टेंस समूह नहीं मिला।\"],\"Lc0RHh\":[\"शेड्यूल टॉगल करें\"],\"LgD0Cy\":[\"एप्लिकेशन नाम\"],\"LhMjLm\":[\"समय\"],\"Ll7Jei\":[\"LDAP3\"],\"LnYbGj\":[\"सर्वेक्षण संपादित करें\"],\"Lnnjmk\":[\"<0><1/> नए \",[\"brandName\"],\" उपयोगकर्ता इंटरफ़ेस का एक तकनीकी पूर्वावलोकन <2>यहां पाया जा सकता है।\"],\"Lqygiq\":[\"प्रोविज़निंग कॉलबैक\"],\"LtBtED\":[\"सूचना सफलता टॉगल करें\"],\"LuXP9q\":[\"पहुंच\"],\"LwHwt1\":[[\"brandName\"],\" सदस्यता\"],\"Lwovp8\":[\"यदि सक्षम है, तो इस जॉब टेम्पलेट के एक साथ चलने की अनुमति होगी।\"],\"M0okDw\":[\"डेटा संग्रह, लोगो और लॉगिन के लिए प्राथमिकताएं सेट करें\"],\"M73whl\":[\"संदर्भ\"],\"MA-mp9\":[\"वेबहुक Ref फ़िल्टर\"],\"MA7cMf\":[\"निर्मित इन्वेंटरी पैरामीटर तालिका\"],\"MAI_nw\":[\"कृपया ऊपर दिए गए फ़िल्टर का उपयोग करके एक और खोज का प्रयास करें\"],\"MAV-SQ\":[\"क्रेडेंशियल नहीं मिला।\"],\"MApRef\":[\"क्या आप वाकई लॉगिन रीडायरेक्ट ओवरराइड URL संपादित करना चाहते हैं? ऐसा करने से स्थानीय प्रमाणीकरण भी अक्षम होने के बाद उपयोगकर्ताओं की सिस्टम में लॉग इन करने की क्षमता प्रभावित हो सकती है।\"],\"MD0-Al\":[\"आपका सत्र समाप्त होने वाला है\"],\"MDQLec\":[\"इन्वेंटरी स्रोत अपडेट जॉब्स के लिए Ansible द्वारा उत्पादित आउटपुट के स्तर को नियंत्रित करें।\"],\"MGpavd\":[\"कुंजी टाइपअहेड\"],\"MHM-bv\":[\"अमान्य लिंक लक्ष्य। चाइल्ड या पूर्वज नोड्स से लिंक करने में असमर्थ। ग्राफ़ चक्र समर्थित नहीं हैं।\"],\"MHbbol\":[\" जॉब स्लाइसिंग\"],\"MKEPCY\":[\"अनुसरण करें\"],\"MP1v-1\":[\"लीजेंड\"],\"MP8dU9\":[\"पूर्ण इमेज स्थान, जिसमें कंटेनर रजिस्ट्री, इमेज नाम और संस्करण टैग शामिल है।\"],\"MQPvAa\":[\"लॉन्च पर लेबल के लिए संकेत दें।\"],\"MQoyj6\":[\"वर्कफ़्लो जॉब टेम्पलेट\"],\"MTLPCv\":[\"मूल नोड के विफलता स्थिति में परिणत होने पर निष्पादित करें।\"],\"MVw5um\":[\"2 (अधिक विस्तृत)\"],\"MZU5bt\":[\"एक या अधिक समूह हटाने में विफल।\"],\"M_gXds\":[\"Note: This instance may be re-associated with this instance group if it is managed by \"],\"MdhgLT\":[\"IRC सर्वर पासवर्ड\"],\"MfCEiB\":[\"Galaxy क्रेडेंशियल\"],\"MfQHgE\":[\"रखने के लिए दिन\"],\"Mfk6hJ\":[\"एक या अधिक टेम्पलेट हटाने में विफल।\"],\"Mhn5m4\":[\"रजिस्ट्री क्रेडेंशियल\"],\"Mn45Gz\":[\"इंस्टेंस समूहों पर वापस\"],\"MnbH31\":[\"पृष्ठ\"],\"MofjBu\":[\"इस प्रोजेक्ट का उपयोग करने वाले जॉब के लिए उपयोग किया जाने वाला निष्पादन वातावरण। इसका उपयोग फ़ॉलबैक के रूप में तब किया जाएगा जब जॉब टेम्पलेट या वर्कफ़्लो स्तर पर कोई निष्पादन वातावरण स्पष्ट रूप से असाइन नहीं किया गया हो।\"],\"MpLngK\":[\"इस प्रोजेक्ट का वेबहुक एंडपॉइंट। पुश को प्रोजेक्ट सिंक ट्रिगर करने के लिए इसे रिपॉजिटरी के वेबहुक कॉन्फ़िगरेशन में जोड़ें।\"],\"MpZRQy\":[\"Git\"],\"MuhG5I\":[[\"0\",\"plural\",{\"one\":[\"अपर्याप्त अनुमतियों या लंबित जॉब स्थिति के कारण यह अनुमोदन हटाया नहीं जा सकता\"],\"other\":[\"अपर्याप्त अनुमतियों या लंबित जॉब स्थिति के कारण ये अनुमोदन हटाए नहीं जा सकते\"]}]],\"MwCc2O\":[\"इस वर्कफ़्लो जॉब टेम्पलेट के लिए वेबहुक क्रेडेंशियल।\"],\"Mwf3Mw\":[\"एक खोज फ़िल्टर का उपयोग करके इस इन्वेंटरी के लिए होस्ट्स भरें।\\n उदाहरण: ansible_facts__ansible_distribution:\\\"RedHat\\\"।\\n आगे के सिंटैक्स और उदाहरणों के लिए दस्तावेज़ीकरण देखें।\\n आगे के सिंटैक्स और उदाहरणों के लिए Ansible Controller दस्तावेज़ीकरण\\n देखें।\"],\"MzcRa_\":[\"उपयोगकर्ता और Automation Analytics\"],\"Mzqo60\":[\"आर्टिफ़ैक्ट की तुलना करने के लिए मान। जब संभव हो तो JSON के रूप में व्याख्या किया जाता है (उदा. true, 3), अन्यथा एक सादे स्ट्रिंग के रूप में।\"],\"N1U4ZG\":[\"सदस्यता अनुपालन\"],\"N36GRB\":[\"इस फ़ील्ड में एक संख्या होनी चाहिए और इसका मान \",[\"min\"],\" से अधिक होना चाहिए\"],\"N40H-G\":[\"सभी\"],\"N5vmCy\":[\"निर्मित इन्वेंटरी\"],\"N6GBcC\":[\"हटाने की पुष्टि करें\"],\"N7wOty\":[\"इस जॉब द्वारा निष्पादित की जाने वाली प्लेबुक चुनें।\"],\"NAKA53\":[\"होस्ट विफलता\"],\"NBONaK\":[\"फ़ैक्ट्स एकत्र किए जा रहे हैं\"],\"NCVKhy\":[\"हाल की जॉब्स\"],\"NDQvUO\":[\"लॉन्च पर टैग के लिए संकेत दें।\"],\"NIuIk1\":[\"असीमित\"],\"NLKsgx\":[[\"pluralizedItemName\"],\" सूची\"],\"NO1ZxL\":[\"एप्लिकेशन नाम\"],\"NPfgIB\":[\"सेकंड\"],\"NQHZnb\":[\"Integer\"],\"NRn4V6\":[[\"interval\"],\" months\"],\"NUNUrW\":[\"एनोटेशन के लिए टैग (वैकल्पिक)\"],\"NW-xDQ\":[\"यह इस पृष्ठ के सभी कॉन्फ़िगरेशन मानों को उनके\\n फ़ैक्टरी डिफ़ॉल्ट पर वापस लौटा देगा। क्या आप वाकई आगे बढ़ना चाहते हैं?\"],\"NX18CF\":[\"इस पर या इसके बाद\"],\"NYxilo\":[\"अधिकतम समवर्ती जॉब्स\"],\"Na9fIV\":[\"कोई आइटम नहीं मिला।\"],\"NcVaYu\":[\"समाप्ति समय\"],\"NeA1eI\":[\"दाएं पैन करें\"],\"Never\":[\"कभी नहीं\"],\"NgD4On\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"यह क्रिया निम्नलिखित कार्य को रद्द कर देगी:\"],\"other\":[\"यह क्रिया निम्नलिखित कार्यों को रद्द कर देगी:\"]}]],\"NjnDuY\":[\"Dragging started for item id: \",[\"newId\"],\".\"],\"NjqMGF\":[\"संसाधन प्रकार\"],\"NnH3pK\":[\"परीक्षण\"],\"No Jobs\":[\"कोई जॉब्स नहीं\"],\"NpJHAp\":[\"अनुपस्थित इन्वेंटरी या प्रोजेक्ट वाले जॉब टेम्पलेट नोड्स बनाते या संपादित करते समय नहीं चुने जा सकते। आगे बढ़ने के लिए दूसरा टेम्पलेट चुनें या अनुपस्थित फ़ील्ड्स ठीक करें।\"],\"NqIlWb\":[\"अंतिम बार चला\"],\"NrGRF4\":[\"सदस्यता चयन मोडल\"],\"NsXTPu\":[\"ansible फ़ैक्ट्स का उपयोग करके स्मार्ट इन्वेंटरी बनाने के लिए, स्मार्ट इन्वेंटरी स्क्रीन पर जाएं।\"],\"NtD3hJ\":[\"संबंधित कुंजियां\"],\"Nu4DdT\":[\"सिंक करें\"],\"Nu4oKW\":[\"विवरण\"],\"Nu7VHX\":[\"चयनित संसाधनों पर लागू करने के लिए भूमिकाएं चुनें। ध्यान दें कि सभी चयनित भूमिकाएं सभी चयनित संसाधनों पर लागू होंगी।\"],\"O-OYOe\":[\"टीम संपादित करें\"],\"O06Rp6\":[\"उपयोगकर्ता इंटरफ़ेस\"],\"O1Aswy\":[\"कभी समाप्त नहीं होता\"],\"O28qFz\":[\"जॉब \",[\"0\"],\" देखें\"],\"O2EuOK\":[\"SAML \",[\"samlIDP\"],\" से साइन इन करें\"],\"O2UpM1\":[\"ब्राउज़ करें\"],\"O3oNi5\":[\"ईमेल\"],\"O4ilec\":[\"regex का केस-असंवेदनशील संस्करण।\"],\"O5pAaX\":[\"चार्ट दिखाने के लिए एक इंस्टेंस और एक मेट्रिक चुनें\"],\"O78b13\":[\"वह एप्लिकेशन जिससे यह टोकन संबंधित है, या व्यक्तिगत एक्सेस टोकन बनाने के लिए इस फ़ील्ड को खाली छोड़ दें।\"],\"O8_96D\":[\"लिसनर पोर्ट\"],\"O9VQlh\":[\"आवृत्ति चुनें\"],\"OA8xiA\":[\"बाएं पैन करें\"],\"OA99Nq\":[\"होस्ट अंतिम बार कब स्वचालित हुआ था\"],\"OC4Tzv\":[\"यहां\"],\"OGoqLy\":[\"# sources with sync failures.\"],\"OHGMM6\":[\"प्रारंभ तिथि/समय\"],\"OIv5hN\":[\"सदस्यता विवरण पर रीडायरेक्ट किया जा रहा है\"],\"OJ9bHy\":[\"एक या अधिक समूहों को अलग करने में विफल।\"],\"OOq_rD\":[\"प्लेबुक रन\"],\"OPTWH4\":[\"HTTPS प्रमाणपत्र सत्यापन सक्षम करें\"],\"ORxrw7\":[\"शेष दिन\"],\"OSH8xi\":[\"हॉप\"],\"OcRJRt\":[\"जॉब रद्द करने की पुष्टि करें\"],\"Oe_VOY\":[\"एक या अधिक इंस्टेंस हटाने में विफल।\"],\"OgB1k4\":[\"तर्क\"],\"OiCz65\":[\"Grafana URL\"],\"Oiqdmc\":[\"GitHub Organizations से साइन इन करें\"],\"Oj2Ix6\":[\"जॉब रद्द होने से पहले चलने का समय (सेकंड में)। कोई जॉब टाइमआउट न होने के लिए डिफ़ॉल्ट 0 है।\"],\"OjwX8k\":[\"टोकन जानकारी\"],\"OlpaBt\":[\"समवर्ती जॉब: यदि सक्षम है, तो इस जॉब टेम्पलेट के एक साथ चलने की अनुमति होगी।\"],\"OmbooC\":[\"कार्य प्रारंभ हुआ\"],\"OogRLI\":[\"फ़ेडरेटेड इन्वेंटरी नहीं मिली।\"],\"OqE3G-\":[\"id फ़ील्ड पर सटीक खोज।\"],\"Osn70z\":[\"डिबग\"],\"OvBnOM\":[\"सेटिंग्स पर वापस\"],\"OyGPiW\":[\"सदस्यता सेटिंग्स\"],\"OzssJK\":[\"कमांड चलाएं\"],\"P3spiP\":[\"टेम्पलेट पर वापस\"],\"P7d85D\":[\"टीम पहुंच हटाएं\"],\"P8fBlG\":[\"प्रमाणीकरण\"],\"PByO0X\":[\"वोट\"],\"PCEmEr\":[\"उपयोगकर्ता टोकन\"],\"PJ1B0S\":[[\"0\",\"plural\",{\"one\":[\"यह प्रोजेक्ट वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"other\":[\"इन प्रोजेक्ट्स को हटाने से उन पर निर्भर अन्य संसाधन प्रभावित हो सकते हैं। क्या आप फिर भी हटाना चाहते हैं?\"]}]],\"PJf54Q\":[\"स्रोतों पर वापस\"],\"PKTjJ3\":[[\"0\",\"selectordinal\",{\"3\":[[\"month\"],\" का तीसरा \",[\"weekday\"]],\"4\":[[\"month\"],\" का चौथा \",[\"weekday\"]],\"5\":[[\"month\"],\" का पांचवां \",[\"weekday\"]],\"one\":[[\"month\"],\" का पहला \",[\"weekday\"]],\"two\":[[\"month\"],\" का दूसरा \",[\"weekday\"]]}]],\"PLzYyl\":[\"आवृत्ति अपवाद विवरण\"],\"PMk2Wg\":[\"डीप्रोविज़निंग विफल\"],\"POKy-m\":[\"निष्पादन वातावरण कॉपी करें\"],\"PPsHsC\":[\"सभी को डिफ़ॉल्ट पर वापस लौटाएं\"],\"PQPOpT\":[\"इन्वेंटरी फ़ाइल\"],\"PRuZiQ\":[\"रिवीज़न के लिए रीफ़्रेश करें\"],\"PUnovD\":[\"Amazon EC2\"],\"PVCOQE\":[\"पीयर हटाया गया। परिवर्तन प्रभावी होते देखने के लिए कृपया \",[\"0\"],\" के लिए इंस्टॉल बंडल फिर से चलाना सुनिश्चित करें।\"],\"PWwwY2\":[\"अलग करें\"],\"PYPqaM\":[\"पैनल की ID (वैकल्पिक)\"],\"PZBWpL\":[\"Switch to light mode\"],\"P_s0vy\":[\"इस वेबहुक सेवा के लिए क्रेडेंशियल प्रकार देखने में असमर्थ, इसलिए वेबहुक क्रेडेंशियल फ़ील्ड अनुपलब्ध है।\"],\"PaTL2O\":[\"प्राप्तकर्ता सूची\"],\"PhufXn\":[\"जॉब स्लाइस मूल\"],\"Pi5vnX\":[\"निर्मित इन्वेंटरी स्रोत सिंक करने में विफल\"],\"PiK6Ld\":[\"शनि\"],\"PiRb8z\":[\"सबसे हाल का सिंक\"],\"PjkoCm\":[\"क्या आप वाकई नीचे दिए गए नोड को हटाना चाहते हैं:\"],\"PkVlOm\":[\"JSON प्रारूप में HTTP हेडर निर्दिष्ट करें। उदाहरण सिंटैक्स के लिए\\n Ansible Controller दस्तावेज़ीकरण देखें।\"],\"Po1btV\":[\"वैश्विक नेविगेशन\"],\"Po7y5X\":[\"निष्पादन वातावरण कॉपी करने में विफल\"],\"PvgcEq\":[\"Draggable list to reorder and remove selected items.\"],\"PwAMWD\":[\"सभी जॉब इवेंट संक्षिप्त करें\"],\"PyV1wC\":[\"इंस्टेंस समूह फ़ॉलबैक रोकें\"],\"Q3P_4s\":[\"कार्य\"],\"Q4hWRC\":[\"वर्कफ़्लो जॉब्स (\",[\"total\"],\")\"],\"Q5ZW8j\":[\"सदस्यता तालिका\"],\"QF_MpS\":[\"\\n ध्यान दें कि केवल इस समूह में सीधे मौजूद होस्ट्स\\n को अलग किया जा सकता है। उप-समूहों में होस्ट्स को उनके\\n संबंधित उप-समूह स्तर से सीधे अलग किया जाना चाहिए।\\n \"],\"QFdBqu\":[\"Mattermost\"],\"QGbLBK\":[\"जॉब ID\"],\"QHF6CU\":[\"प्ले\"],\"QIOH6p\":[\"द्वारा आरंभ किया गया (उपयोगकर्ता नाम)\"],\"QIpNLR\":[\"कोई इन्वेंटरी सिंक विफलता नहीं।\"],\"QIq3_3\":[\"नोट: इन्हें जिस क्रम में चुना जाता है वह निष्पादन प्राथमिकता निर्धारित करता है। खींचने को सक्षम करने के लिए एक से अधिक चुनें।\"],\"QJbMvX\":[\"लॉन्च के समय पासवर्ड की आवश्यकता वाले क्रेडेंशियल की अनुमति नहीं है। आगे बढ़ने के लिए कृपया निम्नलिखित क्रेडेंशियल को हटाएँ या समान प्रकार के क्रेडेंशियल से बदलें: \",[\"0\"]],\"QJowYS\":[\"हटाने की पुष्टि करें\"],\"QKUQw1\":[\"नया होस्ट बनाएं\"],\"QKbQTN\":[\"गतिविधि स्ट्रीम प्रकार चयनकर्ता\"],\"QOF7Jg\":[[\"0\"],\" को अनुमोदित करने में विफल।\"],\"QPRWww\":[\"रन प्रकार\"],\"QR908H\":[\"सेटिंग नाम\"],\"QT1rDU\":[\"GitHub Enterprise\"],\"QTwM6Y\":[\"वह प्रोजेक्ट जिसमें वह प्लेबुक है जिसे यह जॉब निष्पादित करेगा।\"],\"QYKS3D\":[\"हाल की जॉब्स\"],\"QamIPZ\":[\"प्रारंभ करने के लिए कृपया प्रारंभ बटन पर क्लिक करें।\"],\"Qay_5h\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"Qd2E32\":[\"होस्ट वेरिएबल्स के दिए गए dict से सक्षम स्थिति प्राप्त करें। सक्षम वेरिएबल को डॉट नोटेशन का उपयोग करके निर्दिष्ट किया जा सकता है, उदा: 'foo.bar'\"],\"Qf36YE\":[\"वर्बोसिटी\"],\"QgnNyZ\":[\"सिंक त्रुटि\"],\"Qhb8lT\":[\"नया एप्लिकेशन बनाएं\"],\"QmvYrA\":[\"वर्कफ़्लो जॉब टेम्पलेट के लिए वैकल्पिक विवरण।\"],\"QnJn75\":[\"अंतिम रन\"],\"Qv59HG\":[\"क्रेडेंशियल प्रकार चुनें\"],\"Qv91_c\":[\"LDAP 2\"],\"QyjCeq\":[\"क्षमता\"],\"R-uZ8Y\":[\"SAML से साइन इन करें\"],\"R633QG\":[\"वर्कफ़्लो अनुमोदन पर वापस\"],\"R6Gueb\":[\"सूचना परिवर्तन टॉगल करें\"],\"R7s3iG\":[\"इस पर लौटें\"],\"R9Khdg\":[\"स्वतः\"],\"R9sZsA\":[\"सभी समूह और होस्ट्स हटाएं\"],\"RBDHUE\":[\"लॉन्च पर निष्पादन वातावरण के लिए संकेत दें।\"],\"RI8cIw\":[\"इस संगठन द्वारा प्रबंधित किए जाने की अनुमति वाले होस्ट्स की\\n अधिकतम संख्या। मान डिफ़ॉल्ट रूप से 0 होता है जिसका अर्थ है कोई सीमा नहीं।\\n अधिक विवरण के लिए Ansible दस्तावेज़ीकरण देखें।\"],\"RIcSTA\":[\"इस पर समाप्त होता है\"],\"RIeAlp\":[\"हर बार जब इस इन्वेंटरी का उपयोग करके कोई जॉब चलती है, तो जॉब कार्य निष्पादित करने से पहले चयनित स्रोत से इन्वेंटरी रीफ़्रेश करें।\"],\"RK1gDV\":[\"Azure AD से साइन इन करें\"],\"RMdd1C\":[\"कोई नहीं (एक बार चलाएं)\"],\"RO9G1f\":[\"इस फ़ील्ड का मान 0 से अधिक होना चाहिए\"],\"RPnV2o\":[\"खोज फ़िल्टर ने कोई परिणाम नहीं दिया…\"],\"RThfvh\":[\"संबंधित टीम को अलग करें?\"],\"R_mzhp\":[\"उपयोगकर्ता टोकन में विफल।\"],\"RbIaa9\":[\"टोकन नहीं मिला।\"],\"RdLvW9\":[\"जॉब्स पुनः लॉन्च करें\"],\"Rguqao\":[\"हटाने के लिए एक पंक्ति चुनें\"],\"RhOukN\":[[\"interval\"],\" hour\"],\"RiQMUh\":[\"चल रहा है\"],\"RjIKOw\":[\"किसी होस्ट पर इन्वेंटरी बदलने में असमर्थ\"],\"RjkhdY\":[\"फ़ील्ड मान से प्रारंभ होता है।\"],\"RkXlPZ\":[\"GitHub\"],\"RlsPz7\":[\"क्या आप वाकई इस लिंक को हटाना चाहते हैं?\"],\"Rm1iI_\":[\"लॉन्च पर वेरिएबल्स के लिए संकेत दें।\"],\"Roaswv\":[\"User Guide\"],\"RpKSl3\":[\"क्रेडेंशियल सफलतापूर्वक कॉपी किया गया\"],\"RsZ4BA\":[\"अंतिम स्क्रॉल करें\"],\"RtKKbA\":[\"अंतिम\"],\"Ru59oZ\":[\"इस टेम्पलेट के लिए वेबहुक सक्षम करें।\"],\"RuEWFx\":[\"इस तिथि पर\"],\"RuiOO0\":[\"एक या अधिक एप्लिकेशन हटाने में विफल।\"],\"Rw1xwN\":[\"सामग्री लोड हो रही है\"],\"RxzN1M\":[\"सक्षम\"],\"RyPas1\":[\"Cancel selected jobs\"],\"S0kLOH\":[\"ID\"],\"S2nsEw\":[\"इससे बड़ा तुलना।\"],\"S5gO6Y\":[\"वर्कफ़्लो को अतिरिक्त कमांड लाइन वेरिएबल्स पास करें।\"],\"S6zj7M\":[\"जॉब टेम्पलेट के लिए, प्लेबुक निष्पादित करने के लिए run चुनें। प्लेबुक को निष्पादित किए बिना केवल प्लेबुक सिंटैक्स की जाँच करने, पर्यावरण सेटअप का परीक्षण करने और समस्याओं की रिपोर्ट करने के लिए check चुनें।\"],\"S7kN8O\":[\"एक या अधिक उपयोगकर्ता हटाने में विफल।\"],\"S7tNdv\":[\"सफलता पर\"],\"S8FW2i\":[\"इस स्रोत द्वारा सिंक की जाने वाली इन्वेंटरी फ़ाइल। आप ड्रॉपडाउन से चुन सकते हैं या इनपुट के भीतर एक फ़ाइल दर्ज कर सकते हैं।\"],\"SA-KXq\":[\"ऊपर पैन करें\"],\"SAw-Ux\":[\"क्या आप वाकई \",[\"username\"],\" से \",[\"0\"],\" पहुंच हटाना चाहते हैं?\"],\"SBfnbf\":[\"सभी निष्पादन वातावरण देखें\"],\"SC1Cur\":[\"अज्ञात स्थिति\"],\"SDND4q\":[\"कॉन्फ़िगर नहीं किया गया\"],\"SIJDi3\":[\"क्षमता समायोजन\"],\"SJjggI\":[\"अपडेट विकल्प\"],\"SJmHMo\":[\"दस्तावेज़ीकरण।\"],\"SLm_0U\":[\"IRC सर्वर पोर्ट\"],\"SODyJ3\":[\"होस्ट एसिंक ठीक\"],\"SRiPhD\":[\"नोड हटाना रद्द करें\"],\"SV5nA1\":[\"पिछले कुछ चरणों में त्रुटियां हैं\"],\"SVG6MY\":[\"फ़ील्ड को पहले सहेजे गए मान पर वापस लौटाएं\"],\"SYbJcn\":[\"सूचना टेम्पलेट संपादित करें\"],\"SZvybZ\":[\"LDAP डिफ़ॉल्ट\"],\"SZw9tS\":[\"विवरण देखें\"],\"SbRHme\":[\"टेक्स्ट क्षेत्र\"],\"Se_E0z\":[\"वर्कफ़्लो जॉब\"],\"Sgr5NW\":[\"हेल्थ चेक चलाने के लिए एक इंस्टेंस चुनें।\"],\"Sh2XTJ\":[\"सूचना प्रकार\"],\"SiexHs\":[\"डैशबोर्ड (सभी गतिविधि)\"],\"Sja7f-\":[\"होस्ट कितनी बार हटाया गया था\"],\"Sjoj4f\":[\"क्रेडेंशियल नाम\"],\"SlfejT\":[\"त्रुटि\"],\"SoREmD\":[\"एप्लिकेशन और टोकन\"],\"SqA8uD\":[\"जॉब रन\"],\"SqLEdN\":[\"स्मार्ट इन्वेंटरी हटाने में विफल।\"],\"SqYo9m\":[\"इंस्टेंस पर वापस\"],\"Ssdrw4\":[\"बहिष्कृत\"],\"Successful\":[\"सफल\"],\"SvPvEX\":[\"वर्कफ़्लो अनुमोदित संदेश मुख्य भाग\"],\"Svkela\":[\"पिछले पृष्ठ पर जाएं\"],\"SwJLlZ\":[\"वर्कफ़्लो अस्वीकृत संदेश मुख्य भाग\"],\"SxGqey\":[\"जेनेरिक OIDC सेटिंग्स\"],\"Sxm8rQ\":[\"उपयोगकर्ता\"],\"SzFxHC\":[\"LDAP सेटिंग्स\"],\"SzQMpA\":[\"फ़ोर्क्स\"],\"T2M20E\":[\"The\"],\"T2mGOG\":[\"docs.ansible.com\"],\"T2x15z\":[\"सूचना टॉगल करने में विफल।\"],\"T4a4A4\":[\"वेबहुक कुंजी\"],\"T7yEGN\":[\"अनुदान प्रकार जिसका उपयोग उपयोगकर्ता को इस एप्लिकेशन के लिए टोकन प्राप्त करने के लिए करना चाहिए\"],\"T91vKp\":[\"प्ले\"],\"T9hZ3D\":[\"GitHub Enterprise Team\"],\"TAnffV\":[\"इस नोड को संपादित करें\"],\"TBH48u\":[\"टीम हटाने में विफल।\"],\"TC32CH\":[\"रखे जाने वाले डेटा के दिन\"],\"TD1APv\":[\"सदस्यताएं प्राप्त करें\"],\"TFr1UR\":[\"vCenter से समन्वयित करने के लिए उपयोग किए जाने वाले इन्वेंटरी प्लगइन प्रदान करने वाले Ansible कलेक्शन का चयन करें। community.vmware कलेक्शन नए vmware.vmware कलेक्शन के पक्ष में बहिष्कृत है। चयन स्रोत वेरिएबल्स में \\\"plugin\\\" कुंजी के माध्यम से लागू किया जाता है; कुंजी अनुपस्थित होने पर, डिफ़ॉल्ट कलेक्शन का उपयोग किया जाता है।\"],\"TJVvMD\":[\"संबंधित खोज प्रकार\"],\"TLomdD\":[[\"sessionCountdown\",\"plural\",{\"one\":[\"निष्क्रियता के कारण आपको \",\"#\",\" सेकंड में लॉग आउट कर दिया जाएगा\"],\"other\":[\"निष्क्रियता के कारण आपको \",\"#\",\" सेकंड में लॉग आउट कर दिया जाएगा\"]}]],\"TMJ39S\":[\"भूमिका अलग करें\"],\"TMLAx2\":[\"आवश्यक\"],\"TO3h59\":[\"बाहरी सीक्रेट प्रबंधन सिस्टम से फ़ील्ड भरें\"],\"TO4OtU\":[\"Insights क्रेडेंशियल\"],\"TOjYb_\":[\"निर्मित इन्वेंटरी होस्ट विवरण देखें\"],\"TP9_K5\":[\"टोकन\"],\"TRDppN\":[\"वेबहुक\"],\"TTMvf7\":[\"समूह प्रकार\"],\"TU6IDa\":[\"उपयोगकर्ता प्रकार\"],\"TXKmNM\":[\"एक इन्वेंटरी चुनी जानी चाहिए\"],\"TZEuIE\":[\"क्रेडेंशियल प्रकार पर वापस\"],\"T_87By\":[\"पैरामीटर\"],\"Ta0ts5\":[\"परिवर्तन दिखाएं\"],\"TcnG-2\":[\"नया निष्पादन वातावरण बनाएं\"],\"TgSxH9\":[\"प्रोविज़निंग कॉलबैक URL\"],\"TkiN8D\":[\"उपयोगकर्ता विवरण\"],\"Tmh24b\":[\"यदि सक्षम है, तो जॉब टेम्पलेट किसी भी इन्वेंटरी या संगठन इंस्टेंस समूह को चलाने के लिए पसंदीदा इंस्टेंस समूहों की सूची में जोड़ने से रोकेगा। नोट: यदि यह सेटिंग सक्षम है और आपने एक खाली सूची प्रदान की है, तो वैश्विक इंस्टेंस समूह लागू किए जाएंगे।\"],\"Tmuvry\":[\"प्रकार सेट करें टाइपअहेड\"],\"ToOoEw\":[\"क्रेडेंशियल कॉपी करें\"],\"Tof7pX\":[\"जॉब्स\"],\"Tq71UT\":[\"कार्यदिवस\"],\"Tx3NMN\":[\"निजी कुंजी पासफ़्रेज़\"],\"TxKKED\":[\"निर्मित इन्वेंटरी विवरण देखें\"],\"TyaPAx\":[\"सिस्टम प्रशासक\"],\"Tz0i8g\":[\"सेटिंग्स\"],\"U-nEJl\":[\"GitHub सेटिंग्स देखें\"],\"U011Uh\":[\"अंतिम बार देखा गया\"],\"U7rA2a\":[\"जब चेक नहीं किया जाता है, तो एक मर्ज किया जाएगा, स्थानीय वेरिएबल्स को बाहरी स्रोत पर पाए गए वेरिएबल्स के साथ संयोजित किया जाएगा।\"],\"UDf-wR\":[\"उपभोग की गई सदस्यताएं\"],\"UEaj7U\":[\"इन्वेंटरी सिंक विफलताएं\"],\"UJpDop\":[\"Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"UJsNNk\":[\"सोर्स कंट्रोल रिवीज़न\"],\"UPasE4\":[\"Azure AD डिफ़ॉल्ट\"],\"UPmrRI\":[\"endswith का केस-असंवेदनशील संस्करण।\"],\"URmyfc\":[\"विवरण\"],\"UX2wV1\":[[\"0\",\"plural\",{\"one\":[\"यह क्रेडेंशियल वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"other\":[\"इन क्रेडेंशियल्स को हटाने से उन पर निर्भर अन्य संसाधन प्रभावित हो सकते हैं। क्या आप फिर भी हटाना चाहते हैं?\"]}]],\"UXBCwc\":[\"अंतिम नाम\"],\"UY6iPZ\":[\"यदि सक्षम है, तो नियंत्रण नोड्स स्वचालित रूप से इस इंस्टेंस से पीयर करेंगे। यदि अक्षम है, तो इंस्टेंस केवल संबद्ध पीयर से कनेक्ट होगा।\"],\"UYD5ld\":[\"और लॉन्च पर रिवीज़न अपडेट करें पर क्लिक करें\"],\"UYUgdb\":[\"क्रम\"],\"U_JUCL\":[\"Red Hat Insights\"],\"Ua-Kc6\":[\"www.json.org\"],\"UbOul8\":[\"क्या आप वाकई हटाना चाहते हैं:\"],\"UbRKMZ\":[\"लंबित\"],\"UbqhuT\":[\"पूर्ण नोड संसाधन ऑब्जेक्ट प्राप्त करने में विफल।\"],\"Uc_tSU\":[\"टूल टॉगल करें\"],\"UgFDh3\":[\"यह इन्वेंटरी वर्तमान में अन्य संसाधनों द्वारा उपयोग की जा रही है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"UirGxE\":[\"त्रुटियां\"],\"UlykKR\":[\"तीसरा\"],\"Uo1S9q\":[\"Azure AD Tenant से साइन इन करें\"],\"UueF8b\":[\"निष्पादन वातावरण अनुपस्थित या हटा दिया गया है।\"],\"UvGjRK\":[\"यदि सक्षम है, तो इस playbook को व्यवस्थापक के रूप में चलाएँ।\"],\"UwJJCk\":[\"विफल होस्ट्स पुनः लॉन्च करें\"],\"UxKoFf\":[\"नेविगेशन\"],\"UyZ7HQ\":[\"परिवर्तन संदेश मुख्य भाग\"],\"V-7saq\":[[\"pluralizedItemName\"],\" हटाएं?\"],\"V-rJKF\":[\"Seconds\"],\"V0Xv3_\":[[\"intervalValue\",\"plural\",{\"one\":[\"दिन\"],\"other\":[\"दिन\"]}]],\"V0fM4k\":[\"उपयोगकर्ता एनालिटिक्स\"],\"V1EGGU\":[\"पहला नाम\"],\"V2-omF\":[[\"0\",\"plural\",{\"one\":[\"अंतिम विलोपन संसाधित होने तक इन्वेंट्री लंबित स्थिति में रहेगी।\"],\"other\":[\"अंतिम विलोपन संसाधित होने तक इन्वेंट्रीज़ लंबित स्थिति में रहेंगी।\"]}]],\"V2RwJr\":[\"लिसनर पते\"],\"V2q9w9\":[\"If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode.\"],\"V3z83V\":[\"LDAP 3\"],\"V4WsyL\":[\"लिंक जोड़ें\"],\"V5RUpn\":[\"प्राप्तकर्ता सूची\"],\"V7qsYh\":[\"नोट: इन क्रेडेंशियल्स का क्रम सामग्री के सिंक और लुकअप के लिए प्राथमिकता निर्धारित करता है। खींचने को सक्षम करने के लिए एक से अधिक चुनें।\"],\"V9xR6T\":[\"अनुभाग विस्तृत करें\"],\"VAI2fh\":[\"नया कंटेनर समूह बनाएं\"],\"VAcXNz\":[\"बुधवार\"],\"VEj6_Y\":[\"वर्कफ़्लो अनुमोदन\"],\"VFvVc6\":[\"विवरण संपादित करें\"],\"VJUm9p\":[\"वर्तमान पृष्ठ\"],\"VK2gzi\":[\"प्लेबुक निष्पादित करते समय उपयोग करने के लिए समानांतर या एक साथ चलने वाली प्रक्रियाओं की संख्या। एक खाली मान, या 1 से कम मान, Ansible डिफ़ॉल्ट का उपयोग करेगा जो आमतौर पर 5 होता है। डिफ़ॉल्ट फ़ोर्क्स की संख्या को निम्नलिखित में परिवर्तन करके ओवरराइट किया जा सकता है\"],\"VL2WkJ\":[\"अंतिम \",[\"dayOfWeek\"]],\"VLdRt2\":[\"सिंक स्रोत प्रारंभ करें\"],\"VNUs2y\":[\"अधिकतम फ़ोर्क्स\"],\"VSJ6r5\":[\"शेड्यूल सक्रिय है\"],\"VSim_H\":[\"इन्वेंटरी स्रोत हटाएं\"],\"VTDO7X\":[\"इवेंट विवरण मोडल\"],\"VU3Nrn\":[\"अनुपस्थित\"],\"VWL2DK\":[\"GitHub Organization\"],\"VXFjd8\":[\"मेट्रिक्स\"],\"VZfXhQ\":[\"हॉप नोड\"],\"VdcFUD\":[\"अंतिम उपयोगकर्ता लाइसेंस अनुबंध\"],\"ViDr6F\":[\"नया समूह जोड़ें\"],\"VmClsw\":[\"इस नोड से संबद्ध संसाधन हटा दिया गया है।\"],\"VmvLj9\":[\"क्लाइंट डिवाइस कितना सुरक्षित है, इसके आधार पर Public या Confidential पर सेट करें।\"],\"Vqd-tq\":[\"सभी वापस लौटाने की पुष्टि करें\"],\"Vqgeac\":[\"Press space or enter to begin dragging,\\n and use the arrow keys to navigate up or down.\\n Press enter to confirm the drag, or any other key to\\n cancel the drag operation.\"],\"Vvbbn2\":[\"भूमिका हटाने में विफल।\"],\"Vw8l6h\":[\"एक त्रुटि हुई\"],\"VzE_M-\":[\"सूचना विफलता टॉगल करें\"],\"W-O1E9\":[\"प्रोजेक्ट कॉपी करें\"],\"W1iIqa\":[\"इन्वेंटरी समूह देखें\"],\"W3TNvn\":[\"उपयोगकर्ताओं पर वापस\"],\"W3pOzF\":[\"इस प्रोजेक्ट का उपयोग करने वाले जॉब टेम्पलेट में स्रोत नियंत्रण ब्रांच या रिविज़न बदलने की अनुमति दें।\"],\"W6uTJi\":[\"इंस्टेंस प्राप्त करने में विफल।\"],\"W7DGsV\":[\"द्वारा लॉन्च किया गया (उपयोगकर्ता नाम)\"],\"W9XAF4\":[\"कार्यदिवस\"],\"W9uQXX\":[\"संकेत\"],\"WAjFYI\":[\"प्रारंभ तिथि\"],\"WD8djW\":[\"लिंक हटाने की पुष्टि करें\"],\"WL91Ms\":[\"Delete Groups?\"],\"WPM2RV\":[\"उत्तर प्रकार\"],\"WQJduu\":[\"कुंजी चयन\"],\"WTN9YX\":[\"खाता टोकन\"],\"WTV15I\":[\"लॉगिन रीडायरेक्ट ओवरराइड URL संपादित करें\"],\"WVzGc2\":[\"सदस्यता\"],\"WX9-kf\":[\"IRC निक\"],\"Wc6m4J\":[\"लाने के लिए एक refspec (Ansible git मॉड्यूल को पास किया गया)। यह पैरामीटर ब्रांच फ़ील्ड के माध्यम से उन संदर्भों तक पहुँच की अनुमति देता है जो अन्यथा उपलब्ध नहीं होते।\"],\"Wdl2f2\":[\"इस फ़ील्ड में कम से कम \",[\"0\"],\" वर्ण होने चाहिए\"],\"WgsBEi\":[\"एक नई स्मार्ट इन्वेंटरी बनाने के लिए कम से कम एक खोज फ़िल्टर दर्ज करें\"],\"WhSFGl\":[[\"name\"],\" द्वारा फ़िल्टर करें\"],\"Wi1pUG\":[[\"numJobsToCancel\",\"plural\",{\"one\":[[\"0\"]],\"other\":[[\"1\"]]}]],\"Wk1rOS\":[\"ग्राफ़ को उपलब्ध स्क्रीन आकार में फ़िट करें\"],\"Wm7XbF\":[\"एक या अधिक क्रेडेंशियल हटाने में विफल।\"],\"WqaDMq\":[\"फ़ील्ड में मान शामिल है।\"],\"Wy25yg\":[\"Twilio\"],\"X03-eC\":[\"कृपया एक मान दर्ज करें।\"],\"X5V9DW\":[\"नोड को पुनः कॉन्फ़िगर करने के लिए नीचे संपादित करें बटन पर क्लिक करें।\"],\"X6d3Zy\":[\"संगठन हटाने में विफल।\"],\"X97mbf\":[\"एक जॉब प्रकार चुनें\"],\"XA12d8\":[\"स्लाइस के अपने होस्ट के अतिरिक्त, प्रत्येक जॉब स्लाइस में शामिल करने के लिए होस्ट नामों की वैकल्पिक अल्पविराम से अलग की गई सूची। यह तब उपयोगी है जब कोई play किसी समन्वयकारी होस्ट, जैसे localhost, को लक्षित करता है, जिस पर सभी स्लाइस निर्भर करते हैं। नाम इन्वेंटरी होस्ट के साथ बिल्कुल मिलान किए जाते हैं; समूह और पैटर्न समर्थित नहीं हैं। पिन किए गए होस्ट प्रति स्लाइस एक बार अपने play चलाते हैं।\"],\"XBROpk\":[\"वर्कफ़्लो द्वारा प्रबंधित या प्रभावित होने वाले होस्ट्स की सूची को और अधिक सीमित करने के लिए एक होस्ट पैटर्न प्रदान करें।\"],\"XCCkju\":[\"नोड संपादित करें\"],\"XFRygA\":[\"रिमोट संग्रह स्रोत नियंत्रण के लिए उदाहरण URL में शामिल हैं:\"],\"XHxwBV\":[\"चयनित तिथि सीमा में कम से कम 1 शेड्यूल घटना होनी चाहिए।\"],\"XILg0L\":[\"अमान्य ईमेल पता\"],\"XJOV1Y\":[\"गतिविधि\"],\"XKp83s\":[\"स्रोतों वाली इन्वेंटरी कॉपी नहीं की जा सकतीं\"],\"XLMJ7O\":[\"क्लाउड\"],\"XLpxoj\":[\"ईमेल विकल्प\"],\"XM-gTv\":[\"कॉन्फ़िगरेशन फ़ाइल के बारे में विवरण के लिए Ansible दस्तावेज़ीकरण देखें।\"],\"XOD7tz\":[\"परिवर्तन दिखाएं\"],\"XOaZX3\":[\"पृष्ठांकन\"],\"XP6TQ-\":[\"यदि निर्दिष्ट किया गया है, तो वर्कफ़्लो देखते समय यह फ़ील्ड संसाधन नाम के बजाय नोड पर दिखाया जाएगा\"],\"XREJvl\":[\"इन्वेंटरी स्रोत को कॉन्फ़िगर करने के लिए उपयोग किए जाने वाले वेरिएबल्स। इस प्लगइन को कॉन्फ़िगर करने के तरीके के विस्तृत विवरण के लिए, देखें\"],\"XViLWZ\":[\"विफलता पर\"],\"XWDz5f\":[\"सरल कुंजी चयन\"],\"X_5TsL\":[\"सर्वेक्षण टॉगल\"],\"XaxYwV\":[\"संकेतित मान\"],\"XbIM8f\":[\"कुल इन्वेंटरी स्रोत\"],\"XdyHT-\":[\"आयातित होस्ट्स\"],\"XfmfOA\":[\"हर बार चलाएं\"],\"Xg3aVa\":[\"SSL का उपयोग करें\"],\"XgTa_2\":[\"The inventory will be in a pending status until the final delete is processed.\"],\"XilEsm\":[\"इंस्टेंस समूह\"],\"Xm7ruy\":[\"5 (WinRM डिबग)\"],\"XmJfZT\":[\"नाम\"],\"XmVvzl\":[\"लागू करने के लिए भूमिकाएं चुनें\"],\"XnxCSh\":[\"मानक त्रुटि\"],\"XozZ38\":[\"एक या अधिक इन्वेंटरी स्रोत हटाने में विफल।\"],\"Xq9A0U\":[\"अज्ञात प्रोजेक्ट\"],\"Xt4N6V\":[\"संकेत | \",[\"0\"]],\"XtpZSU\":[\"सभी जॉब प्रकार\"],\"Xx-ftH\":[\"आपने अपनी सदस्यता की अनुमति से अधिक होस्ट्स के विरुद्ध स्वचालन किया है।\"],\"XyTWuQ\":[\"कृपया तब तक प्रतीक्षा करें जब तक टोपोलॉजी दृश्य भर न जाए...\"],\"XyW2nH\":[[\"0\",\"plural\",{\"one\":[\"क्या आप वाकई नीचे दिए गए समूह को हटाना चाहते हैं?\"],\"other\":[\"क्या आप वाकई नीचे दिए गए समूहों को हटाना चाहते हैं?\"]}]],\"XzD7xj\":[\"आइटम चुनें\"],\"Y1YKad\":[\"विवरण संपादित करें\"],\"Y296GK\":[\"भूमिका हटाने में विफल\"],\"Y2ml-n\":[\"अनुमोदित - \",[\"0\"],\". अधिक जानकारी के लिए गतिविधि स्ट्रीम देखें।\"],\"Y5VrmH\":[\"इन्वेंटरी सिंक के लिए कॉन्फ़िगर नहीं किया गया।\"],\"Y5vgVF\":[\"सफलतापूर्वक अस्वीकृत\"],\"Y5xJ7I\":[\"प्लेबुक नाम\"],\"Y60pX3\":[\"निर्मित इन्वेंटरी जोड़ें\"],\"YA4I45\":[\"एक मॉड्यूल चुनें\"],\"YFmVSY\":[\"अलग करें?\"],\"YJddb4\":[\"इंस्टेंस प्रकार\"],\"YLMfol\":[\"उस संसाधन का प्रकार चुनें जो नई भूमिकाएं प्राप्त करेगा। उदाहरण के लिए, यदि आप उपयोगकर्ताओं के एक समूह में नई भूमिकाएं जोड़ना चाहते हैं तो कृपया उपयोगकर्ता चुनें और अगला क्लिक करें। आप अगले चरण में विशिष्ट संसाधन चुन सकेंगे।\"],\"YM06Nm\":[\"क्रेडेंशियल प्रकार संपादित करें\"],\"YMLB2b\":[\"टाइमआउट समाप्त होने पर अनुमोदन नोड स्वचालित रूप से अनुमोदित या अस्वीकृत होता है या नहीं।\"],\"YMpSlP\":[\"किसी इन्वेंटरी सिंक को वर्तमान मानने के लिए सेकंड में समय। जॉब रन और कॉलबैक के दौरान कार्य सिस्टम नवीनतम सिंक के टाइमस्टैम्प का मूल्यांकन करेगा। यदि यह कैश टाइमआउट से पुराना है, तो इसे वर्तमान नहीं माना जाता है, और एक नया इन्वेंटरी सिंक किया जाएगा।\"],\"YOOdGq\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" मिनट\"],\"other\":[\"#\",\" मिनट\"]}]],\"YOh7Aw\":[\"वर्कफ़्लो जॉब \",[\"currentPosition\"],\"/\",[\"total\"]],\"YP5KRj\":[\"सहेजने पर एक नया वेबहुक url जनरेट किया जाएगा।\"],\"YPDLLX\":[\"निष्पादन वातावरण पर वापस\"],\"YQqM-5\":[\"निष्पादन के लिए उपयोग की जाने वाली कंटेनर छवि।\"],\"Yd45Xn\":[\"प्रोसेसर प्रकार द्वारा होस्ट्स\"],\"Yfw7TK\":[\"सूचना का समय समाप्त हुआ\"],\"YgqgXs\":[[\"intervalValue\",\"plural\",{\"one\":[\"मिनट\"],\"other\":[\"मिनट\"]}]],\"YiQ03p\":[\"शेड्यूल हटाने में विफल।\"],\"YiUAZm\":[\"<0>नोट: यदि यह इंस्टेंस <1>पॉलिसी नियमों द्वारा प्रबंधित है, तो इसे इस इंस्टेंस समूह के साथ फिर से संबद्ध किया जा सकता है।\"],\"YlGAPh\":[\"जॉब स्लाइस पिन किए गए होस्ट्स\"],\"Ym7-mu\":[\"प्रति पंक्ति एक Slack चैनल। चैनलों के लिए पाउंड प्रतीक (#)\\n आवश्यक है। किसी विशिष्ट संदेश का उत्तर देने या उसके लिए थ्रेड प्रारंभ करने के लिए पैरेंट संदेश Id को चैनल में जोड़ें जहां पैरेंट संदेश Id 16 अंकों का हो। 10वें अंक के बाद एक डॉट (.) मैन्युअल रूप से डाला जाना चाहिए। उदा:#destination-channel, 1231257890.006423। Slack देखें\"],\"YmEWZH\":[\"टेम्पलेट लॉन्च करें\"],\"YmjTf2\":[\"प्रोविज़निंग विफल\"],\"YoXjSs\":[\"लॉन्च पर इन्वेंटरी के लिए संकेत दें।\"],\"Yq4Eaf\":[\"इस जॉब के लिए होस्ट स्थिति जानकारी अनुपलब्ध है।\"],\"YsN-3o\":[\"इन्वेंटरी स्रोत विवरण देखें\"],\"Yt-rBv\":[\"यह प्रोजेक्ट वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"YuC9dj\":[\"संबद्ध करें\"],\"YxDLmM\":[\"Insights सिस्टम ID\"],\"Z17FAa\":[\"अज्ञात इन्वेंटरी\"],\"Z1Vtl5\":[\"प्रोजेक्ट सिंक रद्द करने में विफल\"],\"Z25_RC\":[\"इनपुट चुनें\"],\"Z2hVSb\":[\"हाइब्रिड\"],\"Z40J8D\":[\"प्रोविज़निंग कॉलबैक URL के निर्माण को सक्षम करता है। URL का उपयोग करके, एक होस्ट \",[\"brandName\"],\" से संपर्क कर सकता है और इस जॉब टेम्पलेट का उपयोग करके कॉन्फ़िगरेशन अपडेट का अनुरोध कर सकता है।\"],\"Z5HWHd\":[\"चालू\"],\"Z7ZXbT\":[\"अनुमोदित करें\"],\"Z88yEl\":[\"इससे बड़ा या बराबर तुलना।\"],\"Z9EFpE\":[\"Automation Analytics डैशबोर्ड\"],\"ZAWGCX\":[[\"0\"],\" सेकंड\"],\"ZEP8tT\":[\"लॉन्च करें\"],\"ZGDCzb\":[\"इंस्टेंस नहीं मिला।\"],\"ZJjKDg\":[\"प्रबंधित नोड्स\"],\"ZKKnVf\":[\"नया वर्कफ़्लो टेम्पलेट बनाएं\"],\"ZL3d6Z\":[\"IRC सर्वर पता\"],\"ZO4CYH\":[\"चल रही जॉब्स\"],\"ZOLfb2\":[\"यह फ़ील्ड रिक्त नहीं होना चाहिए।\"],\"ZWhZbs\":[\"नोड हटाने की पुष्टि करें\"],\"ZajTWA\":[\"स्रोत फ़ोन नंबर\"],\"Zf6u-6\":[\"स्पष्टीकरण\"],\"ZfrRb0\":[\"कृपया एक इन्वेंटरी चुनें या लॉन्च पर संकेत विकल्प चेक करें\"],\"ZhUwVw\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" सप्ताह\"],\"other\":[\"#\",\" सप्ताह\"]}]],\"ZhxwOq\":[\"त्रुटि संदेश मुख्य भाग\"],\"Zikd-1\":[\"आपने जिन होस्ट्स के विरुद्ध स्वचालन किया है उनकी संख्या आपकी सदस्यता गणना से कम है।\"],\"ZjC8QM\":[\"होस्ट हटाने में विफल।\"],\"ZjvPb1\":[\"द्वारा बनाया गया (उपयोगकर्ता नाम)\"],\"Zkh5np\":[[\"0\"],\" पर पीयर अपडेट होते हैं। परिवर्तन प्रभावी होते देखने के लिए कृपया \",[\"1\"],\" के लिए इंस्टॉल बंडल फिर से चलाना सुनिश्चित करें।\"],\"ZpdX6R\":[\"टोकन हटाने में त्रुटि\"],\"ZrsGjm\":[\"इन्वेंटरी\"],\"ZumtuZ\":[\"टेम्पलेट कॉपी करें\"],\"ZvVF4C\":[\"सर्वेक्षण प्रश्न हटाएं\"],\"ZwCTcT\":[\"हाल की जॉब्स सूची टैब\"],\"ZwujDQ\":[\"पिछला वर्ष\"],\"_-NKbo\":[\"शेड्यूल टॉगल करने में विफल।\"],\"_2LfCe\":[\"सर्वेक्षण प्रश्नों को पुनः क्रमबद्ध करने के लिए उन्हें खींचकर इच्छित स्थान पर छोड़ें।\"],\"_4gGIX\":[\"क्लिपबोर्ड पर कॉपी करें\"],\"_5REdR\":[\"निर्मित इन्वेंटरी प्लगइन के लिए इनपुट इन्वेंटरी चुनें।\"],\"_Fg1cM\":[\"वर्कफ़्लो टाइम आउट संदेश मुख्य भाग\"],\"_ITcnz\":[\"दिन\"],\"_Ia62Q\":[\"निर्मित इन्वेंटरी उदाहरण\"],\"_JN1gB\":[\"कार्य संख्या\"],\"_K2CvV\":[\"टेम्पलेट\"],\"_LQZpR\":[[\"intervalValue\",\"plural\",{\"one\":[\"वर्ष\"],\"other\":[\"वर्ष\"]}]],\"_LVfwJ\":[\"निर्मित इन्वेंटरी स्रोत सिंक त्रुटि\"],\"_M4FeF\":[\"वह निष्पादन वातावरण चुनें जिसके अंदर आप इस कमांड को चलाना चाहते हैं।\"],\"_MTBwI\":[\"परिवर्तन संदेश\"],\"_MdgrM\":[\"इन दो नोड्स के बीच एक नया नोड जोड़ें\"],\"_PRaan\":[\"एक या अधिक सूचना टेम्पलेट हटाने में विफल।\"],\"_Pz_QH\":[\"नीति द्वारा प्रबंधित\"],\"_W3ZAw\":[[\"selectedItemsCount\",\"plural\",{\"one\":[\"चयनित इंस्टेंस पर हेल्थ चेक चलाने के लिए क्लिक करें।\"],\"other\":[\"चयनित इंस्टेंसों पर हेल्थ चेक चलाने के लिए क्लिक करें।\"]}]],\"_WBq2_\":[\"अस्वीकृत - \",[\"0\"],\". अधिक जानकारी के लिए गतिविधि स्ट्रीम देखें।\"],\"_Yq4TU\":[\"इस समूह पर एक साथ चल रहे सभी जॉब्स में अनुमत फ़ोर्क्स की अधिकतम संख्या।\\n शून्य का अर्थ है कोई सीमा लागू नहीं की जाएगी।\"],\"_ZBhqw\":[\"इन्वेंटरी स्रोत सिंक रद्द करने में विफल\"],\"_bAUGi\":[\"एक HTTP विधि चुनें\"],\"_bE0AS\":[\"एक इंस्टेंस चुनें\"],\"_cV6Mf\":[\"ब्राउज़ करें…\"],\"_cq4Aa\":[\"वर्कफ़्लो अनुमोदन नहीं मिला।\"],\"_ereyb\":[\"TACACS+\"],\"_gCD76\":[\"इंस्टेंस समूह संपादित करें\"],\"_ismew\":[\"आर्टिफ़ैक्ट कुंजी\"],\"_kYJq6\":[\"रखने के लिए डेटा के दिन\"],\"_khNCh\":[\"जॉब टेम्पलेट के ड़िफ़ॉल्ट क्रेडेंशियल को समान प्रकार के किसी एक से बदला जाना चाहिए। आगे बढ़ने के लिए कृपया निम्नलिखित प्रकारों के लिए एक क्रेडेंशियल चुनें: \",[\"0\"]],\"_oeZtS\":[\"होस्ट पोलिंग\"],\"_rCRcH\":[\"उन्नत खोज दस्तावेज़ीकरण\"],\"_vI8Rx\":[\"Delete Group?\"],\"a02Xjc\":[\"IRC सर्वर पता\"],\"a3AD0M\":[\"लॉगिन रीडायरेक्ट संपादन की पुष्टि करें\"],\"a5zD9f\":[\"परिवर्तन\"],\"a6E-_p\":[\"contains का केस-असंवेदनशील संस्करण\"],\"a8AgQY\":[\"होस्ट विवरण देखें\"],\"a8nooQ\":[\"चौथा\"],\"a9BTUD\":[\"सप्ताहांत का दिन\"],\"aBgwis\":[\"स्कोप\"],\"aLlb3-\":[\"boolean\"],\"aNxqSL\":[\"निष्पादन वातावरण हटाएं\"],\"aQ4XJX\":[\"लॉग सिस्टम को फ़ैक्ट्स को व्यक्तिगत रूप से ट्रैक करने में सक्षम करें\"],\"aSuBiU\":[\"Microsoft Azure Resource Manager\"],\"aTK0Fh\":[\"दिनों पर\"],\"aUNPq3\":[\"निष्पादन नोड\"],\"aVoVcG\":[\"बहु-चयन\"],\"aXBrSq\":[\"Red Hat Virtualization\"],\"a_vlog\":[[\"0\"],\" चिप हटाएं\"],\"adPhRK\":[\"वह इन्वेंटरी जिससे यह होस्ट संबंधित है।\"],\"adjqlB\":[[\"0\"],\" (हटाया गया)\"],\"aht2s_\":[\"सूचना रंग\"],\"aiejXq\":[\"संसाधन प्रकार जोड़ें\"],\"ajDpGH\":[\"स्थिति:\"],\"anfIXl\":[\"उपयोगकर्ता विवरण\"],\"aqqAbL\":[\"यदि सक्षम है, तो इन्वेंटरी संबद्ध जॉब टेम्पलेट चलाने के लिए पसंदीदा इंस्टेंस समूहों की सूची में किसी भी संगठन इंस्टेंस समूह को जोड़ने से रोकेगी। नोट: यदि यह सेटिंग सक्षम है और आपने एक खाली सूची प्रदान की है, तो वैश्विक इंस्टेंस समूह लागू किए जाएंगे।\"],\"ar5AA2\":[\"अधिक जानकारी के लिए।\"],\"ataY5Z\":[\"जॉब हटाने में त्रुटि\"],\"ax6e8j\":[\"होस्ट फ़िल्टर संपादित करने से पहले कृपया एक संगठन चुनें\"],\"az8lvo\":[\"बंद\"],\"b1CAkh\":[\"प्रबंधन जॉब्स\"],\"b2Z0Zq\":[\"लिंक परिवर्तन रद्द करें\"],\"b433OF\":[\"समूह संपादित करें\"],\"b4SLah\":[\"बाईं ओर त्रुटियां देखें\"],\"b9Y4up\":[\"क्लाइंट ID\"],\"bDa_hW\":[\"उन इंस्टेंस समूहों का चयन करें जिन पर इस इन्वेंटरी स्रोत का समन्वयन चलना चाहिए। यदि सेट नहीं किया गया है, तो समन्वयन इन्वेंटरी या उसके संगठन के इंस्टेंस समूहों पर चलता है।\"],\"bE4zYn\":[\"वह पोर्ट चुनें जिस पर Receptor आने वाले कनेक्शन के लिए सुनेगा, उदा. 27199।\"],\"bHXYoC\":[\"HTTP विधि\"],\"bKR18T\":[\"सब्सक्रिप्शन मैनिफ़ेस्ट Red Hat सब्सक्रिप्शन का एक निर्यात है। सब्सक्रिप्शन मैनिफ़ेस्ट जनरेट करने के लिए, <0>access.redhat.com पर जाएं। अधिक जानकारी के लिए, <1>उपयोगकर्ता गाइड देखें।\"],\"bLt_0J\":[\"वर्कफ़्लो\"],\"bPq357\":[\"सक्षम मान\"],\"bQZByw\":[\"प्रति पंक्ति एक एनोटेशन टैग का उपयोग करें, बिना अल्पविराम के।\"],\"bTu5jX\":[\"उपयोगकर्ता नाम / पासवर्ड\"],\"bWr6j5\":[\"इस फ़ील्ड में कम से कम \",[\"min\"],\" वर्ण होने चाहिए\"],\"bY8C86\":[\"सभी उपयोगकर्ता देखें।\"],\"bYXbel\":[\"वर्कफ़्लो जॉब टेम्पलेट वेबहुक कुंजी\"],\"baP8gx\":[\"4 (कनेक्शन डिबग)\"],\"baqrhc\":[\"HTTP हेडर\"],\"bbJ-VR\":[\"ज़ूम आउट करें\"],\"bcyJXs\":[\"आइटम ठीक है\"],\"bd1Kuw\":[\"आइकन URL\"],\"bf7UKi\":[\"कैश टाइमआउट अपडेट करें\"],\"bfgr_e\":[\"प्रश्न\"],\"bgjTnp\":[\"0 (सामान्य)\"],\"bgq1rW\":[\"खोज सबमिट बटन\"],\"bhxnLH\":[\"आपके पास निम्न समूह हटाने की अनुमति नहीं है: \",[\"itemsUnableToDelete\"]],\"bkPO0d\":[\"सूचना प्रकार\"],\"bpECfE\":[\"लिंक हटाना रद्द करें\"],\"bpnj1H\":[\"इस सामग्री को लोड करने में त्रुटि हुई। कृपया पृष्ठ पुनः लोड करें।\"],\"bwRvnp\":[\"क्रिया\"],\"bx2rrL\":[\"स्मार्ट इन्वेंटरी\"],\"bxaVlf\":[\"नया क्रेडेंशियल प्रकार बनाएं\"],\"byXCTu\":[\"घटनाएं\"],\"bznJUg\":[\"वह इन्वेंटरी चुनें जिसमें वे होस्ट हैं जिन्हें आप इस वर्कफ़्लो से प्रबंधित करना चाहते हैं।\"],\"bzv8Dv\":[\"हटाने में त्रुटि\"],\"c-xCSz\":[\"सत्य\"],\"c0n4p3\":[\"फ़ैक्ट स्टोरेज\"],\"c1Rsz1\":[\"वर्कफ़्लो अनुमोदन विवरण देखें\"],\"c3XJ18\":[\"सहायता\"],\"c4kHK7\":[\"सदस्यता मोडल बंद करें\"],\"c6IFRs\":[\"सेवा खाता JSON फ़ाइल\"],\"c6u6gk\":[\"इस संगठन के चलने के लिए इंस्टेंस समूह चुनें।\"],\"c7-Adk\":[\"इन्वेंटरी स्रोत सिंक करने में विफल।\"],\"c8HyJq\":[\"इस इन्वेंटरी के चलने के लिए इंस्टेंस समूह चुनें।\"],\"c8sV0t\":[\"यह सुविधा बहिष्कृत है और भविष्य के रिलीज़ में हटा दी जाएगी।\"],\"c9V3Yo\":[\"होस्ट विफल\"],\"c9iw51\":[\"चल रही जॉब्स\"],\"c9pF61\":[\"क्लाइंट पहचानकर्ता\"],\"cFC8w7\":[\"यह इन्वेंटरी स्रोत वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है जो इस पर निर्भर हैं। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"cFCKYZ\":[\"अस्वीकार करें\"],\"cFOXv9\":[\"जेनेरिक OIDC\"],\"cGRiaP\":[\"इवेंट विवरण\"],\"cIdUma\":[\"\\n \",[\"project_base_dir\"],\" में कोई उपलब्ध प्लेबुक निर्देशिका नहीं है।\\n या तो वह निर्देशिका खाली है, या सभी सामग्री पहले से ही\\n अन्य प्रोजेक्ट्स को असाइन की गई है। वहां एक नई निर्देशिका बनाएं और सुनिश्चित\\n करें कि प्लेबुक फ़ाइलें \\\"awx\\\" सिस्टम उपयोगकर्ता द्वारा पढ़ी जा सकती हैं,\\n या ऊपर दिए गए सोर्स कंट्रोल प्रकार विकल्प का उपयोग करके \",[\"brandName\"],\" को\\n सोर्स कंट्रोल से सीधे आपकी प्लेबुक प्राप्त करने दें।\"],\"cNsIJf\":[\"बदला गया\"],\"cPTnDL\":[\"प्रोजेक्ट सिंक\"],\"cQIQa2\":[\"समूह चुनें\"],\"cQlPDN\":[\"पढ़ें\"],\"cUKLzq\":[\"क्रम संपादित करें\"],\"cYir0h\":[\"विकल्प चुनें\"],\"c_PGsA\":[\"वर्कफ़्लो जॉब विवरण\"],\"cbSPfq\":[\"इस वर्कफ़्लो पर पहले ही कार्रवाई की जा चुकी है\"],\"ccA_Bz\":[\"वेरिएबल नामों के लिए सुझाया गया प्रारूप लोअरकेस और\\n अंडरस्कोर-पृथक है (उदाहरण के लिए, foo_bar, user_id, host_name,\\n आदि)। रिक्त स्थान वाले वेरिएबल नामों की अनुमति नहीं है।\"],\"cdm6_X\":[\"उपयोग की गई क्षमता\"],\"chbm2W\":[\"इंस्टेंस फ़िल्टर\"],\"ci3mwY\":[\"यह फ़ील्ड रिक्त नहीं होना चाहिए\"],\"cit9TY\":[\"मूल नोड द्वारा set_stats के माध्यम से उत्पादित आर्टिफ़ैक्ट का नाम। लिंक का अनुसरण केवल तभी किया जाता है जब मूल जॉब चुने गए परिणाम से मेल खाती है और स्थिति सत्य होती है। अनुपस्थित कुंजी कभी मेल नहीं खाती।\"],\"cj1KTQ\":[\"सभी इन्वेंटरी देखें।\"],\"cjJXKx\":[\"होस्ट एसिंक विफलता\"],\"ckH3fT\":[\"तैयार\"],\"ckdiAB\":[\"सूचना हटाएं\"],\"cmWTxn\":[\"इससे कम या बराबर तुलना।\"],\"cnGeoo\":[\"हटाएं\"],\"cnnWD0\":[\"By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>\",[\"0\"],\". Uncheck the following boxes to disable this feature.\"],\"ct_Puj\":[\"यह फ़ील्ड निर्दिष्ट क्रेडेंशियल का उपयोग करके बाहरी सीक्रेट प्रबंधन सिस्टम से प्राप्त की जाएगी।\"],\"cucDBz\":[\"संदर्भ टेम्पलेट\"],\"cucG_7\":[\"कोई YAML उपलब्ध नहीं\"],\"cxjfgY\":[\"हॉप नोड्स पर हेल्थ चेक नहीं चलाया जा सकता।\"],\"cy3yJa\":[\"स्थापित\"],\"d-F6q9\":[\"बनाया गया\"],\"d-zGjA\":[\"यह क्रिया निम्न को हटा देगी:\"],\"d1BVnY\":[\"A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>\",[\"0\"],\".\"],\"d5zxa4\":[\"स्थानीय\"],\"d6in1T\":[\"उन होस्ट वाली इन्वेंटरी चुनें जिन्हें आप इस जॉब से प्रबंधित करना चाहते हैं।\"],\"d73flf\":[\"अलर्ट मोडल\"],\"d75lEw\":[\"प्रकार सेट करें\"],\"d7VUIS\":[\"नोड \",[\"nodeName\"],\" हटाएं\"],\"d8B-tr\":[\"जॉब स्थिति ग्राफ़ टैब\"],\"dAZObA\":[\"रीडायरेक्ट URI\"],\"dBNZkl\":[\"स्मार्ट इन्वेंटरी होस्ट विवरण देखें\"],\"dCcO-F\":[\"कॉन्फ़िगरेशन प्राप्त करने में विफल।\"],\"dELxuP\":[\"इन्वेंटरी नहीं मिली।\"],\"dEgA5A\":[\"रद्द करें\"],\"dH6aQY\":[\"Azure AD Tenant\"],\"dIb9tv\":[\"सभी एप्लिकेशन देखें।\"],\"dJcvVX\":[\"स्मार्ट होस्ट फ़िल्टर\"],\"dNAHKF\":[\"जॉब स्लाइसिंग\"],\"dOjocz\":[\"अभिसरण चयन\"],\"dPGRd8\":[\"यदि सक्षम है, तो जहाँ समर्थित हो वहाँ Ansible कार्यों द्वारा किए गए परिवर्तन दिखाएँ। यह Ansible के --diff मोड के समतुल्य है।\"],\"dPY1x1\":[\"अधिक जानकारी के लिए।\"],\"dQFAgv\":[\"इस प्रोजेक्ट को अपडेट करने की आवश्यकता है\"],\"dQjRO3\":[\"सिंक प्रक्रिया प्रारंभ करें\"],\"dbWo0h\":[\"Google से साइन इन करें\"],\"dcGoCm\":[\"इन्वेंटरी फ़ाइल\"],\"ddIcfH\":[\"अंतिम पृष्ठ पर जाएं\"],\"dfWFox\":[\"होस्ट संख्या\"],\"dk7qNl\":[\"नियंत्रण नोड\"],\"dkGxGj\":[\"Subversion\"],\"dlHFy7\":[\"एक या अधिक निष्पादन वातावरण हटाने में विफल\"],\"dnCwNB\":[\"सफलतापूर्वक क्लिपबोर्ड पर कॉपी किया गया!\"],\"dov9kY\":[\"इस फ़ील्ड में एक संख्या होनी चाहिए और इसका मान \",[\"0\"],\" और \",[\"1\"],\" के बीच होना चाहिए\"],\"dqxQzB\":[\"dictionary\"],\"dzQfDY\":[\"अक्टूबर\"],\"e0NrBM\":[\"प्रोजेक्ट\"],\"e3pQqT\":[\"एक सूचना प्रकार चुनें\"],\"e4GHWP\":[\"पुल\"],\"e5CMOi\":[\"पर्यावरण वेरिएबल्स या अतिरिक्त वेरिएबल्स जो उन मानों को निर्दिष्ट करते हैं जो एक क्रेडेंशियल प्रकार इंजेक्ट कर सकता है।\"],\"e5VbKq\":[\"वर्कफ़्लो जॉब टेम्पलेट\"],\"e6BtDv\":[\"<0>\",[\"0\"],\"<1>\",[\"1\"],\"\"],\"e70-_3\":[\"लीजेंड टॉगल करें\"],\"e8GyQg\":[\"मेट्रिक\"],\"e8U63Z\":[\"प्रोजेक्ट को केवल तभी सिंक करें जब पुश किया गया ref इस पैटर्न से मेल खाता हो, उदाहरण के लिए refs/heads/main या refs/heads/release-*। किसी भी पुश या टैग इवेंट पर सिंक करने के लिए रिक्त छोड़ें।\"],\"e91aLH\":[\"सभी क्रेडेंशियल प्रकार देखें\"],\"e9k5zp\":[\"इस सूची को भरने के लिए कृपया एक शेड्यूल जोड़ें। शेड्यूल को टेम्पलेट, प्रोजेक्ट, या इन्वेंटरी स्रोत में जोड़ा जा सकता है।\"],\"eAR1n4\":[\"संबंधित खोज प्रकार टाइपअहेड\"],\"eD_0Fo\":[\"एक या अधिक टीमें हटाने में विफल।\"],\"eDjsWq\":[\"नया सूचना टेम्पलेट बनाएं\"],\"eGkahQ\":[\"जॉब टेम्पलेट हटाएं\"],\"eHx-29\":[\"स्रोत विवरण\"],\"ePK91l\":[\"संपादित करें\"],\"ePS9As\":[\"RADIUS सेटिंग्स\"],\"eQkgKV\":[\"इंस्टॉल किया गया\"],\"eRV9Z3\":[\"कोई टाइमआउट निर्दिष्ट नहीं\"],\"eRlz2Q\":[\"गंतव्य SMS नंबर\"],\"eSXF_i\":[\"एप्लिकेशन हटाने में विफल।\"],\"eTsJYJ\":[\"विवरण\"],\"eVJ2lo\":[\"Float\"],\"eXOp7I\":[\"आपके पास इंस्टेंस हटाने की अनुमति नहीं है: \",[\"itemsUnableToremove\"]],\"eXWuGz\":[\"हाल के टेम्पलेट सूची टैब\"],\"eYJ4TK\":[\"निर्मित इन्वेंटरी नहीं मिली।\"],\"eeke40\":[\"Automation Analytics\"],\"ekUnNJ\":[\"टैग चुनें\"],\"el9nUc\":[\"शेड्यूल निष्क्रिय है\"],\"emqNXf\":[\"प्लेबुक जांच\"],\"eqiT7d\":[\"वह भूमिका सेट करता है जो यह इंस्टेंस मेश टोपोलॉजी के भीतर निभाएगा। डिफ़ॉल्ट \\\"execution\\\" है।\"],\"espHeZ\":[\"इंस्टेंस समूह फ़ॉलबैक रोकें: यदि सक्षम है, तो इन्वेंटरी संबद्ध जॉब टेम्पलेट चलाने के लिए पसंदीदा इंस्टेंस समूहों की सूची में किसी भी संगठन इंस्टेंस समूह को जोड़ने से रोकेगी।\"],\"etQEqZ\":[\"इस लिंक को हटाने से ब्रांच का शेष भाग अनाथ हो जाएगा और लॉन्च पर तुरंत निष्पादित हो जाएगा।\"],\"ewSXyG\":[[\"pluralizedItemName\"],\" सॉफ़्ट डिलीट करें?\"],\"f-fQK9\":[\"Grafana API कुंजी\"],\"f2o-xB\":[\"रद्दीकरण की पुष्टि करें\"],\"f6Hub0\":[\"क्रमबद्ध करें\"],\"f9yJNM\":[\"बराबर\"],\"fCZSgU\":[\"सभी इंस्टेंस समूह देखें\"],\"fDzxi_\":[\"सहेजे बिना बाहर निकलें\"],\"fE2kOY\":[\"तिथि ऑपरेटर चयन\"],\"fGEOCn\":[\"जॉब स्थिति\"],\"fGLpQj\":[\"सोर्स कंट्रोल ब्रांच/टैग/कमिट\"],\"fGQ9Ug\":[\"उन नोड्स तक पहुँचने के लिए क्रेडेंशियल चुनें जिनके विरुद्ध यह जॉब चलाया जाएगा। आप प्रत्येक प्रकार का केवल एक क्रेडेंशियल चुन सकते हैं। मशीन क्रेडेंशियल (SSH) के लिए, क्रेडेंशियल चुने बिना “लॉन्च पर पूछें” को चेक करने पर आपको रनटाइम पर एक मशीन क्रेडेंशियल चुनना होगा। यदि आप क्रेडेंशियल चुनते हैं और “लॉन्च पर पूछें” को चेक करते हैं, तो चयनित क्रेडेंशियल डिफ़ॉल्ट बन जाते हैं जिन्हें रनटाइम पर अपडेट किया जा सकता है।\"],\"fJ9xam\":[\"इंस्टेंस सक्षम करें\"],\"fKew5B\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"जॉब रद्द करें\"],\"other\":[\"जॉब्स रद्द करें\"]}]],\"fL7WXr\":[\"एप्लिकेशन\"],\"fMUEsk\":[\"दिन \",[\"0\"]],\"fMulwN\":[\"प्रोजेक्ट रिवीज़न रीफ़्रेश करें\"],\"fOAyP5\":[\"खोज टेक्स्ट इनपुट\"],\"fODqV4\":[\"वह मान नहीं मिला। कृपया एक मान्य मान दर्ज करें या चुनें।\"],\"fQCM-p\":[\"संगठन विवरण देखें\"],\"fQGOXc\":[\"त्रुटि!\"],\"fR8DDt\":[\"सभी नोड्स हटाने की पुष्टि करें\"],\"fVjyJ4\":[\"अलग करने की पुष्टि करें\"],\"f_Xpp2\":[\"यह क्रिया निम्न को अलग कर देगी:\"],\"fcTDCh\":[\"नीचे अपने Red Hat या Red Hat Satellite क्रेडेंशियल्स\\n प्रदान करें और आप अपनी उपलब्ध सदस्यताओं की सूची में से चुन सकते हैं।\\n आपके द्वारा उपयोग किए गए क्रेडेंशियल्स नवीनीकरण या विस्तारित सदस्यताएं\\n प्राप्त करने में भविष्य के उपयोग के लिए संग्रहीत किए जाएंगे।\"],\"ff_JYN\":[\"नेस्टेड समूह नाम पर फ़िल्टर करें\"],\"fgrmWn\":[\"लॉन्च पर डिफ़ मोड के लिए संकेत दें।\"],\"fhFmMp\":[\"क्लाइंट पहचानकर्ता\"],\"fjX9i5\":[\"स्मार्ट इन्वेंटरी नहीं मिली।\"],\"fk1WEw\":[\"एन्क्रिप्टेड\"],\"fld-O4\":[\"सभी जॉब्स\"],\"fnbZWe\":[\"वैकल्पिक रूप से वेबहुक सेवा को स्थिति अपडेट वापस भेजने के लिए उपयोग किए जाने वाले क्रेडेंशियल का चयन करें।\"],\"foItBN\":[\"सप्ताहांत दिन\"],\"fp4RS1\":[\"सामग्री-लोडिंग-प्रगति-पर\"],\"fpMgHS\":[\"सोम\"],\"fqSfXY\":[\"बदलें\"],\"fqmP_m\":[\"होस्ट अगम्य\"],\"fthJP1\":[\"वेबहुक सेवाएँ इस URL पर POST अनुरोध करके इस वर्कफ़्लो जॉब टेम्पलेट के साथ जॉब लॉन्च कर सकती हैं।\"],\"fwX7gC\":[\"VMware vCenter\"],\"g4o5Lr\":[\"विस्तृत\"],\"g6ekO4\":[\"होस्ट टॉगल करने में विफल।\"],\"g7CZ-8\":[\"GitHub Enterprise Organizations से साइन इन करें\"],\"g9d3sF\":[\"प्रारंभ संदेश मुख्य भाग\"],\"gALXcv\":[\"इस नोड को हटाएं\"],\"gBnBJa\":[\"स्रोत वर्कफ़्लो जॉब\"],\"gDx5MG\":[\"लिंक संपादित करें\"],\"gIGcbR\":[\"इस समूह पर एक साथ चलाने के लिए जॉब्स की अधिकतम संख्या। शून्य का अर्थ है कोई सीमा लागू नहीं की जाएगी।\"],\"gJccsJ\":[\"वर्कफ़्लो अनुमोदित संदेश\"],\"gK06zh\":[\"जॉब टेम्पलेट जोड़ें\"],\"gM3pS9\":[\"निष्पादन वातावरण\"],\"gN3aF4\":[\"LDAP5\"],\"gSVH9P\":[\"सभी स्रोत सिंक करें\"],\"gUaMtt\":[\"टाइमआउट पर\"],\"gVYePj\":[\"नई टीम बनाएं\"],\"gWlcwd\":[\"अंतिम जॉब स्थिति\"],\"gYWK-5\":[\"उपयोगकर्ता इंटरफ़ेस सेटिंग्स देखें\"],\"gZXc5U\":[\"वर्कफ़्लो जारी रहने से पहले अनुमोदन करने वाले अलग-अलग उपयोगकर्ताओं की संख्या। एकल अस्वीकृति हमेशा नोड को अस्वीकार कर देती है।\"],\"gZaMqy\":[\"GitHub Teams से साइन इन करें\"],\"gZkstf\":[\"यदि सक्षम है, तो यह एकत्रित तथ्यों को संग्रहीत करेगा ताकि उन्हें होस्ट स्तर पर देखा जा सके। तथ्य बने रहते हैं और रनटाइम पर फ़ैक्ट कैश में इंजेक्ट किए जाते हैं।\"],\"gcFnpl\":[\"जॉब स्थिति\"],\"geTfDb\":[\"जॉब विवरण देखें\"],\"ged_ZE\":[\"संगठन\"],\"gezukD\":[\"रद्द करने के लिए एक जॉब चुनें\"],\"gfyddN\":[\"एक .zip फ़ाइल अपलोड करें\"],\"gh06VD\":[\"आउटपुट\"],\"ghJsq8\":[\"पहला स्क्रॉल करें\"],\"gmB6oO\":[\"शेड्यूल\"],\"gmBQqV\":[\"प्रोजेक्ट अपडेट\"],\"gnveFZ\":[\"मानक त्रुटि टैब\"],\"goVc-x\":[\"क्रेडेंशियल प्लगइन कॉन्फ़िगरेशन संपादित करें\"],\"go_DGX\":[\"टीम भूमिकाएं जोड़ें\"],\"gpKdxJ\":[\"हटाने के लिए एक प्रश्न चुनें\"],\"gpmbqk\":[\"वेरिएबल्स\"],\"gpnvle\":[\"हटाने में त्रुटि\"],\"gsj32g\":[\"प्रोजेक्ट सिंक रद्द करें\"],\"gtB4z-\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" घंटा\"],\"other\":[\"#\",\" घंटे\"]}]],\"gwKtbI\":[\"दस्तावेज़ीकरण में और\"],\"h25sKn\":[\"सदस्यता प्रबंधन\"],\"h51QFW\":[\"YAML\"],\"h8DugX\":[\"लेबल\"],\"hAjDQy\":[\"स्थिति चुनें\"],\"hBHRCF\":[\"नए इंस्टेंस ऑनलाइन आने पर इस समूह को स्वचालित रूप से\\n असाइन किए जाने वाले इंस्टेंसों की न्यूनतम संख्या।\"],\"hEBjSg\":[\"Red Hat Satellite 6\"],\"hEnNCI\":[\"इस कुंजी का उपयोग करके एक और खोज सक्षम करने के लिए ansible फ़ैक्ट्स से संबंधित वर्तमान खोज हटाएं।\"],\"hG89Ed\":[\"इमेज\"],\"hHKoQD\":[\"पीयर पते चुनें\"],\"hLDu5N\":[\"एप्लिकेशन संपादित करें\"],\"hNudM0\":[\"इस फ़ील्ड के लिए एक मान सेट करें\"],\"hPa_zN\":[\"संगठन (नाम)\"],\"hQ0dMQ\":[\"नया होस्ट जोड़ें\"],\"hQRttt\":[\"सबमिट करें\"],\"hVPa4O\":[\"एक विकल्प चुनें\"],\"hX8KyU\":[\"यह जॉब विफल हो गई और इसका कोई आउटपुट नहीं है।\"],\"hXDKWN\":[\"आवृत्ति विवरण\"],\"hXzOVo\":[\"अगला\"],\"hYH0cE\":[\"क्या आप वाकई इस जॉब को रद्द करने का अनुरोध सबमिट करना चाहते हैं?\"],\"hYgDIe\":[\"बनाएं\"],\"hZ6znB\":[\"पोर्ट\"],\"hZke6f\":[\"क्या आप वाकई स्थानीय प्रमाणीकरण अक्षम करना चाहते हैं? ऐसा करने से उपयोगकर्ताओं की लॉग इन करने की क्षमता और सिस्टम प्रशासक की इस परिवर्तन को उलटने की क्षमता प्रभावित हो सकती है।\"],\"hc_ufD\":[\"जॉब टैग\"],\"hdyeZ0\":[\"जॉब हटाएं\"],\"he3ygx\":[\"कॉपी करें\"],\"heqHpI\":[\"प्रोजेक्ट बेस पथ\"],\"hg6l4j\":[\"मार्च\"],\"hgJ0FN\":[\"होस्ट फ़िल्टर परिभाषित करने के लिए एक खोज करें\"],\"hgr8eo\":[\"आइटम\"],\"hgvbYY\":[\"सितंबर\"],\"hhzh14\":[\"हम इस खाते से संबद्ध लाइसेंस ढूंढने में असमर्थ रहे।\"],\"hi1n6B\":[[\"brandName\"],\" के भीतर जॉब्स से संबंधित सेटिंग्स अपडेट करें\"],\"hiDMCa\":[\"प्रोविज़निंग\"],\"hjsbgA\":[\"अतिरिक्त वेरिएबल्स\"],\"hjwN_s\":[\"संसाधन नाम\"],\"hlbQEq\":[\"सामग्री हस्ताक्षर सत्यापन क्रेडेंशियल\"],\"hmEecN\":[\"प्रबंधन जॉब\"],\"hmjNLv\":[\"पसंदीदा थीम\"],\"hty0d5\":[\"सोमवार\"],\"hvs-Js\":[\"एप्लिकेशन जानकारी\"],\"i0VMLn\":[\"वर्कफ़्लो अस्वीकृत संदेश\"],\"i2izXk\":[\"शेड्यूल में rrule अनुपस्थित है\"],\"i4_LY_\":[\"लिखें\"],\"i9sC0B\":[\"टीम अनुमतियां जोड़ें\"],\"iASwqf\":[\"This action will cancel the following job:\"],\"iCFhEl\":[\"स्रोत फ़ोन नंबर\"],\"iDNBZe\":[\"सूचनाएं\"],\"iDWfOR\":[\"एक या अधिक वर्कफ़्लो अनुमोदन अनुमोदित करने में विफल।\"],\"iDjyID\":[\"क्रेडेंशियल विवरण देखें\"],\"iE1s1P\":[\"वर्कफ़्लो लॉन्च करें\"],\"iEUzMn\":[\"सिस्टम\"],\"iH8pgl\":[\"वापस\"],\"iI4bLJ\":[\"अंतिम लॉगिन\"],\"iIVceM\":[\"त्रुटि कॉपी करें\"],\"iJWOeZ\":[\"कोई JSON उपलब्ध नहीं\"],\"iJiCFw\":[\"समूह विवरण\"],\"iLO3nG\":[\"प्ले संख्या\"],\"iMaC2H\":[\"इंस्टेंस समूह\"],\"iPp22p\":[\"यह शेड्यूल जटिल नियमों का उपयोग करता है जो UI में\\n समर्थित नहीं हैं। कृपया इस शेड्यूल को प्रबंधित करने के लिए API का उपयोग करें।\"],\"iQdYL_\":[\"स्मार्ट इन्वेंटरी जोड़ें\"],\"iRWxmA\":[\"SSL सत्यापन अक्षम करें\"],\"iTylMl\":[\"टेम्पलेट\"],\"iWKCzl\":[\"प्रोजेक्ट आधार पथ में पाई गई निर्देशिकाओं की सूची में से चुनें। आधार पथ और प्लेबुक निर्देशिका मिलकर प्लेबुक का पता लगाने के लिए उपयोग किया जाने वाला पूर्ण पथ प्रदान करते हैं।\"],\"iXmHtI\":[\"जॉब प्रकार चुनें\"],\"iZBwau\":[\"इस चरण में त्रुटियां हैं\"],\"i_CDGy\":[\"ब्रांच ओवरराइड की अनुमति दें\"],\"i_Kv21\":[\"नया स्रोत बनाएं\"],\"ifckL-\":[\"पंक्ति चयन\"],\"ifdViT\":[\"इन्वेंटरी विवरण देखें\"],\"ig0q8s\":[\"यह इन्वेंटरी इस वर्कफ़्लो (\",[\"0\"],\") के भीतर उन सभी वर्कफ़्लो नोड्स पर लागू होती है जो इन्वेंटरी के लिए संकेत देते हैं।\"],\"inP0J5\":[\"सदस्यता विवरण\"],\"isRobC\":[\"नया\"],\"itlxml\":[\"प्रबंधन जॉब\"],\"ittbfT\":[\"ansible_facts द्वारा खोज के लिए विशेष सिंटैक्स की आवश्यकता होती है। देखें\"],\"itu2NQ\":[\"लिंक स्थिति प्रकार\"],\"j1a5f1\":[\"होस्ट संपादित करें\"],\"j6gqC6\":[\"जॉब रन में उपयोग करने के लिए ब्रांच। रिक्त होने पर प्रोजेक्ट डिफ़ॉल्ट का उपयोग किया जाता है। केवल तभी अनुमति है जब प्रोजेक्ट का allow_override फ़ील्ड true पर सेट हो।\"],\"j7zAEo\":[\"वर्कफ़्लो स्थितियां\"],\"j8QfHv\":[\"होस्ट संपादित करें\"],\"jAxdt7\":[\"हटाना रद्द करें\"],\"jBGh4u\":[\"नेस्टेड समूह इन्वेंटरी परिभाषा:\"],\"jCVu9g\":[\"Cancel selected job\"],\"jEJtMA\":[\"लंबित वर्कफ़्लो अनुमोदन\"],\"jEw0Mr\":[\"कृपया एक मान्य URL दर्ज करें\"],\"jFaaUJ\":[\"कैनोनिकल\"],\"jGUu_G\":[\"आवश्यक अनुमोदन\"],\"jIaeJK\":[\"सर्वेक्षण\"],\"jJdwCB\":[\"वापस लौटाएं\"],\"jKibyt\":[\"ज़ूम रीसेट करें\"],\"jMyq_x\":[\"Workflow Job 1/\",[\"0\"]],\"jaUa4e\":[\"इस डेटा का उपयोग Tower सॉफ़्टवेयर के भविष्य के\\n रिलीज़ को बेहतर बनाने और ग्राहक अनुभव और सफलता को\\n सुव्यवस्थित करने में मदद के लिए किया जाता है।\"],\"jc86YO\":[\"लॉन्च पर सीमा के लिए संकेत दें।\"],\"ji-8F7\":[\"यह क्रेडेंशियल वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"jiE6Vn\":[\"संगठन\"],\"jifz9m\":[\"कोई नहीं (एक बार चलाएं)\"],\"jkQOCm\":[\"अपवाद जोड़ें\"],\"jljuYN\":[\"वह सेवा जिससे वेबहुक अनुरोध स्वीकार किए जाएंगे।\"],\"jluR-N\":[\"चेतावनी: \",[\"selectedValue\"],\" \",[\"0\"],\" का एक लिंक है और उसी रूप में सहेजा जाएगा।\"],\"joAQQS\":[\"The inventories will be in a pending status until the final delete is processed.\"],\"jqVo_k\":[\"यहां।\"],\"jqzUyM\":[\"अनुपलब्ध\"],\"jrkyDn\":[\"प्ले प्रारंभ हुआ\"],\"jrsFB3\":[\"आउटपुट टैब\"],\"jsz-PY\":[\"अज्ञात समाप्ति तिथि\"],\"jwmkq1\":[\"मशीन क्रेडेंशियल\"],\"jzD-D6\":[\"स्किप टैग तब उपयोगी होते हैं जब आपके पास एक बड़ी प्लेबुक हो और आप किसी play या कार्य के विशिष्ट भागों को छोड़ना चाहते हों। कई टैग अलग करने के लिए अल्पविराम का उपयोग करें। टैग के उपयोग के विवरण के लिए दस्तावेज़ीकरण देखें।\"],\"k020kO\":[\"गतिविधि स्ट्रीम\"],\"k2dzu3\":[\"UTC पर समाप्त होता है\"],\"k30JvV\":[\"चयनित श्रेणी\"],\"k5nHqi\":[\"इस जॉब टेम्पलेट को लॉन्च करते समय उपयोग किया जाने वाला निष्पादन वातावरण। हल किए गए निष्पादन वातावरण को इस जॉब टेम्पलेट को स्पष्ट रूप से एक अलग वातावरण असाइन करके ओवरराइड किया जा सकता है।\"],\"k6OGfu\":[\"Select the Ansible collection providing the inventory plugin used to sync from vCenter. The community.vmware collection is deprecated in favor of the newer vmware.vmware collection. The selection is saved as the \\\"plugin\\\" key in the source variables.\"],\"kALwhk\":[\"seconds\"],\"kDWprA\":[\"इन तर्कों का उपयोग निर्दिष्ट मॉड्यूल के साथ किया जाता है।\"],\"kEhyki\":[\"फ़ील्ड मान से समाप्त होता है।\"],\"kLja4m\":[\"द्वारा आरंभ किया गया\"],\"kLk5bG\":[\"प्रारंभ संदेश\"],\"kNUkGV\":[\"लुकअप प्रकार\"],\"kNfXib\":[\"मॉड्यूल नाम\"],\"kODvZJ\":[\"पहला नाम\"],\"kOVkPY\":[\"इंस्टेंस टॉगल करें\"],\"kP-3Hw\":[\"इन्वेंटरी पर वापस\"],\"kQerRU\":[\"इस फ़ील्ड में रिक्त स्थान नहीं होने चाहिए\"],\"kX-GZH\":[\"जॉब पुनः लॉन्च करें\"],\"kXzl6Z\":[\"स्रोत वेरिएबल्स\"],\"kYDvK4\":[\"फ़ाइल सहित\"],\"kah1PX\":[\"YAML उदाहरण यहां देखें\"],\"kaux7o\":[\"रिमोट इन्वेंटरी स्रोत से स्थानीय समूहों और होस्ट्स को अधिलेखित करें\"],\"kgtWJ0\":[\"इस जॉब टेम्पलेट को चलाने के लिए इंस्टेंस समूह चुनें।\"],\"kiMHN-\":[\"सिस्टम ऑडिटर\"],\"kjrq_8\":[\"अधिक जानकारी\"],\"kkDQ8m\":[\"गुरुवार\"],\"kkc8HD\":[\"अपने \",[\"brandName\"],\" एप्लिकेशन के लिए सरलीकृत लॉगिन सक्षम करें\"],\"kpRn7y\":[\"प्रश्न हटाएं\"],\"kpnWnY\":[\"प्रत्येक प्रोजेक्ट अपडेट के बाद जहां SCM रिवीज़न बदलता है, जॉब कार्य निष्पादित करने से पहले चयनित स्रोत से इन्वेंटरी रीफ़्रेश करें। यह स्थिर सामग्री के लिए है, जैसे Ansible इन्वेंटरी .ini फ़ाइल प्रारूप।\"],\"ks-HYT\":[\"उपयोगकर्ता अनुमतियां जोड़ें\"],\"ks71ra\":[\"अपवाद\"],\"kt8V8M\":[\"वर्कफ़्लो के लिए एक ब्रांच चुनें।\"],\"ktPOqw\":[\"देखें\"],\"kuIbuV\":[\"हेल्थ चेक केवल निष्पादन नोड्स पर चलाए जा सकते हैं।\"],\"ku__5b\":[\"दूसरा\"],\"kyAi7k\":[\"इंस्टेंस\"],\"kyHUFI\":[\"वॉल्ट पासवर्ड | \",[\"credId\"]],\"kyfr2I\":[\"यदि चेक किया गया है, तो कोई भी होस्ट और समूह जो पहले बाहरी स्रोत पर मौजूद थे लेकिन अब हटा दिए गए हैं, इन्वेंटरी से हटा दिए जाएंगे। जो होस्ट और समूह इन्वेंटरी स्रोत द्वारा प्रबंधित नहीं थे, उन्हें अगले मैन्युअल रूप से बनाए गए समूह में प्रोत्साहित किया जाएगा या यदि उन्हें प्रोत्साहित करने के लिए कोई मैन्युअल रूप से बनाया गया समूह नहीं है, तो उन्हें इन्वेंटरी के लिए \\\"all\\\" डिफ़ॉल्ट समूह में छोड़ दिया जाएगा।\"],\"kz7G1W\":[\"क्या आप वाकई \",[\"1\"],\" से \",[\"0\"],\" पहुंच हटाना चाहते हैं? ऐसा करने से टीम के सभी सदस्य प्रभावित होते हैं।\"],\"l4MzBY\":[[\"update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" सेकंड\"],\"other\":[\"#\",\" सेकंड\"]}]],\"l4k9lc\":[\"पहला नोड\"],\"l5XUoS\":[\"वेबहुक क्रेडेंशियल\"],\"l75CjT\":[\"हां\"],\"l9ZmWD\":[[\"scm_update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" सेकंड\"],\"other\":[\"#\",\" सेकंड\"]}]],\"lCF0wC\":[\"रीफ़्रेश करें\"],\"lJFsGr\":[\"नया इंस्टेंस समूह बनाएं\"],\"lKxoCA\":[\"जॉब इवेंट विस्तृत करें\"],\"lM9cbX\":[\"ध्यान दें कि अलग करने के बाद भी आप सूची में समूह देख सकते हैं यदि होस्ट उस समूह के चाइल्ड का भी सदस्य है। यह सूची उन सभी समूहों को दिखाती है जिनसे होस्ट प्रत्यक्ष और अप्रत्यक्ष रूप से संबद्ध है।\"],\"lURfHJ\":[\"अनुभाग संक्षिप्त करें\"],\"lWkKSO\":[\"मिनट\"],\"lWmv3p\":[\"इन्वेंटरी स्रोत\"],\"lYDyXS\":[\"स्मार्ट इन्वेंटरी\"],\"l_jRvf\":[\"प्लेबुक पूर्ण\"],\"lfoFSg\":[\"होस्ट हटाएं\"],\"lgm7y2\":[\"संपादित करें\"],\"lgphOX\":[\"अपेक्षित मान\"],\"lhgU4l\":[\"टेम्पलेट नहीं मिला।\"],\"lhkaAC\":[\"परीक्षण\"],\"ljGeYw\":[\"सामान्य उपयोगकर्ता\"],\"lk5WJ7\":[\"host-name-\",[\"0\"]],\"lkgIYt\":[\"Pagerduty\"],\"lo-rJO\":[\"नीचे पैन करें\"],\"ltvmAF\":[\"एप्लिकेशन नहीं मिला।\"],\"lu2qW5\":[\"कोई भी\"],\"lucaxq\":[\"लॉगिंग एग्रीगेटर होस्ट और लॉगिंग एग्रीगेटर प्रकार प्रदान किए बिना लॉग एग्रीगेटर सक्षम नहीं किया जा सकता।\"],\"luxcrf\":[[\"label\"],\" के लिए अधिक जानकारी\"],\"lyjq5X\":[\"Slack\"],\"m-eV2_\":[\"कंटेनर समूह नहीं मिला।\"],\"m16xKo\":[\"जोड़ें\"],\"m1tKEz\":[\"सिस्टम प्रशासकों की सभी संसाधनों तक अप्रतिबंधित पहुंच होती है।\"],\"m2ErDa\":[\"विफलता\"],\"m3k6kn\":[\"निर्मित इन्वेंटरी स्रोत सिंक रद्द करने में विफल\"],\"m5MOUX\":[\"होस्ट्स पर वापस\"],\"mGJIOu\":[\"यह निर्मित इन्वेंटरी इनपुट\\n दोनों श्रेणियों के लिए एक समूह बनाता है और केवल उन होस्ट्स को\\n लौटाने के लिए सीमा (होस्ट पैटर्न) का उपयोग करता है जो\\n उन दोनों समूहों के प्रतिच्छेदन में हैं।\"],\"mNBZ1R\":[\"नोट: यह फ़ील्ड मानता है कि रिमोट का नाम “origin” है।\"],\"mOFgdC\":[\"अधिकतम\"],\"mPiYpP\":[\"नोड स्थिति प्रकार\"],\"mSv_7k\":[\"पिछले तीन वर्ष\"],\"mXRKES\":[\"LDAP4\"],\"mXfNlE\":[\"इस शेड्यूल में आवश्यक सर्वेक्षण मान अनुपस्थित हैं\"],\"mYGY3B\":[\"तिथि\"],\"mZiQNk\":[\"विशेषाधिकार वृद्धि: यदि सक्षम है, तो इस playbook को व्यवस्थापक के रूप में चलाएँ।\"],\"m_tELA\":[\"हटाना रद्द करें\"],\"ma7cO9\":[\"समूह \",[\"0\"],\" हटाने में विफल।\"],\"mahPLs\":[\"विशेषाधिकार वृद्धि पासवर्ड\"],\"mcGG2z\":[[\"minutes\"],\" मिनट \",[\"seconds\"],\" सेकंड\"],\"mdNruY\":[\"API टोकन\"],\"mgJ1oe\":[\"हटाने की पुष्टि करें\"],\"mgjN5u\":[\"इंस्टेंस को इंस्टेंस समूह से अलग करें?\"],\"mhg7Av\":[\"एड हॉक कमांड चलाएं\"],\"mi9ffh\":[\"होस्ट विवरण\"],\"mk4anB\":[\"ब्राउज़र डिफ़ॉल्ट\"],\"mlDUq3\":[\"द्वारा संशोधित (उपयोगकर्ता नाम)\"],\"mnm1rs\":[\"GitHub डिफ़ॉल्ट\"],\"moZ0VP\":[\"सिंक स्थिति\"],\"momgZ_\":[\"वर्कफ़्लो जॉब टेम्पलेट का नाम।\"],\"mqAOoN\":[\"एक प्लेबुक निर्देशिका चुनें\"],\"n-37ya\":[\"स्थानीय प्राधिकरण अक्षम करने की पुष्टि करें\"],\"n-LISx\":[\"वर्कफ़्लो सहेजने में त्रुटि हुई।\"],\"n-ZioH\":[\"अपडेट किया गया प्रोजेक्ट प्राप्त करने में त्रुटि\"],\"n-qmM7\":[\"निम्न फ़ील्ड्स को स्वतः भरने के लिए एक JSON प्रारूपित सेवा खाता कुंजी चुनें।\"],\"n12Go4\":[\"संबंधित समूह लोड करने में विफल।\"],\"n60kiJ\":[\"* यह फ़ील्ड निर्दिष्ट क्रेडेंशियल का उपयोग करके बाहरी सीक्रेट प्रबंधन सिस्टम से प्राप्त की जाएगी।\"],\"n6mYYY\":[\"वर्कफ़्लो टाइम आउट संदेश\"],\"n9Idrk\":[\"(पहले 10 तक सीमित)\"],\"n9lz4A\":[\"विफल जॉब्स\"],\"nBAIS_\":[\"इवेंट विवरण देखें\"],\"nC35Na\":[\"Are you sure you want delete the group below?\"],\"nCU-1E\":[\"एक प्रोविज़निंग\\n कॉलबैक URL बनाने में सक्षम करता है। URL का उपयोग करके एक होस्ट \",[\"brandName\"],\"\\n से संपर्क कर सकता है और इस जॉब टेम्पलेट का उपयोग करके एक\\n कॉन्फ़िगरेशन अपडेट का अनुरोध कर सकता है\"],\"nCY9IL\":[\"होस्ट छोड़ा गया\"],\"nDjIzD\":[\"प्रोजेक्ट विवरण देखें\"],\"nGbNEN\":[\"किसी प्रोजेक्ट को वर्तमान मानने के लिए सेकंड में समय। जॉब रन और कॉलबैक के दौरान, कार्य प्रणाली नवीनतम प्रोजेक्ट अपडेट के टाइमस्टैम्प का मूल्यांकन करेगी। यदि यह कैश टाइमआउट से पुराना है, तो इसे वर्तमान नहीं माना जाता है, और एक नया प्रोजेक्ट अपडेट किया जाएगा।\"],\"nI54lc\":[\"सिंक करने से पहले प्रोजेक्ट हटाएं\"],\"nJPBvA\":[\"फ़ाइल, निर्देशिका या स्क्रिप्ट\"],\"nJTOTZ\":[\"वह निष्पादन वातावरण जो इस संगठन के भीतर जॉब्स के लिए उपयोग किया जाएगा। इसका उपयोग फ़ॉलबैक के रूप में तब किया जाएगा जब प्रोजेक्ट, जॉब टेम्पलेट या वर्कफ़्लो स्तर पर स्पष्ट रूप से कोई निष्पादन वातावरण असाइन नहीं किया गया हो।\"],\"nLGsp4\":[\"इस वर्कफ़्लो जॉब टेम्पलेट के लिए एक सर्वेक्षण सक्षम करें।\"],\"nMiE53\":[\"सक्षम वेरिएबल\"],\"nOhz3x\":[\"लॉग आउट\"],\"nPH1Cr\":[\"ये निष्पादन वातावरण उन पर निर्भर अन्य संसाधनों द्वारा उपयोग में हो सकते हैं। क्या आप फिर भी उन्हें हटाना चाहते हैं?\"],\"nQOwDS\":[[\"0\",\"selectordinal\",{\"3\":[\"तीसरा \",[\"dayOfWeek\"]],\"4\":[\"चौथा \",[\"dayOfWeek\"]],\"5\":[\"पांचवां \",[\"dayOfWeek\"]],\"one\":[\"पहला \",[\"dayOfWeek\"]],\"two\":[\"दूसरा \",[\"dayOfWeek\"]]}]],\"nRXCOn\":[\"विफल होस्ट संख्या\"],\"nSTT11\":[\"इससे पुनः लॉन्च करें:\"],\"nTENWI\":[\"सदस्यता प्रबंधन पर लौटें।\"],\"nU16mp\":[\"कैश टाइमआउट\"],\"nZPX7r\":[\"चेतावनी: सहेजे न गए परिवर्तन\"],\"nZW6P0\":[\"स्थानीय समय क्षेत्र\"],\"nZYB4j\":[\"कोई स्थिति उपलब्ध नहीं\"],\"nZYxse\":[\"होस्ट को समूह से अलग करें?\"],\"n_qDNz\":[\"Switch to dark mode\"],\"naCW6Z\":[\"अप्रैल\"],\"ncxIQL\":[\"एक या अधिक इंस्टेंसों को अलग करने में विफल।\"],\"neiOWk\":[\"निर्मित इन्वेंटरी दस्तावेज़ीकरण यहां देखें\"],\"nfnm9D\":[\"संगठन नाम\"],\"ng00aZ\":[\"होस्ट फ़िल्टर\"],\"nhxAdQ\":[\"कीवर्ड\"],\"nlsWzF\":[\"कृपया सर्वेक्षण प्रश्न जोड़ें।\"],\"nnY7VU\":[\"Pagerduty सबडोमेन\"],\"noGZlf\":[\"कैश टाइमआउट (सेकंड)\"],\"npGo-z\":[[\"label\"],\" से साइन इन करें\"],\"nuh_Wq\":[\"वेबहुक URL\"],\"nvUq8j\":[\"1 (विस्तृत)\"],\"nzozOC\":[\"उपयोगकर्ता हटाएं\"],\"nzr1qE\":[\"फ़ाइल अपलोड अस्वीकृत। कृपया एक एकल .json फ़ाइल चुनें।\"],\"o-JPE2\":[\"कोई सर्वेक्षण प्रश्न नहीं मिला।\"],\"o0RwAq\":[\"GitHub Enterprise से साइन इन करें\"],\"o0x5-R\":[\"इस फ़ील्ड के लिए एक मान चुनें\"],\"o4NRE0\":[\"उन्नत खोज मान इनपुट\"],\"o5J6dR\":[\"उन शर्तों को निर्दिष्ट करें जिनके तहत यह नोड निष्पादित किया जाना चाहिए\"],\"o9R2tO\":[\"SSL कनेक्शन\"],\"oABS9f\":[\"इस फ़ील्ड के लिए एक मान प्रदान करें या लॉन्च पर संकेत विकल्प चुनें।\"],\"oB5EwG\":[\"बाहरी सीक्रेट प्रबंधन सिस्टम\"],\"oBmCtD\":[\"Are you sure you want delete the groups below?\"],\"oC5JSb\":[\"अपडेट किया गया प्रोजेक्ट डेटा प्राप्त करने में विफल।\"],\"oCKCYp\":[\"सूचना सफलतापूर्वक भेजी गई\"],\"oEijQ7\":[\"startswith का केस-असंवेदनशील संस्करण।\"],\"oFtmtl\":[\"Select the inventory containing the hosts\\n you want this job to manage.\"],\"oGKq12\":[\"2 समूह बनाएं, प्रतिच्छेदन तक सीमित करें\"],\"oH1Qle\":[\"इस वर्कफ़्लो जॉब टेम्पलेट के लिए वेबहुक URL।\"],\"oHOOxn\":[\"डिफ़ॉल्ट रूप से, हम सेवा उपयोग पर एनालिटिक्स डेटा एकत्र करते हैं और Red Hat को भेजते हैं। सेवा द्वारा एकत्र किए गए डेटा की दो श्रेणियां हैं। अधिक जानकारी के लिए, <0>यह Tower दस्तावेज़ पृष्ठ देखें। इस सुविधा को अक्षम करने के लिए निम्नलिखित बॉक्स अनचेक करें।\"],\"oII7vS\":[\"GitHub सेटिंग्स\"],\"oKMFX4\":[\"कभी अपडेट नहीं किया गया\"],\"oKbBFU\":[\"# source with sync failures.\"],\"oNOjE7\":[\"समाप्ति तिथि/समय\"],\"oNZQUQ\":[\"Kubernetes या OpenShift के साथ प्रमाणित करने के लिए क्रेडेंशियल\"],\"oQqtoP\":[\"प्रबंधन जॉब्स पर वापस\"],\"oRt7Uv\":[[\"interval\"],\" years\"],\"oTDA5P\":[[\"0\",\"plural\",{\"one\":[\"यह इंस्टेंस वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"other\":[\"इन इंस्टेंस को डीप्रोविजन करने से उन पर निर्भर अन्य संसाधन प्रभावित हो सकते हैं। क्या आप वाकई इन्हें हटाना चाहते हैं?\"]}]],\"oWvSIB\":[\"प्रेषक ईमेल\"],\"oX_mCH\":[\"प्रोजेक्ट सिंक त्रुटि\"],\"oZvDsd\":[[\"interval\"],\" hours\"],\"ocUvR-\":[\"असत्य\"],\"ofO19Q\":[\"GitHub Enterprise Teams से साइन इन करें\"],\"ofcQVG\":[\"सहेजे न गए परिवर्तन मोडल\"],\"olEUh2\":[\"सफल\"],\"opS--k\":[\"इंस्टेंस समूहों पर वापस\"],\"orh4t6\":[\"होस्ट ठीक है\"],\"osCeRO\":[\"Azure AD सेटिंग्स देखें\"],\"ot7qsv\":[\"सभी फ़िल्टर साफ़ करें\"],\"ovBPCi\":[\"डिफ़ॉल्ट\"],\"owBGkJ\":[\"अंत अपेक्षित मान से मेल नहीं खाता (\",[\"0\"],\")\"],\"owQ8JH\":[\"इंस्टेंस समूह जोड़ें\"],\"ozbhWy\":[\"हटाने में त्रुटि\"],\"p-nfFx\":[\"अपलोड करने के लिए यहां एक फ़ाइल खींचें या ब्राउज़ करें\"],\"p-ngUo\":[\"अनुसरण न करें\"],\"p-pp9U\":[\"string\"],\"p2LEhJ\":[\"व्यक्तिगत एक्सेस टोकन\"],\"p2_GCq\":[\"पासवर्ड की पुष्टि करें\"],\"p3PM8G\":[\"पहले नोड से पुनः लॉन्च करें\"],\"p6-JME\":[\"पहला सभी संदर्भ लाता है। दूसरा Github पुल अनुरोध संख्या 62 लाता है, इस उदाहरण में ब्रांच “pull/62/head” होनी चाहिए।\"],\"pAtylB\":[\"नहीं मिला\"],\"pCCQER\":[\"वैश्विक रूप से उपलब्ध\"],\"pH8j40\":[\"पहले हटाए गए सक्रिय होस्ट्स\"],\"pHyx6k\":[\"बहुविकल्पीय (एकल चयन)\"],\"pKQcta\":[\"पॉड विनिर्देश अनुकूलित करें\"],\"pOJNDA\":[\"कमांड\"],\"pOd3wA\":[\"अधिक उत्तर विकल्प जोड़ने के लिए 'Enter' दबाएं। प्रति पंक्ति एक\\nउत्तर विकल्प।\"],\"pOhwkU\":[\"यह क्रिया \",[\"0\"],\" से निम्न भूमिका को अलग कर देगी:\"],\"pRZ6hs\":[\"इस पर चलाएं\"],\"pSypIG\":[\"विवरण दिखाएं\"],\"pYENvg\":[\"प्राधिकरण अनुदान प्रकार\"],\"pZJ0-s\":[\"इस समूह पर एक साथ चल रहे सभी जॉब्स में अनुमत फ़ोर्क्स की अधिकतम संख्या। शून्य का अर्थ है कोई सीमा लागू नहीं की जाएगी।\"],\"pa1SrG\":[[\"interval\"],\" days\"],\"peCAyQ\":[\"RADIUS सेटिंग्स देखें\"],\"pfw0Wr\":[\"सभी\"],\"pguZh2\":[\"jinja2 एक्सप्रेशन से वेरिएबल्स बनाएं। यह उपयोगी हो सकता है\\n यदि आप जिन निर्मित समूहों को परिभाषित करते हैं उनमें अपेक्षित\\n होस्ट्स नहीं हैं। इसका उपयोग एक्सप्रेशन से hostvars जोड़ने के लिए किया जा सकता है ताकि\\n आप जान सकें कि उन एक्सप्रेशन के परिणामी मान क्या हैं।\"],\"phTgAm\":[\"Ansible फ़ैक्ट्स के लिए इन्वेंटरी का विनिर्देश देना\\n कठिन है, क्योंकि सिस्टम फ़ैक्ट्स भरने के लिए आपको\\n उस इन्वेंटरी के विरुद्ध एक प्लेबुक चलानी होगी जिसमें\\n `gather_facts: true` हो। वास्तविक\\n फ़ैक्ट्स सिस्टम-से-सिस्टम भिन्न होंगे।\"],\"pkY73W\":[\"Rocket.Chat\"],\"pn7Xy3\":[\"Django देखें\"],\"poMgBa\":[\"लॉन्च पर SCM ब्रांच के लिए संकेत दें।\"],\"ppcQy0\":[\"ज़ूम को 100% पर सेट करें और ग्राफ़ केंद्रित करें\"],\"prydaE\":[\"प्रोजेक्ट सिंक विफलताएं\"],\"pw2VDK\":[[\"month\"],\" का अंतिम \",[\"weekday\"]],\"q-Uk_P\":[\"एक या अधिक क्रेडेंशियल प्रकार हटाने में विफल।\"],\"q-hNag\":[\"कलेक्शन\"],\"q45OlW\":[\"क्षेत्र\"],\"q5tQBE\":[\"संबंधित खोज फ़ील्ड फ़ज़ी खोजों के लिए प्रकार सेट करना अक्षम\"],\"q67y3T\":[\"सूचना टेम्पलेट नहीं मिला।\"],\"qAlZNb\":[\"आप निम्न वर्कफ़्लो अनुमोदन पर कार्रवाई करने में असमर्थ हैं: \",[\"itemsUnableToDeny\"]],\"qCUUnr\":[\"कोई होस्ट शेष नहीं\"],\"qChjCy\":[\"पहला रन\"],\"qD-pvR\":[\"डैशबोर्ड की ID (वैकल्पिक)\"],\"qEMgTP\":[\"इन्वेंटरी स्रोत सिंक त्रुटि\"],\"qJK-de\":[\"OIDC से साइन इन करें\"],\"qS0GhO\":[\"निष्पादन वातावरण अनुपस्थित\"],\"qSSVmd\":[\"गंतव्य चैनल या उपयोगकर्ता\"],\"qSSg1L\":[\"एक उपलब्ध नोड से लिंक करें\"],\"qWD0iN\":[\"इस डेटा का उपयोग सॉफ़्टवेयर के भविष्य के\\n रिलीज़ को बेहतर बनाने और Automation Analytics\\n प्रदान करने के लिए किया जाता है।\"],\"qXRYa2\":[\"ब्रांच पर सबमॉड्यूल का नवीनतम कमिट ट्रैक करें\"],\"qYkrfg\":[\"प्रोविज़निंग कॉलबैक विवरण\"],\"qZ2MTC\":[\"ये वे मॉड्यूल हैं जिनके विरुद्ध \",[\"brandName\"],\" कमांड चलाने का समर्थन करता है।\"],\"qgjtIt\":[\"अभिसरण\"],\"qlhQw_\":[\"इन्वेंटरी सिंक\"],\"qliDbL\":[\"रिमोट संग्रह\"],\"qlwLcm\":[\"समस्या निवारण\"],\"qmBmJJ\":[\"यह एकमात्र बार है जब क्लाइंट सीक्रेट दिखाया जाएगा।\"],\"qmYgP7\":[\"अनुमोदित\"],\"qqeAJM\":[\"कभी नहीं\"],\"qtFFSS\":[\"लॉन्च पर रिवीज़न अपडेट करें\"],\"qtaMu8\":[\"इन्वेंटरी (नाम)\"],\"qvCD_i\":[\"उदाहरणों में शामिल हैं:\"],\"qwaCoN\":[\"सोर्स कंट्रोल अपडेट\"],\"qxZ5RX\":[\"होस्ट्स\"],\"qznBkw\":[\"वर्कफ़्लो लिंक मोडल\"],\"r6Aglb\":[\"JSON या YAML सिंटैक्स का उपयोग करके इंजेक्टर दर्ज करें। उदाहरण सिंटैक्स के लिए Ansible Controller दस्तावेज़ीकरण देखें।\"],\"r6y-jM\":[\"चेतावनी\"],\"r6zgGo\":[\"दिसंबर\"],\"r8ojWq\":[\"हटाने की पुष्टि करें\"],\"r8oq0Y\":[\"पिछले 24 घंटे\"],\"rBdPPP\":[[\"name\"],\" हटाने में विफल।\"],\"rE95l8\":[\"क्लाइंट प्रकार\"],\"rG3WVm\":[\"चुनें\"],\"rHK_Sg\":[\"कस्टम वर्चुअल वातावरण \",[\"virtualEnvironment\"],\" को एक निष्पादन वातावरण से बदला जाना चाहिए। निष्पादन वातावरण में माइग्रेट करने के बारे में अधिक जानकारी के लिए <0>दस्तावेज़ीकरण। देखें\"],\"rK7UBZ\":[\"सभी होस्ट्स पुनः लॉन्च करें\"],\"rKS_55\":[\"फ़ैक्ट संग्रहण: यदि सक्षम है, तो यह एकत्रित तथ्यों को संग्रहीत करेगा ताकि उन्हें होस्ट स्तर पर देखा जा सके। तथ्य बने रहते हैं और रनटाइम पर फ़ैक्ट कैश में इंजेक्ट किए जाते हैं।\"],\"rKTFNB\":[\"क्रेडेंशियल प्रकार हटाएं\"],\"rLznGJ\":[\"अनुमोदन बनाए जाने पर अपस्ट्रीम set_stats आर्टिफ़ैक्ट्स के साथ रेंडर किया गया एक Jinja2 टेम्पलेट। अनुमोदक को पिछले जॉब चरणों से प्रासंगिक संदर्भ दिखाने के लिए इसका उपयोग करें। उपलब्ध वेरिएबल्स मूल नोड्स के set_stats डेटा से आते हैं।\"],\"rMrKOB\":[\"प्रोजेक्ट सिंक करने में विफल।\"],\"rOZRCa\":[\"वर्कफ़्लो लिंक\"],\"rSYkIY\":[\"इस फ़ील्ड में एक संख्या होनी चाहिए\"],\"rXhu41\":[\"2 (डिबग)\"],\"rYHzDr\":[\"प्रति पृष्ठ आइटम\"],\"r_IfWZ\":[\"इन्वेंटरी संपादित करें\"],\"rdUucN\":[\"पूर्वावलोकन\"],\"rfYaVc\":[\"उत्तर वेरिएबल नाम\"],\"rfpIXM\":[\"लॉन्च पर इंस्टेंस समूहों के लिए संकेत दें।\"],\"rfx2oA\":[\"वर्कफ़्लो लंबित संदेश मुख्य भाग\"],\"riBcU5\":[\"IRC निक\"],\"rjVfy3\":[\"वर्कफ़्लो दस्तावेज़ीकरण\"],\"rjyWPb\":[\"जनवरी\"],\"rmb2GE\":[[\"0\"],\" द्वारा अस्वीकृत - \",[\"1\"]],\"rmt9Tu\":[\"कुल होस्ट्स\"],\"ruhGSG\":[\"इन्वेंटरी स्रोत सिंक रद्द करें\"],\"rvia3m\":[\"विविध प्रमाणीकरण\"],\"rw1pRJ\":[\"बंडल डाउनलोड करें\"],\"rwWNpy\":[\"इन्वेंटरी\"],\"s-MGs7\":[\"संसाधन\"],\"s2xYUy\":[\"रिमोट इन्वेंटरी स्रोत से स्थानीय वेरिएबल्स अधिलेखित करें\"],\"s3KtlK\":[\"चयनित अपवादों के कारण इस शेड्यूल की कोई घटना नहीं है।\"],\"s4Qnj2\":[\"निष्पादन वातावरण\"],\"s4fge-\":[\"पिछला माह\"],\"s5aIEB\":[\"वर्कफ़्लो जॉब टेम्पलेट हटाएं\"],\"s5mACA\":[\"इंस्टेंस विवरण\"],\"s5r5nt\":[[\"0\",\"plural\",{\"one\":[\"यह इंस्टेंस समूह वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"other\":[\"इन इंस्टेंस समूहों को हटाने से उन पर निर्भर अन्य संसाधन प्रभावित हो सकते हैं। क्या आप वाकई फिर भी हटाना चाहते हैं?\"]}]],\"s6F6Ks\":[\"इस जॉब के लिए कोई आउटपुट नहीं मिला।\"],\"s70SJY\":[\"लॉगिंग सेटिंग्स\"],\"s8hQty\":[\"सभी जॉब्स देखें।\"],\"s9EKbs\":[\"SSL सत्यापन अक्षम करें\"],\"sAz1tZ\":[\"अलग करने की पुष्टि करें\"],\"sBJ5MF\":[\"स्रोत\"],\"sCEb_0\":[\"सभी इन्वेंटरी होस्ट्स देखें।\"],\"sGodAp\":[\"पॉड स्पेक ओवरराइड\"],\"sMDRa_\":[\"समूहों पर वापस\"],\"sOMf4x\":[\"हाल के टेम्पलेट\"],\"sSFxX6\":[\"जॉब लॉन्च पर रिवीज़न अपडेट करें\"],\"sTkKoT\":[\"अस्वीकार करने के लिए एक पंक्ति चुनें\"],\"sUyFTB\":[\"डैशबोर्ड पर रीडायरेक्ट किया जा रहा है\"],\"sV3kNp\":[\"यह इंस्टेंस समूह वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"sVh4-e\":[\"इस लिंक को हटाएं\"],\"sW5OjU\":[\"आवश्यक\"],\"sZif4m\":[\"संबंधित समूह को अलग करें?\"],\"s_XkZs\":[\"प्रारंभ\"],\"s_r4Az\":[\"इस फ़ील्ड में एक पूर्णांक होना चाहिए\"],\"sesAIn\":[\"जॉब प्रारंभ होने, सफल होने या विफल होने पर भेजी गई सूचनाओं की सामग्री\\n बदलने के लिए कस्टम संदेशों का उपयोग करें। जॉब के बारे में जानकारी तक पहुंचने के लिए\\n कर्ली ब्रेसेस का उपयोग करें:\"],\"sgRZMG\":[\"हाइब्रिड नोड\"],\"siJgSI\":[\"उपयोगकर्ता नहीं मिला।\"],\"sjMCOP\":[\"अंतिम संशोधित\"],\"sjVfrA\":[\"कमांड\"],\"smFRaX\":[\"एक जॉब पहले ही लॉन्च की जा चुकी है\"],\"sqMsvU\":[[\"0\",\"plural\",{\"one\":[\"#\",\" स्रोत में समन्वयन विफलताएं।\"],\"other\":[\"#\",\" स्रोतों में समन्वयन विफलताएं।\"]}]],\"sr4LMa\":[\"इन्वेंटरी स्रोत\"],\"svR3aM\":[\"OpenStack\"],\"svy2x9\":[\"ऐसे परिणाम लौटाता है जो इस फ़िल्टर या किसी अन्य फ़िल्टर को संतुष्ट करते हैं।\"],\"sxkWRg\":[\"उन्नत\"],\"syupn5\":[\"ब्रांड इमेज\"],\"syyeb9\":[\"पहला\"],\"t-R8-P\":[\"निष्पादन\"],\"t2q1xO\":[\"शेड्यूल संपादित करें\"],\"t4v_7X\":[\"एक नोड प्रकार चुनें\"],\"t9QlBd\":[\"नवंबर\"],\"tRm9qR\":[\"टैग तब उपयोगी होते हैं जब आपके पास एक बड़ी प्लेबुक हो और आप किसी play या कार्य के किसी विशिष्ट भाग को चलाना चाहते हों। कई टैग अलग करने के लिए अल्पविराम का उपयोग करें। टैग के उपयोग के विवरण के लिए दस्तावेज़ीकरण देखें।\"],\"tVEot_\":[[\"0\",\"plural\",{\"one\":[\"यह टेम्पलेट वर्तमान में कुछ वर्कफ़्लो नोड्स द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"other\":[\"इन टेम्पलेट्स को हटाने से उन पर निर्भर कुछ वर्कफ़्लो नोड्स प्रभावित हो सकते हैं। क्या आप फिर भी हटाना चाहते हैं?\"]}]],\"tXkhj_\":[\"प्रारंभ\"],\"t_YqKh\":[\"हटाएं\"],\"tbSVlt\":[\"उपयोगकर्ता पहुंच हटाएं\"],\"tfDRzk\":[\"सहेजें\"],\"tfh2eq\":[\"इस नोड से नया लिंक बनाने के लिए क्लिक करें।\"],\"tgPwON\":[\"ऑपरेटर\"],\"tgSBSE\":[\"लिंक हटाएं\"],\"tgWuMB\":[\"संशोधित\"],\"thJljW\":[\"चेतावनी: \"],\"toJdZA\":[\"Reorder\"],\"tpCmSt\":[\"policy rules.\"],\"tqlcfo\":[\"डीप्रोविज़निंग\"],\"trjiIV\":[\"पीयर संबद्ध करने में विफल।\"],\"tst44n\":[\"इवेंट\"],\"twE5a9\":[\"क्रेडेंशियल हटाने में विफल।\"],\"txNbrI\":[\"सोर्स कंट्रोल ब्रांच\"],\"ty2DZX\":[\"यह संगठन वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"tzgOKK\":[\"इस पर पहले ही कार्रवाई की जा चुकी है\"],\"u-sh8m\":[\"/ (प्रोजेक्ट रूट)\"],\"u4ex5r\":[\"जुलाई\"],\"u4n8Fm\":[\"पीयर हटाने में विफल।\"],\"u4x6Jy\":[\"जॉब्स पर वापस\"],\"u5AJST\":[\"प्लेबुक निष्पादित करते समय उपयोग करने के लिए समानांतर या एक साथ चलने वाली प्रक्रियाओं की संख्या। कोई मान न देने पर ansible कॉन्फ़िगरेशन फ़ाइल से डिफ़ॉल्ट मान का उपयोग किया जाएगा। आप अधिक जानकारी पा सकते हैं\"],\"u7f6WK\":[\"सभी वर्कफ़्लो अनुमोदन देखें।\"],\"u84wS1\":[\"जॉब रद्द करने में त्रुटि\"],\"uAQUqI\":[\"स्थिति\"],\"uAhZbx\":[\"विफलताओं वाले इन्वेंटरी स्रोत\"],\"uCjD1h\":[\"आपका सत्र समाप्त हो गया है। जहां आपने छोड़ा था वहां से जारी रखने के लिए कृपया लॉग इन करें।\"],\"uImfEm\":[\"वर्कफ़्लो लंबित संदेश\"],\"uJz8NJ\":[\"जॉब चलने के दौरान खोज अक्षम है\"],\"uPRp5U\":[\"लुकअप रद्द करें\"],\"uTDtiS\":[\"पांचवां\"],\"uUehLT\":[\"प्रतीक्षा हो रही है\"],\"uVu1Yt\":[\"प्रकार सेट करें चयन\"],\"uYtvvN\":[\"निष्पादन वातावरण संपादित करने से पहले एक प्रोजेक्ट चुनें।\"],\"ucSTeu\":[\"द्वारा बनाया गया (उपयोगकर्ता नाम)\"],\"ucgZ0o\":[\"संगठन\"],\"ugZpot\":[\"बाहरी क्रेडेंशियल का परीक्षण करें\"],\"ulRNXw\":[\"Dragging cancelled. List is unchanged.\"],\"upC07l\":[\"Survey Disabled\"],\"uuPCEU\":[\"If you want the Inventory Source to update on launch , click on Update on Launch, and also go to \"],\"uyJsf6\":[\"के बारे में\"],\"uzTiFQ\":[\"शेड्यूल पर वापस\"],\"v-CZEv\":[\"लॉन्च पर संकेत\"],\"v-EbDj\":[\"समस्या निवारण सेटिंग्स\"],\"v-M-LP\":[\"टेम्पलेट लॉन्च करें\"],\"v0urVb\":[\"यदि आपके पास कोई सदस्यता नहीं है, तो आप ट्रायल सदस्यता प्राप्त करने के लिए\\n Red Hat पर जा सकते हैं।\"],\"v1kQyJ\":[\"वेबहुक\"],\"v2dMHj\":[\"होस्ट पैरामीटर का उपयोग करके पुनः लॉन्च करें\"],\"v2gmVS\":[\"यह क्रिया निम्न को सॉफ़्ट डिलीट कर देगी:\"],\"v45yUL\":[\"अलग करें\"],\"v7vAuj\":[\"कुल जॉब्स\"],\"vCS_TJ\":[\"इन्वेंटरी स्रोत \",[\"name\"],\" हटाने में विफल।\"],\"vEr6TL\":[\"इन तर्कों का उपयोग निर्दिष्ट मॉड्यूल के साथ किया जाता है। आप \",[\"0\"],\" के बारे में जानकारी क्लिक करके पा सकते हैं \"],\"vF82C6\":[\"मूल नोड के सफल स्थिति में परिणत होने पर निष्पादित करें।\"],\"vFKI2e\":[\"शेड्यूल नियम\"],\"vFVhzc\":[\"सोशल\"],\"vGVmd5\":[\"यह फ़ील्ड तब तक अनदेखा किया जाता है जब तक कि एक सक्षम वेरिएबल सेट न हो। यदि सक्षम वेरिएबल इस मान से मेल खाता है, तो आयात पर होस्ट सक्षम हो जाएगा।\"],\"vGjmyl\":[\"हटाया गया\"],\"vHAaZi\":[\"हर बार छोड़ें\"],\"vIb3RK\":[\"नया शेड्यूल बनाएं\"],\"vKRQJB\":[\"कस्टम Kubernetes या OpenShift पॉड विनिर्देश पास करने के लिए फ़ील्ड।\"],\"vLyv1R\":[\"छिपाएं\"],\"vPrMqH\":[\"रिवीज़न #\"],\"vQHUI6\":[\"यदि चेक किया गया है, तो चाइल्ड समूहों और होस्ट्स के सभी वेरिएबल्स हटा दिए जाएंगे और बाहरी स्रोत पर पाए गए वेरिएबल्स से बदल दिए जाएंगे।\"],\"vTL8gi\":[\"समाप्ति समय\"],\"vUOn9d\":[\"वापस\"],\"vYFWsi\":[\"टीमें चुनें\"],\"vYuE8q\":[\"जॉब के चलने का बीता हुआ समय\"],\"vZbIkJ\":[\"GitLab\"],\"vcH-SH\":[\"Bitbucket Data Center\"],\"ve_jRy\":[\"स्थिति पर\"],\"vgwVkd\":[\"UTC\"],\"vlHGDw\":[\"प्लेबुक को अतिरिक्त कमांड लाइन वेरिएबल पास करें। यह ansible-playbook के लिए -e या --extra-vars कमांड लाइन पैरामीटर है। YAML या JSON का उपयोग करके की/मान युग्म प्रदान करें। सिंटैक्स उदाहरण के लिए दस्तावेज़ीकरण देखें।\"],\"voRH7M\":[\"उदाहरण:\"],\"vq1XXv\":[\"लागू फ़िल्टर के साथ एक नई स्मार्ट इन्वेंटरी बनाएं\"],\"vq2WxD\":[\"मंगल\"],\"vq9gg6\":[\"आप निम्न वर्कफ़्लो अनुमोदन पर कार्रवाई करने में असमर्थ हैं: \",[\"itemsUnableToApprove\"]],\"vqAmQC\":[\"मॉड्यूल\"],\"vvY8pz\":[\"लॉन्च पर छोड़ें टैग के लिए संकेत दें।\"],\"vye-ip\":[\"लॉन्च पर टाइमआउट के लिए संकेत दें।\"],\"vzsN_5\":[[\"interval\"],\" day\"],\"w07pgp\":[\"लॉन्च पर वर्बोसिटी के लिए संकेत दें।\"],\"w0kTk8\":[\"विफल नोड से पुनः लॉन्च करें\"],\"w14eW4\":[\"सभी टोकन देखें।\"],\"w1RiT6\":[[\"0\",\"plural\",{\"one\":[\"यह इन्वेंटरी स्रोत वर्तमान में उस पर निर्भर अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?\"],\"other\":[\"इन इन्वेंटरी स्रोतों को हटाने से उन पर निर्भर अन्य संसाधन प्रभावित हो सकते हैं। क्या आप वाकई उन्हें फिर भी हटाना चाहते हैं?\"]}]],\"w2VTLB\":[\"इससे कम तुलना।\"],\"w3EE8S\":[\"स्वचालित होस्ट्स\"],\"w4j7js\":[\"टीम विवरण देखें\"],\"w6zx64\":[\"ब्राउज़र डिफ़ॉल्ट का उपयोग करें\"],\"wCnaTT\":[\"फ़ील्ड को नए मान से बदलें\"],\"wF-BAU\":[\"इन्वेंटरी जोड़ें\"],\"wFnb77\":[\"इन्वेंटरी ID\"],\"wKEfMu\":[\"इवेंट प्रोसेसिंग पूर्ण।\"],\"wO29qX\":[\"संगठन नहीं मिला।\"],\"wW08QA\":[\"बराबर नहीं\"],\"wX6sAX\":[\"पिछले दो वर्ष\"],\"wXAVe-\":[\"मॉड्यूल तर्क\"],\"wXB7k5\":[\"एक सूचना रंग निर्दिष्ट करें। स्वीकार्य रंग हेक्स\\n रंग कोड हैं (उदाहरण: #3af या #789abc)।\"],\"waFx9W\":[\"प्रबंधित\"],\"wdxz7K\":[\"स्रोत\"],\"wgNoIs\":[\"सभी चुनें\"],\"wkgHlv\":[\"एक नया नोड जोड़ें\"],\"wlQNTg\":[\"सदस्य\"],\"wnizTi\":[\"एक सदस्यता चुनें\"],\"wpT1VN\":[\"स्थिति\"],\"wpt6vB\":[\"LDAP2\"],\"wqXiR2\":[\"अतिरिक्त कमांड लाइन परिवर्तन पास करें। दो ansible कमांड लाइन पैरामीटर हैं: \"],\"wsggVq\":[\"जब चेक नहीं किया जाता है, तो बाहरी स्रोत पर न मिलने वाले स्थानीय चाइल्ड होस्ट्स और समूह इन्वेंटरी अपडेट प्रक्रिया द्वारा अछूते रहेंगे।\"],\"x-a4Mr\":[\"वेबहुक क्रेडेंशियल\"],\"x02hbg\":[\"प्रोविज़निंग कॉलबैक: प्रोविज़निंग कॉलबैक URL के निर्माण को सक्षम करता है। URL का उपयोग करके, एक होस्ट Ansible AWX से संपर्क कर सकता है और इस जॉब टेम्पलेट का उपयोग करके कॉन्फ़िगरेशन अपडेट का अनुरोध कर सकता है।\"],\"x4Xp3c\":[\"अपडेट किया गया\"],\"x5DnMs\":[\"अंतिम संशोधित\"],\"x6_dAC\":[\"फ़ेडरेटेड इन्वेंटरी\"],\"x6oT_o\":[\"उपलब्ध होस्ट्स\"],\"x7PDL5\":[\"लॉगिंग\"],\"x8uKc7\":[\"इंस्टेंस स्थिति\"],\"x9WS62\":[[\"0\"],\" रद्द करें\"],\"xAYSEs\":[\"प्रारंभ समय\"],\"xAqth4\":[\"Google OAuth 2.0 सेटिंग्स देखें\"],\"xC9EVu\":[\"रद्द किया गया नोड\"],\"xCJdfg\":[\"साफ़ करें\"],\"xDr_ct\":[\"समाप्ति\"],\"xESTou\":[\"जॉब हटाने में विफल।\"],\"xF5tnT\":[\"वॉल्ट पासवर्ड\"],\"xGQZwx\":[\"कंटेनर समूह जोड़ें\"],\"xGVfLh\":[\"जारी रखें\"],\"xHZS6u\":[\"सफल जॉब्स\"],\"xHokxV\":[[\"0\",\"plural\",{\"one\":[\"अपर्याप्त अनुमति या चल रही जॉब स्थिति के कारण चयनित जॉब हटाई नहीं जा सकती\"],\"other\":[\"अपर्याप्त अनुमतियों या चल रही जॉब स्थिति के कारण चयनित जॉब्स हटाई नहीं जा सकतीं\"]}]],\"xHt036\":[\"व्यक्तिगत एक्सेस टोकन\"],\"xKQRBr\":[\"अधिकतम लंबाई\"],\"xM01Pk\":[\"डिफ़ॉल्ट उत्तर\"],\"xONDaO\":[\"Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?\"],\"xOl1yT\":[\"नाम फ़ील्ड पर सटीक खोज।\"],\"xPO5w7\":[\"GitHub से साइन इन करें\"],\"xPpkbX\":[\"Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway\"],\"xPxMOJ\":[\"अमान्य समय प्रारूप\"],\"xQioPk\":[\"एकाधिक मूल होने पर इस नोड को चलाने के लिए पूर्व शर्तें। देखें\"],\"xSytdh\":[\"समाप्त:\"],\"xUhTCP\":[\"एक स्रोत चुनें\"],\"xVhQZV\":[\"शुक्र\"],\"xY9DEq\":[\"इन्वेंटरी में होस्ट्स को लक्षित करने के लिए उपयोग किया जाने वाला पैटर्न। फ़ील्ड को रिक्त छोड़ने, all, और * सभी इन्वेंटरी में सभी होस्ट्स को लक्षित करेंगे। आप Ansible के होस्ट पैटर्न के बारे में अधिक जानकारी पा सकते हैं\"],\"xY9s5E\":[\"टाइमआउट\"],\"x_Ej3K\":[\"उपयोगकर्ता के लिए प्रॉम्प्ट के रूप में आप जो उत्तर प्रकार या प्रारूप चाहते हैं उसे चुनें।\\n प्रत्येक विकल्प के बारे में अतिरिक्त जानकारी के लिए Ascender दस्तावेज़ देखें।\"],\"x_ugm_\":[\"कुल समूह\"],\"xa7N9Z\":[\"लॉगिन रीडायरेक्ट ओवरराइड URL संपादित करें\"],\"xcaG5l\":[\"वर्कफ़्लो संपादित करें\"],\"xd2LI3\":[[\"0\"],\" को समाप्त होता है\"],\"xdA_-p\":[\"टूल\"],\"xe5RvT\":[\"YAML टैब\"],\"xefC7k\":[\"IRC सर्वर पोर्ट\"],\"xeiujy\":[\"टेक्स्ट\"],\"xg771-\":[\"LDAP1\"],\"xhj1Rt\":[\"आपके द्वारा अनुरोधित पृष्ठ नहीं मिला।\"],\"xi4nE2\":[\"त्रुटि संदेश\"],\"xnSIXG\":[\"एक या अधिक होस्ट्स हटाने में विफल।\"],\"xoCdYY\":[\"जांचें कि दिए गए फ़ील्ड का मान प्रदान की गई सूची में मौजूद है या नहीं; आइटमों की अल्पविराम-पृथक सूची अपेक्षित है।\"],\"xoXoBo\":[\"हटाने में त्रुटि\"],\"xrG8k4\":[\"Google Compute Engine\"],\"xtRU96\":[\"GitHub Enterprise Organization\"],\"xuYTJb\":[\"जॉब टेम्पलेट हटाने में विफल।\"],\"xw06rt\":[\"सेटिंग फ़ैक्टरी डिफ़ॉल्ट से मेल खाती है।\"],\"xxTtJH\":[\"नियमित एक्सप्रेशन जहां केवल मेल खाते होस्ट नाम आयात किए जाएंगे। फ़िल्टर किसी भी इन्वेंटरी प्लगइन फ़िल्टर लागू होने के बाद पोस्ट-प्रोसेसिंग चरण के रूप में लागू किया जाता है।\"],\"y11WBZ\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"चयनित कार्य रद्द करें\"],\"other\":[\"चयनित कार्य रद्द करें\"]}]],\"y8ibKI\":[\"इंस्टेंस हटाएं\"],\"yCCaoF\":[\"इंस्टेंस अपडेट करने में विफल।\"],\"yDeNnS\":[\"नई निर्मित इन्वेंटरी बनाएं\"],\"yDifzB\":[\"चयन की पुष्टि करें\"],\"yGS9cI\":[\"स्वस्थ\"],\"yGUKlf\":[\"प्रबंधन जॉब्स\"],\"yGfW7Y\":[\"इस स्थान को बदलने के लिए \",[\"brandName\"],\" को तैनात करते समय PROJECTS_ROOT बदलें।\"],\"yMIahh\":[\"Red Hat Ansible Automation Platform में आपका स्वागत है!\\n अपनी सदस्यता सक्रिय करने के लिए कृपया नीचे दिए गए चरण पूरे करें।\"],\"yMYuDg\":[\"Automation controller संस्करण\"],\"yMfU4O\":[\"प्रेषक ई-मेल\"],\"yNcGa2\":[\"एक्सेस टोकन समाप्ति\"],\"yOXgbH\":[\"नोट: GitHub या Bitbucket के लिए SSH प्रोटोकॉल का उपयोग करते समय, केवल एक SSH कुंजी दर्ज करें, उपयोगकर्ता नाम (git के अलावा) दर्ज न करें। इसके अतिरिक्त, GitHub और Bitbucket SSH का उपयोग करते समय पासवर्ड प्रमाणीकरण का समर्थन नहीं करते हैं। केवल-पठन GIT प्रोटोकॉल (git://) उपयोगकर्ता नाम या पासवर्ड जानकारी का उपयोग नहीं करता है।\"],\"yQE2r9\":[\"लोड हो रहा है\"],\"yRiHPB\":[\"इस सूची को भरने के लिए कृपया एक जॉब चलाएं।\"],\"yRkqG9\":[\"सीमा\"],\"yRsSBw\":[\"अनुमोदन\"],\"yUlffE\":[\"पुनः लॉन्च करें\"],\"yVgnJA\":[\"इस संगठन द्वारा प्रबंधित किए जाने की अनुमति वाले होस्ट्स की अधिकतम संख्या।\\n मान डिफ़ॉल्ट रूप से 0 होता है जिसका अर्थ है कोई सीमा नहीं। अधिक विवरण के लिए Ansible\\n दस्तावेज़ीकरण देखें।\"],\"yX3qAQ\":[\"वर्कफ़्लो जॉब टेम्पलेट नोड्स\"],\"yaG1CX\":[\"LDAP\"],\"yaX9sM\":[\"वर्कफ़्लो टेम्पलेट\"],\"yb_fjw\":[\"अनुमोदन\"],\"ydoZpB\":[\"टीम नहीं मिली।\"],\"ydw9CW\":[\"विफल होस्ट्स\"],\"yfG3F2\":[\"प्रत्यक्ष कुंजियां\"],\"yjwMJ8\":[\"होस्ट कितनी बार स्वचालित हुआ था\"],\"yjyGja\":[\"इनपुट विस्तृत करें\"],\"ylXj1N\":[\"चयनित\"],\"yq6OqI\":[\"यह एकमात्र बार है जब टोकन मान और संबद्ध रिफ़्रेश टोकन मान दिखाया जाएगा।\"],\"yqiwAW\":[\"वर्कफ़्लो रद्द करें\"],\"yrUyDQ\":[\"इस इंस्टेंस का वर्तमान जीवन चक्र चरण सेट करता है। डिफ़ॉल्ट \\\"installed\\\" है।\"],\"yrwl2P\":[\"अनुपालक\"],\"yuXsFE\":[\"एक या अधिक वर्कफ़्लो अनुमोदन हटाने में विफल।\"],\"yuvDX_\":[[\"intervalValue\",\"plural\",{\"one\":[\"माह\"],\"other\":[\"माह\"]}]],\"ywSBEn\":[\"भूमिका संबद्ध करने में त्रुटि\"],\"yxDqcD\":[\"प्राधिकरण कोड समाप्ति\"],\"yy1cWw\":[\"संदेश अनुकूलित करें…\"],\"yz7wBu\":[\"बंद करें\"],\"yzQhLU\":[\"नीति इंस्टेंस न्यूनतम\"],\"yzdDia\":[\"सर्वेक्षण हटाएं\"],\"z-BNGk\":[\"उपयोगकर्ता टोकन हटाएं\"],\"z0DcIS\":[\"एन्क्रिप्टेड\"],\"z3XA1I\":[\"होस्ट पुनः प्रयास\"],\"z409y8\":[\"वेबहुक सेवा\"],\"z7NLxJ\":[\"यदि आप केवल इस विशेष उपयोगकर्ता की पहुंच हटाना चाहते हैं, तो कृपया उन्हें टीम से हटाएं।\"],\"z8mwbl\":[\"नए इंस्टेंस ऑनलाइन आने पर इस समूह को स्वचालित रूप से असाइन किए जाने वाले सभी इंस्टेंसों का न्यूनतम प्रतिशत।\"],\"zBO1TV\":[[\"numOccurrences\",\"plural\",{\"one\":[\"#\",\" घटना के बाद\"],\"other\":[\"#\",\" घटनाओं के बाद\"]}]],\"zHcXAG\":[\"निष्पादन वातावरण को वैश्विक रूप से उपलब्ध बनाने के लिए इस फ़ील्ड को रिक्त छोड़ें।\"],\"zICM7E\":[\"सिंक करने से पहले स्थानीय परिवर्तन त्यागें\"],\"zJY4Uj\":[\"प्लेबुक\"],\"zKJMiH\":[\"प्लेबुक निर्देशिका\"],\"zK_63z\":[\"अमान्य उपयोगकर्ता नाम या पासवर्ड। कृपया पुनः प्रयास करें।\"],\"zLsDix\":[\"ldap उपयोगकर्ता\"],\"zMKkOk\":[\"संगठनों पर वापस\"],\"zN0nhk\":[\"Automation Analytics सक्षम करने के लिए अपने Red Hat या Red Hat Satellite क्रेडेंशियल्स प्रदान करें।\"],\"zQRgi-\":[\"सूचना प्रारंभ टॉगल करें\"],\"zTediT\":[\"इस फ़ील्ड में एक संख्या होनी चाहिए और इसका मान \",[\"min\"],\" और \",[\"max\"],\" के बीच होना चाहिए\"],\"zUIPys\":[\"Jinja2 शर्तों के आधार पर समूह में होस्ट्स जोड़ें।\"],\"z_PZxu\":[\"वर्कफ़्लो अनुमोदन हटाने में विफल।\"],\"zbLCH1\":[\"इन्वेंटरी प्रकार\"],\"zcQj5X\":[\"पहले, एक कुंजी चुनें\"],\"zdl7YZ\":[\"स्रोत पथ चुनें\"],\"zeEQd_\":[\"जून\"],\"zf7FzC\":[\"Kubernetes या OpenShift के साथ प्रमाणित करने के लिए क्रेडेंशियल। \\\"Kubernetes/OpenShift API Bearer Token\\\" प्रकार का होना चाहिए। यदि रिक्त छोड़ा जाता है, तो अंतर्निहित पॉड के सेवा खाते का उपयोग किया जाएगा।\"],\"zfZydd\":[\"सर्वेक्षण पूर्वावलोकन मोडल\"],\"zfsBaJ\":[\"Automation Analytics के बारे में अधिक जानें\"],\"zgInnV\":[\"वर्कफ़्लो नोड दृश्य मोडल\"],\"zga9sT\":[\"ठीक है\"],\"zhPLvU\":[\"संबद्ध करने में विफल।\"],\"zhrjek\":[\"समूह\"],\"zi_YNm\":[[\"0\"],\" रद्द करने में विफल\"],\"zmu4-P\":[\"खाता SID\"],\"znG7ed\":[\"एक प्लेबुक चुनें\"],\"znTz5r\":[\"शेड्यूल नहीं मिला।\"],\"znuW_M\":[\"यदि हां तो अमान्य प्रविष्टियों को एक घातक त्रुटि बनाएं, अन्यथा छोड़ें और\\n जारी रखें।\"],\"zq0gmb\":[\"अवधि चुनें\"],\"ztOzCj\":[\"लॉन्च पर अपडेट करें\"],\"ztw2L3\":[\"कम से कम एक इनपुट में एक मान होना चाहिए\"],\"zvfXp0\":[\"सूचना अनुमोदन टॉगल करें\"],\"zx4BuL\":[\"सप्ताह\"],\"zzDlyQ\":[\"सफलता\"],\"{count, plural, one {# fork} other {# forks}}\":[[\"count\",\"plural\",{\"one\":[\"#\",\" fork\"],\"other\":[\"#\",\" forks\"]}]]}")}; \ No newline at end of file diff --git a/awx/ui/src/locales/hi/messages.po b/awx/ui/src/locales/hi/messages.po index 56df71b7..b2418f6a 100644 --- a/awx/ui/src/locales/hi/messages.po +++ b/awx/ui/src/locales/hi/messages.po @@ -59,7 +59,7 @@ msgid "TACACS+" msgstr "TACACS+" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:637 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:232 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:251 msgid "Workflow timed out message body" msgstr "वर्कफ़्लो टाइम आउट संदेश मुख्य भाग" @@ -117,6 +117,10 @@ msgstr "वह निष्पादन वातावरण चुनें msgid "Add a new node between these two nodes" msgstr "इन दो नोड्स के बीच एक नया नोड जोड़ें" +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:170 +msgid "Changed message" +msgstr "परिवर्तन संदेश" + #: screens/Job/JobOutput/JobOutputSearch.js:120 msgid "Host Polling" msgstr "होस्ट पोलिंग" @@ -150,7 +154,7 @@ msgid "Maximum number of forks to allow across all jobs running concurrently on msgstr "इस समूह पर एक साथ चल रहे सभी जॉब्स में अनुमत फ़ोर्क्स की अधिकतम संख्या।\n" " शून्य का अर्थ है कोई सीमा लागू नहीं की जाएगी।" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:341 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:349 #: screens/Inventory/InventorySources/InventorySourceListItem.js:89 msgid "Failed to cancel Inventory Source Sync" msgstr "इन्वेंटरी स्रोत सिंक रद्द करने में विफल" @@ -334,8 +338,8 @@ msgstr "चेकआउट करने के लिए ब्रांच। #: components/JobList/JobList.js:265 #: components/JobList/JobListItem.js:109 #: components/Lookup/ProjectLookup.js:134 -#: components/NotificationList/NotificationList.js:219 -#: components/NotificationList/NotificationListItem.js:34 +#: components/NotificationList/NotificationList.js:230 +#: components/NotificationList/NotificationListItem.js:36 #: components/PromptDetail/PromptDetail.js:125 #: components/RelatedTemplateList/RelatedTemplateList.js:200 #: components/TemplateList/TemplateList.js:219 @@ -435,7 +439,7 @@ msgstr "जॉब विवरण देखने के लिए क्लि msgid "Sync Project" msgstr "प्रोजेक्ट सिंक करें" -#: components/NotificationList/NotificationList.js:194 +#: components/NotificationList/NotificationList.js:205 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:135 msgid "Grafana" msgstr "Grafana" @@ -515,7 +519,7 @@ msgstr "इवेंट" msgid "Repeat Frequency" msgstr "पुनरावृत्ति आवृत्ति" -#: screens/Inventory/shared/Inventory.helptext.js:171 +#: screens/Inventory/shared/Inventory.helptext.js:172 msgid "Variables used to configure the constructed inventory plugin. For a detailed description of how to configure this plugin, see" msgstr "निर्मित इन्वेंटरी प्लगइन को कॉन्फ़िगर करने के लिए उपयोग किए जाने वाले वेरिएबल्स। इस प्लगइन को कॉन्फ़िगर करने के तरीके के विस्तृत विवरण के लिए, देखें" @@ -577,8 +581,8 @@ msgstr "कंटेनर समूह" msgid "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" msgstr "{0, plural, one {आप निम्न जॉब को रद्द नहीं कर सकते क्योंकि यह नहीं चल रही है:} other {आप निम्न जॉब्स को रद्द नहीं कर सकते क्योंकि वे नहीं चल रही हैं:}}" -#: components/NotificationList/NotificationList.js:220 -#: components/NotificationList/NotificationListItem.js:35 +#: components/NotificationList/NotificationList.js:231 +#: components/NotificationList/NotificationListItem.js:38 #: screens/Credential/shared/TypeInputsSubForm.js:46 #: screens/InstanceGroup/shared/ContainerGroupForm.js:79 #: screens/Instances/Shared/InstanceForm.js:95 @@ -602,7 +606,7 @@ msgid "You cannot select multiple vault credentials with the same vault ID. Doin msgstr "आप समान वॉल्ट ID के साथ एकाधिक वॉल्ट क्रेडेंशियल्स नहीं चुन सकते। ऐसा करने पर समान वॉल्ट ID वाला दूसरा स्वचालित रूप से अचयनित हो जाएगा।" #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:334 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:342 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:350 #: screens/Project/ProjectDetail/ProjectDetail.js:354 msgid "Cancel Sync" msgstr "सिंक रद्द करें" @@ -715,8 +719,8 @@ msgstr "होस्ट मेट्रिक्स" msgid "Create new credential Type" msgstr "नया क्रेडेंशियल प्रकार बनाएं" -#: screens/Inventory/shared/Inventory.helptext.js:103 -#: screens/Inventory/shared/Inventory.helptext.js:118 +#: screens/Inventory/shared/Inventory.helptext.js:104 +#: screens/Inventory/shared/Inventory.helptext.js:119 msgid "If you want the Inventory Source to update on launch, click on Update on Launch, and also go to " msgstr "यदि आप चाहते हैं कि इन्वेंटरी स्रोत लॉन्च पर अपडेट हो, तो लॉन्च पर अपडेट करें पर क्लिक करें, और इस पर भी जाएं " @@ -734,7 +738,7 @@ msgid "Start Time" msgstr "प्रारंभ समय" #: screens/Inventory/shared/Inventory.helptext.js:48 -#: screens/Inventory/shared/Inventory.helptext.js:184 +#: screens/Inventory/shared/Inventory.helptext.js:185 msgid "Variables must be in JSON or YAML syntax. Use the radio button to toggle between the two." msgstr "वेरिएबल्स JSON या YAML सिंटैक्स में होने चाहिए। दोनों के बीच टॉगल करने के लिए रेडियो बटन का उपयोग करें।" @@ -750,7 +754,7 @@ msgstr "फ़ाइल अंतर" msgid "Relaunch from canceled node" msgstr "रद्द किए गए नोड से पुनः लॉन्च करें" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:271 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:279 msgid "Cache timeout" msgstr "कैश टाइमआउट" @@ -830,7 +834,7 @@ msgstr "कृपया घटनाओं की संख्या दर् msgid "Fuzzy search on name field." msgstr "नाम फ़ील्ड पर फ़ज़ी खोज।" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:106 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:107 msgid "Ansible Controller Documentation." msgstr "Ansible Controller दस्तावेज़ीकरण।" @@ -838,7 +842,7 @@ msgstr "Ansible Controller दस्तावेज़ीकरण।" msgid "The Instance Groups to which this instance belongs." msgstr "वे इंस्टेंस समूह जिनसे यह इंस्टेंस संबंधित है।" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:97 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:98 msgid "You may apply a number of possible variables in the\n" " message. For more information, refer to the" msgstr "आप संदेश में कई संभावित वेरिएबल्स लागू कर सकते हैं।\n" @@ -887,7 +891,7 @@ msgstr "वर्कफ़्लो नोड्स" msgid "Overwrite" msgstr "अधिलेखित करें" -#: components/NotificationList/NotificationList.js:195 +#: components/NotificationList/NotificationList.js:206 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:136 msgid "Hipchat" msgstr "Hipchat" @@ -922,7 +926,7 @@ msgstr "सोर्स कंट्रोल ब्रांच" msgid "Tabs" msgstr "टैब" -#: screens/Template/Template.js:273 +#: screens/Template/Template.js:274 #: screens/Template/WorkflowJobTemplate.js:286 msgid "View Template Details" msgstr "टेम्पलेट विवरण देखें" @@ -968,7 +972,7 @@ msgstr "{interval, plural, one {# वर्ष} other {# वर्ष}}" msgid "Inventory Source Sync" msgstr "इन्वेंटरी स्रोत सिंक" -#: screens/Inventory/shared/Inventory.helptext.js:146 +#: screens/Inventory/shared/Inventory.helptext.js:147 msgid "Inventory Plugins" msgstr "इन्वेंटरी प्लगइन्स" @@ -1038,7 +1042,7 @@ msgstr "1 (जानकारी)" msgid "Set the instance enabled or disabled. If disabled, jobs will not be assigned to this instance." msgstr "इंस्टेंस को सक्षम या अक्षम सेट करें। यदि अक्षम है, तो इस इंस्टेंस को जॉब्स असाइन नहीं की जाएंगी।" -#: screens/Inventory/shared/Inventory.helptext.js:105 +#: screens/Inventory/shared/Inventory.helptext.js:106 msgid "and click on Update Revision on Launch." msgstr "और लॉन्च पर रिवीज़न अपडेट करें पर क्लिक करें।" @@ -1527,8 +1531,8 @@ msgstr "एक या अधिक जॉब्स हटाने में व msgid "Run Command" msgstr "कमांड चलाएं" -#: screens/Inventory/shared/Inventory.helptext.js:156 -#: screens/Inventory/shared/Inventory.helptext.js:179 +#: screens/Inventory/shared/Inventory.helptext.js:157 +#: screens/Inventory/shared/Inventory.helptext.js:180 msgid "plugin configuration guide." msgstr "प्लगइन कॉन्फ़िगरेशन गाइड।" @@ -1639,9 +1643,9 @@ msgstr "नई फ़ेडरेटेड इन्वेंटरी बना #: components/Lookup/OrganizationLookup.js:141 #: components/Lookup/ProjectLookup.js:129 #: components/Lookup/ProjectLookup.js:159 -#: components/NotificationList/NotificationList.js:181 -#: components/NotificationList/NotificationList.js:218 -#: components/NotificationList/NotificationListItem.js:29 +#: components/NotificationList/NotificationList.js:192 +#: components/NotificationList/NotificationList.js:229 +#: components/NotificationList/NotificationListItem.js:31 #: components/OptionsList/OptionsList.js:48 #: components/PaginatedTable/PaginatedTable.js:76 #: components/PromptDetail/PromptDetail.js:115 @@ -1755,14 +1759,14 @@ msgstr "नई फ़ेडरेटेड इन्वेंटरी बना #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:182 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:197 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:238 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:204 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:205 #: screens/Inventory/InventorySources/InventorySourceList.js:212 #: screens/Inventory/InventorySources/InventorySourceListItem.js:60 #: screens/Inventory/shared/ConstructedInventoryForm.js:66 #: screens/Inventory/shared/FederatedInventoryForm.js:56 #: screens/Inventory/shared/InventoryForm.js:50 #: screens/Inventory/shared/InventoryGroupForm.js:33 -#: screens/Inventory/shared/InventorySourceForm.js:133 +#: screens/Inventory/shared/InventorySourceForm.js:139 #: screens/Inventory/shared/SmartInventoryForm.js:46 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:98 #: screens/ManagementJob/ManagementJobList/ManagementJobList.js:91 @@ -1885,7 +1889,7 @@ msgstr "{automatedInstancesSinceDateTime} से {automatedInstancesCount}" msgid "No job data available" msgstr "कोई जॉब डेटा उपलब्ध नहीं" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:309 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:317 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:22 msgid "Source variables" msgstr "स्रोत वेरिएबल्स" @@ -2022,7 +2026,7 @@ msgid "Confirm" msgstr "पुष्टि करें" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:526 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:142 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:143 msgid "Success message body" msgstr "सफलता संदेश मुख्य भाग" @@ -2297,7 +2301,7 @@ msgstr "विफल होस्ट्स" msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?" msgstr "यह निष्पादन वातावरण वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है। क्या आप वाकई इसे हटाना चाहते हैं?" -#: components/NotificationList/NotificationList.js:196 +#: components/NotificationList/NotificationList.js:207 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:137 msgid "IRC" msgstr "IRC" @@ -2501,7 +2505,7 @@ msgstr "बाहरी लॉगिंग सक्षम करें" #: components/Sparkline/Sparkline.js:30 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:51 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:181 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:182 #: screens/Inventory/InventorySources/InventorySourceListItem.js:31 #: screens/Project/ProjectDetail/ProjectDetail.js:134 #: screens/Project/ProjectList/ProjectListItem.js:56 @@ -2541,7 +2545,7 @@ msgstr "लॉग सिस्टम को फ़ैक्ट्स को व msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" msgstr "पासवर्ड के लिए संकेत देने वाले क्रेडेंशियल्स वाले जॉब टेम्पलेट नोड्स बनाते या संपादित करते समय नहीं चुने जा सकते" -#: screens/Inventory/shared/Inventory.helptext.js:193 +#: screens/Inventory/shared/Inventory.helptext.js:194 msgid "If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on. Note: If this setting is enabled and you provided an empty list, the global instance groups will be applied." msgstr "यदि सक्षम है, तो इन्वेंटरी संबद्ध जॉब टेम्पलेट चलाने के लिए पसंदीदा इंस्टेंस समूहों की सूची में किसी भी संगठन इंस्टेंस समूह को जोड़ने से रोकेगी। नोट: यदि यह सेटिंग सक्षम है और आपने एक खाली सूची प्रदान की है, तो वैश्विक इंस्टेंस समूह लागू किए जाएंगे।" @@ -2678,7 +2682,7 @@ msgstr "एक या अधिक होस्ट्स को अलग कर #: components/Sparkline/Sparkline.js:27 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:48 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:178 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:179 #: screens/Inventory/InventorySources/InventorySourceListItem.js:28 #: screens/Project/ProjectDetail/ProjectDetail.js:131 #: screens/Project/ProjectList/ProjectListItem.js:53 @@ -2765,7 +2769,7 @@ msgstr "आइटम ठीक है" msgid "Icon URL" msgstr "आइकन URL" -#: screens/Inventory/shared/InventorySourceForm.js:159 +#: screens/Inventory/shared/InventorySourceForm.js:165 msgid "Select the Instance Groups this inventory source sync should run on. If unset, the sync runs on the instance groups of the inventory or its organization." msgstr "उन इंस्टेंस समूहों का चयन करें जिन पर इस इन्वेंटरी स्रोत का समन्वयन चलना चाहिए। यदि सेट नहीं किया गया है, तो समन्वयन इन्वेंटरी या उसके संगठन के इंस्टेंस समूहों पर चलता है।" @@ -2774,7 +2778,7 @@ msgid "Select the port that Receptor will listen on for incoming connections, e. msgstr "वह पोर्ट चुनें जिस पर Receptor आने वाले कनेक्शन के लिए सुनेगा, उदा. 27199।" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:517 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:133 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:134 msgid "Success message" msgstr "सफलता संदेश" @@ -2831,7 +2835,7 @@ msgstr "HTTP विधि" msgid "The execution environment that will be used for jobs inside of this organization. This will be used as a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." msgstr "इस संगठन के भीतर कार्यों के लिए उपयोग किया जाने वाला निष्पादन वातावरण। इसका उपयोग तब फ़ॉलबैक के रूप में किया जाएगा जब प्रोजेक्ट, कार्य टेम्पलेट या वर्कफ़्लो स्तर पर कोई निष्पादन वातावरण स्पष्ट रूप से असाइन नहीं किया गया हो।" -#: components/NotificationList/NotificationList.js:190 +#: components/NotificationList/NotificationList.js:201 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:131 msgid "Notification type" msgstr "सूचना प्रकार" @@ -2865,7 +2869,7 @@ msgstr "लिंक हटाना रद्द करें" msgid "There was an error loading this content. Please reload the page." msgstr "इस सामग्री को लोड करने में त्रुटि हुई। कृपया पृष्ठ पुनः लोड करें।" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:292 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:300 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:135 msgid "Enabled Value" msgstr "सक्षम मान" @@ -3178,7 +3182,7 @@ msgstr "<0>नोट: यदि इंस्टेंस <1>नीति नि msgid "Timeout minutes" msgstr "टाइमआउट मिनट" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:353 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:361 msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" msgstr "यह इन्वेंटरी स्रोत वर्तमान में अन्य संसाधनों द्वारा उपयोग किया जा रहा है जो इस पर निर्भर हैं। क्या आप वाकई इसे हटाना चाहते हैं?" @@ -3334,7 +3338,7 @@ msgstr "इससे कम या बराबर तुलना।" #: screens/Inventory/FederatedInventoryDetail/FederatedInventoryDetail.js:187 #: screens/Inventory/InventoryDetail/InventoryDetail.js:185 #: screens/Inventory/InventoryGroups/InventoryGroupsList.js:102 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:356 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:364 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:67 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:71 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:76 @@ -3357,6 +3361,7 @@ msgstr "इससे कम या बराबर तुलना।" msgid "Delete" msgstr "हटाएं" +#: components/NotificationList/NotificationListItem.js:105 #: components/StatusLabel/StatusLabel.js:53 #: screens/Job/JobOutput/shared/HostStatusBar.js:43 msgid "Changed" @@ -3488,7 +3493,7 @@ msgstr "GitHub Team" #: screens/Inventory/InventoryDetail/InventoryDetail.js:157 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:43 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:78 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:317 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:325 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:133 #: screens/Job/JobDetail/JobDetail.js:578 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:425 @@ -3862,7 +3867,7 @@ msgstr "डिफ़ॉल्ट निष्पादन वातावरण" #: components/PromptDetail/PromptJobTemplateDetail.js:122 #: components/PromptDetail/PromptJobTemplateDetail.js:130 #: components/TemplateList/TemplateListItem.js:263 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:245 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:246 #: screens/Job/JobDetail/JobDetail.js:180 #: screens/Job/JobDetail/JobDetail.js:214 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:216 @@ -3983,7 +3988,7 @@ msgstr "टोपोलॉजी दृश्य" msgid "Syncing" msgstr "सिंक हो रहा है" -#: screens/Inventory/shared/InventorySourceForm.js:192 +#: screens/Inventory/shared/InventorySourceForm.js:198 msgid "Source details" msgstr "स्रोत विवरण" @@ -4075,7 +4080,7 @@ msgstr "क्रेडेंशियल हटाएं" #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:56 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:61 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:100 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:332 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:340 #: screens/Inventory/InventorySources/InventorySourceListItem.js:105 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:148 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:450 @@ -4157,7 +4162,7 @@ msgstr "कोई टाइमआउट निर्दिष्ट नहीं msgid "On Timeout" msgstr "टाइमआउट पर" -#: screens/Inventory/shared/Inventory.helptext.js:196 +#: screens/Inventory/shared/Inventory.helptext.js:197 msgid "Prevent Instance Group Fallback: If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on." msgstr "इंस्टेंस समूह फ़ॉलबैक रोकें: यदि सक्षम है, तो इन्वेंटरी संबद्ध जॉब टेम्पलेट चलाने के लिए पसंदीदा इंस्टेंस समूहों की सूची में किसी भी संगठन इंस्टेंस समूह को जोड़ने से रोकेगी।" @@ -4499,7 +4504,7 @@ msgstr "सामग्री-लोडिंग-प्रगति-पर" msgid "Mon" msgstr "सोम" -#: screens/Organization/Organization.js:239 +#: screens/Organization/Organization.js:240 msgid "View Organization Details" msgstr "संगठन विवरण देखें" @@ -4512,7 +4517,7 @@ msgstr "संगठन विवरण देखें" #: components/JobList/JobList.js:345 #: components/LaunchButton/LaunchButton.js:248 #: components/LaunchPrompt/LaunchPrompt.js:99 -#: components/NotificationList/NotificationList.js:246 +#: components/NotificationList/NotificationList.js:259 #: components/PaginatedTable/ToolbarDeleteButton.js:148 #: components/RelatedTemplateList/RelatedTemplateList.js:254 #: components/ResourceAccessList/ResourceAccessList.js:249 @@ -4556,7 +4561,7 @@ msgstr "संगठन विवरण देखें" #: screens/Inventory/InventoryHosts/InventoryHostList.js:204 #: screens/Inventory/InventoryList/InventoryList.js:300 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:270 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:363 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:371 #: screens/Inventory/InventorySources/InventorySourceList.js:240 #: screens/Inventory/InventorySources/InventorySourceList.js:252 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:155 @@ -4708,11 +4713,11 @@ msgid "Notification Templates" msgstr "सूचना टेम्पलेट" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:508 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:124 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:125 msgid "Start message body" msgstr "प्रारंभ संदेश मुख्य भाग" -#: screens/Inventory/shared/Inventory.helptext.js:128 +#: screens/Inventory/shared/Inventory.helptext.js:129 msgid "Branch to use on inventory sync. Project default used if blank. Only allowed if project allow_override field is set to true." msgstr "इन्वेंटरी सिंक पर उपयोग करने के लिए ब्रांच। रिक्त होने पर प्रोजेक्ट डिफ़ॉल्ट उपयोग किया जाता है। केवल तभी अनुमति है जब प्रोजेक्ट allow_override फ़ील्ड true पर सेट हो।" @@ -4821,7 +4826,7 @@ msgid "Failed to delete one or more user tokens." msgstr "एक या अधिक उपयोगकर्ता टोकन हटाने में विफल।" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:553 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:169 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:188 msgid "Workflow approved message" msgstr "वर्कफ़्लो अनुमोदित संदेश" @@ -5002,12 +5007,12 @@ msgstr "टाइमआउट पर" msgid "Create New Team" msgstr "नई टीम बनाएं" -#: screens/Inventory/shared/Inventory.helptext.js:148 +#: screens/Inventory/shared/Inventory.helptext.js:149 msgid "in the documentation and the" msgstr "दस्तावेज़ीकरण में और" #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:152 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:206 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:207 #: screens/Project/ProjectDetail/ProjectDetail.js:160 msgid "Last Job Status" msgstr "अंतिम जॉब स्थिति" @@ -5339,7 +5344,7 @@ msgid "Preferred Theme" msgstr "पसंदीदा थीम" #: screens/Instances/Shared/InstanceForm.js:31 -#: screens/Inventory/shared/InventorySourceForm.js:92 +#: screens/Inventory/shared/InventorySourceForm.js:98 #: screens/Project/shared/ProjectForm.js:121 msgid "Set a value for this field" msgstr "इस फ़ील्ड के लिए एक मान सेट करें" @@ -5472,7 +5477,7 @@ msgid "Download Bundle" msgstr "बंडल डाउनलोड करें" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:577 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:187 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:206 msgid "Workflow denied message" msgstr "वर्कफ़्लो अस्वीकृत संदेश" @@ -5525,7 +5530,7 @@ msgstr "नोड प्रकार" msgid "View Credential Details" msgstr "क्रेडेंशियल विवरण देखें" -#: components/NotificationList/NotificationList.js:177 +#: components/NotificationList/NotificationList.js:188 #: routeConfig.js:140 #: screens/Inventory/Inventories.js:119 #: screens/Inventory/InventorySource/InventorySource.js:101 @@ -5745,7 +5750,7 @@ msgstr "परीक्षण सूचना" #: screens/Credential/CredentialDetail/CredentialDetail.js:262 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:234 #: screens/Inventory/InventoryDetail/InventoryDetail.js:122 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:305 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:313 #: screens/Project/ProjectDetail/ProjectDetail.js:333 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:357 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:193 @@ -5794,7 +5799,7 @@ msgstr "सोर्स कंट्रोल ब्रांच" #: screens/Instances/InstanceDetail/InstanceDetail.js:248 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:225 #: screens/Inventory/InventoryDetail/InventoryDetail.js:107 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:239 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:240 #: screens/Organization/OrganizationDetail/OrganizationDetail.js:116 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:418 #: util/getRelatedResourceDeleteDetails.js:282 @@ -6124,7 +6129,7 @@ msgid "View YAML examples at" msgstr "YAML उदाहरण यहां देखें" #: components/PromptDetail/PromptInventorySourceDetail.js:35 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:142 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:143 msgid "Overwrite local groups and hosts from remote inventory source" msgstr "रिमोट इन्वेंटरी स्रोत से स्थानीय समूहों और होस्ट्स को अधिलेखित करें" @@ -6133,7 +6138,7 @@ msgid "Resource deleted" msgstr "संसाधन हटाया गया" #: screens/Inventory/shared/Inventory.helptext.js:54 -#: screens/Inventory/shared/Inventory.helptext.js:187 +#: screens/Inventory/shared/Inventory.helptext.js:188 msgid "YAML:" msgstr "YAML:" @@ -6220,7 +6225,7 @@ msgid "Initiated By" msgstr "द्वारा आरंभ किया गया" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:499 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:115 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:116 msgid "Start message" msgstr "प्रारंभ संदेश" @@ -6284,7 +6289,7 @@ msgstr "इंस्टेंस टॉगल करें" msgid "Back to Inventories" msgstr "इन्वेंटरी पर वापस" -#: screens/Inventory/shared/Inventory.helptext.js:113 +#: screens/Inventory/shared/Inventory.helptext.js:114 msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format." msgstr "प्रत्येक प्रोजेक्ट अपडेट के बाद जहां SCM रिवीज़न बदलता है, जॉब कार्य निष्पादित करने से पहले चयनित स्रोत से इन्वेंटरी रीफ़्रेश करें। यह स्थिर सामग्री के लिए है, जैसे Ansible इन्वेंटरी .ini फ़ाइल प्रारूप।" @@ -6378,7 +6383,7 @@ msgstr "इंस्टेंस" msgid "Including File" msgstr "फ़ाइल सहित" -#: screens/Inventory/shared/Inventory.helptext.js:81 +#: screens/Inventory/shared/Inventory.helptext.js:82 msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." msgstr "यदि चेक किया गया है, तो कोई भी होस्ट और समूह जो पहले बाहरी स्रोत पर मौजूद थे लेकिन अब हटा दिए गए हैं, इन्वेंटरी से हटा दिए जाएंगे। जो होस्ट और समूह इन्वेंटरी स्रोत द्वारा प्रबंधित नहीं थे, उन्हें अगले मैन्युअल रूप से बनाए गए समूह में प्रोत्साहित किया जाएगा या यदि उन्हें प्रोत्साहित करने के लिए कोई मैन्युअल रूप से बनाया गया समूह नहीं है, तो उन्हें इन्वेंटरी के लिए \"all\" डिफ़ॉल्ट समूह में छोड़ दिया जाएगा।" @@ -6415,7 +6420,7 @@ msgstr "विवरण टैब" #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:100 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:72 #: screens/InstanceGroup/shared/ContainerGroupForm.js:50 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:298 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:306 #: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:39 #: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:38 #: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:38 @@ -6426,7 +6431,7 @@ msgstr "विवरण टैब" #: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:117 #: screens/Inventory/shared/InventorySourceSubForms/TerraformSubForm.js:38 #: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:39 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:39 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:44 msgid "Credential" msgstr "क्रेडेंशियल" @@ -6435,7 +6440,7 @@ msgid "First node" msgstr "पहला नोड" #: components/PromptDetail/PromptInventorySourceDetail.js:97 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:273 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:281 msgid "{update_cache_timeout, plural, one {# second} other {# seconds}}" msgstr "{update_cache_timeout, plural, one {# सेकंड} other {# सेकंड}}" @@ -6499,7 +6504,7 @@ msgstr "जॉब्स सेटिंग्स देखें" #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:122 #: screens/Instances/InstanceDetail/InstanceDetail.js:349 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:96 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:329 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:337 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:145 #: screens/Project/ProjectDetail/ProjectDetail.js:340 #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:229 @@ -6553,7 +6558,7 @@ msgstr "सामान्य उपयोगकर्ता" msgid "host-name-{0}" msgstr "host-name-{0}" -#: components/NotificationList/NotificationList.js:198 +#: components/NotificationList/NotificationList.js:209 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:139 msgid "Pagerduty" msgstr "Pagerduty" @@ -6612,7 +6617,7 @@ msgstr "नए इंस्टेंस ऑनलाइन आने पर इ msgid "Launch | {0}" msgstr "लॉन्च करें | {0}" -#: components/NotificationList/NotificationListItem.js:79 +#: components/NotificationList/NotificationListItem.js:84 msgid "Toggle notification success" msgstr "सूचना सफलता टॉगल करें" @@ -6705,7 +6710,7 @@ msgstr "समवर्ती जॉब्स सक्षम करें" msgid "Smart Inventory" msgstr "स्मार्ट इन्वेंटरी" -#: components/NotificationList/NotificationList.js:200 +#: components/NotificationList/NotificationList.js:211 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:141 msgid "Slack" msgstr "Slack" @@ -6741,7 +6746,7 @@ msgstr "जोड़ें" msgid "System administrators have unrestricted access to all resources." msgstr "सिस्टम प्रशासकों की सभी संसाधनों तक अप्रतिबंधित पहुंच होती है।" -#: components/NotificationList/NotificationListItem.js:86 +#: components/NotificationList/NotificationListItem.js:91 msgid "Failure" msgstr "विफलता" @@ -6886,7 +6891,7 @@ msgstr "अनुसरण करें" #: components/Lookup/MultiCredentialsLookup.js:205 #: components/Lookup/OrganizationLookup.js:135 #: components/Lookup/ProjectLookup.js:149 -#: components/NotificationList/NotificationList.js:210 +#: components/NotificationList/NotificationList.js:221 #: components/RelatedTemplateList/RelatedTemplateList.js:183 #: components/Schedule/ScheduleList/ScheduleList.js:205 #: components/TemplateList/TemplateList.js:235 @@ -7098,7 +7103,7 @@ msgstr "इस फ़ील्ड में एक संख्या होन msgid "All" msgstr "सभी" -#: screens/Inventory/shared/Inventory.helptext.js:177 +#: screens/Inventory/shared/Inventory.helptext.js:178 msgid "constructed inventory" msgstr "निर्मित इन्वेंटरी" @@ -7112,7 +7117,7 @@ msgid "Confirm Delete" msgstr "हटाने की पुष्टि करें" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:625 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:223 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:242 msgid "Workflow timed out message" msgstr "वर्कफ़्लो टाइम आउट संदेश" @@ -7208,7 +7213,7 @@ msgstr "कभी नहीं" msgid "Organization Name" msgstr "संगठन नाम" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:282 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:290 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:149 msgid "Host Filter" msgstr "होस्ट फ़िल्टर" @@ -7260,7 +7265,7 @@ msgstr "{pluralizedItemName} सूची" msgid "Please add survey questions." msgstr "कृपया सर्वेक्षण प्रश्न जोड़ें।" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:287 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:295 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:121 msgid "Enabled Variable" msgstr "सक्षम वेरिएबल" @@ -7372,7 +7377,7 @@ msgstr "सिंक करें" #: components/Lookup/ApplicationLookup.js:128 #: components/Lookup/HostFilterLookup.js:439 #: components/Lookup/HostListItem.js:10 -#: components/NotificationList/NotificationList.js:186 +#: components/NotificationList/NotificationList.js:197 #: components/PromptDetail/PromptDetail.js:120 #: components/Schedule/ScheduleDetail/ScheduleDetail.js:337 #: components/Schedule/ScheduleList/ScheduleList.js:197 @@ -7407,13 +7412,13 @@ msgstr "सिंक करें" #: screens/Inventory/InventoryHosts/InventoryHostList.js:125 #: screens/Inventory/InventoryHosts/InventoryHostList.js:141 #: screens/Inventory/InventoryList/InventoryList.js:215 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:221 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:222 #: screens/Inventory/shared/ConstructedInventoryForm.js:74 #: screens/Inventory/shared/ConstructedInventoryHint.js:63 #: screens/Inventory/shared/FederatedInventoryForm.js:64 #: screens/Inventory/shared/InventoryForm.js:58 #: screens/Inventory/shared/InventoryGroupForm.js:41 -#: screens/Inventory/shared/InventorySourceForm.js:141 +#: screens/Inventory/shared/InventorySourceForm.js:147 #: screens/Inventory/shared/SmartInventoryForm.js:54 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:104 #: screens/Job/JobOutput/HostEventModal.js:118 @@ -7558,7 +7563,7 @@ msgstr "GitHub Enterprise से साइन इन करें" #: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130 #: screens/Inventory/shared/InventorySourceSubForms/TerraformSubForm.js:46 #: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:47 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:47 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:52 #: screens/Inventory/shared/SmartInventoryForm.js:66 #: screens/NotificationTemplate/shared/NotificationTemplateForm.js:29 #: screens/NotificationTemplate/shared/NotificationTemplateForm.js:66 @@ -7591,7 +7596,7 @@ msgstr "SAML {samlIDP} से साइन इन करें" msgid "Browse" msgstr "ब्राउज़ करें" -#: components/NotificationList/NotificationList.js:193 +#: components/NotificationList/NotificationList.js:204 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:134 #: screens/User/shared/UserForm.js:104 #: screens/User/UserDetail/UserDetail.js:71 @@ -8014,7 +8019,7 @@ msgid "Sat" msgstr "शनि" #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:46 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:176 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:177 #: screens/Inventory/InventorySources/InventorySourceListItem.js:26 #: screens/Project/ProjectDetail/ProjectDetail.js:129 #: screens/Project/ProjectList/ProjectListItem.js:51 @@ -8051,7 +8056,7 @@ msgid "Specify HTTP Headers in JSON format. Refer to\n" msgstr "JSON प्रारूप में HTTP हेडर निर्दिष्ट करें। उदाहरण सिंटैक्स के लिए\n" " Ansible Controller दस्तावेज़ीकरण देखें।" -#: components/NotificationList/NotificationList.js:199 +#: components/NotificationList/NotificationList.js:210 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:140 msgid "Rocket.Chat" msgstr "Rocket.Chat" @@ -8110,7 +8115,7 @@ msgstr "ज़ूम को 100% पर सेट करें और ग्र msgid "Revert all to default" msgstr "सभी को डिफ़ॉल्ट पर वापस लौटाएं" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:255 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:256 #: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:135 msgid "Inventory file" msgstr "इन्वेंटरी फ़ाइल" @@ -8187,6 +8192,11 @@ msgstr "इंस्टेंस समूह फ़ॉलबैक रोके msgid "Maximum number of forks to allow across all jobs running concurrently on this group. Zero means no limit will be enforced." msgstr "इस समूह पर एक साथ चल रहे सभी जॉब्स में अनुमत फ़ोर्क्स की अधिकतम संख्या। शून्य का अर्थ है कोई सीमा लागू नहीं की जाएगी।" +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:263 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:56 +msgid "Collection" +msgstr "कलेक्शन" + #: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:207 msgid "Failed to delete one or more credential types." msgstr "एक या अधिक क्रेडेंशियल प्रकार हटाने में विफल।" @@ -8201,7 +8211,7 @@ msgstr "क्षेत्र" #: components/WorkflowOutputNavigation/WorkflowOutputNavigation.js:148 msgid "Workflow Jobs ({total})" -msgstr "" +msgstr "वर्कफ़्लो जॉब्स ({total})" #: components/Search/AdvancedSearch.js:315 msgid "Set type disabled for related search field fuzzy searches" @@ -8237,11 +8247,11 @@ msgstr "कोई होस्ट शेष नहीं" msgid "ID of the dashboard (optional)" msgstr "डैशबोर्ड की ID (वैकल्पिक)" -#: screens/Inventory/shared/Inventory.helptext.js:127 +#: screens/Inventory/shared/Inventory.helptext.js:128 msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'" msgstr "होस्ट वेरिएबल्स के दिए गए dict से सक्षम स्थिति प्राप्त करें। सक्षम वेरिएबल को डॉट नोटेशन का उपयोग करके निर्दिष्ट किया जा सकता है, उदा: 'foo.bar'" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:339 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:347 #: screens/Inventory/InventorySources/InventorySourceListItem.js:88 msgid "Inventory Source Sync Error" msgstr "इन्वेंटरी स्रोत सिंक त्रुटि" @@ -8268,14 +8278,14 @@ msgstr "" #: components/VerbositySelectField/VerbositySelectField.js:35 #: components/VerbositySelectField/VerbositySelectField.js:45 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:217 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:261 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:269 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:47 #: screens/Job/JobDetail/JobDetail.js:369 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:257 msgid "Verbosity" msgstr "वर्बोसिटी" -#: components/NotificationList/NotificationList.js:197 +#: components/NotificationList/NotificationList.js:208 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:138 msgid "Mattermost" msgstr "Mattermost" @@ -8502,6 +8512,10 @@ msgstr "वर्कफ़्लो अनुमोदन पर वापस" msgid "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Controller documentation for example syntax." msgstr "JSON या YAML सिंटैक्स का उपयोग करके इंजेक्टर दर्ज करें। उदाहरण सिंटैक्स के लिए Ansible Controller दस्तावेज़ीकरण देखें।" +#: components/NotificationList/NotificationListItem.js:112 +msgid "Toggle notification changed" +msgstr "सूचना परिवर्तन टॉगल करें" + #: components/Workflow/WorkflowLegend.js:122 #: screens/Job/JobOutput/JobOutputSearch.js:140 msgid "Warning" @@ -8570,7 +8584,7 @@ msgid "Prompt for instance groups on launch." msgstr "लॉन्च पर इंस्टेंस समूहों के लिए संकेत दें।" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:613 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:214 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:233 msgid "Workflow pending message body" msgstr "वर्कफ़्लो लंबित संदेश मुख्य भाग" @@ -8612,7 +8626,7 @@ msgstr "IRC निक" msgid "Expires on" msgstr "इस पर समाप्त होता है" -#: screens/Inventory/shared/Inventory.helptext.js:98 +#: screens/Inventory/shared/Inventory.helptext.js:99 msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." msgstr "हर बार जब इस इन्वेंटरी का उपयोग करके कोई जॉब चलती है, तो जॉब कार्य निष्पादित करने से पहले चयनित स्रोत से इन्वेंटरी रीफ़्रेश करें।" @@ -8737,7 +8751,7 @@ msgstr "इस टेम्पलेट के लिए वेबहुक स msgid "On date" msgstr "इस तिथि पर" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:340 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:348 #: screens/Inventory/InventorySources/InventorySourceListItem.js:90 msgid "Cancel Inventory Source Sync" msgstr "इन्वेंटरी स्रोत सिंक रद्द करें" @@ -8814,7 +8828,7 @@ msgid "Greater than comparison." msgstr "इससे बड़ा तुलना।" #: components/PromptDetail/PromptInventorySourceDetail.js:40 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:148 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:149 msgid "Overwrite local variables from remote inventory source" msgstr "रिमोट इन्वेंटरी स्रोत से स्थानीय वेरिएबल्स अधिलेखित करें" @@ -8886,7 +8900,7 @@ msgstr "एक या अधिक उपयोगकर्ता हटान msgid "On Success" msgstr "सफलता पर" -#: screens/Inventory/shared/Inventory.helptext.js:192 +#: screens/Inventory/shared/Inventory.helptext.js:193 msgid "The inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." msgstr "इस स्रोत द्वारा सिंक की जाने वाली इन्वेंटरी फ़ाइल। आप ड्रॉपडाउन से चुन सकते हैं या इनपुट के भीतर एक फ़ाइल दर्ज कर सकते हैं।" @@ -8951,7 +8965,7 @@ msgstr "कॉन्फ़िगर नहीं किया गया" msgid "Workflow Job" msgstr "वर्कफ़्लो जॉब" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:82 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:83 msgid "Use custom messages to change the content of\n" " notifications sent when a job starts, succeeds, or fails. Use\n" " curly braces to access information about the job:" @@ -9155,7 +9169,7 @@ msgid "Go to previous page" msgstr "पिछले पृष्ठ पर जाएं" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:565 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:178 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:197 msgid "Workflow approved message body" msgstr "वर्कफ़्लो अनुमोदित संदेश मुख्य भाग" @@ -9172,7 +9186,7 @@ msgid "required" msgstr "आवश्यक" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:589 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:196 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:215 msgid "Workflow denied message body" msgstr "वर्कफ़्लो अस्वीकृत संदेश मुख्य भाग" @@ -9274,7 +9288,7 @@ msgstr "docs.ansible.com" msgid "Edit Schedule" msgstr "शेड्यूल संपादित करें" -#: components/NotificationList/NotificationList.js:250 +#: components/NotificationList/NotificationList.js:263 msgid "Failed to toggle notification." msgstr "सूचना टॉगल करने में विफल।" @@ -9363,6 +9377,10 @@ msgstr "सहेजें" msgid "Click to create a new link to this node." msgstr "इस नोड से नया लिंक बनाने के लिए क्लिक करें।" +#: screens/Inventory/shared/Inventory.helptext.js:78 +msgid "Select the Ansible collection providing the inventory plugin used to sync from vCenter. The community.vmware collection is deprecated in favor of the newer vmware.vmware collection. The selection is applied via the \"plugin\" key in the source variables; when the key is absent, the default collection is used." +msgstr "vCenter से समन्वयित करने के लिए उपयोग किए जाने वाले इन्वेंटरी प्लगइन प्रदान करने वाले Ansible कलेक्शन का चयन करें। community.vmware कलेक्शन नए vmware.vmware कलेक्शन के पक्ष में बहिष्कृत है। चयन स्रोत वेरिएबल्स में \"plugin\" कुंजी के माध्यम से लागू किया जाता है; कुंजी अनुपस्थित होने पर, डिफ़ॉल्ट कलेक्शन का उपयोग किया जाता है।" + #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:167 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:136 msgid "Operator" @@ -9480,7 +9498,7 @@ msgid "Deprovisioning" msgstr "डीप्रोविज़निंग" #: components/DetailList/LaunchedByDetail.js:27 -#: components/NotificationList/NotificationList.js:202 +#: components/NotificationList/NotificationList.js:213 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:143 msgid "Webhook" msgstr "वेबहुक" @@ -9521,7 +9539,7 @@ msgstr "क्रेडेंशियल हटाने में विफल msgid "Private key passphrase" msgstr "निजी कुंजी पासफ़्रेज़" -#: components/NotificationList/NotificationListItem.js:58 +#: components/NotificationList/NotificationListItem.js:63 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:47 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:53 msgid "Start" @@ -9541,7 +9559,7 @@ msgstr "एक इन्वेंटरी चुनी जानी चाह #: components/PromptDetail/PromptProjectDetail.js:100 #: components/PromptDetail/PromptWFJobTemplateDetail.js:81 #: components/Schedule/ScheduleDetail/ScheduleDetail.js:477 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:266 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:274 #: screens/Job/JobDetail/JobDetail.js:345 #: screens/Project/ProjectDetail/ProjectDetail.js:229 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 @@ -9595,7 +9613,7 @@ msgstr "Red Hat Insights" msgid "View GitHub Settings" msgstr "GitHub सेटिंग्स देखें" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:257 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:258 msgid "/ (project root)" msgstr "/ (प्रोजेक्ट रूट)" @@ -9624,7 +9642,7 @@ msgstr "प्लेबुक निष्पादित करते समय msgid "View all Workflow Approvals." msgstr "सभी वर्कफ़्लो अनुमोदन देखें।" -#: screens/Inventory/shared/Inventory.helptext.js:92 +#: screens/Inventory/shared/Inventory.helptext.js:93 msgid "When not checked, a merge will be performed, combining local variables with those found on the external source." msgstr "जब चेक नहीं किया जाता है, तो एक मर्ज किया जाएगा, स्थानीय वेरिएबल्स को बाहरी स्रोत पर पाए गए वेरिएबल्स के साथ संयोजित किया जाएगा।" @@ -9718,7 +9736,7 @@ msgstr "टूल टॉगल करें" #: screens/Inventory/InventoryList/InventoryList.js:211 #: screens/Inventory/InventoryList/InventoryList.js:241 #: screens/Inventory/InventoryList/InventoryListItem.js:121 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:225 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:226 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:107 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:153 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:163 @@ -9769,7 +9787,7 @@ msgid "Test External Credential" msgstr "बाहरी क्रेडेंशियल का परीक्षण करें" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:601 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:205 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:224 msgid "Workflow pending message" msgstr "वर्कफ़्लो लंबित संदेश" @@ -9952,7 +9970,7 @@ msgstr "नेविगेशन" msgid "If enabled, control nodes will peer to this instance automatically. If disabled, instance will be connected only to associated peers." msgstr "यदि सक्षम है, तो नियंत्रण नोड्स स्वचालित रूप से इस इंस्टेंस से पीयर करेंगे। यदि अक्षम है, तो इंस्टेंस केवल संबद्ध पीयर से कनेक्ट होगा।" -#: screens/Inventory/shared/Inventory.helptext.js:120 +#: screens/Inventory/shared/Inventory.helptext.js:121 msgid "and click on Update Revision on Launch" msgstr "और लॉन्च पर रिवीज़न अपडेट करें पर क्लिक करें" @@ -9971,6 +9989,10 @@ msgstr "निष्पादन वातावरण संपादित क msgid "Order" msgstr "क्रम" +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:179 +msgid "Changed message body" +msgstr "परिवर्तन संदेश मुख्य भाग" + #: components/Schedule/Schedule.js:65 msgid "Back to Schedules" msgstr "शेड्यूल पर वापस" @@ -10089,7 +10111,7 @@ msgstr "नया कंटेनर समूह बनाएं" msgid "Bitbucket Data Center" msgstr "Bitbucket Data Center" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:367 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:375 msgid "Failed to delete inventory source {name}." msgstr "इन्वेंटरी स्रोत {name} हटाने में विफल।" @@ -10155,7 +10177,7 @@ msgstr "विवरण संपादित करें" msgid "Deleted" msgstr "हटाया गया" -#: screens/Inventory/shared/Inventory.helptext.js:129 +#: screens/Inventory/shared/Inventory.helptext.js:130 msgid "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import." msgstr "यह फ़ील्ड तब तक अनदेखा किया जाता है जब तक कि एक सक्षम वेरिएबल सेट न हो। यदि सक्षम वेरिएबल इस मान से मेल खाता है, तो आयात पर होस्ट सक्षम हो जाएगा।" @@ -10254,11 +10276,11 @@ msgstr "मॉड्यूल" msgid "Confirm revert all" msgstr "सभी वापस लौटाने की पुष्टि करें" -#: screens/Inventory/shared/Inventory.helptext.js:89 +#: screens/Inventory/shared/Inventory.helptext.js:90 msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source." msgstr "यदि चेक किया गया है, तो चाइल्ड समूहों और होस्ट्स के सभी वेरिएबल्स हटा दिए जाएंगे और बाहरी स्रोत पर पाए गए वेरिएबल्स से बदल दिए जाएंगे।" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:350 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:358 msgid "Delete inventory source" msgstr "इन्वेंटरी स्रोत हटाएं" @@ -10329,7 +10351,7 @@ msgstr "जॉब के चलने का बीता हुआ समय" msgid "GitLab" msgstr "GitLab" -#: components/NotificationList/NotificationListItem.js:93 +#: components/NotificationList/NotificationListItem.js:98 msgid "Toggle notification failure" msgstr "सूचना विफलता टॉगल करें" @@ -10430,8 +10452,8 @@ msgstr "इस फ़ील्ड में कम से कम {0} वर् #: components/JobList/JobListItem.js:197 #: components/PromptDetail/PromptInventorySourceDetail.js:78 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:222 -#: screens/Inventory/shared/InventorySourceForm.js:162 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:223 +#: screens/Inventory/shared/InventorySourceForm.js:168 #: screens/Job/JobDetail/JobDetail.js:180 #: screens/Job/JobDetail/JobDetail.js:332 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:93 @@ -10515,7 +10537,7 @@ msgstr "कुंजी चयन" msgid "Pass extra command line changes. There are two ansible command line parameters: " msgstr "अतिरिक्त कमांड लाइन परिवर्तन पास करें। दो ansible कमांड लाइन पैरामीटर हैं: " -#: screens/Inventory/shared/Inventory.helptext.js:84 +#: screens/Inventory/shared/Inventory.helptext.js:85 msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process." msgstr "जब चेक नहीं किया जाता है, तो बाहरी स्रोत पर न मिलने वाले स्थानीय चाइल्ड होस्ट्स और समूह इन्वेंटरी अपडेट प्रक्रिया द्वारा अछूते रहेंगे।" @@ -10558,7 +10580,7 @@ msgid "Specify a notification color. Acceptable colors are hex\n" msgstr "एक सूचना रंग निर्दिष्ट करें। स्वीकार्य रंग हेक्स\n" " रंग कोड हैं (उदाहरण: #3af या #789abc)।" -#: components/NotificationList/NotificationList.js:201 +#: components/NotificationList/NotificationList.js:212 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:142 msgid "Twilio" msgstr "Twilio" @@ -10598,7 +10620,7 @@ msgid "updated" msgstr "अपडेट किया गया" #: screens/Inventory/AdvancedInventoryHostDetail/AdvancedInventoryHostDetail.js:50 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:320 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:328 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:135 #: screens/Project/ProjectList/ProjectListItem.js:274 #: screens/TopologyView/Tooltip.js:347 @@ -10799,7 +10821,7 @@ msgid "Successful jobs" msgstr "सफल जॉब्स" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:535 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:151 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:152 msgid "Error message" msgstr "त्रुटि संदेश" @@ -10928,7 +10950,7 @@ msgstr "अज्ञात प्रोजेक्ट" msgid "Preconditions for running this node when there are multiple parents. Refer to the" msgstr "एकाधिक मूल होने पर इस नोड को चलाने के लिए पूर्व शर्तें। देखें" -#: screens/Inventory/shared/Inventory.helptext.js:140 +#: screens/Inventory/shared/Inventory.helptext.js:141 msgid "Variables used to configure the inventory source. For a detailed description of how to configure this plugin, see" msgstr "इन्वेंटरी स्रोत को कॉन्फ़िगर करने के लिए उपयोग किए जाने वाले वेरिएबल्स। इस प्लगइन को कॉन्फ़िगर करने के तरीके के विस्तृत विवरण के लिए, देखें" @@ -10938,7 +10960,7 @@ msgstr "Google Compute Engine" #: components/Sparkline/Sparkline.js:34 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:55 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:185 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:186 #: screens/Inventory/InventorySources/InventorySourceListItem.js:35 #: screens/Project/ProjectDetail/ProjectDetail.js:138 #: screens/Project/ProjectList/ProjectListItem.js:60 @@ -10960,7 +10982,7 @@ msgstr "सभी जॉब प्रकार" msgid "GitHub Enterprise Organization" msgstr "GitHub Enterprise Organization" -#: screens/Inventory/shared/InventorySourceForm.js:170 +#: screens/Inventory/shared/InventorySourceForm.js:176 msgid "Choose a source" msgstr "एक स्रोत चुनें" @@ -10994,7 +11016,7 @@ msgstr "सरल कुंजी चयन" msgid "You have automated against more hosts than your subscription allows." msgstr "आपने अपनी सदस्यता की अनुमति से अधिक होस्ट्स के विरुद्ध स्वचालन किया है।" -#: screens/Inventory/shared/Inventory.helptext.js:130 +#: screens/Inventory/shared/Inventory.helptext.js:131 msgid "Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied." msgstr "नियमित एक्सप्रेशन जहां केवल मेल खाते होस्ट नाम आयात किए जाएंगे। फ़िल्टर किसी भी इन्वेंटरी प्लगइन फ़िल्टर लागू होने के बाद पोस्ट-प्रोसेसिंग चरण के रूप में लागू किया जाता है।" @@ -11120,7 +11142,7 @@ msgstr "LDAP" msgid "Workflow Template" msgstr "वर्कफ़्लो टेम्पलेट" -#: components/NotificationList/NotificationListItem.js:40 +#: components/NotificationList/NotificationListItem.js:45 #: components/Workflow/WorkflowLegend.js:118 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:76 msgid "Approval" @@ -11282,7 +11304,7 @@ msgstr "प्रोविज़निंग विफल" msgid "Whether the approval node is automatically approved or denied when the timeout expires." msgstr "टाइमआउट समाप्त होने पर अनुमोदन नोड स्वचालित रूप से अनुमोदित या अस्वीकृत होता है या नहीं।" -#: screens/Inventory/shared/Inventory.helptext.js:125 +#: screens/Inventory/shared/Inventory.helptext.js:126 msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed." msgstr "किसी इन्वेंटरी सिंक को वर्तमान मानने के लिए सेकंड में समय। जॉब रन और कॉलबैक के दौरान कार्य सिस्टम नवीनतम सिंक के टाइमस्टैम्प का मूल्यांकन करेगा। यदि यह कैश टाइमआउट से पुराना है, तो इसे वर्तमान नहीं माना जाता है, और एक नया इन्वेंटरी सिंक किया जाएगा।" @@ -11296,7 +11318,7 @@ msgstr "एक्सेस टोकन समाप्ति" #: components/WorkflowOutputNavigation/WorkflowOutputNavigation.js:147 msgid "Workflow Job {currentPosition}/{total}" -msgstr "" +msgstr "वर्कफ़्लो जॉब {currentPosition}/{total}" #: components/Schedule/ScheduleDetail/FrequencyDetails.js:69 msgid "{interval, plural, one {# minute} other {# minutes}}" @@ -11440,7 +11462,7 @@ msgstr "Insights सिस्टम ID" msgid "Authorization Code Expiration" msgstr "प्राधिकरण कोड समाप्ति" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:69 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:70 msgid "Customize messages…" msgstr "संदेश अनुकूलित करें…" @@ -11666,7 +11688,7 @@ msgid "{interval, plural, one {# week} other {# weeks}}" msgstr "{interval, plural, one {# सप्ताह} other {# सप्ताह}}" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:544 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:160 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:161 msgid "Error message body" msgstr "त्रुटि संदेश मुख्य भाग" @@ -11709,7 +11731,7 @@ msgstr "प्रबंधित नोड्स" #: components/Lookup/MultiCredentialsLookup.js:201 #: components/Lookup/OrganizationLookup.js:131 #: components/Lookup/ProjectLookup.js:153 -#: components/NotificationList/NotificationList.js:206 +#: components/NotificationList/NotificationList.js:217 #: components/RelatedTemplateList/RelatedTemplateList.js:179 #: components/Schedule/ScheduleList/ScheduleList.js:201 #: components/TemplateList/TemplateList.js:231 @@ -11825,7 +11847,7 @@ msgstr "टोकन हटाने में त्रुटि" msgid "Select period" msgstr "अवधि चुनें" -#: components/NotificationList/NotificationListItem.js:65 +#: components/NotificationList/NotificationListItem.js:70 msgid "Toggle notification start" msgstr "सूचना प्रारंभ टॉगल करें" @@ -11873,7 +11895,7 @@ msgid "This field must be a number and have a value between {min} and {max}" msgstr "इस फ़ील्ड में एक संख्या होनी चाहिए और इसका मान {min} और {max} के बीच होना चाहिए" #: components/PromptDetail/PromptInventorySourceDetail.js:45 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:154 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:155 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:93 msgid "Update on launch" msgstr "लॉन्च पर अपडेट करें" @@ -11890,7 +11912,7 @@ msgstr "Jinja2 शर्तों के आधार पर समूह मे msgid "Copy Template" msgstr "टेम्पलेट कॉपी करें" -#: components/NotificationList/NotificationListItem.js:51 +#: components/NotificationList/NotificationListItem.js:56 msgid "Toggle notification approvals" msgstr "सूचना अनुमोदन टॉगल करें" @@ -11918,7 +11940,7 @@ msgstr "पिछला वर्ष" msgid "Week" msgstr "सप्ताह" -#: components/NotificationList/NotificationListItem.js:72 +#: components/NotificationList/NotificationListItem.js:77 #: components/StatusLabel/StatusLabel.js:39 msgid "Success" msgstr "सफलता" diff --git a/awx/ui/src/locales/ja/messages.js b/awx/ui/src/locales/ja/messages.js index a37c6c61..a6cf766c 100644 --- a/awx/ui/src/locales/ja/messages.js +++ b/awx/ui/src/locales/ja/messages.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"--iDlT\":[\"プロジェクトの削除\"],\"-0AkQd\":[[\"forks\",\"plural\",{\"one\":[\"#\",\" フォーク\"],\"other\":[\"#\",\" フォーク\"]}]],\"-0B-ue\":[\"プロジェクト\"],\"-5kO8P\":[\"土曜\"],\"-6EcFR\":[\"Enter キーを押して編集します。編集を終了するには、ESC キーを押します。\"],\"-7M7WW\":[\"クリックしてデフォルト値を切り替えます\"],\"-7VWRl\":[\"メモリー \",[\"0\"]],\"-8WGoO\":[\"プラグインパラメータが必要です。\"],\"-9d7Ol\":[\"Pagerduty サブドメイン\"],\"-9y9jy\":[\"実行中の可用性チェック\"],\"-9yY_Q\":[\"インベントリーをコピーできませんでした。\"],\"-AZQnp\":[\"SAML\"],\"-FWz2-\":[\"前にスクロール\"],\"-FjWgX\":[\"木\"],\"-GMFSa\":[\"プロジェクトをコピーできませんでした。\"],\"-GOG9X\":[\"説明の非表示\"],\"-NI2UI\":[\"このジョブテンプレートで行われる作業を指定された数のジョブスライスに分割します。各スライスはインベントリーの一部に対して同じタスクを実行します。\"],\"-NezOR\":[\"この認証タイプは、現在一部の認証情報で使用されているため、削除できません\"],\"-OpL2l\":[\"親ノードの最終状態に関係なく実行します。\"],\"-PyL32\":[\"このノードを削除してもよろしいですか?\"],\"-RAMET\":[\"このリンクの編集\"],\"-SAqJ3\":[\"認証情報をコピーできませんでした。\"],\"-Uepfb\":[\"コントロール\"],\"-b3ghh\":[\"権限昇格\"],\"-cWxFz\":[\"コンテンツの署名を有効にして、プロジェクトの同期時にコンテンツが安全に保たれていることを確認します。コンテンツが改ざんされている場合、ジョブは実行されません。\"],\"-hh3vo\":[\"最後のジョブ更新を読み込めません\"],\"-li8PK\":[\"サブスクリプションの使用状況\"],\"-nb9qF\":[\"(起動プロンプト)\"],\"-ohrPc\":[\"ルックアップの先行入力\"],\"-rfqXD\":[\"Survey の有効化\"],\"-uOi7U\":[\"クリックしてバンドルをダウンロードします。\"],\"-vAlj5\":[\"ジョブを起動できませんでした。\"],\"-z0Ubz\":[\"適用するロールの選択\"],\"-zW4qj\":[\"チェックアウトするブランチ。ブランチに加えて、タグ、コミットハッシュ、任意の参照を入力できます。カスタム refspec を指定しない限り、一部のコミットハッシュや参照は利用できない場合があります。\"],\"-zy2Nq\":[\"タイプ\"],\"0-31GV\":[\"削除\"],\"0-yjzX\":[\"リビジョンが利用可能になる前に、プロジェクトを同期する必要があります。\"],\"00_HDq\":[\"ポリシータイプ\"],\"00cteM\":[\"このフィールドは \",[\"0\"],\" 文字を超えてはなりません\"],\"01Zgfk\":[\"タイムアウト\"],\"02FGuS\":[\"新規グループの作成\"],\"02ePaq\":[[\"0\"],\" の選択\"],\"02o5A-\":[\"新規プロジェクトの作成\"],\"05TJDT\":[\"クリックしてジョブの詳細を表示\"],\"06Veq8\":[\"プロジェクトの同期\"],\"08IuMU\":[\"変数の上書き\"],\"08dX0o\":[\"Grafana\"],\"0Ca6Bi\":[[\"dateStr\"],\" (<0>\",[\"username\"],\" による)\"],\"0DRyjU\":[\"実行中のハンドラー\"],\"0JjrTf\":[\"ファイルの解析中にエラーが発生しました。ファイルのフォーマットを確認して、再試行してください。\"],\"0K8MzY\":[\"このフィールドは \",[\"max\"],\" 文字を超えてはなりません\"],\"0LUj25\":[\"インスタンスグループの削除\"],\"0MFMD5\":[\"1 つ以上のインスタンスで可用性をチェックできませんでした。\"],\"0Ohn6b\":[\"起動者\"],\"0PUWHV\":[\"繰り返しの頻度\"],\"0Pz6gk\":[\"構築されたインベントリプラグインを構成するために使用される変数。このプラグインの設定方法の詳細については、\"],\"0QsHpG\":[\"該当タイプの順序付けられたフィールドのセットを定義する入力スキーマ。\"],\"0Tddvz\":[\"Grafana サーバーのベース URL - /api/annotations\\n エンドポイントはベース Grafana URL に自動的に\\n 追加されます。\"],\"0WL4_U\":[\"すべてのノードの削除\"],\"0WP27-\":[\"ジョブの出力を待機中…\"],\"0YAsXQ\":[\"コンテナーグループ\"],\"0ZdD1M\":[[\"0\",\"plural\",{\"one\":[\"You cannot cancel the following job because it is not running:\"],\"other\":[\"You cannot cancel the following jobs because they are not running:\"]}]],\"0ZqUtV\":[\"詳細については、以下を参照してください\"],\"0_ru-E\":[\"インベントリーのコピー\"],\"0cqIWs\":[\"Basic 認証パスワード\"],\"0d48JM\":[\"多項選択法 (複数の選択可)\"],\"0eOoxo\":[\"開始日時より後の終了日時を選択してください。\"],\"0f7U0k\":[\"水\"],\"0gPQCa\":[\"常時\"],\"0lvFRT\":[\"資格情報を使用するリソースの機能が損なわれる可能性があるため、資格情報の種類を変更することはできません。\"],\"0pC_y6\":[\"イベント\"],\"0qOaMt\":[\"この認証情報とメタデータをテストするリクエストで問題が発生しました。\"],\"0rVzXl\":[\"Google OAuth2 の設定\"],\"0sNe72\":[\"ロールの追加\"],\"0tNXE8\":[\"PUT\"],\"0tfvhT\":[\"インスタンスグループの使用容量\"],\"0wlLcO\":[\"データの保持日数を設定します。\"],\"0zpgxV\":[\"オプション\"],\"0zs8j5\":[\"このノードのジョブが失敗パスをたどる前に、失敗後に自動的に再試行される最大回数。キャンセルされたジョブは再試行されません。\"],\"1-4GhF\":[\"同期の取り消し\"],\"10B0do\":[\"テスト通知の送信に失敗しました。\"],\"1280Tg\":[\"ホスト名\"],\"12j25_\":[\"GPG 公開鍵\"],\"12kemj\":[\"ソースコントロールの URL\"],\"14KOyT\":[\"ソースVARS\"],\"15GcuU\":[\"その他の認証設定の表示\"],\"17TKua\":[\"インスタンスグループ\"],\"19zgn6\":[\"インスタンスタイプ\"],\"1A3EXy\":[\"展開\"],\"1C5cFl\":[\"次回実行日時\"],\"1Ey8My\":[\"IP アドレス\"],\"1F0IaT\":[\"スケジュールの表示\"],\"1HMy92\":[\"JSON:\"],\"1I6UoR\":[\"ビュー\"],\"1L3KBl\":[\"新規認証情報タイプの作成\"],\"1LRwvx\":[\"インベントリーソースを起動時に更新する場合は、「起動時に更新」をクリックし、次の場所にも移動します: \"],\"1Ltnvs\":[\"ノードの追加\"],\"1PQRWr\":[\"開始時刻\"],\"1QRNEs\":[\"繰り返しの頻度\"],\"1RYzKu\":[\"キャンセルされたノードから再起動\"],\"1UJu6o\":[\"1 から 31 までの日付を選択してください。\"],\"1UjRxI\":[\"キャッシュタイムアウト\"],\"1UzENP\":[\"不可\"],\"1V4Yvg\":[\"その他のシステム\"],\"1WlWk7\":[\"インベントリーホストの詳細の表示\"],\"1WsB5U\":[\"このアカウントに関連するサブスクリプションを見つけることができませんでした。\"],\"1ZaQUH\":[\"姓\"],\"1_gTC7\":[\"同じ Vault ID を持つ複数の Vault 認証情報を選択することはできません。これを行うと、同じ Vault ID を持つもう一方の選択が自動的に解除されます。\"],\"1abtmx\":[\"子グループおよびホストのプロモート\"],\"1ahgeV\":[\"Google OAuth2\"],\"1cT4RU\":[\"SCM 更新\"],\"1fO-kL\":[\"インスタンスの切り替えに失敗しました。\"],\"1hCxP5\":[\"1 つ以上のインスタンスグループを削除できませんでした。\"],\"1kwHxg\":[\"統計\"],\"1n50PN\":[\"JSON タブ\"],\"1qd4yi\":[\"変数は JSON または YAML 構文にする必要があります。ラジオボタンを使用してこの構文を切り替えます。\"],\"1rDBnp\":[\"ファイルの相違点\"],\"1w2SCz\":[\"ソースコントロールタイプの選択\"],\"1xdJD7\":[\"画面に合わせる\"],\"1yHVE-\":[\"追加\"],\"2-iKER\":[\"アクティビティーストリームの表示\"],\"2B_v7Y\":[\"ポリシーインスタンスの割合\"],\"2CTKOa\":[\"プロジェクトに戻る\"],\"2FB7vv\":[\"デフォルトの実行環境を編集する前に、組織を選択してください。\"],\"2FeJcd\":[\"項目のスキップ\"],\"2H9REH\":[\"名前フィールドのあいまい検索。\"],\"2JV4mx\":[\"このインスタンスが属するインスタンスグループ。\"],\"2KlsJC\":[\"メッセージには複数の変数を適用できます。\\n 詳細については、以下を参照してください。\"],\"2MSEkM\":[\"インベントリーを削除できませんでした。\"],\"2a07Yj\":[\"通知テンプレートのコピー\"],\"2ekvhy\":[\"例外頻度\"],\"2gDkH_\":[\"出現回数を入力してください。\"],\"2iyx-2\":[\"Ansible コントローラーのドキュメント。\"],\"2n41Wr\":[\"ワークフローテンプレートの追加\"],\"2nsB1O\":[\"トークンに戻る\"],\"2ocqzE\":[\"Webhook: このテンプレートの webhook を有効にします。\"],\"2ooR7j\":[\"LDAP 5\"],\"2p6eVk\":[\"ルックアップモーダル\"],\"2pNIxF\":[\"ワークフローノード\"],\"2pgi-L\":[\"ホストが利用可能で、実行中のジョブに含める必要があるかどうかを\\n 示します。外部インベントリーの一部であるホストの場合、これは\\n インベントリー同期プロセスによってリセットされることがあります。\"],\"2qfwJn\":[\"上書き\"],\"2r06bV\":[\"Hipchat\"],\"2rvMKg\":[\"トークンの更新\"],\"2w-INk\":[\"ホストの詳細\"],\"2zs1kI\":[\"この値は、以前に入力されたパスワードと一致しません。パスワードを確認してください。\"],\"3-SkJA\":[\"グループのホストとの関連付けを解除しますか?\"],\"3-sY1p\":[\"送信先 SMS 番号\"],\"328Yxp\":[\"ソースコントロールのブランチ\"],\"38Or-7\":[\"タブ\"],\"38VIWI\":[\"テンプレートの詳細の表示\"],\"39y5bn\":[\"金曜\"],\"3A9ATS\":[\"実行環境が見つかりません。\"],\"3AOZPn\":[\"デバッグオプションの表示と編集\"],\"3FUtN9\":[\"インベントリーソース同期\"],\"3IVQDN\":[\"このスケジュールは UI でサポートされていない複雑なルールを\\n 使用しています。このスケジュールを管理するには API を使用してください。\"],\"3JjdaA\":[\"実行\"],\"3JnvxN\":[\"新しいロールを受け取るリソースを選択します。次のステップで適用するロールを選択できます。ここで選択したリソースは、次のステップで選択したすべてのロールを受け取ることに注意してください。\"],\"3JzsDb\":[\"5 月\"],\"3LoUor\":[\"送信先チャネル\"],\"3LqMX2\":[\"CIQ Ascender Automation Platform\"],\"3PAU4M\":[\"年\"],\"3PZalO\":[\"ホストが見つかりませんでした。\"],\"3Rke7L\":[\"1 (情報)\"],\"3WGwSW\":[\"更新を実行する前に、ローカルリポジトリーを完全に削除します。リポジトリーのサイズによっては、更新の完了に必要な時間が大幅に増加する場合があります。\"],\"3YSVMq\":[\"削除エラー\"],\"3aIe4Y\":[\"新規組織の作成\"],\"3b24mY\":[\"CPU \",[\"0\"]],\"3fG1e7\":[\"経過時間\"],\"3fMc43\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 年\"],\"other\":[\"#\",\" 年\"]}]],\"3hCQhK\":[\"インベントリプラグイン\"],\"3hvUyZ\":[\"新しい選択\"],\"3mTiHp\":[\"テンプレートをコピーできませんでした。\"],\"3pBNb0\":[\"出力のリロード\"],\"3sFvGC\":[\"インスタンスを有効または無効に設定します。無効にした場合には、ジョブはこのインスタンスに割り当てられません。\"],\"3sXZ-V\":[\"[起動時にリビジョンを更新]をクリックします。\"],\"3uAM50\":[\"使用許諾契約書\"],\"3wPA9L\":[\"カテゴリーの設定\"],\"3y7qi5\":[\"認証情報に戻る\"],\"3yy_k-\":[\"すべてのチームを表示します。\"],\"4-RjdJ\":[[\"interval\"],\" year\"],\"40lLFI\":[\"次のページに移動\"],\"41KRqu\":[\"認証情報のパスワード\"],\"45BzQy\":[\"ヘルスチェックは非同期タスクです。\"],\"45cx0B\":[\"サブスクリプションの編集の取り消し\"],\"45gLaI\":[\"起動時に認証情報を要求します。\"],\"46SUtl\":[\"グループの編集\"],\"479kuh\":[\"完全なリビジョンをクリップボードにコピーします。\"],\"47e97a\":[\"最大再試行回数\"],\"4BITzH\":[\"エラー:\"],\"4LzLLz\":[\"すべての設定の表示\"],\"4Q4HZp\":[[\"pluralizedItemName\"],\" は見つかりません\"],\"4QXpWJ\":[\"タイムアウト\"],\"4QfhOe\":[\"not__、__search などの一部の検索修飾子は、Smart Inventory ホストフィルターではサポートされていません。これらを削除し、このフィルターを使用して新しい Smart Inventory を作成します。\"],\"4S2cNE\":[\"ロギング設定の表示\"],\"4Wt2Ty\":[\"リストからアイテムの選択\"],\"4_ESDh\":[\"このフィールドは正規表現でなければなりません\"],\"4_xiC_\":[\"アーティファクト\"],\"4alXD6\":[\"このグループで同時に実行するジョブの最大数。\\n ゼロは制限が適用されないことを意味します。\"],\"4bhLaA\":[\"認証情報タイプの選択\"],\"4cWhxn\":[\"このインスタンスがポリシーによって管理されるかどうかを制御します。有効にすると、ポリシールールに基づいてインスタンスグループへの自動割り当てとインスタンスグループからの割り当て解除が可能になります。\"],\"4dQFvz\":[\"終了日時\"],\"4g1rw0\":[\"メール通知がホストへの到達を試みるのを停止して\\n タイムアウトするまでの時間 (秒単位)。範囲は\\n 1 秒から 120 秒です。\"],\"4hPyPF\":[\"保存して終了\"],\"4j2eOR\":[\"このホストが属するインベントリーを選択します。\"],\"4jnim6\":[\"webhook サービスを選択します。\"],\"4km-Vu\":[\"コンプライアンス違反\"],\"4kw_um\":[[\"interval\"],\" minute\"],\"4lCMxZ\":[\"失敗の説明:\"],\"4lgLew\":[\"2 月\"],\"4mQyZf\":[\"webhook サービスはこれを共有シークレットとして使用できます。\"],\"4nLbTY\":[\"すべての管理ジョブの表示\"],\"4o_cFL\":[\"アプリケーションの削除\"],\"4s0pSB\":[\"playbook によって管理または影響を受けるホストのリストをさらに制限するホストパターンを指定します。複数のパターンを使用できます。パターンに関する詳細および例については、Ansible のドキュメントを参照してください。\"],\"4uVADI\":[\"クライアントシークレット\"],\"4vFDZV\":[\"新規ジョブテンプレートの作成\"],\"4vkbaA\":[\"このインベントリー更新のソースとなるプロジェクトです。\"],\"4yGeRr\":[\"インベントリー同期\"],\"4zue79\":[\"著作権\"],\"5-qYGv\":[\"インスタンスの編集\"],\"54_SyV\":[[\"0\",\"plural\",{\"one\":[\"You do not have permission to cancel the following job:\"],\"other\":[\"You do not have permission to cancel the following jobs:\"]}]],\"56fd5u\":[\"このワークフローのすべてのノードを削除してもよろしいですか?\"],\"5B77Dm\":[\"最後のジョブ\"],\"5F5F4w\":[\"ワークフローの承認\"],\"5IhYoj\":[\"ノードタイプ\"],\"5K7kGO\":[\"ドキュメント\"],\"5KMGbn\":[\"このジョブを取り消してよろしいですか?\"],\"5RMgCw\":[\"ホスト\"],\"5S4tZv\":[\"頻度が期待値と一致しませんでした\"],\"5Sa1Ss\":[\"メール\"],\"5TnQp6\":[\"ジョブタイプ\"],\"5WFDw4\":[\"グループ化のみ\"],\"5X2wog\":[\"ログインに問題がありました。もう一度やり直してください。\"],\"5_vHPm\":[\"TACACS+ 設定の表示\"],\"5ajaW1\":[\"親ノードのアーティファクトが条件に一致した場合に実行します。\"],\"5dJK4M\":[\"ロール\"],\"5eHyY-\":[\"テスト通知\"],\"5eL2KN\":[\"ターゲット URL\"],\"5lqXf5\":[\"工場出荷時のデフォルトに戻します。\"],\"5n_soj\":[\"起動時にジョブスライス数を要求します。\"],\"5p6-Mk\":[\"失敗したジョブによるフィルター\"],\"5pDe2G\":[\"Remove \",[\"0\"],\" Access\"],\"5pa4JT\":[\"Playbook の開始\"],\"5qauVA\":[\"このワークフロージョブテンプレートは、現在他のリソースによって使用されています。削除してもよろしいですか?\"],\"5vA8H0\":[\"一致するホストがありません\"],\"5xzS8Q\":[\"これが「constructed」プラグインの\\n ソースファイルであることを保証するトークン。\"],\"5y9wkB\":[\"通知に戻る\"],\"6-OdGi\":[\"プロトコル\"],\"6-ptnU\":[\"以下へのオプション:\"],\"623gDt\":[\"ユーザーを削除できませんでした。\"],\"63C4Yo\":[\"コンテナーグループ\"],\"66Zq7T\":[\"リンクの変更の保存\"],\"66qTfS\":[\"過去 1 週間\"],\"679-JR\":[\"ID、名前、または説明フィールドのあいまい検索。\"],\"68OTAn\":[\"This intance is currently being used by other resources. Are you sure you want to delete it?\"],\"68h6WG\":[\"管理ジョブの起動\"],\"69aXwM\":[\"既存グループの追加\"],\"69zuwn\":[\"Deprovisioning these instances could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"6ASSBg\":[\"LDAP 4\"],\"6BzDub\":[\"ソフト削除\"],\"6GBt0m\":[\"メタデータ\"],\"6HLTEb\":[\"フィルター...\"],\"6J-cs1\":[\"タイムアウトの秒数\"],\"6KhU4s\":[\"変更を保存せずにワークフロークリエーターを終了してもよろしいですか?\"],\"6LTyxl\":[\"リビジョン\"],\"6PmtyP\":[\"凡例の表示/非表示\"],\"6RDwJM\":[\"トークン\"],\"6UYTy8\":[\"分\"],\"6V3Ea3\":[\"コピーしました\"],\"6WwHL3\":[\"ノードの合計\"],\"6XOI1I\":[\"新規フェデレーションインベントリーの作成\"],\"6XgEPi\":[\"時間\"],\"6YtxFj\":[\"名前\"],\"6Z5ACo\":[\"ホスト設定キー\"],\"6bpC9t\":[\"失敗したノード\"],\"6cylr_\":[\"Stdout\"],\"6f961q\":[\"見つからない場合のみ\"],\"6hEnxG\":[\"権限昇格の有効化\"],\"6j6_0F\":[\"関連リソース\"],\"6kpN96\":[\"通知を削除できませんでした。\"],\"6lGV3K\":[\"簡易表示\"],\"6msU0q\":[\"1 つ以上のジョブを削除できませんでした。\"],\"6nsio_\":[\"コマンドの実行\"],\"6oNH0E\":[\"プラグイン設定ガイドを参照してください。\"],\"6pMgh_\":[\"LDAP 設定の表示\"],\"6rSKy6\":[\"このフェデレーションインベントリーのソースインベントリーを選択します。ジョブが起動されると、ホストは各ソースインベントリーのインスタンスグループに自動的にルーティングされます。\"],\"6uvnKV\":[\"API サービス/統合キー\"],\"6vrz8I\":[\"1 つ以上のジョブを取り消すことができませんでした。\"],\"6zGHNM\":[\"残りのホスト\"],\"74MNbw\":[\"Ctrl IQ, Inc.\"],\"764xeZ\":[\"調査の更新に失敗しました。\"],\"7Bj3x9\":[\"失敗\"],\"7ElOdS\":[\"ダッシュボード ID\"],\"7IUE9q\":[\"ソース変数\"],\"7JF9w9\":[\"質問の追加\"],\"7L01XJ\":[\"アクション\"],\"7O5TcN\":[\"イベントの概要はありません\"],\"7PzzBU\":[\"User\"],\"7UZtKb\":[\"このワークフロージョブテンプレートを所有する組織。\"],\"7VETeB\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"],\"7VpPHA\":[\"確認\"],\"7Xk3M1\":[\"このジョブに実行させたい playbook が含まれるプロジェクトを選択します。\"],\"7ZhNzL\":[\"最初のページに移動\"],\"7b8TOD\":[\"詳細。\"],\"7bDeKc\":[\"サブスクリプションマニュフェスト\"],\"7fJwmW\":[\"選択された項目のリスト。\"],\"7hS02I\":[[\"automatedInstancesSinceDateTime\"],\" 以来 \",[\"automatedInstancesCount\"]],\"7icMBj\":[\"利用可能なジョブデータがありません\"],\"7kb4LU\":[\"承認済\"],\"7p5kLi\":[\"ダッシュボード\"],\"7q256R\":[\"ブランチの上書き許可\"],\"7qFdk8\":[\"認証情報の編集\"],\"7sMeHQ\":[\"キー\"],\"7sNhEz\":[\"ユーザー名\"],\"7w3QvK\":[\"成功メッセージボディー\"],\"7wgt9A\":[\"Playbook 実行\"],\"7zmvk2\":[\"項目の失敗\"],\"81eOdm\":[\"ワークフローの再起動\"],\"82O8kJ\":[\"このプロジェクトは現在同期中であり、同期プロセスが完了するまでクリックできません\"],\"82sWFi\":[\"管理\"],\"84Usx_\":[\"プロジェクトの削除に失敗しました。\"],\"87a_t_\":[\"ラベル\"],\"88ip8h\":[\"すべて元に戻す\"],\"8BkLPF\":[\"許可される URI のリスト (スペース区切り)\"],\"8F8HYs\":[\"使用する Ansible Automation Platform サブスクリプションを選択します。\"],\"8H3Igx\":[[\"interval\"],\" month\"],\"8Oef5v\":[\"GIT ソースコントロールの URL の例には次が含まれます。\"],\"8XM8GW\":[\"ロールを正しく割り当てられませんでした\"],\"8Z236a\":[\"ブランドロゴ\"],\"8ZsakT\":[\"パスワード\"],\"8_wZUD\":[\"チームロール\"],\"8d57h8\":[\"その他のシステム設定の表示\"],\"8gCRbU\":[\"他のプロンプト\"],\"8gaTqG\":[\"タイプの詳細\"],\"8kDNpI\":[\"条件が評価される前に、親ノードの結果が必要です。\"],\"8l9yyw\":[\"ジョブテンプレート\"],\"8lEjQX\":[\"バンドルのインストール\"],\"8lb4Do\":[\"サブスクリプションの解除\"],\"8oiwP_\":[\"入力の設定\"],\"8p_xVT\":[[\"0\",\"plural\",{\"one\":[[\"1\"]],\"other\":[[\"2\"]]}]],\"8u5g0S\":[\"スマートインベントリーの削除\"],\"8vETh9\":[\"表示\"],\"8wxHsh\":[\"このワークフロージョブテンプレートの Webhook キー。\"],\"8yd882\":[\"1 つ以上のチームの関連付けを解除できませんでした。\"],\"8zGO4o\":[\"特定の正規表現に一致するフィールド。\"],\"8zoIOi\":[[\"0\",\"plural\",{\"one\":[\"This credential type is currently being used by some credentials and cannot be deleted.\"],\"other\":[\"Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?\"]}]],\"8zvzWO\":[\"このワークフロージョブテンプレートの同時実行を許可します。\"],\"9-wVFp\":[\"フェデレーションインベントリーの詳細を表示\"],\"91UHfE\":[\"インベントリー更新\"],\"91lyAf\":[\"同時実行ジョブ\"],\"933cZy\":[\"その他のシステム設定\"],\"954HqS\":[\"ホストが最初に自動化されたのはいつですか?\"],\"95p1BK\":[\"新規ユーザーの作成\"],\"98Qtlu\":[\"このプロジェクトを使用してジョブが実行されるたびに、ジョブを開始する前にプロジェクトのリビジョンを更新します。\"],\"991Df5\":[\"a new webhook key will be generated on save.\"],\"99qC6z\":[[\"interval\"],\" week\"],\"9Ah95g\":[[\"0\",\"plural\",{\"one\":[\"このインベントリーは現在、一部のテンプレートで使用されています。削除してもよろしいですか?\"],\"other\":[\"これらのインベントリーを削除すると、それらに依存する一部のテンプレートに影響する可能性があります。それでも削除してもよろしいですか?\"]}]],\"9BTNYL\":[\"Expected at least one of client_email, project_id or private_key to be present in the file.\"],\"9BpfLa\":[\"ラベルの選択\"],\"9DOXq6\":[\"すべてのテンプレートを表示します。\"],\"9DugxF\":[\"サブスクリプションタイプ\"],\"9HhFQ8\":[\"この値以外の値を持つ結果と、その他のフィルターを満たす結果を返します。\"],\"9L1ngr\":[\"ジョブの合計\"],\"9N-4tQ\":[\"認証情報タイプ\"],\"9NyAH9\":[\"スキップ済\"],\"9PB0sF\":[\"IRC\"],\"9Rsklx\":[\"すべてのノードの削除\"],\"9Tmez1\":[\"インスタンスの詳細の表示\"],\"9UuGMQ\":[\"保留中の削除\"],\"9V-Un3\":[\"ファクトストレージの有効化\"],\"9VMv7k\":[\"建設されたインベントリ\"],\"9Wm-J4\":[\"パスワードの切り替え\"],\"9XA1Rs\":[\"プロジェクトは現在同期中であり、同期が完了するとリビジョンが利用可能になります。\"],\"9Y3BQE\":[\"組織の削除\"],\"9YSB0Z\":[\"このスケジュールにはインベントリーがありません\"],\"9ZnrIx\":[\"サブスクリプション情報の表示および編集\"],\"9fRa7M\":[\"削除する行を選択\"],\"9hmrEp\":[\"再起動時\"],\"9iX1S0\":[\"このアクションにより、次のインスタンスが削除され、以前に接続されていたインスタンスのインストールバンドルを再実行する必要がある場合があります。\"],\"9jfn-S\":[\"展開なし\"],\"9l0RZY\":[\"使用可能なノードをクリックして、新しいリンクを作成します。キャンセルするには、グラフの外側をクリックしてください。\"],\"9m7jms\":[\"このフェデレーションインベントリーに対してジョブが起動されたときに、ホストがそれぞれのインスタンスグループにルーティングされるソースインベントリー。\"],\"9mfJJf\":[\"ジョブテンプレート\"],\"9nhhVW\":[\"ページ\"],\"9nypdt\":[\"初期値を復元します。\"],\"9odS2n\":[\"失敗したホスト\"],\"9og-0c\":[\"この実行環境は、現在他のリソースで使用されています。削除してもよろしいですか?\"],\"9rFgm2\":[\"サブスクリプション容量\"],\"9rvzNA\":[\"関連付けモーダル\"],\"9td1Wl\":[\"チェック\"],\"9uI_rE\":[\"元に戻す\"],\"9u_dDE\":[\"到達不能なホスト数\"],\"9uxVdR\":[\"ソースコントロール認証情報\"],\"9wvWk3\":[\"この構築済みインベントリー入力は \\n 両方のカテゴリーのグループを作成し、\\n 制限 (ホストパターン) を使用して、それら 2 つの\\n グループの共通部分にあるホストのみを返します。\"],\"A1a8Ku\":[\"管理ジョブの起動エラー\"],\"A1taO8\":[\"検索\"],\"A3o0Xd\":[\"この組織を実行するインスタンスグループ。\"],\"A6paZd\":[\"フェデレーションインベントリーの追加\"],\"A8lIi2\":[\"リビジョンの同期\"],\"A9-PUr\":[\"送信されたヘルスチェックリクエスト。ページをリロードしてお待ちください。\"],\"AA2ASV\":[\"実行環境が正常にコピーされました\"],\"ADVQ46\":[\"ログイン\"],\"ARAUFe\":[\"インベントリーの削除\"],\"AV22aU\":[\"問題が発生しました...\"],\"AWOSPo\":[\"ズームイン\"],\"Ab1y_G\":[\"構築された在庫ソースの同期をキャンセル\"],\"AgTBbk\":[[\"intervalValue\",\"plural\",{\"one\":[\"week\"],\"other\":[\"weeks\"]}]],\"AgTuXC\":[[\"pluralizedItemName\"],\" を削除するパーミッションがありません: \",[\"itemsUnableToDelete\"]],\"Ai2U7L\":[\"ホスト\"],\"Aj3on1\":[\"外部ログの有効化\"],\"AoCBvp\":[\"ジョブスライス\"],\"Apl-Vf\":[\"Red Hat サブスクリプションマニュフェスト\"],\"Apv-R1\":[\"アップグレードまたは更新の準備ができましたら、<0>お問い合わせください。\"],\"AqdlyH\":[\"ノードの作成時または編集時に、パスワードの入力を求める認証情報を持つジョブテンプレートを選択できない\"],\"ArtxnQ\":[\"ソースコントロールの Refspec\"],\"AsLVdj\":[\"1 行につき 1 つの IRC チャネルまたはユーザー名を使用します。チャネルの\\n ポンド記号 (#) およびユーザーのアット記号 (@) は\\n 必要ありません。\"],\"AwUsnG\":[\"インスタンス\"],\"AxC8wb\":[\"出力をコピー\"],\"AxPAXW\":[\"結果が見つかりません\"],\"Axi4f8\":[\"Dragging item \",[\"id\"],\". Item with index \",[\"oldIndex\"],\" in now \",[\"newIndex\"],\".\"],\"Azw0EZ\":[\"新規スマートインベントリーの作成\"],\"B0HFJ8\":[\"1 つ以上のホストの関連付けを解除できませんでした。\"],\"B0P3qo\":[\"ジョブ ID:\"],\"B0dbFG\":[\"スケジュールの削除\"],\"B2Zb_F\":[\"JSON\"],\"B3ZzHO\":[\"最後に自動化\"],\"B4WcU9\":[[\"0\"],\" により承認済み - \",[\"1\"]],\"B7FU4J\":[\"ホストの開始\"],\"B8bpYS\":[\"サブスクリプションを含む Red Hat Subscription Manifest をアップロードします。サブスクリプションマニフェストを生成するには、Red Hat カスタマーポータルの <0>サブスクリプション割り当て にアクセスします。\"],\"BAmn8K\":[\"リソースタイプの選択\"],\"BERhj_\":[\"成功メッセージ\"],\"BGNDgh\":[\"ノードのエイリアス\"],\"BH7upP\":[\"POST\"],\"BIJ2_m\":[\"この組織内のジョブに使用される実行環境。プロジェクト、ジョブテンプレート、またはワークフローのレベルで実行環境が明示的に割り当てられていない場合のフォールバックとして使用されます。\"],\"BNDplB\":[\"テンプレートが正常にコピーされました\"],\"BWTzAb\":[\"手動\"],\"BaPk6N\":[\"playbook を見つけるために使用される基本パス。このパス内で見つかったディレクトリーは、playbook ディレクトリーのドロップダウンに一覧表示されます。基本パスと選択した playbook ディレクトリーを合わせて、playbook を見つけるために使用される完全なパスが提供されます。\"],\"BfYq0G\":[\"ソースコントロールのタイプ\"],\"Bg7M6U\":[\"結果が見つかりません\"],\"Bl2Djq\":[\"トークンの表示\"],\"Bl2eoO\":[\"暗号化済み\"],\"BskWMl\":[\"到達不能\"],\"BsrdSv\":[\"JSONまたはYAML構文を使用してインベントリ変数を入力します。ラジオボタンを使用して、2つを切り替えます。構文の例については、Ansible Controllerのドキュメントを参照してください。\"],\"Bv8zdm\":[\"インプットインベントリ\"],\"BwJKBw\":[\"/\"],\"Bz7WRU\":[[\"0\",\"plural\",{\"one\":[\"有効な電話番号を入力してください。\"],\"other\":[\"有効な電話番号を入力してください。\"]}]],\"BzEFor\":[\"または\"],\"BzbzJb\":[\"ファクト\"],\"BzfzPK\":[\"項目\"],\"C-gr_n\":[\"Azure AD の設定\"],\"C0sUgI\":[\"新規インベントリーの作成\"],\"C2KEkR\":[\"SSH パスワード\"],\"C3Q1LZ\":[\"OIDC 設定の表示\"],\"C4C-qQ\":[\"スケジュールの詳細\"],\"C6GAUT\":[\"展開\"],\"C7dP40\":[[\"0\"],\" を拒否できませんでした。\"],\"C7s60U\":[\"Webhook の詳細\"],\"CAL6E9\":[\"チーム\"],\"CDOlBM\":[\"インスタンス ID\"],\"CE-M2e\":[\"情報\"],\"CGOseh\":[\"スケジュールの詳細\"],\"CGZgZY\":[\"関連付けを解除する行を選択してください\"],\"CG_9l6\":[\"LDAP 1\"],\"CGwKKr\":[[\"0\",\"plural\",{\"one\":[\"グループを削除しますか?\"],\"other\":[\"グループを削除しますか?\"]}]],\"CIEoqM\":[\"インスタンス名\"],\"CKc7jz\":[\"ホストの詳細モーダル\"],\"CL7QiF\":[\"回答を入力し、右側のチェックボックスをクリックして、回答をデフォルトとして選択します。\"],\"CLTHnk\":[\"Survey 質問の順序\"],\"CMmwQ-\":[\"不明な開始日\"],\"CNZ5h9\":[\"データ保持期間\"],\"CS8u6E\":[\"Webhook の有効化\"],\"CSvk3a\":[\"Twilio の「Messaging\\n Service」に関連付けられた番号 (形式は +18005550199)。\"],\"CW11B-\":[\"最小\"],\"CXJHPJ\":[\"変更者 (ユーザー名)\"],\"CZDqWd\":[\"プロジェクトのリビジョンが現在古くなっています。更新して最新のリビジョンを取得してください。\"],\"CZg9aH\":[\"ホストの選択\"],\"C_Lu89\":[\"JSON または YAML 構文のいずれかを使用してインジェクターを入力します。構文のサンプルについては Ansible Controller ドキュメントを参照してください。\"],\"C_NnqT\":[\"新規ホストの作成\"],\"Cc8jO8\":[\"そのコマンドを実行するためにリモートホストへのアクセス時に使用する認証情報を選択します。Ansible がリモートホストにログインするために必要なユーザー名および SSH キーまたはパスワードが含まれる認証情報を選択してください。\"],\"CcKMRv\":[\"このジョブテンプレートは、現在他のリソースで使用されています。削除してもよろしいですか?\"],\"CczdmZ\":[\"すべての認証情報を表示します。\"],\"CdGRti\":[\"すべての通知テンプレートを表示します。\"],\"Ce28nP\":[\"< 0 >注:インスタンスは、< 1 >ポリシールールによって管理されている場合、このインスタンスグループに再関連付けることができます。\"],\"Cev3QF\":[\"タイムアウト (分)\"],\"ChTa9Z\":[[\"intervalValue\",\"plural\",{\"one\":[\"hour\"],\"other\":[\"hours\"]}]],\"CoPs3y\":[\"このワークフローには、ノードが構成されていません。\"],\"CoTqdo\":[\"\\n Note that you may still see the group in the list after\\n disassociating if the host is also a member of that group’s\\n children. This list shows all groups the host is associated\\n with directly and indirectly.\\n \"],\"Coyxic\":[\"このボタンをクリックして、選択した認証情報と指定した入力を使用してシークレット管理システムへの接続を確認します。\"],\"Cs0oSA\":[\"設定の表示\"],\"Csvbqs\":[\"ここに構築されたインベントリプラグインのドキュメントを表示します。\"],\"Cx8SDk\":[\"トークンの有効期限の更新\"],\"D-NlUC\":[\"システム\"],\"D1JWCq\":[[\"interval\"],\" minutes\"],\"D4euEu\":[\"その他の認証設定\"],\"D89zck\":[\"日\"],\"DBBU2q\":[\"このフィールドには、少なくとも 1 つの値を選択する必要があります。\"],\"DBC3t5\":[\"日曜\"],\"DBHTm_\":[\"8 月\"],\"DFNPK8\":[\"可用性チェックの実行\"],\"DGZ08x\":[\"すべてを同期\"],\"DHf0mx\":[\"新規インスタンスの作成\"],\"DHrOgD\":[\"プロジェクトステータスの更新\"],\"DIKUI7\":[\"最小長\"],\"DIX823\":[\"このフィールドは数値で、\",[\"max\"],\" 未満の値である必要があります\"],\"DJIazz\":[\"正常に承認されました\"],\"DNLiC8\":[\"設定を元に戻す\"],\"DNqHaO\":[\"この表には、構築済みインベントリープラグインの\\n いくつかの便利なパラメーターが記載されています。パラメーターの完全なリストについては \"],\"DPfwMq\":[\"完了\"],\"DV-Xbw\":[\"使用言語\"],\"DVIUId\":[\"プロンプトオーバーライド\"],\"DZNGtI\":[\"プロジェクトのチェックアウト結果\"],\"D_oBkC\":[\"GitHub チーム\"],\"DdlJTq\":[\"完全一致 (指定されない場合のデフォルトのルックアップ)。\"],\"De2WsK\":[\"このアクションにより、このユーザーのすべてのロールと選択したチームの関連付けが解除されます。\"],\"DhSza7\":[\"コントローラーノード\"],\"DnkUe2\":[\"Webhook サービスの選択\"],\"DqnAO4\":[\"最初に自動化\"],\"Du6bPw\":[\"住所\"],\"Dug0C-\":[\"指定した実行回数後\"],\"DyYigF\":[\"TACACS+ 設定\"],\"Dz7fsq\":[\"ズームイン\"],\"E6Z4zF\":[\"ファイル形式が無効です。有効な Red Hat サブスクリプションマニフェストをアップロードしてください。\"],\"E86aJB\":[\"ロールの関連付けの解除!\"],\"E9wN_Q\":[\"最終可用性チェック\"],\"EH6-2h\":[\"トポロジービュー\"],\"EHu0x2\":[\"同期\"],\"EIBcgD\":[\"プロジェクトから取得\"],\"EIkRy0\":[\"送信先チャネル\"],\"EJQLCT\":[\"ワークフロージョブテンプレートを削除できませんでした。\"],\"ENDbv1\":[\"すべてのホストを表示します。\"],\"ENRWp9\":[\"アノテーションのタグ\"],\"ENyw54\":[\"関連するグループ\"],\"EP-eCv\":[\"SAML 設定\"],\"EQ-qsg\":[\"ワークフロージョブテンプレート\"],\"ES0WE_\":[\"タイムアウト時\"],\"ETUQuF\":[\"1 つ以上のインベントリーを削除できませんでした。\"],\"EWL-h4\":[\"host-description-\",[\"0\"]],\"E_QGRL\":[\"無効化\"],\"E_tJey\":[\"デフォルトの実行環境\"],\"Eb5CN1\":[[\"0\",\"plural\",{\"one\":[\"This organization is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"EdQY6l\":[\"なし\"],\"Eff_76\":[\"ローカルタイムゾーン\"],\"Eg4kGP\":[\"デフォルトの応答\"],\"EmSrGB\":[\"以前\"],\"EmfKjn\":[\"トラブルシューティング設定を表示\"],\"Emna_v\":[\"ソースの編集\"],\"EmzUsN\":[\"ノードの詳細の表示\"],\"EnC3hS\":[\"カスタム Pod 仕様\"],\"EpH7Cd\":[\"認証情報の削除\"],\"Eq6_y5\":[\"this Tower documentation page\"],\"Eqp9wv\":[\"次の場所でJSONの例を表示します。\"],\"EwxKbE\":[\"削除済み\"],\"EzwCw7\":[\"質問の編集\"],\"F-0xxR\":[\"リソースがこのテンプレートにありません。\"],\"F-LGli\":[\"以下の関連付けを解除する権限がありません: \",[\"itemsUnableToDisassociate\"]],\"F-_-es\":[\"インスタンスの選択\"],\"F0xJYs\":[\"容量調整の更新に失敗しました。\"],\"F2l57P\":[\"新しいインスタンスがオンラインになったときに、このグループに自動的に\\n 割り当てられるすべてのインスタンスの最小割合。\"],\"FCnKmF\":[\"ユーザートークンの作成\"],\"FD8Y9V\":[\"ノードアイコンをクリックして詳細を表示します。\"],\"FEr96N\":[\"テーマ\"],\"FFv0Vh\":[\"自動化\"],\"FG2mko\":[\"リストから項目の選択\"],\"FGnH0p\":[\"これにより、このワークフローの後続のノードがすべてキャンセルされます\"],\"FMpB-A\":[\"< 0 >注:インスタンスが< 1 >ポリシールールによって管理されている場合、手動で関連付けられたインスタンスはインスタンスグループから自動的に分離されることがあります。\"],\"FO7Rwo\":[\"同僚を削除しますか?\"],\"FQto51\":[\"全列を展開\"],\"FTuS3P\":[\"このフィールドは空白ではありません\"],\"FV5MUV\":[\"ユーザーが構築済みグループの正確性について\\n フィードバックを必要とする場合は、プラグイン設定で\\n strict: true を使用することを強くお勧めします。\"],\"FXmp8Q\":[\"ロールの関連付けに失敗しました\"],\"FYJRCY\":[\"1 つ以上のプロジェクトを削除できませんでした。\"],\"F_Nk65\":[\"出力のダウンロード\"],\"F_c3Jb\":[\"カスタムの Kubernetes または OpenShift Pod 仕様\"],\"Failed\":[\"失敗\"],\"Fanpmj\":[\"提示される変数\"],\"FblMFO\":[\"メトリクスの選択\"],\"FclH3w\":[\"正常に保存が実行されました!\"],\"FfGhiE\":[\"ワークフローの保存中にエラー!\"],\"FhTYgi\":[\"1 つ以上のジョブテンプレートを削除できませんでした\"],\"FhhvWu\":[\"これにより、このワークフローの後続のノードがすべてキャンセルされます。\"],\"FiyMaa\":[\".json ファイルの選択\"],\"FjVFQ-\":[\"モジュールの選択\"],\"FjkaiT\":[\"ズームアウト\"],\"FkQvI0\":[\"テンプレートの編集\"],\"FlvpdU\":[\"If enabled, show the changes made\\n by Ansible tasks, where supported. This is equivalent to Ansible’s\\n --diff mode.\"],\"FnSb-y\":[\"ジョブの取り消し\"],\"FnZzou\":[\"インスタンスの状態\"],\"FncCci\":[\"RADIUS\"],\"Fo2bwm\":[\"アクター\"],\"Fo6qAq\":[\"Subversion ソースコントロールの URL の例には次が含まれます。\"],\"Fp0Rk4\":[\"'dev' や 'test' など、このインベントリーを説明する\\n オプションのラベル。ラベルを使用して、インベントリーと完了したジョブを\\n グループ化してフィルタリングできます。\"],\"FqW8E0\":[\"使用済み容量\"],\"FsGJXJ\":[\"クリーニング\"],\"Fx2-x_\":[\"ユーザーロールの追加\"],\"G-jHgL\":[\"ソースパスの設定:\"],\"G2KpGE\":[\"プロジェクトの編集\"],\"G3myU-\":[\"火曜\"],\"G768_0\":[\"拒否\"],\"G8jcl6\":[\"通知テンプレート\"],\"G9MOps\":[\"在庫同期に使用するブランチ。空白の場合はプロジェクトのデフォルトが使用されます。プロジェクトのALLOW_OVERRIDEフィールドがTRUEに設定されている場合にのみ許可されます。\"],\"GDvlUT\":[\"ロール\"],\"GGWsTU\":[\"取り消し済み\"],\"GGuAXg\":[\"SAML 設定の表示\"],\"GHDQ7i\":[\"1 つ以上の組織を削除できませんでした。\"],\"GJKwN0\":[\"スケジュール\"],\"GLZDtF\":[\"システム警告\"],\"GLwo_j\":[\"0 (警告)\"],\"GMaU6_\":[\"起動時にジョブタイプを要求します。\"],\"GO6s6F\":[\"ジョブ設定\"],\"GRwtth\":[\"インスタンスでの可用性チェック実行\"],\"GSYBQc\":[\"API サービス/統合キー\"],\"GTOcxw\":[\"ユーザーの編集\"],\"GU9vaV\":[\"到達不能なホスト\"],\"GXiLKo\":[\"テキストエリア\"],\"GZIG7_\":[\"インベントリーが正常にコピーされました\"],\"G_Dwo_\":[\"Choose an answer type or format you want as the prompt for the user.\\n Refer to the Ansible Controller Documentation for more additional\\n information about each option.\"],\"GaJLE6\":[\"開始ユーザー\"],\"Gd-B71\":[\"認証情報タイプが見つかりません。\"],\"Ge5ecx\":[\"最大ホスト数\"],\"GeIrWJ\":[[\"brandName\"],\" ロゴ\"],\"Gf3vm8\":[\"項目/ページ\"],\"GiXRTS\":[\"1 つ以上のユーザートークンを削除できませんでした。\"],\"Gix1h_\":[\"すべてのジョブを表示\"],\"GkbHM9\":[\"すべてのプロジェクトを表示します。\"],\"Gn7TK5\":[\"ツールの切り替え\"],\"GpNoVG\":[\"スケジュールを追加してこのリストに入力してください。\"],\"GpWp6E\":[\"システムレベルの機能および関数の定義\"],\"GtycJ_\":[\"タスク\"],\"H0z3JJ\":[\"これらの引数は指定されたモジュールで使用されます。\",[\"moduleName\"],\" に関する情報は、次をクリックすると確認できます \"],\"H1M6a6\":[\"すべてのインスタンスを表示します。\"],\"H3kCln\":[\"ホスト名\"],\"H6jbKn\":[\"ユーザーインターフェースの設定\"],\"H7OUPr\":[\"日\"],\"H7e4dl\":[\"YAML または JSON のいずれかを使用して\\n キーと値のペアを指定します。\"],\"H86f9p\":[\"折りたたむ\"],\"H9MIed\":[\"実行ノード\"],\"HAi1aX\":[\"Webhook キーの更新\"],\"HAzhV7\":[\"認証情報\"],\"HDULRt\":[\"ユニークなホスト\"],\"HGOtRu\":[\"通知テストに失敗しました。\"],\"HIfMSF\":[\"多項選択法オプション\"],\"HLAK2g\":[\"This action will cancel the following jobs:\"],\"HODq3s\":[\"1つ以上のワークフローの承認を拒否できませんでした。\"],\"HQ7e8y\":[\"exact で大文字小文字の区別なし。\"],\"HQ7oEt\":[\"チームに戻る\"],\"HUx6pW\":[\"インジェクターの設定\"],\"HajiZl\":[\"月\"],\"HbaQks\":[\"1 行ごとに 1 つのメールアドレスを指定して、この通知タイプの受信者リストを作成します。\"],\"HbnjOn\":[[\"interval\"],\" weeks\"],\"HcznyH\":[\"一部またはすべてのインベントリーソースを同期できませんでした。\"],\"HdE1If\":[\"チャネル\"],\"HdErwL\":[\"承認する行を選択\"],\"Hf0QDK\":[\"プロジェクトが正常にコピーされました\"],\"Hhnh8d\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 日\"],\"other\":[\"#\",\" 日\"]}]],\"HiTf1W\":[\"元に戻すの取り消し\"],\"HjxnnB\":[\"モジュールの選択\"],\"HlhZ5D\":[\"TLS の使用\"],\"HoHveO\":[\"この条件とその他のフィルターの両方を満たす結果を返します。 何も選択されていない場合、これがデフォルトのセットタイプです。\"],\"HpK_8d\":[\"再読み込み\"],\"Ht1JWm\":[\"通知の色\"],\"HwpTx4\":[\"playbook の実行時に ansible が生成する出力のレベルを制御します。\"],\"I0LRRn\":[\"バンドルのダウンロード\"],\"I7Epp-\":[\"オプションの詳細\"],\"I9NouQ\":[\"サブスクリプションが見つかりません\"],\"ICi4pv\":[\"自動化\"],\"ICt7Id\":[\"ノードタイプ\"],\"IEKPuq\":[\"次へスクロール\"],\"IGQ11b\":[\"webhook サービスと共有されるシークレット。サービスはこれを使用してリクエストに署名するため、お使いのリポジトリーのみがプロジェクトの同期をトリガーできます。設定として管理するために独自のシークレットを入力するか、フィールドを空白のままにして保存時に生成させます。\"],\"IJAVcb\":[\"アプリケーションに戻る\"],\"IKg_un\":[\"送信先チャネルまたはユーザー\"],\"IMJYui\":[\"SMS メッセージをルーティングする場所を指定するには、1 行につき 1 つの\\n 電話番号を使用します。電話番号は +11231231234 の形式にする必要があります。詳細については Twilio のドキュメントを参照してください\"],\"IN6gbp\":[\"クリックして、 Survey の質問の順序を並べ替えます\"],\"IPusY8\":[\"更新を実行する前に、ローカルの変更をすべて削除します。\"],\"ISuwrJ\":[\"実行環境の編集\"],\"IV0EjT\":[\"テスト通知\"],\"IVvM2B\":[\"有効なオプション\"],\"IWoF_f\":[\"Survey の表示\"],\"IZfe0p\":[\"ソースコントロールのブランチ\"],\"Igz8MU\":[\"過去 2 週間\"],\"IiR1sT\":[\"ノードタイプ\"],\"IjDwKK\":[\"ログインタイプ\"],\"Ikhk0q\":[\"このワークフロージョブテンプレートの Webhook サービス。\"],\"Iqm2E5\":[[\"pluralizedItemName\"],\" を追加してこのリストに入力してください。\"],\"IrC12v\":[\"アプリケーション\"],\"IrI9pg\":[\"終了日\"],\"IsJ8i6\":[\"ワークフローのブランチを選択します。このブランチは、ブランチの入力を求めるすべてのジョブテンプレートノードに適用されます。\"],\"IspLSK\":[\"管理ジョブが見つかりません。\"],\"J0zi6q\":[\"スキップタグ\"],\"J2HgCR\":[\"Red Hat, Inc.\"],\"J2d1y8\":[\"成功ジョブによるフィルター\"],\"J4y7Uk\":[\"ワークフローがキャンセルされました \"],\"J8VgfD\":[\"特定フィールドもしくは関連オブジェクトが null かどうかをチェック。ブール値を想定。\"],\"JEGlfK\":[\"開始\"],\"JFnJqF\":[\"経過時間\"],\"JFphCp\":[\"3 (デバッグ)\"],\"JGvwnU\":[\"最終使用日時\"],\"JIX50w\":[\"インスタンスグループのフォールバックの防止: 有効にすると、ジョブテンプレートは、実行対象の優先インスタンスグループのリストにインベントリーまたは組織のインスタンスグループを追加できないようにします。\"],\"JJwEMx\":[\"ホストを削除しました\"],\"JKZTiL\":[\"これらは、サポートされているコマンド実行の標準の詳細レベルです。\"],\"JL3si7\":[\"更新中\"],\"JLjfEs\":[\"1 つ以上のスケジュールを削除できませんでした。\"],\"JOmgRg\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" か月\"],\"other\":[\"#\",\" か月\"]}]],\"JRa4kV\":[\"ソースコントロールリポジトリーでプッシュが発生したときにプロジェクトを同期し、ジョブの起動ごとにポーリングや更新を行わなくても、ローカルコピーが常に最新の状態になるようにします。\"],\"JTHoCu\":[\"変更の切り替え\"],\"JUwjsw\":[\"Select an activity type\"],\"JXgd33\":[\"ダッシュボードに戻る\"],\"J_2nGO\":[\"The execution environment that will be used for jobs\\n inside of this organization. This will be used a fallback when\\n an execution environment has not been explicitly assigned at the\\n project, job template or workflow level.\"],\"J_DUZt\":[\"インスタンスグループ\"],\"Ja4VHl\":[[\"0\"],\" 以上\"],\"JgP090\":[\"サブモジュールを追跡する\"],\"JjcTk5\":[\"ソーシャルログイン\"],\"JjfsZM\":[\"ワークフロー承認の削除\"],\"JppQoT\":[\"最終再計算日:\"],\"JsY1p5\":[\"拒否済み\"],\"Jvv6rS\":[\"複数選択\"],\"JwqOfG\":[\"評価対象\"],\"Jy9qCv\":[\"ログインリダイレクトの編集をキャンセルする\"],\"K5AykR\":[\"チームの削除\"],\"K93j4j\":[\"ラベル名\"],\"KC2nS5\":[\"リソースが削除されました\"],\"KDcLJ6\":[\"YAML:\"],\"KEY0qH\":[\"テスト合格。\"],\"KM6m8p\":[\"Team\"],\"KNOsJ0\":[\"このジョブテンプレートを説明する任意のラベル ('dev' や 'test' など)。ラベルを使用して、ジョブテンプレートや完了したジョブをグループ化してフィルタリングできます。\"],\"KQ9EQm\":[\"構築されたインベントリプラグインの使用方法\"],\"KR9Aiy\":[\"This inventory is currently being used by some templates. Are you sure you want to delete it?\"],\"KRf0wm\":[\"認証情報タイプ\"],\"KTvwHj\":[\"認証情報の入力ソース\"],\"KVbzjm\":[\"ビジュアライザー\"],\"KXFYp9\":[\"サブスクリプションの取得\"],\"KXnokb\":[\"システム全体で利用可能な実行環境を特定の組織に再割り当てすることはできません\"],\"KZp4lW\":[\"Lookup select\"],\"K_MYeX\":[\"ユーザーの詳細の表示\"],\"KeRkFA\":[\"サブスクリプションの選択解除\"],\"KeqCdz\":[\"コントロールノードからのピア\"],\"Ki_j_-\":[\"保存時に新しい Webhook キーを生成するには空白のままにします\"],\"KjBkMe\":[\"このコンテナーグループは、現在他のリソースで使用されています。削除してもよろしいですか?\"],\"KjVvNP\":[\"パネル ID\"],\"KkMfgW\":[\"ジョブテンプレート\"],\"KkzJWF\":[\"最初の自動化\"],\"KlQd8_\":[\"トークンのアクセスのスコープ\"],\"KnN1Tu\":[\"有効期限\"],\"KoCnPE\":[\"ジョブの取り消し\"],\"KopV8H\":[\"root グループのみを表示\"],\"KxIA0h\":[\"ホストの切り替え\"],\"Kz9DSl\":[\"既存ホストの追加\"],\"KzQFvE\":[\"組織の編集\"],\"L1Ob4t\":[\"詳細タブ\"],\"L3ooU6\":[\"認証情報\"],\"L7Nz3F\":[\"不足しているリソース\"],\"L8fEEm\":[\"グループ\"],\"L973Qq\":[\"サブスクリプションの要求\"],\"LCl8Ck\":[\"日付検索入力\"],\"LGl_pR\":[\"ジョブ設定の表示\"],\"LGryaQ\":[\"新規認証情報の作成\"],\"LQ29yc\":[\"インベントリソースの同期を開始する\"],\"LQRys9\":[\"サブモジュールは、master ブランチ (または .gitmodules で指定された別のブランチ) の最新のコミットを追跡します。いいえの場合、サブモジュールはメインプロジェクトで指定されたリビジョンに保持されます。これは、git submodule update に --remote フラグを指定することと同じです。\"],\"LQTgjH\":[\"プロジェクトが見つかりません。\"],\"LRePxk\":[\"新しいインスタンスがオンラインになったときにこのグループに自動的に割り当てられるインスタンスの最小数。\"],\"LSUePQ\":[\"起動 | \",[\"0\"]],\"LULLsO\":[\"すべての組織を表示します。\"],\"LV5a9V\":[\"ピア\"],\"LVecP9\":[\"ユーザーロール\"],\"LYAQ1X\":[\"同時実行ジョブの有効化\"],\"LZr1lR\":[\"インスタンスグループが見つかりません。\"],\"Lc0RHh\":[\"スケジュールの切り替え\"],\"LgD0Cy\":[\"アプリケーション名\"],\"LhMjLm\":[\"日時\"],\"Ll7Jei\":[\"LDAP3\"],\"LnYbGj\":[\"Survey の編集\"],\"Lnnjmk\":[\"< 0 >< 1 />新しい \",[\"brandName\"],\" ユーザーインターフェイスの技術プレビューは< 2 >こちらにあります。\"],\"Lqygiq\":[\"プロビジョニングコールバック\"],\"LtBtED\":[\"通知成功の切り替え\"],\"LuXP9q\":[\"アクセス\"],\"LwHwt1\":[[\"brandName\"],\" サブスクリプション\"],\"Lwovp8\":[\"有効にすると、このジョブテンプレートの同時実行が許可されます。\"],\"M0okDw\":[\"データ収集、ロゴ、およびログイン情報の設定\"],\"M73whl\":[\"コンテキスト\"],\"MA-mp9\":[\"Webhook 参照フィルター\"],\"MA7cMf\":[\"構築されたインベントリパラメータテーブル\"],\"MAI_nw\":[\"上記のフィルターを使用して別の検索を試してください。\"],\"MAV-SQ\":[\"認証情報が見つかりません。\"],\"MApRef\":[\"ログインリダイレクトのオーバーライド URL を編集してもよろしいですか?これを行うと、ローカルの認証情報も無効になると、ユーザーのシステムへのログイン機能に影響があります。\"],\"MD0-Al\":[\"セッションの有効期限が近づいています\"],\"MDQLec\":[\"Ansibleがインベントリソースアップデートジョブのために生成する出力レベルを制御します。\"],\"MGpavd\":[\"キー先行入力\"],\"MHM-bv\":[\"無効なリンクターゲットです。子ノードまたは祖先ノードにリンクできません。グラフサイクルはサポートされていません。\"],\"MHbbol\":[\" ジョブスライス\"],\"MKEPCY\":[\"フォロー\"],\"MP1v-1\":[\"凡例\"],\"MP8dU9\":[\"コンテナーレジストリー、イメージ名、およびバージョンタグを含む完全なイメージの場所。\"],\"MQPvAa\":[\"起動時にラベルを要求します。\"],\"MQoyj6\":[\"ワークフロージョブテンプレート\"],\"MTLPCv\":[\"親ノードが障害状態になったときに実行します。\"],\"MVw5um\":[\"2 (より詳細)\"],\"MZU5bt\":[\"1 つ以上のグループを削除できませんでした。\"],\"M_gXds\":[\"Note: This instance may be re-associated with this instance group if it is managed by \"],\"MdhgLT\":[\"IRC サーバーパスワード\"],\"MfCEiB\":[\"Galaxy 認証情報\"],\"MfQHgE\":[\"保持する日数\"],\"Mfk6hJ\":[\"1 つ以上のテンプレートを削除できませんでした。\"],\"Mhn5m4\":[\"レジストリーの認証情報\"],\"Mn45Gz\":[\"インスタンスグループに戻る\"],\"MnbH31\":[\"ページ\"],\"MofjBu\":[\"このプロジェクトを使用するジョブに使用される実行環境。ジョブテンプレートまたはワークフローレベルで実行環境が明示的に割り当てられていない場合に、フォールバックとして使用されます。\"],\"MpLngK\":[\"このプロジェクトの webhook エンドポイント。プッシュがプロジェクトの同期をトリガーするように、リポジトリーの webhook 設定に追加します。\"],\"MpZRQy\":[\"Git\"],\"MuhG5I\":[[\"0\",\"plural\",{\"one\":[\"This approval cannot be deleted due to insufficient permissions or a pending job status\"],\"other\":[\"These approvals cannot be deleted due to insufficient permissions or a pending job status\"]}]],\"MwCc2O\":[\"このワークフロージョブテンプレートの Webhook 認証情報。\"],\"Mwf3Mw\":[\"検索フィルターを使用して、このインベントリーのホストを\\n 設定します。例: ansible_facts__ansible_distribution:\\\"RedHat\\\"。\\n 構文と例の詳細については、ドキュメントを\\n 参照してください。構文と例の詳細については、Ansible Controller の\\n ドキュメントを参照してください。\"],\"MzcRa_\":[\"ユーザーおよび自動化アナリティクス\"],\"Mzqo60\":[\"アーティファクトと比較する値。可能な場合は JSON として解釈され (例: true、3)、そうでない場合はプレーンな文字列として解釈されます。\"],\"N1U4ZG\":[\"サブスクリプションのコンプライアンス\"],\"N36GRB\":[\"このフィールドは数値で、\",[\"min\"],\" より大きい値である必要があります\"],\"N40H-G\":[\"すべて\"],\"N5vmCy\":[\"建設されたインベントリ\"],\"N6GBcC\":[\"削除の確認\"],\"N7wOty\":[\"このジョブで実行する playbook を選択します。\"],\"NAKA53\":[\"ホストの障害\"],\"NBONaK\":[\"ファクトの収集\"],\"NCVKhy\":[\"最近のジョブ\"],\"NDQvUO\":[\"起動時にタグを要求します。\"],\"NIuIk1\":[\"制限なし\"],\"NLKsgx\":[[\"pluralizedItemName\"],\" 一覧\"],\"NO1ZxL\":[\"アプリケーション名\"],\"NPfgIB\":[\"秒\"],\"NQHZnb\":[\"整数\"],\"NRn4V6\":[[\"interval\"],\" months\"],\"NUNUrW\":[\"アノテーションのタグ (オプション)\"],\"NW-xDQ\":[\"これにより、このページのすべての設定値が\\n 工場出荷時のデフォルトに戻ります。続行してもよろしいですか?\"],\"NX18CF\":[\"当日以降\"],\"NYxilo\":[\"最大同時ジョブ数\"],\"Na9fIV\":[\"項目は見つかりません。\"],\"NcVaYu\":[\"終了時刻\"],\"NeA1eI\":[\"パンライト\"],\"Never\":[\"なし\"],\"NgD4On\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"この操作により、次のジョブがキャンセルされます:\"],\"other\":[\"この操作により、次のジョブがキャンセルされます:\"]}]],\"NjnDuY\":[\"Dragging started for item id: \",[\"newId\"],\".\"],\"NjqMGF\":[\"リソースタイプ\"],\"NnH3pK\":[\"テスト\"],\"No Jobs\":[\"ジョブなし\"],\"NpJHAp\":[\"ノードの作成時または編集時に、インベントリーまたはプロジェクトが欠落しているジョブテンプレートは選択できません。別のテンプレートを選択するか、欠落しているフィールドを修正して続行してください。\"],\"NqIlWb\":[\"最終実行日時\"],\"NrGRF4\":[\"サブスクリプション選択モーダル\"],\"NsXTPu\":[\"Ansible ファクトを使用してスマートインベントリーを作成するには、スマートインベントリー画面に移動します。\"],\"NtD3hJ\":[\"関連するキー\"],\"Nu4DdT\":[\"同期\"],\"Nu4oKW\":[\"説明\"],\"Nu7VHX\":[\"選択済みのリソースに適用するロールを選択します。選択するロールがすべて、選択済みの全リソースに対して適用されることに注意してください。\"],\"O-OYOe\":[\"チームの編集\"],\"O06Rp6\":[\"ユーザーインターフェース\"],\"O1Aswy\":[\"無期限\"],\"O28qFz\":[\"ジョブ \",[\"0\"],\" の表示\"],\"O2EuOK\":[\"SAML \",[\"samlIDP\"],\" でサインイン\"],\"O2UpM1\":[\"参照\"],\"O3oNi5\":[\"メール\"],\"O4ilec\":[\"regex で大文字小文字の区別なし。\"],\"O5pAaX\":[\"グラフを表示するインスタンスとメトリクスを選択します\"],\"O78b13\":[\"このトークンが属するアプリケーション。あるいは、このフィールドを空欄のままにしてパーソナルアクセストークンを作成します。\"],\"O8_96D\":[\"リスナーポート\"],\"O9VQlh\":[\"周波数の選択\"],\"OA8xiA\":[\"パンレフト\"],\"OA99Nq\":[\"ホストが最後に自動化されたのはいつですか?\"],\"OC4Tzv\":[\"ここ\"],\"OGoqLy\":[\"# sources with sync failures.\"],\"OHGMM6\":[\"開始日時\"],\"OIv5hN\":[\"サブスクリプションの詳細へのリダイレクト\"],\"OJ9bHy\":[\"1 つ以上のグループの関連付けを解除できませんでした。\"],\"OOq_rD\":[\"Playbook 実行\"],\"OPTWH4\":[\"HTTPS 証明書の検証を有効化\"],\"ORxrw7\":[\"残りの日数\"],\"OSH8xi\":[\"ホップ\"],\"OcRJRt\":[\"取り消しジョブの確認\"],\"Oe_VOY\":[\"1 つ以上のインスタンスを削除できませんでした。\"],\"OgB1k4\":[\"引数\"],\"OiCz65\":[\"Grafana URL\"],\"Oiqdmc\":[\"GitHub 組織でサインイン\"],\"Oj2Ix6\":[\"ジョブがキャンセルされるまでの実行時間 (秒単位)。デフォルトは 0 で、ジョブのタイムアウトはありません。\"],\"OjwX8k\":[\"トークン情報\"],\"OlpaBt\":[\"同時ジョブ: 有効にすると、このジョブテンプレートの同時実行が許可されます。\"],\"OmbooC\":[\"タスクの開始\"],\"OogRLI\":[\"フェデレーションインベントリーが見つかりません。\"],\"OqE3G-\":[\"id フィールドでの正確な検索。\"],\"Osn70z\":[\"デバッグ\"],\"OvBnOM\":[\"設定に戻る\"],\"OyGPiW\":[\"サブスクリプション設定\"],\"OzssJK\":[\"コマンドの実行\"],\"P3spiP\":[\"テンプレートに戻る\"],\"P7d85D\":[\"チームのアクセス権の削除\"],\"P8fBlG\":[\"認証\"],\"PByO0X\":[\"投票\"],\"PCEmEr\":[\"ユーザートークン\"],\"PJ1B0S\":[[\"0\",\"plural\",{\"one\":[\"This project is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"PJf54Q\":[\"ソースに戻る\"],\"PKTjJ3\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"weekday\"],\" of \",[\"month\"]],\"4\":[\"The fourth \",[\"weekday\"],\" of \",[\"month\"]],\"5\":[\"The fifth \",[\"weekday\"],\" of \",[\"month\"]],\"one\":[\"The first \",[\"weekday\"],\" of \",[\"month\"]],\"two\":[\"The second \",[\"weekday\"],\" of \",[\"month\"]]}]],\"PLzYyl\":[\"頻度の例外の詳細\"],\"PMk2Wg\":[\"プロビジョニング解除に失敗\"],\"POKy-m\":[\"実行環境のコピー\"],\"PPsHsC\":[\"すべてをデフォルトに戻す\"],\"PQPOpT\":[\"インベントリーファイル\"],\"PRuZiQ\":[\"リビジョンの更新\"],\"PUnovD\":[\"Amazon EC2\"],\"PVCOQE\":[\"ピアが削除されました。変更が有効になるのを確認するには、 \",[\"0\"],\" のインストールバンドルを再度実行してください。\"],\"PWwwY2\":[\"関連付けの解除\"],\"PYPqaM\":[\"パネル ID (オプション)\"],\"PZBWpL\":[\"Switch to light mode\"],\"P_s0vy\":[\"この Webhook サービスの認証情報タイプを検索できないため、Webhook 認証情報フィールドは使用できません。\"],\"PaTL2O\":[\"受信者リスト\"],\"PhufXn\":[\"ジョブスライスの親\"],\"Pi5vnX\":[\"構築されたインベントリソースの同期に失敗しました\"],\"PiK6Ld\":[\"土\"],\"PiRb8z\":[\"直近の同期\"],\"PjkoCm\":[\"以下のノードを削除してもよろしいですか?\"],\"PkVlOm\":[\"HTTP ヘッダーを JSON 形式で指定します。構文の例については、\\n Ansible Controller のドキュメントを参照してください。\"],\"Po1btV\":[\"グローバルナビゲーション\"],\"Po7y5X\":[\"実行環境をコピーできませんでした\"],\"PvgcEq\":[\"Draggable list to reorder and remove selected items.\"],\"PwAMWD\":[\"すべてのジョブイベントを折りたたむ\"],\"PyV1wC\":[\"インスタンスグループのフォールバックを防止する\"],\"Q3P_4s\":[\"タスク\"],\"Q4hWRC\":[\"Workflow Jobs (\",[\"total\"],\")\"],\"Q5ZW8j\":[\"サブスクリプションテーブル\"],\"QF_MpS\":[\"\\n このグループに直接あるホストのみを切り離すことができることに\\n 注意してください。サブグループのホストは、それらが属する\\n サブグループレベルから直接切り離す必要があります。\\n \"],\"QFdBqu\":[\"Mattermost\"],\"QGbLBK\":[\"ジョブ ID:\"],\"QHF6CU\":[\"プレイ\"],\"QIOH6p\":[\"開始ユーザー (ユーザー名)\"],\"QIpNLR\":[\"インベントリー同期の失敗はありません。\"],\"QIq3_3\":[\"注: 選択された順序によって、実行の優先順位が設定されます。ドラッグを有効にするには、1 つ以上選択してください。\"],\"QJbMvX\":[\"起動時にパスワードが必要な認証情報は許可されていません。続行するには、次の認証情報を削除するか、同じタイプの認証情報に置き換えてください: \",[\"0\"]],\"QJowYS\":[\"削除の確認\"],\"QKUQw1\":[\"新規ホストの作成\"],\"QKbQTN\":[\"アクティビティーストリームのタイプセレクター\"],\"QOF7Jg\":[[\"0\"],\" を承認できませんでした。\"],\"QPRWww\":[\"実行タイプ\"],\"QR908H\":[\"名前の設定\"],\"QT1rDU\":[\"GitHub Enterprise\"],\"QTwM6Y\":[\"このジョブが実行する playbook が含まれるプロジェクトです。\"],\"QYKS3D\":[\"最近のジョブ\"],\"QamIPZ\":[\"開始ボタンをクリックして開始してください。\"],\"Qay_5h\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"Qd2E32\":[\"指定されたホスト変数のdictから有効な状態を取得します。有効な変数は、ドット表記を使用して指定できます。例: 'foo.bar'\"],\"Qf36YE\":[\"詳細\"],\"QgnNyZ\":[\"同期エラー\"],\"Qhb8lT\":[\"新規アプリケーションの作成\"],\"QmvYrA\":[\"ワークフロージョブテンプレートの任意の説明。\"],\"QnJn75\":[\"最終実行日時\"],\"Qv59HG\":[\"認証情報タイプの選択\"],\"Qv91_c\":[\"LDAP 2\"],\"QyjCeq\":[\"容量\"],\"R-uZ8Y\":[\"SAML でサインイン\"],\"R633QG\":[\"ワークフローの承認に戻る\"],\"R7s3iG\":[\"以下に戻る\"],\"R9Khdg\":[\"自動\"],\"R9sZsA\":[\"すべてのグループおよびホストの削除\"],\"RBDHUE\":[\"起動時に実行環境を要求します。\"],\"RI8cIw\":[\"この組織で管理できるホストの最大数。\\n 値のデフォルトは 0 で、制限なしを意味します。\\n 詳細については Ansible のドキュメントを参照してください。\"],\"RIcSTA\":[\"有効期限:\"],\"RIeAlp\":[\"このインベントリを使用してジョブを実行するたびに、ジョブタスクを実行する前に、選択したソースからインベントリを更新します。\"],\"RK1gDV\":[\"Azure AD でサインイン\"],\"RMdd1C\":[\"なし (1回実行)\"],\"RO9G1f\":[\"このフィールドは 0 より大きくなければなりません\"],\"RPnV2o\":[\"検索フィルターで結果が生成されませんでした…\"],\"RThfvh\":[\"関連するチームの関連付けを解除しますか?\"],\"R_mzhp\":[\"ユーザートークンに失敗しました。\"],\"RbIaa9\":[\"ジョブが見つかりません。\"],\"RdLvW9\":[\"ジョブの再起動\"],\"Rguqao\":[\"削除する行を選択してください\"],\"RhOukN\":[[\"interval\"],\" hour\"],\"RiQMUh\":[\"実行中\"],\"RjIKOw\":[\"ホストのインベントリーを変更できません。\"],\"RjkhdY\":[\"値で開始するフィールド。\"],\"RkXlPZ\":[\"GitHub\"],\"RlsPz7\":[\"このリンクを削除してもよろしいですか?\"],\"Rm1iI_\":[\"起動時に変数を要求します。\"],\"Roaswv\":[\"User Guide\"],\"RpKSl3\":[\"認証情報が正常にコピーされました\"],\"RsZ4BA\":[\"最後にスクロール\"],\"RtKKbA\":[\"最終\"],\"Ru59oZ\":[\"このテンプレートの webhook を有効にします。\"],\"RuEWFx\":[\"指定日\"],\"RuiOO0\":[\"1 つ以上のアプリケーションを削除できませんでした。\"],\"Rw1xwN\":[\"コンテンツの読み込み\"],\"RxzN1M\":[\"有効化\"],\"RyPas1\":[\"Cancel selected jobs\"],\"S0kLOH\":[\"ID\"],\"S2nsEw\":[\"Greater than の比較条件\"],\"S5gO6Y\":[\"追加のコマンドライン変数をワークフローに渡します。\"],\"S6zj7M\":[\"ジョブテンプレートの場合、run を選択して playbook を実行します。check を選択すると、playbook の構文チェック、環境設定のテスト、および問題の報告のみが行われ、playbook は実行されません。\"],\"S7kN8O\":[\"1 人以上のユーザーを削除できませんでした。\"],\"S7tNdv\":[\"成功時\"],\"S8FW2i\":[\"このソースによって同期されるインベントリファイル。ドロップダウンから選択するか、入力内にファイルを入力します。\"],\"SA-KXq\":[\"パンアップ\"],\"SAw-Ux\":[[\"username\"],\" からの \",[\"0\"],\" のアクセスを削除してもよろしいですか?\"],\"SBfnbf\":[\"すべての実行環境の表示\"],\"SC1Cur\":[\"[ステータス不明]\"],\"SDND4q\":[\"設定されていません\"],\"SIJDi3\":[\"容量調整\"],\"SJjggI\":[\"オプションの更新\"],\"SJmHMo\":[\"ドキュメント。\"],\"SLm_0U\":[\"IRC サーバーポート\"],\"SODyJ3\":[\"ホストの非同期 OK\"],\"SRiPhD\":[\"ノード削除の取り消し\"],\"SV5nA1\":[\"前のステップのいくつかにエラーがあります\"],\"SVG6MY\":[\"フィールドを以前保存した値に戻す\"],\"SYbJcn\":[\"通知テンプレートの編集\"],\"SZvybZ\":[\"LDAP のデフォルト\"],\"SZw9tS\":[\"詳細の表示\"],\"SbRHme\":[\"テキストエリア\"],\"Se_E0z\":[\"ワークフロージョブ\"],\"Sgr5NW\":[\"可用性チェックを実行するインスタンスを選択してください。\"],\"Sh2XTJ\":[\"通知タイプ\"],\"SiexHs\":[\"ダッシュボード (すべてのアクティビティー)\"],\"Sja7f-\":[\"ホストが削除された回数\"],\"Sjoj4f\":[\"認証情報名\"],\"SlfejT\":[\"エラー\"],\"SoREmD\":[\"アプリケーションおよびトークン\"],\"SqA8uD\":[\"ジョブの実行\"],\"SqLEdN\":[\"スマートインベントリーを削除できませんでした。\"],\"SqYo9m\":[\"インスタンスに戻る\"],\"Ssdrw4\":[\"非推奨\"],\"Successful\":[\"成功\"],\"SvPvEX\":[\"ワークフロー承認メッセージのボディー\"],\"Svkela\":[\"前のページに移動\"],\"SwJLlZ\":[\"ワークフロー拒否メッセージのボディー\"],\"SxGqey\":[\"汎用 OIDC 設定\"],\"Sxm8rQ\":[\"ユーザー\"],\"SzFxHC\":[\"LDAP 設定\"],\"SzQMpA\":[\"フォーク\"],\"T2M20E\":[\"その\"],\"T2mGOG\":[\"docs.ansible.com\"],\"T2x15z\":[\"通知の切り替えに失敗しました。\"],\"T4a4A4\":[\"Webhook キー\"],\"T7yEGN\":[\"このアプリケーションのトークンを取得するためにユーザーが使用する必要がある付与タイプ\"],\"T91vKp\":[\"プレイ\"],\"T9hZ3D\":[\"GitHub Enterprise チーム\"],\"TAnffV\":[\"このノードの編集\"],\"TBH48u\":[\"チームを削除できませんでした。\"],\"TC32CH\":[\"データの保持日数\"],\"TD1APv\":[\"サブスクリプションの取得\"],\"TJVvMD\":[\"関連する検索タイプ\"],\"TLomdD\":[[\"sessionCountdown\",\"plural\",{\"one\":[\"You will be logged out in \",\"#\",\" second due to inactivity\"],\"other\":[\"You will be logged out in \",\"#\",\" seconds due to inactivity\"]}]],\"TMJ39S\":[\"ロールの関連付けの解除\"],\"TMLAx2\":[\"必須\"],\"TO3h59\":[\"外部のシークレット管理システムからフィールドにデータを入力します\"],\"TO4OtU\":[\"Insights 認証情報\"],\"TOjYb_\":[\"建設されたインベントリホストの詳細を表示\"],\"TP9_K5\":[\"トークン\"],\"TRDppN\":[\"Webhook\"],\"TTMvf7\":[\"グループタイプ\"],\"TU6IDa\":[\"ユーザータイプ\"],\"TXKmNM\":[\"インベントリーを選択する必要があります\"],\"TZEuIE\":[\"認証情報タイプに戻る\"],\"T_87By\":[\"パラメーター\"],\"Ta0ts5\":[\"変更の表示\"],\"TcnG-2\":[\"新規実行環境の作成\"],\"TgSxH9\":[\"プロビジョニングコールバック URL\"],\"TkiN8D\":[\"ユーザーの詳細\"],\"Tmh24b\":[\"有効にすると、ジョブテンプレートは、実行対象の優先インスタンスグループのリストにインベントリーまたは組織のインスタンスグループを追加できないようにします。注記: この設定が有効で空のリストを指定した場合、グローバルインスタンスグループが適用されます。\"],\"Tmuvry\":[\"タイプ先行入力の設定\"],\"ToOoEw\":[\"認証情報のコピー\"],\"Tof7pX\":[\"ジョブ\"],\"Tq71UT\":[\"平日\"],\"Tx3NMN\":[\"秘密鍵のパスフレーズ\"],\"TxKKED\":[\"構築された在庫の詳細を表示\"],\"TyaPAx\":[\"システム管理者\"],\"Tz0i8g\":[\"設定\"],\"U-nEJl\":[\"GitHub 設定の表示\"],\"U011Uh\":[\"最終表示\"],\"U7rA2a\":[\"チェックされていない場合、ローカル変数と外部ソースで見つかったものを組み合わせてマージが実行されます。\"],\"UDf-wR\":[\"消費されたサブスクリプション\"],\"UEaj7U\":[\"インベントリーの同期の失敗\"],\"UJpDop\":[\"Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"UJsNNk\":[\"ソースコントロールのリビジョン\"],\"UPasE4\":[\"Azure AD (デフォルト)\"],\"UPmrRI\":[\"endswith で大文字小文字の区別なし。\"],\"URmyfc\":[\"詳細\"],\"UX2wV1\":[[\"0\",\"plural\",{\"one\":[\"This credential is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"UXBCwc\":[\"姓\"],\"UY6iPZ\":[\"有効にすると、コントロールノードはこのインスタンスを自動的にピアリングします。無効にすると、インスタンスは関連付けられたピアにのみ接続されます。\"],\"UYD5ld\":[\"そして、起動時のリビジョン更新をクリックします\"],\"UYUgdb\":[\"順序\"],\"U_JUCL\":[\"Red Hat Insights\"],\"Ua-Kc6\":[\"www.json.org\"],\"UbOul8\":[\"次を削除してもよろしいですか:\"],\"UbRKMZ\":[\"保留中\"],\"UbqhuT\":[\"フルノードリソースオブジェクトを取得できませんでした。\"],\"Uc_tSU\":[\"ツールの切り替え\"],\"UgFDh3\":[\"このインベントリーは、現在他のリソースで使用されています。削除してもよろしいですか?\"],\"UirGxE\":[\"エラー\"],\"UlykKR\":[\"第 3\"],\"Uo1S9q\":[\"Azure AD Tenant でサインイン\"],\"UueF8b\":[\"実行環境が存在しないか、削除されています。\"],\"UvGjRK\":[\"有効にすると、この playbook を管理者として実行します。\"],\"UwJJCk\":[\"失敗したホストの再起動\"],\"UxKoFf\":[\"ナビゲーション\"],\"V-7saq\":[[\"pluralizedItemName\"],\" を削除しますか?\"],\"V-rJKF\":[\"Seconds\"],\"V0Xv3_\":[[\"intervalValue\",\"plural\",{\"one\":[\"day\"],\"other\":[\"days\"]}]],\"V0fM4k\":[\"ユーザーアナリティクス\"],\"V1EGGU\":[\"名\"],\"V2-omF\":[[\"0\",\"plural\",{\"one\":[\"最終的な削除が処理されるまで、インベントリーは保留状態になります。\"],\"other\":[\"最終的な削除が処理されるまで、インベントリーは保留状態になります。\"]}]],\"V2RwJr\":[\"リスナーアドレス\"],\"V2q9w9\":[\"If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode.\"],\"V3z83V\":[\"LDAP 3\"],\"V4WsyL\":[\"リンクの追加\"],\"V5RUpn\":[\"受信者リスト\"],\"V7qsYh\":[\"注: 資格情報の順序は、コンテンツの同期と検索の優先順位を設定します。ドラッグを有効にするには、1 つ以上選択してください。\"],\"V9xR6T\":[\"セクションの展開\"],\"VAI2fh\":[\"新規コンテナーグループの作成\"],\"VAcXNz\":[\"水曜\"],\"VEj6_Y\":[\"ワークフローの承認\"],\"VFvVc6\":[\"詳細の編集\"],\"VJUm9p\":[\"現在のページ\"],\"VK2gzi\":[\"playbook の実行時に使用する並列または同時プロセスの数。空の値または 1 未満の値の場合、通常は 5 である Ansible のデフォルトが使用されます。デフォルトのフォーク数は、次を変更することで上書きできます\"],\"VL2WkJ\":[\"最後の \",[\"dayOfWeek\"]],\"VLdRt2\":[\"同期ソースの開始\"],\"VNUs2y\":[\"最大フォーク数\"],\"VSJ6r5\":[\"スケジュールはアクティブです\"],\"VSim_H\":[\"インベントリーソースの削除\"],\"VTDO7X\":[\"イベント詳細モーダル\"],\"VU3Nrn\":[\"不明\"],\"VWL2DK\":[\"GitHub 組織\"],\"VXFjd8\":[\"メトリクス\"],\"VZfXhQ\":[\"ホップノード\"],\"VdcFUD\":[\"使用許諾契約書\"],\"ViDr6F\":[\"新規グループの追加\"],\"VmClsw\":[\"このノードに関連付けられているリソースは、削除されました。\"],\"VmvLj9\":[\"クライアントデバイスの安全性に応じて、Public または Confidential に設定します。\"],\"Vqd-tq\":[\"すべて元に戻すことを確認\"],\"Vqgeac\":[\"Press space or enter to begin dragging,\\n and use the arrow keys to navigate up or down.\\n Press enter to confirm the drag, or any other key to\\n cancel the drag operation.\"],\"Vvbbn2\":[\"ロールを削除できませんでした。\"],\"Vw8l6h\":[\"エラーが発生しました\"],\"VzE_M-\":[\"通知失敗の切り替え\"],\"W-O1E9\":[\"プロジェクトのコピー\"],\"W1iIqa\":[\"インベントリーグループの表示\"],\"W3TNvn\":[\"ユーザーに戻る\"],\"W3pOzF\":[\"このプロジェクトを使用するジョブテンプレートで、ソースコントロールのブランチまたはリビジョンの変更を許可します。\"],\"W6uTJi\":[\"インスタンスを取得できませんでした。\"],\"W7DGsV\":[\"起動者 (ユーザー名)\"],\"W9XAF4\":[\"平日\"],\"W9uQXX\":[\"プロンプト\"],\"WAjFYI\":[\"開始日\"],\"WD8djW\":[\"リンク削除の確認\"],\"WL91Ms\":[\"Delete Groups?\"],\"WPM2RV\":[\"回答タイプ\"],\"WQJduu\":[\"キー選択\"],\"WTN9YX\":[\"アカウントトークン\"],\"WTV15I\":[\"ログインリダイレクトのオーバーライド URL\"],\"WVzGc2\":[\"サブスクリプション\"],\"WX9-kf\":[\"IRC ニック\"],\"Wc6m4J\":[\"取得する refspec (Ansible git モジュールに渡されます)。このパラメーターにより、ブランチフィールド経由で、それ以外の方法では利用できない参照にアクセスできます。\"],\"Wdl2f2\":[\"このフィールドは \",[\"0\"],\" 文字以上でなければなりません\"],\"WgsBEi\":[\"新規スマートインベントリーを作成するために 1 つ以上の検索フィルターを入力してください。\"],\"WhSFGl\":[[\"name\"],\" 別にフィルター\"],\"Wi1pUG\":[[\"numJobsToCancel\",\"plural\",{\"one\":[[\"0\"]],\"other\":[[\"1\"]]}]],\"Wk1rOS\":[\"グラフを利用可能な画面サイズに合わせます\"],\"Wm7XbF\":[\"1 つ以上の認証情報を削除できませんでした。\"],\"WqaDMq\":[\"値を含むフィールド。\"],\"Wy25yg\":[\"Twilio\"],\"X03-eC\":[\"値を入力してください。\"],\"X5V9DW\":[\"下の編集ボタンをクリックして、ノードを再構成します。\"],\"X6d3Zy\":[\"組織を削除できませんでした。\"],\"X97mbf\":[\"ジョブタイプの選択\"],\"XA12d8\":[\"スライス自体のホストに加えて、各ジョブスライスに含めるホスト名のオプションのコンマ区切りリスト。すべてのスライスが依存する localhost などの調整ホストを play が対象とする場合に便利です。名前はインベントリーホストと完全に一致します。グループとパターンはサポートされていません。固定されたホストは、スライスごとに 1 回 play を実行します。\"],\"XBROpk\":[\"ワークフローによって管理または影響を受けるホストのリストをさらに制限するホストパターンを指定します。\"],\"XCCkju\":[\"ノードの編集\"],\"XFRygA\":[\"リモートアーカイブソースコントロールの URL の例には次が含まれます。\"],\"XHxwBV\":[\"選択した日付範囲には、少なくとも 1 つのスケジュールオカレンスが必要です。\"],\"XILg0L\":[\"無効なメールアドレスです\"],\"XJOV1Y\":[\"アクティビティー\"],\"XKp83s\":[\"ソースを含むインベントリーはコピーできません。\"],\"XLMJ7O\":[\"クラウド\"],\"XLpxoj\":[\"メールオプション\"],\"XM-gTv\":[\"設定ファイルの詳細については、Ansible のドキュメントを参照してください。\"],\"XOD7tz\":[\"変更の表示\"],\"XOaZX3\":[\"ページネーション\"],\"XP6TQ-\":[\"指定した場合に、ワークフローを表示すると、リソース名の代わりにこのフィールドがノードに表示されます\"],\"XREJvl\":[\"インベントリソースを構成するために使用される変数。このプラグインの設定方法の詳細については、\"],\"XViLWZ\":[\"障害発生時\"],\"XWDz5f\":[\"簡易キー選択\"],\"X_5TsL\":[\"Survey の切り替え\"],\"XaxYwV\":[\"プロンプト値\"],\"XbIM8f\":[\"在庫ソース合計\"],\"XdyHT-\":[\"インポートされたホスト\"],\"XfmfOA\":[\"実行する間隔\"],\"Xg3aVa\":[\"SSL の使用\"],\"XgTa_2\":[\"The inventory will be in a pending status until the final delete is processed.\"],\"XilEsm\":[\"インスタンスグループ\"],\"Xm7ruy\":[\"5 (WinRM デバッグ)\"],\"XmJfZT\":[\"名前\"],\"XmVvzl\":[\"適用するロールの選択\"],\"XnxCSh\":[\"標準エラー\"],\"XozZ38\":[\"1 つ以上のインベントリーリソースを削除できませんでした。\"],\"Xq9A0U\":[\"不明なプロジェクト\"],\"Xt4N6V\":[\"プロンプト | \",[\"0\"]],\"XtpZSU\":[\"すべてのジョブタイプ\"],\"Xx-ftH\":[\"サブスクリプションで許可されているよりも多くのホストに対して自動化しました。\"],\"XyTWuQ\":[\"トポロジービューが反映されるまでお待ちください...\"],\"XyW2nH\":[[\"0\",\"plural\",{\"one\":[\"以下のグループを削除してもよろしいですか?\"],\"other\":[\"以下のグループを削除してもよろしいですか?\"]}]],\"XzD7xj\":[\"アイテムの選択\"],\"Y1YKad\":[\"詳細の編集\"],\"Y296GK\":[\"ロールを削除できませんでした。\"],\"Y2ml-n\":[\"承認済み - \",[\"0\"],\"。詳細はアクティビティーストリームを参照してください。\"],\"Y5VrmH\":[\"インベントリーの同期に設定されていません。\"],\"Y5vgVF\":[\"正常に拒否されました\"],\"Y5xJ7I\":[\"Playbook 名\"],\"Y60pX3\":[\"建設されたインベントリを追加\"],\"YA4I45\":[\"モジュールの選択\"],\"YFmVSY\":[\"関連付けを解除しますか?\"],\"YJddb4\":[\"インスタンスタイプ\"],\"YLMfol\":[\"新しいロールを受け取るリソースのタイプを選択します。たとえば、一連のユーザーに新しいロールを追加する場合は、ユーザーを選択して次へをクリックしてください。次のステップで特定のリソースを選択できるようになります。\"],\"YM06Nm\":[\"認証情報タイプの編集\"],\"YMLB2b\":[\"承認ノードがタイムアウトの期限切れ時に自動的に承認されるか拒否されるか。\"],\"YMpSlP\":[\"インベントリの同期が最新であると見なす時間(秒単位)。ジョブの実行とコールバック中、タスクシステムは最新の同期のタイムスタンプを評価します。キャッシュタイムアウトよりも古い場合、現在のものとは見なされず、新しいインベントリ同期が実行されます。\"],\"YOOdGq\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 分\"],\"other\":[\"#\",\" 分\"]}]],\"YOh7Aw\":[\"Workflow Job \",[\"currentPosition\"],\"/\",[\"total\"]],\"YP5KRj\":[\"新規 Webhook URL は保存時に生成されます。\"],\"YPDLLX\":[\"実行環境に戻る\"],\"YQqM-5\":[\"実行に使用するコンテナーイメージ。\"],\"Yd45Xn\":[\"プロセッサータイプ別のホスト数\"],\"Yfw7TK\":[\"通知がタイムアウトしました\"],\"YgqgXs\":[[\"intervalValue\",\"plural\",{\"one\":[\"minute\"],\"other\":[\"minutes\"]}]],\"YiQ03p\":[\"スケジュールを削除できませんでした。\"],\"YiUAZm\":[\"<0>注記: このインスタンスが<1>ポリシールールによって管理されている場合、このインスタンスグループに再度関連付けられる可能性があります。\"],\"YlGAPh\":[\"ジョブスライスの固定ホスト\"],\"Ym7-mu\":[\"1 行につき 1 つの Slack チャネル。チャネルにはポンド記号 (#) が\\n 必要です。特定のメッセージへの返信またはスレッドの開始を行うには、親メッセージ Id をチャネルに追加します。親メッセージ Id は 16 桁です。10 桁目の後にドット (.) を手動で挿入する必要があります。例: #destination-channel、1231257890.006423。Slack を参照してください\"],\"YmEWZH\":[\"テンプレートの起動\"],\"YmjTf2\":[\"プロビジョニング失敗\"],\"YoXjSs\":[\"起動時にインベントリーを要求します。\"],\"Yq4Eaf\":[\"このジョブのホストのステータス情報は利用できません。\"],\"YsN-3o\":[\"インベントリソース詳細の表示\"],\"Yt-rBv\":[\"このプロジェクトは現在、他のリソースで使用されています。削除してもよろしいですか?\"],\"YuC9dj\":[\"関連付け\"],\"YxDLmM\":[\"Insights システム ID\"],\"Z17FAa\":[\"不明なインベントリ\"],\"Z1Vtl5\":[\"プロジェクトの同期の取り消しに失敗しました。\"],\"Z25_RC\":[\"入力の選択\"],\"Z2hVSb\":[\"ハイブリッド\"],\"Z40J8D\":[\"プロビジョニングコールバック URL の作成を有効にします。この URL を使用して、ホストは \",[\"brandName\"],\" に接続し、このジョブテンプレートを使用して設定の更新を要求できます。\"],\"Z5HWHd\":[\"オン\"],\"Z7ZXbT\":[\"承認\"],\"Z88yEl\":[\"Greater than or equal to の比較条件\"],\"Z9EFpE\":[\"自動化アナリティクスダッシュボード\"],\"ZAWGCX\":[[\"0\"],\" 秒\"],\"ZEP8tT\":[\"起動\"],\"ZGDCzb\":[\"インスタンスが見つかりません。\"],\"ZJjKDg\":[\"管理ノード\"],\"ZKKnVf\":[\"新規ワークフローテンプレートの作成\"],\"ZL3d6Z\":[\"IRC サーバーアドレス\"],\"ZO4CYH\":[\"実行中のジョブ\"],\"ZOLfb2\":[\"このフィールドを空欄にすることはできません。\"],\"ZWhZbs\":[\"ノードの削除の確認\"],\"ZajTWA\":[\"発信元の電話番号\"],\"Zf6u-6\":[\"説明\"],\"ZfrRb0\":[\"インベントリーを選択するか、または起動プロンプトオプションにチェックを付けてください。\"],\"ZhUwVw\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 週間\"],\"other\":[\"#\",\" 週間\"]}]],\"ZhxwOq\":[\"エラーメッセージボディー\"],\"Zikd-1\":[\"自動化したホストの数がサブスクリプション数を下回っています。\"],\"ZjC8QM\":[\"ホストを削除できませんでした。\"],\"ZjvPb1\":[\"作成者 (ユーザー名)\"],\"Zkh5np\":[\"ピアは \",[\"0\"],\" に更新されます。変更を有効にするには、 \",[\"1\"],\" のインストールバンドルを再度実行してください。\"],\"ZpdX6R\":[\"トークンの削除中にエラーが発生しました\"],\"ZrsGjm\":[\"インベントリー\"],\"ZumtuZ\":[\"テンプレートのコピー\"],\"ZvVF4C\":[\"Survey の質問の削除\"],\"ZwCTcT\":[\"最近の求人リストタブ\"],\"ZwujDQ\":[\"過去1年以内\"],\"_-NKbo\":[\"スケジュールの切り替えに失敗しました。\"],\"_2LfCe\":[\"Survey の質問を並べ替えるには、目的の場所にドラッグアンドドロップします。\"],\"_4gGIX\":[\"クリップボードにコピーする\"],\"_5REdR\":[\"構築されたインベントリプラグインのインプットインベントリを選択します。\"],\"_Fg1cM\":[\"ワークフローのタイムアウトメッセージのボディー\"],\"_ITcnz\":[\"日\"],\"_Ia62Q\":[\"構築されたインベントリの例\"],\"_JN1gB\":[\"タスク数\"],\"_K2CvV\":[\"テンプレート\"],\"_LQZpR\":[[\"intervalValue\",\"plural\",{\"one\":[\"year\"],\"other\":[\"years\"]}]],\"_LVfwJ\":[\"構築された在庫ソース同期エラー\"],\"_M4FeF\":[\"このコマンドを内部で実行する実行環境を選択します。\"],\"_MdgrM\":[\"これら 2 つのノードの間に新しいノードを追加します\"],\"_PRaan\":[\"1 つ以上の通知テンプレートを削除できませんでした。\"],\"_Pz_QH\":[\"ポリシーで管理\"],\"_W3ZAw\":[[\"selectedItemsCount\",\"plural\",{\"one\":[\"Click to run a health check on the selected instance.\"],\"other\":[\"Click to run a health check on the selected instances.\"]}]],\"_WBq2_\":[\"拒否済み - \",[\"0\"],\"。詳細はアクティビティーストリームを参照してください。\"],\"_Yq4TU\":[\"このグループで同時に実行されるすべてのジョブ全体で許可するフォークの最大数。\\n ゼロは制限が適用されないことを意味します。\"],\"_ZBhqw\":[\"インベントリーソースの同期の取り消しに失敗しました。\"],\"_bAUGi\":[\"HTTP メソッドの選択\"],\"_bE0AS\":[\"インスタンスの選択\"],\"_cV6Mf\":[\"参照…\"],\"_cq4Aa\":[\"ワークフローの承認が見つかりません。\"],\"_ereyb\":[\"TACACS+\"],\"_gCD76\":[\"インスタンスグループの編集\"],\"_ismew\":[\"アーティファクトキー\"],\"_kYJq6\":[\"データの保持日数\"],\"_khNCh\":[\"ジョブテンプレートのデフォルトの認証情報は、同じタイプのものに置き換える必要があります。続行するには、次のタイプの認証情報を選択してください: \",[\"0\"]],\"_oeZtS\":[\"ホストのポーリング\"],\"_rCRcH\":[\"高度な検索に関するドキュメント\"],\"_vI8Rx\":[\"Delete Group?\"],\"a02Xjc\":[\"IRC サーバーアドレス\"],\"a3AD0M\":[\"ログインリダイレクトの編集の確認\"],\"a5zD9f\":[\"変更\"],\"a6E-_p\":[\"contains で大文字小文字の区別なし。\"],\"a8AgQY\":[\"ホストの詳細の表示\"],\"a8nooQ\":[\"第 4\"],\"a9BTUD\":[\"週末の日\"],\"aBgwis\":[\"範囲\"],\"aLlb3-\":[\"ブーリアン\"],\"aNxqSL\":[\"実行環境の削除\"],\"aQ4XJX\":[\"システムトラッキングファクトを個別に有効化\"],\"aSuBiU\":[\"Microsoft Azure Resource Manager\"],\"aTK0Fh\":[\"曜日\"],\"aUNPq3\":[\"実行ノード\"],\"aVoVcG\":[\"複数選択\"],\"aXBrSq\":[\"Red Hat Virtualization\"],\"a_vlog\":[[\"0\"],\" チップの削除\"],\"adPhRK\":[\"このホストが属するインベントリー。\"],\"adjqlB\":[[\"0\"],\" (削除済み)\"],\"aht2s_\":[\"通知の色\"],\"aiejXq\":[\"リソースタイプの追加\"],\"ajDpGH\":[\"ステータス:\"],\"anfIXl\":[\"ユーザーの詳細\"],\"aqqAbL\":[\"有効化されると、インベントリーは、関連付けられたジョブテンプレートを実行する優先インスタンスグループのリストに、組織インスタンスグループを追加することを阻止します。注記: この設定が有効で空のリストを指定した場合、グローバルインスタンスグループが適用されます。\"],\"ar5AA2\":[\"(詳細情報)\"],\"ataY5Z\":[\"ジョブ削除エラー\"],\"ax6e8j\":[\"組織を選択してからホストフィルターを編集します。\"],\"az8lvo\":[\"オフ\"],\"b1CAkh\":[\"管理ジョブ\"],\"b2Z0Zq\":[\"リンク変更の取り消し\"],\"b433OF\":[\"グループの編集\"],\"b4SLah\":[\"左側のエラーを参照してください\"],\"b9Y4up\":[\"クライアント ID\"],\"bDa_hW\":[\"このインベントリーソースの同期を実行するインスタンスグループを選択します。未設定の場合、同期はインベントリーまたはその組織のインスタンスグループで実行されます。\"],\"bE4zYn\":[\"Receptorが着信接続をリッスンするポートを選択します(例: 27199 )。\"],\"bHXYoC\":[\"HTTP メソッド\"],\"bKR18T\":[\"サブスクリプションマニフェストは、Red Hat サブスクリプションのエクスポートです。サブスクリプションマニフェストを生成するには、<0>access.redhat.com にアクセスしてください。詳細については、<1>ユーザーガイドを参照してください。\"],\"bLt_0J\":[\"ワークフロー\"],\"bPq357\":[\"有効な値\"],\"bQZByw\":[\"コンマで区切らずに、1 行ごとに 1 つのアノテーションタグを指定します。\"],\"bTu5jX\":[\"ユーザー名 / パスワード\"],\"bWr6j5\":[\"このフィールドは \",[\"min\"],\" 文字以上でなければなりません\"],\"bY8C86\":[\"すべてのユーザーを表示します。\"],\"bYXbel\":[\"ワークフロージョブテンプレートの Wbhook キー\"],\"baP8gx\":[\"4 (接続デバッグ)\"],\"baqrhc\":[\"HTTP ヘッダー\"],\"bbJ-VR\":[\"ズームアウト\"],\"bcyJXs\":[\"項目 OK\"],\"bd1Kuw\":[\"アイコン URL\"],\"bf7UKi\":[\"更新キャッシュのタイムアウト\"],\"bfgr_e\":[\"質問\"],\"bgjTnp\":[\"0 (正常)\"],\"bgq1rW\":[\"検索送信ボタン\"],\"bhxnLH\":[\"次のグループを削除する権限がありません: \",[\"itemsUnableToDelete\"]],\"bkPO0d\":[\"通知タイプ\"],\"bpECfE\":[\"リンク削除の取り消し\"],\"bpnj1H\":[\"このコンテンツの読み込み中にエラーが発生しました。ページを再読み込みしてください。\"],\"bwRvnp\":[\"アクション\"],\"bx2rrL\":[\"スマートインベントリー\"],\"bxaVlf\":[\"新規認証情報タイプの作成\"],\"byXCTu\":[\"実行回数\"],\"bznJUg\":[\"このワークフローで管理するホストを含むインベントリーを選択します。\"],\"bzv8Dv\":[\"削除エラー\"],\"c-xCSz\":[\"True\"],\"c0n4p3\":[\"ファクトストレージ\"],\"c1Rsz1\":[\"ワークフロー承認の詳細の表示\"],\"c3XJ18\":[\"ヘルプ\"],\"c4kHK7\":[\"サブスクリプションモーダルを閉じる\"],\"c6IFRs\":[\"サービスアカウント JSON ファイル\"],\"c6u6gk\":[\"この組織を実行するインスタンスグループを選択します。\"],\"c7-Adk\":[\"インベントリーソースを同期できませんでした。\"],\"c8HyJq\":[\"このインベントリーを実行するインスタンスグループを選択します。\"],\"c8sV0t\":[\"この機能は非推奨となり、今後のリリースで削除されます。\"],\"c9V3Yo\":[\"ホストの失敗\"],\"c9iw51\":[\"実行中のジョブ\"],\"c9pF61\":[\"クライアント識別子\"],\"cFC8w7\":[\"このインベントリーソースは、現在それに依存している他のリソースで使用されています。削除してもよろしいですか?\"],\"cFCKYZ\":[\"拒否\"],\"cFOXv9\":[\"汎用 OIDC\"],\"cGRiaP\":[\"イベント詳細\"],\"cIdUma\":[\"\\n \",[\"project_base_dir\"],\" に利用可能な playbook ディレクトリーがありません。\\n そのディレクトリーが空であるか、すべての内容が既に\\n 他のプロジェクトに割り当てられています。そこに新しいディレクトリーを作成し、\\n playbook ファイルが「awx」システムユーザーによって読み取り可能であることを確認するか、\\n 上記のソースコントロールタイプオプションを使用して \",[\"brandName\"],\" が\\n ソースコントロールから直接 playbook を取得するようにしてください。\"],\"cNsIJf\":[\"変更済み\"],\"cPTnDL\":[\"プロジェクトの同期\"],\"cQIQa2\":[\"グループの選択\"],\"cQlPDN\":[\"読み込み\"],\"cUKLzq\":[\"順序の編集\"],\"cYir0h\":[\"オプションの選択\"],\"c_PGsA\":[\"ワークフロージョブの詳細\"],\"cbSPfq\":[\"このワークフローはすでに処理されています\"],\"ccA_Bz\":[\"変数名として推奨される形式は、小文字で\\n アンダースコア区切りです (例: foo_bar、user_id、host_name\\n など)。スペースを含む変数名は使用できません。\"],\"cdm6_X\":[\"使用済み容量\"],\"chbm2W\":[\"インスタンスフィルター\"],\"ci3mwY\":[\"このフィールドを空欄にすることはできません\"],\"cit9TY\":[\"親ノードが set_stats を介して生成するアーティファクトの名前。リンクは、親ジョブが選択された結果に一致し、条件が真の場合にのみたどられます。キーが見つからない場合は一致しません。\"],\"cj1KTQ\":[\"すべてのインベントリーを表示します。\"],\"cjJXKx\":[\"ホストの非同期失敗\"],\"ckH3fT\":[\"準備\"],\"ckdiAB\":[\"通知の削除\"],\"cmWTxn\":[\"Less than or equal to の比較条件\"],\"cnGeoo\":[\"削除\"],\"cnnWD0\":[\"By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>\",[\"0\"],\". Uncheck the following boxes to disable this feature.\"],\"ct_Puj\":[\"このフィールドは、指定された認証情報を使用して外部のシークレット管理システムから取得されます。\"],\"cucDBz\":[\"コンテキストテンプレート\"],\"cucG_7\":[\"利用可能なYAMLがありません\"],\"cxjfgY\":[\"ホップノードでは可用性をチェックできません。\"],\"cy3yJa\":[\"確立済み\"],\"d-F6q9\":[\"作成済み\"],\"d-zGjA\":[\"このアクションにより、以下が削除されます。\"],\"d1BVnY\":[\"A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>\",[\"0\"],\".\"],\"d5zxa4\":[\"ローカル\"],\"d6in1T\":[\"このジョブに管理させるホストが含まれるインベントリーを選択します。\"],\"d73flf\":[\"アラートモーダル\"],\"d75lEw\":[\"タイプの設定\"],\"d7VUIS\":[\"ノード \",[\"nodeName\"],\" の削除\"],\"d8B-tr\":[\"ジョブステータスのグラフタブ\"],\"dAZObA\":[\"リダイレクト URI\"],\"dBNZkl\":[\"スマートインベントリーホストの詳細の表示\"],\"dCcO-F\":[\"構成を取得できませんでした。\"],\"dELxuP\":[\"インベントリーが見つかりません。\"],\"dEgA5A\":[\"取り消し\"],\"dH6aQY\":[\"Azure AD Tenant\"],\"dIb9tv\":[\"すべてのアプリケーションを表示します。\"],\"dJcvVX\":[\"スマートホストフィルター\"],\"dNAHKF\":[\"ジョブスライス\"],\"dOjocz\":[\"収束 (コンバージェンス) 選択\"],\"dPGRd8\":[\"有効にすると、サポートされている場合に Ansible タスクによって行われた変更を表示します。これは Ansible の --diff モードと同等です。\"],\"dPY1x1\":[\"(詳細情報)\"],\"dQFAgv\":[\"このプロジェクトは更新する必要があります\"],\"dQjRO3\":[\"同期プロセスの開始\"],\"dbWo0h\":[\"Google でサインイン\"],\"dcGoCm\":[\"インベントリーファイル\"],\"ddIcfH\":[\"最後のページに移動\"],\"dfWFox\":[\"ホスト数\"],\"dk7qNl\":[\"コントロールノード\"],\"dkGxGj\":[\"Subversion\"],\"dlHFy7\":[\"1 つ以上の実行環境を削除できませんでした。\"],\"dnCwNB\":[\"クリップボードへのコピーに成功しました!\"],\"dov9kY\":[\"このフィールドは数値で、\",[\"0\"],\" から \",[\"1\"],\" までの値である必要があります\"],\"dqxQzB\":[\"辞典\"],\"dzQfDY\":[\"10 月\"],\"e0NrBM\":[\"プロジェクト\"],\"e3pQqT\":[\"通知タイプの選択\"],\"e4GHWP\":[\"プル\"],\"e5CMOi\":[\"認証情報タイプが挿入できる値を指定する環境変数または追加変数。\"],\"e5VbKq\":[\"ワークフロージョブテンプレート\"],\"e6BtDv\":[\"<0>\",[\"0\"],\"<1>\",[\"1\"],\"\"],\"e70-_3\":[\"凡例の表示/非表示\"],\"e8GyQg\":[\"メトリクス\"],\"e8U63Z\":[\"プッシュされた参照がこのパターンに一致する場合にのみプロジェクトを同期します (例: refs/heads/main または refs/heads/release-*)。任意のプッシュまたはタグイベントで同期するには空白のままにします。\"],\"e91aLH\":[\"すべての認証情報タイプの表示\"],\"e9k5zp\":[\"このリストに入力するには、スケジュールを追加してください。スケジュールは、テンプレート、プロジェクト、またはインベントリソースに追加できます。\"],\"eAR1n4\":[\"関連する検索タイプの先行入力\"],\"eD_0Fo\":[\"1 つ以上のチームを削除できませんでした。\"],\"eDjsWq\":[\"新規通知テンプレートの作成\"],\"eGkahQ\":[\"ジョブテンプレートの削除\"],\"eHx-29\":[\"ソース詳細\"],\"ePK91l\":[\"編集\"],\"ePS9As\":[\"RADIUS 設定\"],\"eQkgKV\":[\"インストール済み\"],\"eRV9Z3\":[\"タイムアウトが指定されていません\"],\"eRlz2Q\":[\"送信先 SMS 番号\"],\"eSXF_i\":[\"アプリケーションを削除できませんでした。\"],\"eTsJYJ\":[\"説明\"],\"eVJ2lo\":[\"浮動\"],\"eXOp7I\":[\"インスタンスを削除する権限がありません: \",[\"itemsUnableToremove\"]],\"eXWuGz\":[\"最近のテンプレートリストタブ\"],\"eYJ4TK\":[\"構築されたインベントリが見つかりません。\"],\"eeke40\":[\"自動化アナリティクス\"],\"ekUnNJ\":[\"タグの選択\"],\"el9nUc\":[\"スケジュールは非アクティブです\"],\"emqNXf\":[\"Playbook チェック\"],\"eqiT7d\":[\"このインスタンスがメッシュトポロジー内で果たすロールを設定します。デフォルトは \\\"execution\\\" です。\"],\"espHeZ\":[\"インスタンスグループフォールバックの防止: 有効にすると、インベントリーは、関連付けられたジョブテンプレートを実行する優先インスタンスグループのリストに組織インスタンスグループを追加することを防ぎます。\"],\"etQEqZ\":[\"このリンクを削除すると、ブランチの残りの部分が孤立し、起動直後に実行します。\"],\"ewSXyG\":[[\"pluralizedItemName\"],\" をソフト削除しますか?\"],\"f-fQK9\":[\"Grafana API キー\"],\"f2o-xB\":[\"取り消しの確認\"],\"f6Hub0\":[\"並び替え\"],\"f9yJNM\":[\"等しい\"],\"fCZSgU\":[\"すべてのインスタンスグループの表示\"],\"fDzxi_\":[\"保存せずに終了\"],\"fE2kOY\":[\"日付演算子の選択\"],\"fGEOCn\":[\"ジョブステータス\"],\"fGLpQj\":[\"ソースコントロールブランチ/タグ/コミット\"],\"fGQ9Ug\":[\"このジョブの実行対象となるノードにアクセスするための認証情報を選択します。各タイプにつき 1 つの認証情報のみを選択できます。マシン認証情報 (SSH) の場合、認証情報を選択せずに「起動時に入力を求める」をオンにすると、実行時にマシン認証情報を選択する必要があります。認証情報を選択して「起動時に入力を求める」をオンにすると、選択した認証情報が実行時に更新可能なデフォルト値になります。\"],\"fJ9xam\":[\"インスタンスを有効にする\"],\"fKew5B\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"ジョブをキャンセル\"],\"other\":[\"ジョブをキャンセルする\"]}]],\"fL7WXr\":[\"アプリケーション\"],\"fMUEsk\":[[\"0\"],\" 日\"],\"fMulwN\":[\"プロジェクトリビジョンの更新\"],\"fOAyP5\":[\"テキスト入力の検索\"],\"fODqV4\":[\"値が見つかりませんでした。有効な値を入力または選択してください。\"],\"fQCM-p\":[\"組織の詳細の表示\"],\"fQGOXc\":[\"エラー!\"],\"fR8DDt\":[\"すべてのノードの削除の確認\"],\"fVjyJ4\":[\"関連付けの解除の確認\"],\"f_Xpp2\":[\"このアクションにより、以下の関連付けが解除されます。\"],\"fcTDCh\":[\"以下に Red Hat または Red Hat Satellite の認証情報を\\n 入力すると、利用可能なサブスクリプションのリストから選択できます。\\n 使用する認証情報は、更新または拡張されたサブスクリプションを\\n 取得する際に、今後の使用のために保存されます。\"],\"ff_JYN\":[\"ネストされたグループ名でフィルタリング\"],\"fgrmWn\":[\"起動時に差分モードを要求します。\"],\"fhFmMp\":[\"クライアント識別子\"],\"fjX9i5\":[\"スマートインベントリーは見つかりません。\"],\"fk1WEw\":[\"暗号化\"],\"fld-O4\":[\"すべてのジョブ\"],\"fnbZWe\":[\"(任意) ステータス更新を webhook サービスに送り返すために使用する認証情報を選択します。\"],\"foItBN\":[\"週末\"],\"fp4RS1\":[\"コンテンツの読み込みが進行中\"],\"fpMgHS\":[\"月\"],\"fqSfXY\":[\"置換\"],\"fqmP_m\":[\"ホストに到達できません\"],\"fthJP1\":[\"webhook サービスは、この URL に POST リクエストを行うことで、このワークフロージョブテンプレートでジョブを起動できます。\"],\"fwX7gC\":[\"VMware vCenter\"],\"g4o5Lr\":[\"詳細\"],\"g6ekO4\":[\"ホストの切り替えに失敗しました。\"],\"g7CZ-8\":[\"GitHub Enterprise 組織でサインイン\"],\"g9d3sF\":[\"開始メッセージのボディー\"],\"gALXcv\":[\"このノードの削除\"],\"gBnBJa\":[\"ソースワークフローのジョブ\"],\"gDx5MG\":[\"リンクの編集\"],\"gIGcbR\":[\"このグループで同時に実行するジョブの最大数。ゼロは制限が適用されないことを意味します。\"],\"gJccsJ\":[\"ワークフロー承認メッセージ\"],\"gK06zh\":[\"新規ジョブテンプレートの追加\"],\"gM3pS9\":[\"実行環境\"],\"gN3aF4\":[\"LDAP5\"],\"gSVH9P\":[\"すべてのソースの同期\"],\"gUaMtt\":[\"タイムアウト時\"],\"gVYePj\":[\"新規チームの作成\"],\"gWlcwd\":[\"最終ジョブステータス\"],\"gYWK-5\":[\"ユーザーインターフェース設定の表示\"],\"gZXc5U\":[\"ワークフローが続行される前に承認する必要がある個別ユーザーの数。1 回の拒否で常にノードが拒否されます。\"],\"gZaMqy\":[\"GitHub チームでサインイン\"],\"gZkstf\":[\"有効にすると、収集されたファクトが保存され、ホストレベルで表示できるようになります。ファクトは永続化され、実行時にファクトキャッシュに注入されます。\"],\"gcFnpl\":[\"ジョブステータス\"],\"geTfDb\":[\"ジョブの詳細の表示\"],\"ged_ZE\":[\"オラグナイゼーション\"],\"gezukD\":[\"取り消すジョブを選択してください\"],\"gfyddN\":[\".zip ファイルをアップロードする\"],\"gh06VD\":[\"出力\"],\"ghJsq8\":[\"最初にスクロール\"],\"gmB6oO\":[\"スケジュール\"],\"gmBQqV\":[\"プロジェクトの更新\"],\"gnveFZ\":[\"標準エラータブ\"],\"goVc-x\":[\"認証情報プラグイン設定の編集\"],\"go_DGX\":[\"チームロールの追加\"],\"gpKdxJ\":[\"削除する質問の選択\"],\"gpmbqk\":[\"変数\"],\"gpnvle\":[\"削除エラー\"],\"gsj32g\":[\"プロジェクトの同期の取り消し\"],\"gtB4z-\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 時間\"],\"other\":[\"#\",\" 時間\"]}]],\"gwKtbI\":[\"ドキュメンテーションと\"],\"h25sKn\":[\"サブスクリプション管理\"],\"h51QFW\":[\"YAML\"],\"h8DugX\":[\"ラベル\"],\"hAjDQy\":[\"状態の選択\"],\"hBHRCF\":[\"新しいインスタンスがオンラインになったときに、このグループに自動的に\\n 割り当てられるインスタンスの最小数。\"],\"hEBjSg\":[\"Red Hat Satellite 6\"],\"hEnNCI\":[\"Ansible ファクトに関連する現在の検索を削除して、このキーを使用して別の検索ができるようにします。\"],\"hG89Ed\":[\"イメージ\"],\"hHKoQD\":[\"ピアアドレスの選択\"],\"hLDu5N\":[\"アプリケーションの編集\"],\"hNudM0\":[\"このフィールドに値を設定します\"],\"hPa_zN\":[\"組織 (名前)\"],\"hQ0dMQ\":[\"新規ホストの追加\"],\"hQRttt\":[\"送信\"],\"hVPa4O\":[\"オプションを選択してください\"],\"hX8KyU\":[\"このジョブは失敗し、出力がありません。\"],\"hXDKWN\":[\"頻度の詳細\"],\"hXzOVo\":[\"次へ\"],\"hYH0cE\":[\"このジョブを取り消す要求を送信してよろしいですか?\"],\"hYgDIe\":[\"作成\"],\"hZ6znB\":[\"ポート\"],\"hZke6f\":[\"ローカル認証を無効にしてもよろしいですか? これを行うと、ユーザーのログイン機能と、システム管理者がこの変更を元に戻す機能に影響を与える可能性があります。\"],\"hc_ufD\":[\"ジョブタグ\"],\"hdyeZ0\":[\"ジョブの削除\"],\"he3ygx\":[\"コピー\"],\"heqHpI\":[\"プロジェクトのベースパス\"],\"hg6l4j\":[\"3 月\"],\"hgJ0FN\":[\"検索を実行して、ホストフィルターを定義します。\"],\"hgr8eo\":[\"項目\"],\"hgvbYY\":[\"9 月\"],\"hhzh14\":[\"このアカウントに関連するライセンスを見つけることができませんでした。\"],\"hi1n6B\":[[\"brandName\"],\" 内のジョブを含む設定の更新\"],\"hiDMCa\":[\"プロビジョニング\"],\"hjsbgA\":[\"追加変数\"],\"hjwN_s\":[\"リソース名\"],\"hlbQEq\":[\"コンテンツ署名検証の認証情報\"],\"hmEecN\":[\"管理ジョブ\"],\"hmjNLv\":[\"優先テーマ\"],\"hty0d5\":[\"月曜\"],\"hvs-Js\":[\"アプリケーション情報\"],\"i0VMLn\":[\"ワークフロー拒否メッセージ\"],\"i2izXk\":[\"スケジュールにルールがありません\"],\"i4_LY_\":[\"書き込み\"],\"i9sC0B\":[\"チームパーミッションの追加\"],\"iASwqf\":[\"This action will cancel the following job:\"],\"iCFhEl\":[\"発信元の電話番号\"],\"iDNBZe\":[\"通知\"],\"iDWfOR\":[\"1つ以上のワークフロー承認を承認できませんでした。\"],\"iDjyID\":[\"認証情報の詳細の表示\"],\"iE1s1P\":[\"ワークフローの起動\"],\"iEUzMn\":[\"システム\"],\"iH8pgl\":[\"戻る\"],\"iI4bLJ\":[\"前回のログイン\"],\"iIVceM\":[\"コピーエラー\"],\"iJWOeZ\":[\"JSON は利用できません\"],\"iJiCFw\":[\"グループの詳細\"],\"iLO3nG\":[\"再生回数\"],\"iMaC2H\":[\"インスタンスグループ\"],\"iPp22p\":[\"このスケジュールは UI でサポートされていない複雑なルールを\\n 使用しています。このスケジュールを管理するには API を使用してください。\"],\"iQdYL_\":[\"スマートインベントリーの追加\"],\"iRWxmA\":[\"SSL 検証の無効化\"],\"iTylMl\":[\"テンプレート\"],\"iWKCzl\":[\"プロジェクトの基本パスで見つかったディレクトリーのリストから選択します。基本パスと playbook ディレクトリーを合わせて、playbook を見つけるために使用される完全なパスが提供されます。\"],\"iXmHtI\":[\"ジョブタイプの選択\"],\"iZBwau\":[\"このステップにはエラーが含まれています\"],\"i_CDGy\":[\"ブランチの上書き許可\"],\"i_Kv21\":[\"新規ソースの作成\"],\"ifckL-\":[\"行の選択\"],\"ifdViT\":[\"インベントリーの詳細の表示\"],\"ig0q8s\":[\"このインベントリーが、このワークフロー (\",[\"0\"],\") 内の、インベントリーをプロンプトするすべてのワークフローノードに適用されます。\"],\"inP0J5\":[\"サブスクリプションの詳細\"],\"isRobC\":[\"新規\"],\"itlxml\":[\"管理ジョブ\"],\"ittbfT\":[\"ansible_facts による検索には特別な構文が必要です。詳細は、以下を参照してください。\"],\"itu2NQ\":[\"リンク状態のタイプ\"],\"j1a5f1\":[\"ホストの編集\"],\"j6gqC6\":[\"ジョブ実行で使用するブランチ。空欄の場合はプロジェクトのデフォルトが使用されます。プロジェクトの allow_override フィールドが true に設定されている場合にのみ許可されます。\"],\"j7zAEo\":[\"ワークフローのステータス\"],\"j8QfHv\":[\"ホストの編集\"],\"jAxdt7\":[\"削除のキャンセル\"],\"jBGh4u\":[\"ネストされたグループのインベントリ定義:\"],\"jCVu9g\":[\"Cancel selected job\"],\"jEJtMA\":[\"保留中のワークフロー承認\"],\"jEw0Mr\":[\"有効な URL を入力してください\"],\"jFaaUJ\":[\"カノニカル\"],\"jGUu_G\":[\"必要な承認\"],\"jIaeJK\":[\"Survey\"],\"jJdwCB\":[\"戻す\"],\"jKibyt\":[\"ズームのリセット\"],\"jMyq_x\":[\"Workflow Job 1/\",[\"0\"]],\"jaUa4e\":[\"このデータは、Tower ソフトウェアの将来の\\n リリースを強化し、顧客体験と成功の\\n 合理化を支援するために使用されます。\"],\"jc86YO\":[\"起動時に制限を要求します。\"],\"ji-8F7\":[\"この認証情報は、現在他のリソースで使用されています。削除してもよろしいですか?\"],\"jiE6Vn\":[\"組織\"],\"jifz9m\":[\"なし (1回実行)\"],\"jkQOCm\":[\"例外の追加\"],\"jljuYN\":[\"webhook リクエストを受け入れるサービス。\"],\"jluR-N\":[\"警告: \",[\"selectedValue\"],\" は \",[\"0\"],\" へのリンクであり、そのように保存されます。\"],\"joAQQS\":[\"The inventories will be in a pending status until the final delete is processed.\"],\"jqVo_k\":[\"ここ。\"],\"jqzUyM\":[\"利用不可\"],\"jrkyDn\":[\"プレイの開始\"],\"jrsFB3\":[\"出力タブ\"],\"jsz-PY\":[\"不明な終了日\"],\"jwmkq1\":[\"マシンの認証情報\"],\"jzD-D6\":[\"スキップタグは、大規模な playbook があり、play またはタスクの特定の部分をスキップしたい場合に便利です。複数のタグを区切るにはカンマを使用します。タグの使用方法の詳細については、ドキュメントを参照してください。\"],\"k020kO\":[\"アクティビティーストリーム\"],\"k2dzu3\":[\"有効期限 (UTC)\"],\"k30JvV\":[\"選択したカテゴリー\"],\"k5nHqi\":[\"このジョブテンプレートの起動時に使用される実行環境です。解決された実行環境は、このジョブテンプレートに別の実行環境を明示的に割り当てることで上書きできます。\"],\"kALwhk\":[\"seconds\"],\"kDWprA\":[\"これらの引数は、指定されたモジュールで使用されます。\"],\"kEhyki\":[\"値で終了するフィールド。\"],\"kLja4m\":[\"開始ユーザー:\"],\"kLk5bG\":[\"開始メッセージ\"],\"kNUkGV\":[\"ルックアップタイプ\"],\"kNfXib\":[\"モジュール名\"],\"kODvZJ\":[\"名\"],\"kOVkPY\":[\"インスタンスの切り替え\"],\"kP-3Hw\":[\"インベントリーに戻る\"],\"kQerRU\":[\"このフィールドにスペースを含めることはできません\"],\"kX-GZH\":[\"ジョブの再起動\"],\"kXzl6Z\":[\"ソース変数\"],\"kYDvK4\":[\"組み込みファイル\"],\"kah1PX\":[\"次の場所でYAMLの例を表示します\"],\"kaux7o\":[\"リモートインベントリーソースからのローカルグループおよびホストを上書きする\"],\"kgtWJ0\":[\"このジョブテンプレートを実行するインスタンスグループを選択します。\"],\"kiMHN-\":[\"システム監査者\"],\"kjrq_8\":[\"詳細情報\"],\"kkDQ8m\":[\"木曜\"],\"kkc8HD\":[[\"brandName\"],\" アプリケーションの簡単ログインの有効化\"],\"kpRn7y\":[\"質問の削除\"],\"kpnWnY\":[\"SCMリビジョンが変更されるプロジェクトの更新のたびに、ジョブタスクを実行する前に、選択したソースからインベントリを更新します。これは、Ansibleインベントリ.iniファイル形式などの静的コンテンツを対象としています。\"],\"ks-HYT\":[\"ユーザー権限の追加\"],\"ks71ra\":[\"例外\"],\"kt8V8M\":[\"ワークフローのブランチを選択します。\"],\"ktPOqw\":[\"参照:\"],\"kuIbuV\":[\"ヘルスチェックは、実行ノードでのみ実行できます。\"],\"ku__5b\":[\"第 2\"],\"kyAi7k\":[\"インスタンス\"],\"kyHUFI\":[\"Vault パスワード | \",[\"credId\"]],\"kyfr2I\":[\"チェックを入れると、以前は外部ソースに存在していたが現在削除されているホストとグループがインベントリーから削除されます。インベントリーソースによって管理されていなかったホストとグループは、次の手動で作成されたグループに昇格されます。昇格先の手動で作成されたグループがない場合は、インベントリーのデフォルトの「all」グループに残されます。\"],\"kz7G1W\":[[\"1\"],\" から \",[\"0\"],\" のアクセスを削除しますか? これを行うと、チームのすべてのメンバーに影響します。\"],\"l4MzBY\":[[\"update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" 秒\"],\"other\":[\"#\",\" 秒\"]}]],\"l4k9lc\":[\"最初のノード\"],\"l5XUoS\":[\"Webhook の認証情報\"],\"l75CjT\":[\"はい\"],\"l9ZmWD\":[[\"scm_update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" 秒\"],\"other\":[\"#\",\" 秒\"]}]],\"lCF0wC\":[\"更新\"],\"lJFsGr\":[\"新規インスタンスグループの作成\"],\"lKxoCA\":[\"ジョブイベントの拡張\"],\"lM9cbX\":[\"ホストがグループの子のメンバーでもある場合、関連付けを解除した後もリストにグループが表示されることがあります。このリストには、ホストが直接的および間接的に関連付けられているすべてのグループが表示されます。\"],\"lURfHJ\":[\"セクションを折りたたむ\"],\"lWkKSO\":[\"分\"],\"lWmv3p\":[\"インベントリーソース\"],\"lYDyXS\":[\"スマートインベントリー\"],\"l_jRvf\":[\"Playbook の完了\"],\"lfoFSg\":[\"ホストの削除\"],\"lgm7y2\":[\"編集\"],\"lgphOX\":[\"期待値\"],\"lhgU4l\":[\"テンプレートが見つかりません。\"],\"lhkaAC\":[\"トライアル\"],\"ljGeYw\":[\"標準ユーザー\"],\"lk5WJ7\":[\"host-name-\",[\"0\"]],\"lkgIYt\":[\"Pagerduty\"],\"lo-rJO\":[\"パンダウン\"],\"ltvmAF\":[\"アプリケーションが見つかりません。\"],\"lu2qW5\":[\"任意\"],\"lucaxq\":[\"ログアグリゲータホストとログアグリゲータタイプを指定しないと、ログアグリゲータを有効にできません。\"],\"luxcrf\":[[\"label\"],\" の詳細情報\"],\"lyjq5X\":[\"Slack\"],\"m-eV2_\":[\"コンテナーグループが見つかりません。\"],\"m16xKo\":[\"追加\"],\"m1tKEz\":[\"システム管理者は、すべてのリソースに無制限にアクセスできます。\"],\"m2ErDa\":[\"失敗\"],\"m3k6kn\":[\"構築された在庫ソースの同期をキャンセルできませんでした\"],\"m5MOUX\":[\"ホストに戻る\"],\"mGJIOu\":[\"この構築済みインベントリー入力は\\n 両方のカテゴリーのグループを作成し、\\n 制限 (ホストパターン) を使用して、それら 2 つの\\n グループの共通部分にあるホストのみを返します。\"],\"mNBZ1R\":[\"注記: このフィールドは、リモート名が「origin」であることを前提としています。\"],\"mOFgdC\":[\"最大\"],\"mPiYpP\":[\"ノード状態のタイプ\"],\"mSv_7k\":[\"3年\"],\"mXRKES\":[\"LDAP4\"],\"mXfNlE\":[\"このスケジュールには、必要な Survey 値がありません\"],\"mYGY3B\":[\"日付\"],\"mZiQNk\":[\"権限昇格: 有効にすると、この playbook を管理者として実行します。\"],\"m_tELA\":[\"削除をキャンセルする\"],\"ma7cO9\":[\"グループ \",[\"0\"],\" を削除できませんでした。\"],\"mahPLs\":[\"権限昇格のパスワード\"],\"mcGG2z\":[[\"minutes\"],\" 分 \",[\"seconds\"],\" 秒\"],\"mdNruY\":[\"API トークン\"],\"mgJ1oe\":[\"削除の確認\"],\"mgjN5u\":[\"インスタンスグループへのインスタンスの関連付けを解除しますか?\"],\"mhg7Av\":[\"アドホックコマンドの実行\"],\"mi9ffh\":[\"ホストの詳細\"],\"mk4anB\":[\"ブラウザのデフォルト\"],\"mlDUq3\":[\"変更者 (ユーザー名)\"],\"mnm1rs\":[\"GitHub のデフォルト\"],\"moZ0VP\":[\"同期の状態\"],\"momgZ_\":[\"ワークフロージョブテンプレートの名前。\"],\"mqAOoN\":[\"Playbook ディレクトリーの選択\"],\"n-37ya\":[\"ローカル認証の無効化の確認\"],\"n-LISx\":[\"ワークフローの保存中にエラーが発生しました。\"],\"n-ZioH\":[\"更新されたプロジェクトの取得エラー\"],\"n-qmM7\":[\"JSON 形式のサービスアカウントキーを選択して、次のフィールドに自動入力します。\"],\"n12Go4\":[\"関連グループの読み込みに失敗しました。\"],\"n60kiJ\":[\"*このフィールドは、指定された認証情報を使用して外部のシークレット管理システムから取得されます。\"],\"n6mYYY\":[\"ワークフローのタイムアウトメッセージ\"],\"n9Idrk\":[\"(最初の 10 件に制限)\"],\"n9lz4A\":[\"失敗したジョブ\"],\"nBAIS_\":[\"イベント詳細の表示\"],\"nC35Na\":[\"Are you sure you want delete the group below?\"],\"nCU-1E\":[\"プロビジョニングコールバック URL の作成を\\n 有効にします。この URL を使用して、ホストは \",[\"brandName\"],\" に\\n 接続し、このジョブテンプレートを使用して\\n 設定の更新を要求できます\"],\"nCY9IL\":[\"ホストがスキップされました\"],\"nDjIzD\":[\"プロジェクトの詳細の表示\"],\"nGbNEN\":[\"プロジェクトを最新と見なす時間 (秒単位)。ジョブの実行およびコールバック中に、タスクシステムは最新のプロジェクト更新のタイムスタンプを評価します。キャッシュタイムアウトよりも古い場合は最新とは見なされず、新しいプロジェクト更新が実行されます。\"],\"nI54lc\":[\"プロジェクトを削除してから同期する\"],\"nJPBvA\":[\"ファイル、ディレクトリー、またはスクリプト\"],\"nJTOTZ\":[\"この組織内のジョブに使用される実行環境。これは、実行環境がプロジェクト、ジョブテンプレート、またはワークフローレベルで明示的に割り当てられていない場合にフォールバックとして使用されます。\"],\"nLGsp4\":[\"このワークフロージョブテンプレートのアンケートを有効にします。\"],\"nMiE53\":[\"有効な変数\"],\"nOhz3x\":[\"ログアウト\"],\"nPH1Cr\":[\"これらの実行環境は、それらに依存する他のリソースによって使用され得る。本当に削除してもよろしいですか?\"],\"nQOwDS\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"dayOfWeek\"]],\"4\":[\"The fourth \",[\"dayOfWeek\"]],\"5\":[\"The fifth \",[\"dayOfWeek\"]],\"one\":[\"The first \",[\"dayOfWeek\"]],\"two\":[\"The second \",[\"dayOfWeek\"]]}]],\"nRXCOn\":[\"失敗したホスト数\"],\"nSTT11\":[\"再起動元:\"],\"nTENWI\":[\"サブスクリプション管理へ戻る\"],\"nU16mp\":[\"キャッシュタイムアウト\"],\"nZPX7r\":[\"警告: 変更が保存されていません\"],\"nZW6P0\":[\"ローカルタイムゾーン\"],\"nZYB4j\":[\"ステータス情報はありません\"],\"nZYxse\":[\"ホストのグループとの関連付けを解除しますか?\"],\"n_qDNz\":[\"Switch to dark mode\"],\"naCW6Z\":[\"4 月\"],\"ncxIQL\":[\"1 つ以上のインスタンスの関連付けを解除できませんでした。\"],\"neiOWk\":[\"構築されたインベントリ文書をここで表示\"],\"nfnm9D\":[\"組織名\"],\"ng00aZ\":[\"ホストフィルター\"],\"nhxAdQ\":[\"キーワード\"],\"nlsWzF\":[\"Survey の質問を追加してください。\"],\"nnY7VU\":[\"Pagerduty サブドメイン\"],\"noGZlf\":[\"キャッシュのタイムアウト (秒)\"],\"npGo-z\":[[\"label\"],\" でサインイン\"],\"nuh_Wq\":[\"Webhook URL\"],\"nvUq8j\":[\"1 (詳細)\"],\"nzozOC\":[\"ユーザーの削除\"],\"nzr1qE\":[\"ファイルのアップロードが拒否されました。単一の .json ファイルを選択してください。\"],\"o-JPE2\":[\"Survey の質問は見つかりません。\"],\"o0RwAq\":[\"GitHub Enterprise でサインイン\"],\"o0x5-R\":[\"このフィールドの値の選択\"],\"o4NRE0\":[\"詳細な検索値の入力\"],\"o5J6dR\":[\"このノードを実行する条件を指定\"],\"o9R2tO\":[\"SSL 接続\"],\"oABS9f\":[\"このフィールドに値を入力するか、起動プロンプトを表示するオプションを選択します。\"],\"oB5EwG\":[\"外部シークレット管理システム\"],\"oBmCtD\":[\"Are you sure you want delete the groups below?\"],\"oC5JSb\":[\"更新されたプロジェクトデータの取得に失敗しました。\"],\"oCKCYp\":[\"通知が正常に送信されました\"],\"oEijQ7\":[\"startswith で大文字小文字の区別なし。\"],\"oFtmtl\":[\"Select the inventory containing the hosts\\n you want this job to manage.\"],\"oGKq12\":[\"2つのグループを構築し、交差点に制限する\"],\"oH1Qle\":[\"このワークフロージョブテンプレートの Webhook URL。\"],\"oHOOxn\":[\"デフォルトでは、サービスの使用状況に関する分析データを収集し、Red Hat に送信します。サービスによって収集されるデータには 2 つのカテゴリーがあります。詳細については、<0>この Tower ドキュメントページを参照してください。この機能を無効にするには、次のボックスのチェックを外してください。\"],\"oII7vS\":[\"GitHub 設定\"],\"oKMFX4\":[\"未更新\"],\"oKbBFU\":[\"# source with sync failures.\"],\"oNOjE7\":[\"終了日時\"],\"oNZQUQ\":[\"Kubernetes または OpenShift との認証のための認証情報\"],\"oQqtoP\":[\"管理ジョブに戻る\"],\"oRt7Uv\":[[\"interval\"],\" years\"],\"oTDA5P\":[[\"0\",\"plural\",{\"one\":[\"このインスタンスは現在、他のリソースで使用されています。削除してもよろしいですか?\"],\"other\":[\"これらのインスタンスのプロビジョニングを解除すると、それらに依存する他のリソースに影響する可能性があります。それでも削除してもよろしいですか?\"]}]],\"oWvSIB\":[\"送信者のメール\"],\"oX_mCH\":[\"プロジェクトの同期エラー\"],\"oZvDsd\":[[\"interval\"],\" hours\"],\"ocUvR-\":[\"False\"],\"ofO19Q\":[\"GitHub Enterprise チームでサインイン\"],\"ofcQVG\":[\"保存されていない変更モーダル\"],\"olEUh2\":[\"成功\"],\"opS--k\":[\"インスタンスグループに戻る\"],\"orh4t6\":[\"ホスト OK\"],\"osCeRO\":[\"Azure AD 設定の表示\"],\"ot7qsv\":[\"すべてのフィルターの解除\"],\"ovBPCi\":[\"デフォルト\"],\"owBGkJ\":[\"終了が期待値と一致しませんでした (\",[\"0\"],\")\"],\"owQ8JH\":[\"インスタンスグループの追加\"],\"ozbhWy\":[\"削除エラー\"],\"p-nfFx\":[\"ここにファイルをドラッグするか、参照してアップロード\"],\"p-ngUo\":[\"フォロー解除\"],\"p-pp9U\":[\"文字列\"],\"p2LEhJ\":[\"パーソナルアクセストークン\"],\"p2_GCq\":[\"パスワードの確認\"],\"p3PM8G\":[\"最初のノードから再起動\"],\"p6-JME\":[\"1 つ目はすべての参照を取得します。2 つ目は Github のプルリクエスト番号 62 を取得します。この例では、ブランチは「pull/62/head」である必要があります。\"],\"pAtylB\":[\"見つかりません\"],\"pCCQER\":[\"システム全体で利用可能\"],\"pH8j40\":[\"以前に削除されたアクティブなホスト\"],\"pHyx6k\":[\"多項選択法 (単一の選択可)\"],\"pKQcta\":[\"Pod 仕様のカスタマイズ\"],\"pOJNDA\":[\"コマンド\"],\"pOd3wA\":[\"Enter キーを押して、回答の選択肢をさらに追加します。回答の選択肢は、1 行に 1 つです。\"],\"pOhwkU\":[\"このアクションにより、\",[\"0\"],\" から次のロールの関連付けが解除されます:\"],\"pRZ6hs\":[\"実行:\"],\"pSypIG\":[\"説明の表示\"],\"pYENvg\":[\"認証付与タイプ\"],\"pZJ0-s\":[\"このグループで同時に実行されているすべてのジョブで許可するフォークの最大数。ゼロは制限が適用されないことを意味します。\"],\"pa1SrG\":[[\"interval\"],\" days\"],\"peCAyQ\":[\"RADIUS 設定の表示\"],\"pfw0Wr\":[\"すべて\"],\"pguZh2\":[\"jinja2 式から変数を作成します。定義した構築済みグループに\\n 期待されるホストが含まれていない場合に役立ちます。これを使用して\\n 式から hostvars を追加できるため、それらの式の\\n 結果の値がわかります。\"],\"phTgAm\":[\"システムのファクトを設定するには、`gather_facts: true`\\n を持つインベントリーに対して playbook を実行する必要があるため、\\n Ansible ファクトのインベントリーの仕様を提示するのは\\n 困難です。実際のファクトはシステムごとに\\n 異なります。\"],\"pkY73W\":[\"Rocket.Chat\"],\"pn7Xy3\":[\"Django を参照\"],\"poMgBa\":[\"起動時に SCM ブランチを要求します。\"],\"ppcQy0\":[\"ズームを 100% に設定し、グラフを中央に配置\"],\"prydaE\":[\"プロジェクトの同期の失敗\"],\"pw2VDK\":[[\"month\"],\" の最後の \",[\"weekday\"]],\"q-Uk_P\":[\"1 つ以上の認証情報タイプを削除できませんでした。\"],\"q45OlW\":[\"リージョン\"],\"q5tQBE\":[\"関連する検索フィールドのあいまい検索でタイプを無効に設定\"],\"q67y3T\":[\"通知テンプレートテストは見つかりません。\"],\"qAlZNb\":[\"次のワークフロー承認に対応できません: \",[\"itemsUnableToDeny\"]],\"qCUUnr\":[\"残りのホストがありません\"],\"qChjCy\":[\"初回実行日時\"],\"qD-pvR\":[\"ダッシュボード ID (オプション)\"],\"qEMgTP\":[\"インベントリーソース同期エラー\"],\"qJK-de\":[\"OIDC でサインイン\"],\"qS0GhO\":[\"実行環境がありません\"],\"qSSVmd\":[\"送信先チャネルまたはユーザー\"],\"qSSg1L\":[\"利用可能なノードへのリンク\"],\"qWD0iN\":[\"このデータは、ソフトウェアの将来のリリースを強化し、\\n Automation Analytics を提供するために\\n 使用されます。\"],\"qXRYa2\":[\"ブランチでのサブモジュールの最新のコミットを追跡する\"],\"qYkrfg\":[\"プロビジョニングコールバックの詳細\"],\"qZ2MTC\":[\"これらは \",[\"brandName\"],\" がコマンドの実行をサポートするモジュールです。\"],\"qgjtIt\":[\"収束 (コンバージェンス)\"],\"qlhQw_\":[\"インベントリーの同期\"],\"qliDbL\":[\"リモートアーカイブ\"],\"qlwLcm\":[\"トラブルシューティング\"],\"qmBmJJ\":[\"クライアントシークレットが表示されるのはこれだけです。\"],\"qmYgP7\":[\"承認\"],\"qqeAJM\":[\"なし\"],\"qtFFSS\":[\"起動時のリビジョン更新\"],\"qtaMu8\":[\"インベントリー (名前)\"],\"qvCD_i\":[\"例には次が含まれます。\"],\"qwaCoN\":[\"ソースコントロールの更新\"],\"qxZ5RX\":[\"ホスト\"],\"qznBkw\":[\"ワークフローリンクモーダル\"],\"r6Aglb\":[\"JSON または YAML 構文のいずれかを使用してインジェクターを入力します。構文のサンプルについては Ansible Controller ドキュメントを参照してください。\"],\"r6y-jM\":[\"警告\"],\"r6zgGo\":[\"12 月\"],\"r8ojWq\":[\"削除の確認\"],\"r8oq0Y\":[\"過去 24 時間\"],\"rBdPPP\":[[\"name\"],\" を削除できませんでした。\"],\"rE95l8\":[\"クライアントタイプ\"],\"rG3WVm\":[\"選択\"],\"rHK_Sg\":[\"カスタム仮想環境 \",[\"virtualEnvironment\"],\" は、実行環境に置き換える必要があります。実行環境への移行の詳細については、<0>ドキュメント を参照してください。\"],\"rK7UBZ\":[\"すべてのホストの再起動\"],\"rKS_55\":[\"ファクトストレージ: 有効にすると、収集されたファクトが保存され、ホストレベルで表示できるようになります。ファクトは永続化され、実行時にファクトキャッシュに注入されます。\"],\"rKTFNB\":[\"認証情報タイプの削除\"],\"rLznGJ\":[\"承認が作成されたときに、アップストリームの set_stats アーティファクトでレンダリングされる Jinja2 テンプレート。これを使用して、以前のジョブステップの関連コンテキストを承認者に表示します。使用可能な変数は、親ノードの set_stats データから取得されます。\"],\"rMrKOB\":[\"プロジェクトを同期できませんでした。\"],\"rOZRCa\":[\"ワークフローのリンク\"],\"rSYkIY\":[\"このフィールドは数値でなければなりません\"],\"rXhu41\":[\"2 (デバッグ)\"],\"rYHzDr\":[\"項目/ページ\"],\"r_IfWZ\":[\"インベントリーの編集\"],\"rdUucN\":[\"プレビュー\"],\"rfYaVc\":[\"回答の変数名\"],\"rfpIXM\":[\"起動時にインスタンスグループを要求します。\"],\"rfx2oA\":[\"ワークフロー保留メッセージのボディー\"],\"riBcU5\":[\"IRC ニック\"],\"rjVfy3\":[\"ワークフロードキュメント\"],\"rjyWPb\":[\"1 月\"],\"rmb2GE\":[[\"0\"],\" により拒否済み - \",[\"1\"]],\"rmt9Tu\":[\"ホストの合計\"],\"ruhGSG\":[\"インベントリーソース同期の取り消し\"],\"rvia3m\":[\"その他の認証\"],\"rw1pRJ\":[\"バンドルのダウンロード\"],\"rwWNpy\":[\"インベントリー\"],\"s-MGs7\":[\"リソース\"],\"s2xYUy\":[\"リモートインベントリーソースのローカル変数を上書きする\"],\"s3KtlK\":[\"選択した例外により、このスケジュールには発生がありません。\"],\"s4Qnj2\":[\"実行環境\"],\"s4fge-\":[\"過去 1 ヵ月\"],\"s5aIEB\":[\"新規ワークフロージョブテンプレートの削除\"],\"s5mACA\":[\"インスタンスの詳細\"],\"s5r5nt\":[[\"0\",\"plural\",{\"one\":[\"このインスタンスグループは現在他のリソースによって使用されています。削除してもよろしいですか?\"],\"other\":[\"これらのインスタンスグループを削除すると、それらに依存する他のリソースに影響を与える可能性があります。それでも削除してもよろしいですか?\"]}]],\"s6F6Ks\":[\"このジョブの出力は見つかりません\"],\"s70SJY\":[\"ロギング設定\"],\"s8hQty\":[\"すべてのジョブを表示します。\"],\"s9EKbs\":[\"SSL 検証の無効化\"],\"sAz1tZ\":[\"関連付けの解除の確認\"],\"sBJ5MF\":[\"ソース\"],\"sCEb_0\":[\"すべてのインベントリーホストを表示します。\"],\"sGodAp\":[\"Pod 仕様の上書き\"],\"sMDRa_\":[\"グループに戻る\"],\"sOMf4x\":[\"最近のテンプレート\"],\"sSFxX6\":[\"ジョブ起動時のリビジョン更新\"],\"sTkKoT\":[\"拒否する行を選択\"],\"sUyFTB\":[\"ダッシュボードへのリダイレクト\"],\"sV3kNp\":[\"このインスタンスグループは、現在他のリソースで使用されています。削除してもよろしいですか?\"],\"sVh4-e\":[\"このリンクの削除\"],\"sW5OjU\":[\"必須\"],\"sZif4m\":[\"関連するグループの関連付けを解除しますか?\"],\"s_XkZs\":[\"開始\"],\"s_r4Az\":[\"このフィールドは整数でなければなりません\"],\"sesAIn\":[\"ジョブの開始、成功、または失敗時に送信される\\n 通知の内容を変更するには、カスタムメッセージを使用します。ジョブに関する\\n 情報にアクセスするには波括弧を使用します:\"],\"sgRZMG\":[\"ハイブリッドノード\"],\"siJgSI\":[\"ジョブが見つかりません。\"],\"sjMCOP\":[\"最終変更日時\"],\"sjVfrA\":[\"コマンド\"],\"smFRaX\":[\"ジョブはすでに開始されています\"],\"sqMsvU\":[[\"0\",\"plural\",{\"one\":[\"#\",\" 個のソースで同期に失敗しました。\"],\"other\":[\"#\",\" 個のソースで同期に失敗しました。\"]}]],\"sr4LMa\":[\"インベントリーソース\"],\"svR3aM\":[\"OpenStack\"],\"svy2x9\":[\"この条件またはその他のフィルターを満たす結果を返します。\"],\"sxkWRg\":[\"詳細\"],\"syupn5\":[\"ブランドイメージ\"],\"syyeb9\":[\"最初\"],\"t-R8-P\":[\"実行\"],\"t2q1xO\":[\"スケジュールの編集\"],\"t4v_7X\":[\"ノードタイプの選択\"],\"t9QlBd\":[\"11 月\"],\"tRm9qR\":[\"タグは、大規模な playbook があり、play またはタスクの特定の部分を実行したい場合に便利です。複数のタグを区切るにはカンマを使用します。タグの使用方法の詳細については、ドキュメントを参照してください。\"],\"tVEot_\":[[\"0\",\"plural\",{\"one\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"other\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"]}]],\"tXkhj_\":[\"開始\"],\"t_YqKh\":[\"削除\"],\"tbSVlt\":[\"ユーザーのアクセス権の削除\"],\"tfDRzk\":[\"保存\"],\"tfh2eq\":[\"クリックして、このノードへの新しいリンクを作成します。\"],\"tgPwON\":[\"演算子\"],\"tgSBSE\":[\"リンクの削除\"],\"tgWuMB\":[\"変更日時\"],\"thJljW\":[\"警告: \"],\"toJdZA\":[\"Reorder\"],\"tpCmSt\":[\"policy rules.\"],\"tqlcfo\":[\"プロビジョニング解除\"],\"trjiIV\":[\"ピアの関連付けに失敗しました。\"],\"tst44n\":[\"イベント\"],\"twE5a9\":[\"認証情報を削除できませんでした。\"],\"txNbrI\":[\"ソースコントロールブランチ\"],\"ty2DZX\":[\"この組織は、現在他のリソースで使用されています。削除してもよろしいですか?\"],\"tzgOKK\":[\"これはすでに処理されています\"],\"u-sh8m\":[\"/ (プロジェクト root)\"],\"u4ex5r\":[\"7 月\"],\"u4n8Fm\":[\"ピアの削除に失敗しました。\"],\"u4x6Jy\":[\"ジョブに戻る\"],\"u5AJST\":[\"Playbook の実行中に使用する並列または同時プロセスの数。いずれの値も入力しないと、Ansible 設定ファイルのデフォルト値が使用されます。より多くの情報を確認できます。\"],\"u7f6WK\":[\"すべてのワークフロー承認を表示します。\"],\"u84wS1\":[\"ジョブキャンセルエラー\"],\"uAQUqI\":[\"ステータス\"],\"uAhZbx\":[\"障害のある在庫ソース\"],\"uCjD1h\":[\"セッションの期限が切れました。中断したところから続行するには、ログインしてください。\"],\"uImfEm\":[\"ワークフロー保留メッセージ\"],\"uJz8NJ\":[\"ジョブの実行中は検索が無効になっています\"],\"uPRp5U\":[\"ルックアップの取り消し\"],\"uTDtiS\":[\"第 5\"],\"uUehLT\":[\"待機中\"],\"uVu1Yt\":[\"タイプ選択の設定\"],\"uYtvvN\":[\"実行環境を編集する前にプロジェクトを選択してください。\"],\"ucSTeu\":[\"作成者 (ユーザー名)\"],\"ucgZ0o\":[\"組織\"],\"ugZpot\":[\"外部認証情報のテスト\"],\"ulRNXw\":[\"Dragging cancelled. List is unchanged.\"],\"upC07l\":[\"Survey Disabled\"],\"uuPCEU\":[\"If you want the Inventory Source to update on launch , click on Update on Launch, and also go to \"],\"uyJsf6\":[\"情報\"],\"uzTiFQ\":[\"スケジュールに戻る\"],\"v-CZEv\":[\"起動プロンプト\"],\"v-EbDj\":[\"トラブルシューティング設定\"],\"v-M-LP\":[\"テンプレートの起動\"],\"v0urVb\":[\"サブスクリプションをお持ちでない場合は、Red Hat に\\n アクセスしてトライアルサブスクリプションを取得できます。\"],\"v1kQyJ\":[\"Webhook\"],\"v2dMHj\":[\"ホストパラメーターを使用した再起動\"],\"v2gmVS\":[\"このアクションでは、次の項目がソフト削除されます。\"],\"v45yUL\":[\"関連付けの解除\"],\"v7vAuj\":[\"ジョブの合計\"],\"vCS_TJ\":[\"インベントリーソース \",[\"name\"],\" を削除できませんでした。\"],\"vEr6TL\":[\"これらの引数は指定されたモジュールで使用されます。\",[\"0\"],\" に関する情報は、クリックすると見つかります: \"],\"vF82C6\":[\"親ノードが正常な状態になったときに実行します。\"],\"vFKI2e\":[\"スケジュールルール\"],\"vFVhzc\":[\"ソーシャル\"],\"vGVmd5\":[\"有効な変数が設定されていない限り、このフィールドは無視されます。有効な変数がこの値と一致すると、インポート時にこのホストが有効になります。\"],\"vGjmyl\":[\"削除済み\"],\"vHAaZi\":[\"すべてをスキップ\"],\"vIb3RK\":[\"新規スケジュールの作成\"],\"vKRQJB\":[\"カスタムの Kubernetes または OpenShift Pod 仕様を渡すためのフィールド。\"],\"vLyv1R\":[\"非表示\"],\"vPrMqH\":[\"リビジョン #\"],\"vQHUI6\":[\"チェックすると、子グループとホストのすべての変数が削除され、外部ソースで見つかったものに置き換えられます。\"],\"vTL8gi\":[\"終了時刻\"],\"vUOn9d\":[\"戻る\"],\"vYFWsi\":[\"チームの選択\"],\"vYuE8q\":[\"ジョブ実行の経過時間\"],\"vZbIkJ\":[\"GitLab\"],\"vcH-SH\":[\"Bitbucketデータセンター\"],\"ve_jRy\":[\"条件時\"],\"vgwVkd\":[\"UTC\"],\"vlHGDw\":[\"追加のコマンドライン変数を playbook に渡します。これは ansible-playbook の -e または --extra-vars コマンドラインパラメーターです。YAML または JSON を使用してキー/値のペアを指定します。構文の例についてはドキュメントを参照してください。\"],\"voRH7M\":[\"例:\"],\"vq1XXv\":[\"フィルターを適用して新しいスマートインベントリーを作成\"],\"vq2WxD\":[\"火\"],\"vq9gg6\":[\"次のワークフロー承認に対応できません: \",[\"itemsUnableToApprove\"]],\"vqAmQC\":[\"モジュール\"],\"vvY8pz\":[\"起動時にスキップタグを要求します。\"],\"vye-ip\":[\"起動時にタイムアウトを要求します。\"],\"vzsN_5\":[[\"interval\"],\" day\"],\"w07pgp\":[\"起動時に詳細レベルを要求します。\"],\"w0kTk8\":[\"失敗したノードから再起動\"],\"w14eW4\":[\"すべてのトークンを表示します。\"],\"w1RiT6\":[[\"0\",\"plural\",{\"one\":[\"このインベントリーソースは現在それに依存する他のリソースによって使用されています。削除してもよろしいですか?\"],\"other\":[\"これらのインベントリーソースを削除すると、それらに依存する他のリソースに影響を与える可能性があります。それでも削除してもよろしいですか?\"]}]],\"w2VTLB\":[\"Less than の比較条件\"],\"w3EE8S\":[\"自動化されたホスト\"],\"w4j7js\":[\"チームの詳細の表示\"],\"w6zx64\":[\"ブラウザのデフォルトを使用\"],\"wCnaTT\":[\"フィールドを新しい値に置き換え\"],\"wF-BAU\":[\"インベントリーの追加\"],\"wFnb77\":[\"インベントリー ID\"],\"wKEfMu\":[\"イベントの処理が完了しました。\"],\"wO29qX\":[\"組織が見つかりません。\"],\"wW08QA\":[\"等しくない\"],\"wX6sAX\":[\"2年\"],\"wXAVe-\":[\"モジュール引数\"],\"wXB7k5\":[\"通知の色を指定します。使用できる色は 16 進数の\\n カラーコードです (例: #3af または #789abc)。\"],\"waFx9W\":[\"管理\"],\"wdxz7K\":[\"ソース\"],\"wgNoIs\":[\"すべて選択\"],\"wkgHlv\":[\"新規ノードの追加\"],\"wlQNTg\":[\"メンバー\"],\"wnizTi\":[\"サブスクリプションの選択\"],\"wpT1VN\":[\"条件\"],\"wpt6vB\":[\"LDAP2\"],\"wqXiR2\":[\"追加のコマンドライン変更を渡します。2 つの ansible コマンドラインパラメーターがあります: \"],\"wsggVq\":[\"チェックされていない場合、外部ソースに見つからないローカルの子ホストとグループは、インベントリの更新プロセスで変更されません。\"],\"x-a4Mr\":[\"Webhook の認証情報\"],\"x02hbg\":[\"プロビジョニングコールバック: プロビジョニングコールバック URL の作成を有効にします。この URL を使用して、ホストは Ansible AWX に接続し、このジョブテンプレートを使用して設定の更新を要求できます。\"],\"x4Xp3c\":[\"更新\"],\"x5DnMs\":[\"最終変更日時\"],\"x6_dAC\":[\"フェデレーションインベントリー\"],\"x6oT_o\":[\"利用可能なホスト\"],\"x7PDL5\":[\"ロギング\"],\"x8uKc7\":[\"インスタンスの状態\"],\"x9WS62\":[[\"0\"],\" の取り消し\"],\"xAYSEs\":[\"開始時刻\"],\"xAqth4\":[\"Google OAuth 2.0 設定の表示\"],\"xC9EVu\":[\"キャンセルされたノード\"],\"xCJdfg\":[\"消去\"],\"xDr_ct\":[\"終了\"],\"xESTou\":[\"ジョブの削除に失敗しました。\"],\"xF5tnT\":[\"Vault パスワード\"],\"xGQZwx\":[\"コンテナーグループの追加\"],\"xGVfLh\":[\"続行\"],\"xHZS6u\":[\"成功ジョブ\"],\"xHokxV\":[[\"0\",\"plural\",{\"one\":[\"The selected job cannot be deleted due to insufficient permission or a running job status\"],\"other\":[\"The selected jobs cannot be deleted due to insufficient permissions or a running job status\"]}]],\"xHt036\":[\"パーソナルアクセストークン\"],\"xKQRBr\":[\"最大長\"],\"xM01Pk\":[\"デフォルトの応答\"],\"xONDaO\":[\"Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?\"],\"xOl1yT\":[\"名前フィールドを正確に検索します。\"],\"xPO5w7\":[\"GitHub でサインイン\"],\"xPpkbX\":[\"Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway\"],\"xPxMOJ\":[\"無効な時間形式です\"],\"xQioPk\":[\"複数の親がある場合にこのノードを実行するための前提条件。参照:\"],\"xSytdh\":[\"終了日時:\"],\"xUhTCP\":[\"ソースの選択\"],\"xVhQZV\":[\"金\"],\"xY9DEq\":[\"インベントリー内のホストをターゲットにするために使用されるパターン。フィールドを空白のままにすると、all、および * はすべて、インベントリー内のすべてのホストを対象とします。Ansible のホストパターンに関する詳細情報を確認できます。\"],\"xY9s5E\":[\"タイムアウト\"],\"x_Ej3K\":[\"ユーザーへのプロンプトとして使用する回答タイプまたは形式を選択してください。\\n 各オプションの詳細については、Ascender のドキュメントを参照してください。\"],\"x_ugm_\":[\"グループ合計\"],\"xa7N9Z\":[\"ログインリダイレクトのオーバーライド URL\"],\"xcaG5l\":[\"ワークフローの編集\"],\"xd2LI3\":[\"有効期限: \",[\"0\"]],\"xdA_-p\":[\"ツール\"],\"xe5RvT\":[\"YAMLタブ\"],\"xefC7k\":[\"IRC サーバーポート\"],\"xeiujy\":[\"テキスト\"],\"xg771-\":[\"LDAP1\"],\"xhj1Rt\":[\"要求したページが見つかりませんでした。\"],\"xi4nE2\":[\"エラーメッセージ\"],\"xnSIXG\":[\"1 つ以上のホストを削除できませんでした。\"],\"xoCdYY\":[\"特定フィールドの値が提供されたリストに存在するかどうかをチェック (項目のコンマ区切りのリストを想定)。\"],\"xoXoBo\":[\"エラーの削除\"],\"xrG8k4\":[\"Google Compute Engine\"],\"xtRU96\":[\"GitHub Enterprise 組織\"],\"xuYTJb\":[\"ジョブテンプレートを削除できませんでした。\"],\"xw06rt\":[\"設定は工場出荷時のデフォルトと一致します。\"],\"xxTtJH\":[\"一致するホスト名のみがインポートされる正規表現。このフィルターは、インベントリープラグインフィルターが適用された後、後処理ステップとして適用されます。\"],\"y11WBZ\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"選択したジョブをキャンセル\"],\"other\":[\"選択したジョブをキャンセル\"]}]],\"y8ibKI\":[\"インスタンスの削除\"],\"yCCaoF\":[\"インスタンスの更新に失敗しました。\"],\"yDeNnS\":[\"新しい構築されたインベントリを作成する\"],\"yDifzB\":[\"選択の確認\"],\"yGS9cI\":[\"利用可能\"],\"yGUKlf\":[\"管理ジョブ\"],\"yGfW7Y\":[\"この場所を変更するには、\",[\"brandName\"],\" のデプロイ時に PROJECTS_ROOT を変更します。\"],\"yMIahh\":[\"Red Hat Ansible Automation Platform へようこそ!\\n サブスクリプションをアクティブ化するには、以下の手順を完了してください。\"],\"yMYuDg\":[\"自動化コントローラーバージョン\"],\"yMfU4O\":[\"送信者のメール\"],\"yNcGa2\":[\"アクセストークンの有効期限\"],\"yOXgbH\":[\"注記: GitHub または Bitbucket に SSH プロトコルを使用する場合は、SSH キーのみを入力し、(git 以外の) ユーザー名は入力しないでください。また、GitHub と Bitbucket は SSH 使用時のパスワード認証をサポートしていません。読み取り専用の GIT プロトコル (git://) は、ユーザー名やパスワードの情報を使用しません。\"],\"yQE2r9\":[\"ロード中\"],\"yRiHPB\":[\"ジョブを実行してこのリストに入力してください。\"],\"yRkqG9\":[\"制限\"],\"yRsSBw\":[\"承認\"],\"yUlffE\":[\"再起動\"],\"yVgnJA\":[\"この組織で管理できるホストの最大数。\\n 値のデフォルトは 0 で、制限なしを意味します。詳細については Ansible の\\n ドキュメントを参照してください。\"],\"yX3qAQ\":[\"ワークフロージョブテンプレートノード\"],\"yaG1CX\":[\"LDAP\"],\"yaX9sM\":[\"ワークフローテンプレート\"],\"yb_fjw\":[\"承認\"],\"ydoZpB\":[\"チームが見つかりません。\"],\"ydw9CW\":[\"失敗したホスト\"],\"yfG3F2\":[\"ダイレクトキー\"],\"yjwMJ8\":[\"ホストが自動化された回数\"],\"yjyGja\":[\"入力の展開\"],\"ylXj1N\":[\"選択済み\"],\"yq6OqI\":[\"この時だけ唯一、トークンの値と、関連する更新トークンの値が表示されます。\"],\"yqiwAW\":[\"ワークフローの取り消し\"],\"yrUyDQ\":[\"このインスタンスの現在のライフサイクルステージを設定します。デフォルトは \\\"installed\\\" です。\"],\"yrwl2P\":[\"有効\"],\"yuXsFE\":[\"1 つ以上のワークフロー承認を削除できませんでした。\"],\"yuvDX_\":[[\"intervalValue\",\"plural\",{\"one\":[\"month\"],\"other\":[\"months\"]}]],\"ywSBEn\":[\"関連付けのロールエラー\"],\"yxDqcD\":[\"認証コードの有効期限\"],\"yy1cWw\":[\"メッセージのカスタマイズ…\"],\"yz7wBu\":[\"閉じる\"],\"yzQhLU\":[\"ポリシーインスタンスの最小値\"],\"yzdDia\":[\"Survey の削除\"],\"z-BNGk\":[\"ユーザートークンの削除\"],\"z0DcIS\":[\"暗号化\"],\"z3XA1I\":[\"ホストの再試行\"],\"z409y8\":[\"Webhook サービス\"],\"z7NLxJ\":[\"この特定のユーザーのアクセスのみを削除する場合は、チームから削除してください。\"],\"z8mwbl\":[\"新しいインスタンスがオンラインになると、このグループに自動的に割り当てられるすべてのインスタンスの最小パーセンテージ。\"],\"zBO1TV\":[[\"numOccurrences\",\"plural\",{\"one\":[\"#\",\" 回の発生後\"],\"other\":[\"#\",\" 回の発生後\"]}]],\"zHcXAG\":[\"実行環境をシステム全体で利用できるようにするには、このフィールドを空白のままにします。\"],\"zICM7E\":[\"同期する前にローカル変更を破棄する\"],\"zJY4Uj\":[\"Playbook\"],\"zKJMiH\":[\"Playbook ディレクトリー\"],\"zK_63z\":[\"無効なユーザー名またはパスワードです。やり直してください。\"],\"zLsDix\":[\"LDAP ユーザー\"],\"zMKkOk\":[\"組織に戻る\"],\"zN0nhk\":[\"Red Hat または Red Hat Satellite の認証情報を提供して、自動化アナリティクスを有効にします。\"],\"zQRgi-\":[\"通知開始の切り替え\"],\"zTediT\":[\"このフィールドは数値で、\",[\"min\"],\" から \",[\"max\"],\" までの値である必要があります\"],\"zUIPys\":[\"Jinja 2の条件に基づいてホストをグループに追加します。\"],\"z_PZxu\":[\"ワークフロー承認を削除できませんでした。\"],\"zbLCH1\":[\"インベントリーのタイプ\"],\"zcQj5X\":[\"先にキーを選択\"],\"zdl7YZ\":[\"ソースパスの選択\"],\"zeEQd_\":[\"6 月\"],\"zf7FzC\":[\"Kubernetes または OpenShift との認証に使用する認証情報。\\\"Kubernetes/OpenShift API ベアラートークン” のタイプでなければなりません。空白のままにすると、基になる Pod のサービスアカウントが使用されます。\"],\"zfZydd\":[\"Survey プレビューモーダル\"],\"zfsBaJ\":[\"自動化アナリティクスについて\"],\"zgInnV\":[\"ワークフローノード表示モーダル\"],\"zga9sT\":[\"OK\"],\"zhPLvU\":[\"関連付けに失敗しました。\"],\"zhrjek\":[\"グループ\"],\"zi_YNm\":[[\"0\"],\" を取り消すことができませんでした。\"],\"zmu4-P\":[\"アカウント SID\"],\"znG7ed\":[\"Playbook の選択\"],\"znTz5r\":[\"スケジュールが見つかりません。\"],\"znuW_M\":[\"はいの場合、無効なエントリーを致命的なエラーにします。それ以外の場合はスキップして\\n 続行します。\"],\"zq0gmb\":[\"期間の選択\"],\"ztOzCj\":[\"起動時の更新\"],\"ztw2L3\":[\"少なくとも 1 つの入力に値が必要です\"],\"zvfXp0\":[\"通知承認の切り替え\"],\"zx4BuL\":[\"週\"],\"zzDlyQ\":[\"成功\"],\"{count, plural, one {# fork} other {# forks}}\":[[\"count\",\"plural\",{\"one\":[\"#\",\" fork\"],\"other\":[\"#\",\" forks\"]}]]}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"--iDlT\":[\"プロジェクトの削除\"],\"-0AkQd\":[[\"forks\",\"plural\",{\"one\":[\"#\",\" フォーク\"],\"other\":[\"#\",\" フォーク\"]}]],\"-0B-ue\":[\"プロジェクト\"],\"-5kO8P\":[\"土曜\"],\"-6EcFR\":[\"Enter キーを押して編集します。編集を終了するには、ESC キーを押します。\"],\"-7M7WW\":[\"クリックしてデフォルト値を切り替えます\"],\"-7VWRl\":[\"メモリー \",[\"0\"]],\"-8WGoO\":[\"プラグインパラメータが必要です。\"],\"-9d7Ol\":[\"Pagerduty サブドメイン\"],\"-9y9jy\":[\"実行中の可用性チェック\"],\"-9yY_Q\":[\"インベントリーをコピーできませんでした。\"],\"-AZQnp\":[\"SAML\"],\"-FWz2-\":[\"前にスクロール\"],\"-FjWgX\":[\"木\"],\"-GMFSa\":[\"プロジェクトをコピーできませんでした。\"],\"-GOG9X\":[\"説明の非表示\"],\"-NI2UI\":[\"このジョブテンプレートで行われる作業を指定された数のジョブスライスに分割します。各スライスはインベントリーの一部に対して同じタスクを実行します。\"],\"-NezOR\":[\"この認証タイプは、現在一部の認証情報で使用されているため、削除できません\"],\"-OpL2l\":[\"親ノードの最終状態に関係なく実行します。\"],\"-PyL32\":[\"このノードを削除してもよろしいですか?\"],\"-RAMET\":[\"このリンクの編集\"],\"-SAqJ3\":[\"認証情報をコピーできませんでした。\"],\"-Uepfb\":[\"コントロール\"],\"-b3ghh\":[\"権限昇格\"],\"-cWxFz\":[\"コンテンツの署名を有効にして、プロジェクトの同期時にコンテンツが安全に保たれていることを確認します。コンテンツが改ざんされている場合、ジョブは実行されません。\"],\"-hh3vo\":[\"最後のジョブ更新を読み込めません\"],\"-li8PK\":[\"サブスクリプションの使用状況\"],\"-nb9qF\":[\"(起動プロンプト)\"],\"-ohrPc\":[\"ルックアップの先行入力\"],\"-rfqXD\":[\"Survey の有効化\"],\"-uOi7U\":[\"クリックしてバンドルをダウンロードします。\"],\"-vAlj5\":[\"ジョブを起動できませんでした。\"],\"-z0Ubz\":[\"適用するロールの選択\"],\"-zW4qj\":[\"チェックアウトするブランチ。ブランチに加えて、タグ、コミットハッシュ、任意の参照を入力できます。カスタム refspec を指定しない限り、一部のコミットハッシュや参照は利用できない場合があります。\"],\"-zy2Nq\":[\"タイプ\"],\"0-31GV\":[\"削除\"],\"0-yjzX\":[\"リビジョンが利用可能になる前に、プロジェクトを同期する必要があります。\"],\"00_HDq\":[\"ポリシータイプ\"],\"00cteM\":[\"このフィールドは \",[\"0\"],\" 文字を超えてはなりません\"],\"01Zgfk\":[\"タイムアウト\"],\"02FGuS\":[\"新規グループの作成\"],\"02ePaq\":[[\"0\"],\" の選択\"],\"02o5A-\":[\"新規プロジェクトの作成\"],\"05TJDT\":[\"クリックしてジョブの詳細を表示\"],\"06Veq8\":[\"プロジェクトの同期\"],\"08IuMU\":[\"変数の上書き\"],\"08dX0o\":[\"Grafana\"],\"0Ca6Bi\":[[\"dateStr\"],\" (<0>\",[\"username\"],\" による)\"],\"0DRyjU\":[\"実行中のハンドラー\"],\"0JjrTf\":[\"ファイルの解析中にエラーが発生しました。ファイルのフォーマットを確認して、再試行してください。\"],\"0K8MzY\":[\"このフィールドは \",[\"max\"],\" 文字を超えてはなりません\"],\"0LUj25\":[\"インスタンスグループの削除\"],\"0MFMD5\":[\"1 つ以上のインスタンスで可用性をチェックできませんでした。\"],\"0Ohn6b\":[\"起動者\"],\"0PUWHV\":[\"繰り返しの頻度\"],\"0Pz6gk\":[\"構築されたインベントリプラグインを構成するために使用される変数。このプラグインの設定方法の詳細については、\"],\"0QsHpG\":[\"該当タイプの順序付けられたフィールドのセットを定義する入力スキーマ。\"],\"0Tddvz\":[\"Grafana サーバーのベース URL - /api/annotations\\n エンドポイントはベース Grafana URL に自動的に\\n 追加されます。\"],\"0WL4_U\":[\"すべてのノードの削除\"],\"0WP27-\":[\"ジョブの出力を待機中…\"],\"0YAsXQ\":[\"コンテナーグループ\"],\"0ZdD1M\":[[\"0\",\"plural\",{\"one\":[\"You cannot cancel the following job because it is not running:\"],\"other\":[\"You cannot cancel the following jobs because they are not running:\"]}]],\"0ZqUtV\":[\"詳細については、以下を参照してください\"],\"0_ru-E\":[\"インベントリーのコピー\"],\"0cqIWs\":[\"Basic 認証パスワード\"],\"0d48JM\":[\"多項選択法 (複数の選択可)\"],\"0eOoxo\":[\"開始日時より後の終了日時を選択してください。\"],\"0f7U0k\":[\"水\"],\"0gPQCa\":[\"常時\"],\"0lvFRT\":[\"資格情報を使用するリソースの機能が損なわれる可能性があるため、資格情報の種類を変更することはできません。\"],\"0pC_y6\":[\"イベント\"],\"0qOaMt\":[\"この認証情報とメタデータをテストするリクエストで問題が発生しました。\"],\"0rVzXl\":[\"Google OAuth2 の設定\"],\"0sNe72\":[\"ロールの追加\"],\"0tNXE8\":[\"PUT\"],\"0tfvhT\":[\"インスタンスグループの使用容量\"],\"0wlLcO\":[\"データの保持日数を設定します。\"],\"0zpgxV\":[\"オプション\"],\"0zs8j5\":[\"このノードのジョブが失敗パスをたどる前に、失敗後に自動的に再試行される最大回数。キャンセルされたジョブは再試行されません。\"],\"1-4GhF\":[\"同期の取り消し\"],\"10B0do\":[\"テスト通知の送信に失敗しました。\"],\"1280Tg\":[\"ホスト名\"],\"12j25_\":[\"GPG 公開鍵\"],\"12kemj\":[\"ソースコントロールの URL\"],\"14KOyT\":[\"ソースVARS\"],\"15GcuU\":[\"その他の認証設定の表示\"],\"17TKua\":[\"インスタンスグループ\"],\"19zgn6\":[\"インスタンスタイプ\"],\"1A3EXy\":[\"展開\"],\"1C5cFl\":[\"次回実行日時\"],\"1Ey8My\":[\"IP アドレス\"],\"1F0IaT\":[\"スケジュールの表示\"],\"1HMy92\":[\"JSON:\"],\"1I6UoR\":[\"ビュー\"],\"1L3KBl\":[\"新規認証情報タイプの作成\"],\"1LRwvx\":[\"インベントリーソースを起動時に更新する場合は、「起動時に更新」をクリックし、次の場所にも移動します: \"],\"1Ltnvs\":[\"ノードの追加\"],\"1PQRWr\":[\"開始時刻\"],\"1QRNEs\":[\"繰り返しの頻度\"],\"1RYzKu\":[\"キャンセルされたノードから再起動\"],\"1UJu6o\":[\"1 から 31 までの日付を選択してください。\"],\"1UjRxI\":[\"キャッシュタイムアウト\"],\"1UzENP\":[\"不可\"],\"1V4Yvg\":[\"その他のシステム\"],\"1WlWk7\":[\"インベントリーホストの詳細の表示\"],\"1WsB5U\":[\"このアカウントに関連するサブスクリプションを見つけることができませんでした。\"],\"1ZaQUH\":[\"姓\"],\"1_gTC7\":[\"同じ Vault ID を持つ複数の Vault 認証情報を選択することはできません。これを行うと、同じ Vault ID を持つもう一方の選択が自動的に解除されます。\"],\"1abtmx\":[\"子グループおよびホストのプロモート\"],\"1ahgeV\":[\"Google OAuth2\"],\"1cT4RU\":[\"SCM 更新\"],\"1fO-kL\":[\"インスタンスの切り替えに失敗しました。\"],\"1hCxP5\":[\"1 つ以上のインスタンスグループを削除できませんでした。\"],\"1kwHxg\":[\"統計\"],\"1n50PN\":[\"JSON タブ\"],\"1qd4yi\":[\"変数は JSON または YAML 構文にする必要があります。ラジオボタンを使用してこの構文を切り替えます。\"],\"1rDBnp\":[\"ファイルの相違点\"],\"1w2SCz\":[\"ソースコントロールタイプの選択\"],\"1xdJD7\":[\"画面に合わせる\"],\"1yHVE-\":[\"追加\"],\"2-iKER\":[\"アクティビティーストリームの表示\"],\"2B_v7Y\":[\"ポリシーインスタンスの割合\"],\"2CTKOa\":[\"プロジェクトに戻る\"],\"2FB7vv\":[\"デフォルトの実行環境を編集する前に、組織を選択してください。\"],\"2FeJcd\":[\"項目のスキップ\"],\"2H9REH\":[\"名前フィールドのあいまい検索。\"],\"2JV4mx\":[\"このインスタンスが属するインスタンスグループ。\"],\"2KlsJC\":[\"メッセージには複数の変数を適用できます。\\n 詳細については、以下を参照してください。\"],\"2MSEkM\":[\"インベントリーを削除できませんでした。\"],\"2a07Yj\":[\"通知テンプレートのコピー\"],\"2ekvhy\":[\"例外頻度\"],\"2gDkH_\":[\"出現回数を入力してください。\"],\"2iyx-2\":[\"Ansible コントローラーのドキュメント。\"],\"2n41Wr\":[\"ワークフローテンプレートの追加\"],\"2nsB1O\":[\"トークンに戻る\"],\"2ocqzE\":[\"Webhook: このテンプレートの webhook を有効にします。\"],\"2ooR7j\":[\"LDAP 5\"],\"2p6eVk\":[\"ルックアップモーダル\"],\"2pNIxF\":[\"ワークフローノード\"],\"2pgi-L\":[\"ホストが利用可能で、実行中のジョブに含める必要があるかどうかを\\n 示します。外部インベントリーの一部であるホストの場合、これは\\n インベントリー同期プロセスによってリセットされることがあります。\"],\"2qfwJn\":[\"上書き\"],\"2r06bV\":[\"Hipchat\"],\"2rvMKg\":[\"トークンの更新\"],\"2w-INk\":[\"ホストの詳細\"],\"2zs1kI\":[\"この値は、以前に入力されたパスワードと一致しません。パスワードを確認してください。\"],\"3-SkJA\":[\"グループのホストとの関連付けを解除しますか?\"],\"3-sY1p\":[\"送信先 SMS 番号\"],\"328Yxp\":[\"ソースコントロールのブランチ\"],\"38Or-7\":[\"タブ\"],\"38VIWI\":[\"テンプレートの詳細の表示\"],\"39y5bn\":[\"金曜\"],\"3A9ATS\":[\"実行環境が見つかりません。\"],\"3AOZPn\":[\"デバッグオプションの表示と編集\"],\"3FUtN9\":[\"インベントリーソース同期\"],\"3IVQDN\":[\"このスケジュールは UI でサポートされていない複雑なルールを\\n 使用しています。このスケジュールを管理するには API を使用してください。\"],\"3JjdaA\":[\"実行\"],\"3JnvxN\":[\"新しいロールを受け取るリソースを選択します。次のステップで適用するロールを選択できます。ここで選択したリソースは、次のステップで選択したすべてのロールを受け取ることに注意してください。\"],\"3JzsDb\":[\"5 月\"],\"3LoUor\":[\"送信先チャネル\"],\"3LqMX2\":[\"CIQ Ascender Automation Platform\"],\"3PAU4M\":[\"年\"],\"3PZalO\":[\"ホストが見つかりませんでした。\"],\"3Rke7L\":[\"1 (情報)\"],\"3WGwSW\":[\"更新を実行する前に、ローカルリポジトリーを完全に削除します。リポジトリーのサイズによっては、更新の完了に必要な時間が大幅に増加する場合があります。\"],\"3YSVMq\":[\"削除エラー\"],\"3aIe4Y\":[\"新規組織の作成\"],\"3b24mY\":[\"CPU \",[\"0\"]],\"3fG1e7\":[\"経過時間\"],\"3fMc43\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 年\"],\"other\":[\"#\",\" 年\"]}]],\"3hCQhK\":[\"インベントリプラグイン\"],\"3hvUyZ\":[\"新しい選択\"],\"3mTiHp\":[\"テンプレートをコピーできませんでした。\"],\"3pBNb0\":[\"出力のリロード\"],\"3sFvGC\":[\"インスタンスを有効または無効に設定します。無効にした場合には、ジョブはこのインスタンスに割り当てられません。\"],\"3sXZ-V\":[\"[起動時にリビジョンを更新]をクリックします。\"],\"3uAM50\":[\"使用許諾契約書\"],\"3wPA9L\":[\"カテゴリーの設定\"],\"3y7qi5\":[\"認証情報に戻る\"],\"3yy_k-\":[\"すべてのチームを表示します。\"],\"4-RjdJ\":[[\"interval\"],\" year\"],\"40lLFI\":[\"次のページに移動\"],\"41KRqu\":[\"認証情報のパスワード\"],\"45BzQy\":[\"ヘルスチェックは非同期タスクです。\"],\"45cx0B\":[\"サブスクリプションの編集の取り消し\"],\"45gLaI\":[\"起動時に認証情報を要求します。\"],\"46SUtl\":[\"グループの編集\"],\"479kuh\":[\"完全なリビジョンをクリップボードにコピーします。\"],\"47e97a\":[\"最大再試行回数\"],\"4BITzH\":[\"エラー:\"],\"4LzLLz\":[\"すべての設定の表示\"],\"4Q4HZp\":[[\"pluralizedItemName\"],\" は見つかりません\"],\"4QXpWJ\":[\"タイムアウト\"],\"4QfhOe\":[\"not__、__search などの一部の検索修飾子は、Smart Inventory ホストフィルターではサポートされていません。これらを削除し、このフィルターを使用して新しい Smart Inventory を作成します。\"],\"4S2cNE\":[\"ロギング設定の表示\"],\"4Wt2Ty\":[\"リストからアイテムの選択\"],\"4_ESDh\":[\"このフィールドは正規表現でなければなりません\"],\"4_xiC_\":[\"アーティファクト\"],\"4alXD6\":[\"このグループで同時に実行するジョブの最大数。\\n ゼロは制限が適用されないことを意味します。\"],\"4bhLaA\":[\"認証情報タイプの選択\"],\"4cWhxn\":[\"このインスタンスがポリシーによって管理されるかどうかを制御します。有効にすると、ポリシールールに基づいてインスタンスグループへの自動割り当てとインスタンスグループからの割り当て解除が可能になります。\"],\"4dQFvz\":[\"終了日時\"],\"4g1rw0\":[\"メール通知がホストへの到達を試みるのを停止して\\n タイムアウトするまでの時間 (秒単位)。範囲は\\n 1 秒から 120 秒です。\"],\"4hPyPF\":[\"保存して終了\"],\"4j2eOR\":[\"このホストが属するインベントリーを選択します。\"],\"4jnim6\":[\"webhook サービスを選択します。\"],\"4km-Vu\":[\"コンプライアンス違反\"],\"4kw_um\":[[\"interval\"],\" minute\"],\"4lCMxZ\":[\"失敗の説明:\"],\"4lgLew\":[\"2 月\"],\"4mQyZf\":[\"webhook サービスはこれを共有シークレットとして使用できます。\"],\"4nLbTY\":[\"すべての管理ジョブの表示\"],\"4o_cFL\":[\"アプリケーションの削除\"],\"4s0pSB\":[\"playbook によって管理または影響を受けるホストのリストをさらに制限するホストパターンを指定します。複数のパターンを使用できます。パターンに関する詳細および例については、Ansible のドキュメントを参照してください。\"],\"4uVADI\":[\"クライアントシークレット\"],\"4vFDZV\":[\"新規ジョブテンプレートの作成\"],\"4vkbaA\":[\"このインベントリー更新のソースとなるプロジェクトです。\"],\"4yGeRr\":[\"インベントリー同期\"],\"4zue79\":[\"著作権\"],\"5-qYGv\":[\"インスタンスの編集\"],\"54_SyV\":[[\"0\",\"plural\",{\"one\":[\"You do not have permission to cancel the following job:\"],\"other\":[\"You do not have permission to cancel the following jobs:\"]}]],\"56fd5u\":[\"このワークフローのすべてのノードを削除してもよろしいですか?\"],\"5B77Dm\":[\"最後のジョブ\"],\"5F5F4w\":[\"ワークフローの承認\"],\"5IhYoj\":[\"ノードタイプ\"],\"5K7kGO\":[\"ドキュメント\"],\"5KMGbn\":[\"このジョブを取り消してよろしいですか?\"],\"5RMgCw\":[\"ホスト\"],\"5S4tZv\":[\"頻度が期待値と一致しませんでした\"],\"5Sa1Ss\":[\"メール\"],\"5TnQp6\":[\"ジョブタイプ\"],\"5WFDw4\":[\"グループ化のみ\"],\"5X2wog\":[\"ログインに問題がありました。もう一度やり直してください。\"],\"5_vHPm\":[\"TACACS+ 設定の表示\"],\"5ajaW1\":[\"親ノードのアーティファクトが条件に一致した場合に実行します。\"],\"5dJK4M\":[\"ロール\"],\"5eHyY-\":[\"テスト通知\"],\"5eL2KN\":[\"ターゲット URL\"],\"5lqXf5\":[\"工場出荷時のデフォルトに戻します。\"],\"5n_soj\":[\"起動時にジョブスライス数を要求します。\"],\"5p6-Mk\":[\"失敗したジョブによるフィルター\"],\"5pDe2G\":[\"Remove \",[\"0\"],\" Access\"],\"5pa4JT\":[\"Playbook の開始\"],\"5qauVA\":[\"このワークフロージョブテンプレートは、現在他のリソースによって使用されています。削除してもよろしいですか?\"],\"5vA8H0\":[\"一致するホストがありません\"],\"5xzS8Q\":[\"これが「constructed」プラグインの\\n ソースファイルであることを保証するトークン。\"],\"5y9wkB\":[\"通知に戻る\"],\"6-OdGi\":[\"プロトコル\"],\"6-ptnU\":[\"以下へのオプション:\"],\"623gDt\":[\"ユーザーを削除できませんでした。\"],\"63C4Yo\":[\"コンテナーグループ\"],\"66Zq7T\":[\"リンクの変更の保存\"],\"66qTfS\":[\"過去 1 週間\"],\"679-JR\":[\"ID、名前、または説明フィールドのあいまい検索。\"],\"68OTAn\":[\"This intance is currently being used by other resources. Are you sure you want to delete it?\"],\"68h6WG\":[\"管理ジョブの起動\"],\"69aXwM\":[\"既存グループの追加\"],\"69zuwn\":[\"Deprovisioning these instances could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"6ASSBg\":[\"LDAP 4\"],\"6BzDub\":[\"ソフト削除\"],\"6GBt0m\":[\"メタデータ\"],\"6HLTEb\":[\"フィルター...\"],\"6J-cs1\":[\"タイムアウトの秒数\"],\"6KhU4s\":[\"変更を保存せずにワークフロークリエーターを終了してもよろしいですか?\"],\"6LTyxl\":[\"リビジョン\"],\"6PmtyP\":[\"凡例の表示/非表示\"],\"6RDwJM\":[\"トークン\"],\"6UYTy8\":[\"分\"],\"6V3Ea3\":[\"コピーしました\"],\"6WwHL3\":[\"ノードの合計\"],\"6XOI1I\":[\"新規フェデレーションインベントリーの作成\"],\"6XgEPi\":[\"時間\"],\"6YtxFj\":[\"名前\"],\"6Z5ACo\":[\"ホスト設定キー\"],\"6bpC9t\":[\"失敗したノード\"],\"6cylr_\":[\"Stdout\"],\"6f961q\":[\"見つからない場合のみ\"],\"6hEnxG\":[\"権限昇格の有効化\"],\"6j6_0F\":[\"関連リソース\"],\"6kpN96\":[\"通知を削除できませんでした。\"],\"6lGV3K\":[\"簡易表示\"],\"6msU0q\":[\"1 つ以上のジョブを削除できませんでした。\"],\"6nsio_\":[\"コマンドの実行\"],\"6oNH0E\":[\"プラグイン設定ガイドを参照してください。\"],\"6pMgh_\":[\"LDAP 設定の表示\"],\"6rSKy6\":[\"このフェデレーションインベントリーのソースインベントリーを選択します。ジョブが起動されると、ホストは各ソースインベントリーのインスタンスグループに自動的にルーティングされます。\"],\"6uvnKV\":[\"API サービス/統合キー\"],\"6vrz8I\":[\"1 つ以上のジョブを取り消すことができませんでした。\"],\"6zGHNM\":[\"残りのホスト\"],\"74MNbw\":[\"Ctrl IQ, Inc.\"],\"764xeZ\":[\"調査の更新に失敗しました。\"],\"7Bj3x9\":[\"失敗\"],\"7ElOdS\":[\"ダッシュボード ID\"],\"7IUE9q\":[\"ソース変数\"],\"7JF9w9\":[\"質問の追加\"],\"7L01XJ\":[\"アクション\"],\"7O5TcN\":[\"イベントの概要はありません\"],\"7PzzBU\":[\"User\"],\"7UZtKb\":[\"このワークフロージョブテンプレートを所有する組織。\"],\"7VETeB\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"],\"7VpPHA\":[\"確認\"],\"7Xk3M1\":[\"このジョブに実行させたい playbook が含まれるプロジェクトを選択します。\"],\"7ZhNzL\":[\"最初のページに移動\"],\"7b8TOD\":[\"詳細。\"],\"7bDeKc\":[\"サブスクリプションマニュフェスト\"],\"7fJwmW\":[\"選択された項目のリスト。\"],\"7hS02I\":[[\"automatedInstancesSinceDateTime\"],\" 以来 \",[\"automatedInstancesCount\"]],\"7icMBj\":[\"利用可能なジョブデータがありません\"],\"7kb4LU\":[\"承認済\"],\"7p5kLi\":[\"ダッシュボード\"],\"7q256R\":[\"ブランチの上書き許可\"],\"7qFdk8\":[\"認証情報の編集\"],\"7sMeHQ\":[\"キー\"],\"7sNhEz\":[\"ユーザー名\"],\"7w3QvK\":[\"成功メッセージボディー\"],\"7wgt9A\":[\"Playbook 実行\"],\"7zmvk2\":[\"項目の失敗\"],\"81eOdm\":[\"ワークフローの再起動\"],\"82O8kJ\":[\"このプロジェクトは現在同期中であり、同期プロセスが完了するまでクリックできません\"],\"82sWFi\":[\"管理\"],\"84Usx_\":[\"プロジェクトの削除に失敗しました。\"],\"87a_t_\":[\"ラベル\"],\"88ip8h\":[\"すべて元に戻す\"],\"8BkLPF\":[\"許可される URI のリスト (スペース区切り)\"],\"8F8HYs\":[\"使用する Ansible Automation Platform サブスクリプションを選択します。\"],\"8H3Igx\":[[\"interval\"],\" month\"],\"8Oef5v\":[\"GIT ソースコントロールの URL の例には次が含まれます。\"],\"8XM8GW\":[\"ロールを正しく割り当てられませんでした\"],\"8Z236a\":[\"ブランドロゴ\"],\"8ZsakT\":[\"パスワード\"],\"8_wZUD\":[\"チームロール\"],\"8d57h8\":[\"その他のシステム設定の表示\"],\"8gCRbU\":[\"他のプロンプト\"],\"8gaTqG\":[\"タイプの詳細\"],\"8kDNpI\":[\"条件が評価される前に、親ノードの結果が必要です。\"],\"8l9yyw\":[\"ジョブテンプレート\"],\"8lEjQX\":[\"バンドルのインストール\"],\"8lb4Do\":[\"サブスクリプションの解除\"],\"8oiwP_\":[\"入力の設定\"],\"8p_xVT\":[[\"0\",\"plural\",{\"one\":[[\"1\"]],\"other\":[[\"2\"]]}]],\"8u5g0S\":[\"スマートインベントリーの削除\"],\"8vETh9\":[\"表示\"],\"8wxHsh\":[\"このワークフロージョブテンプレートの Webhook キー。\"],\"8yd882\":[\"1 つ以上のチームの関連付けを解除できませんでした。\"],\"8zGO4o\":[\"特定の正規表現に一致するフィールド。\"],\"8zoIOi\":[[\"0\",\"plural\",{\"one\":[\"This credential type is currently being used by some credentials and cannot be deleted.\"],\"other\":[\"Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?\"]}]],\"8zvzWO\":[\"このワークフロージョブテンプレートの同時実行を許可します。\"],\"9-wVFp\":[\"フェデレーションインベントリーの詳細を表示\"],\"91UHfE\":[\"インベントリー更新\"],\"91lyAf\":[\"同時実行ジョブ\"],\"933cZy\":[\"その他のシステム設定\"],\"954HqS\":[\"ホストが最初に自動化されたのはいつですか?\"],\"95p1BK\":[\"新規ユーザーの作成\"],\"98Qtlu\":[\"このプロジェクトを使用してジョブが実行されるたびに、ジョブを開始する前にプロジェクトのリビジョンを更新します。\"],\"991Df5\":[\"a new webhook key will be generated on save.\"],\"99qC6z\":[[\"interval\"],\" week\"],\"9Ah95g\":[[\"0\",\"plural\",{\"one\":[\"このインベントリーは現在、一部のテンプレートで使用されています。削除してもよろしいですか?\"],\"other\":[\"これらのインベントリーを削除すると、それらに依存する一部のテンプレートに影響する可能性があります。それでも削除してもよろしいですか?\"]}]],\"9BTNYL\":[\"Expected at least one of client_email, project_id or private_key to be present in the file.\"],\"9BpfLa\":[\"ラベルの選択\"],\"9DOXq6\":[\"すべてのテンプレートを表示します。\"],\"9DugxF\":[\"サブスクリプションタイプ\"],\"9HhFQ8\":[\"この値以外の値を持つ結果と、その他のフィルターを満たす結果を返します。\"],\"9L1ngr\":[\"ジョブの合計\"],\"9N-4tQ\":[\"認証情報タイプ\"],\"9NyAH9\":[\"スキップ済\"],\"9PB0sF\":[\"IRC\"],\"9Rsklx\":[\"すべてのノードの削除\"],\"9Tmez1\":[\"インスタンスの詳細の表示\"],\"9UuGMQ\":[\"保留中の削除\"],\"9V-Un3\":[\"ファクトストレージの有効化\"],\"9VMv7k\":[\"建設されたインベントリ\"],\"9Wm-J4\":[\"パスワードの切り替え\"],\"9XA1Rs\":[\"プロジェクトは現在同期中であり、同期が完了するとリビジョンが利用可能になります。\"],\"9Y3BQE\":[\"組織の削除\"],\"9YSB0Z\":[\"このスケジュールにはインベントリーがありません\"],\"9ZnrIx\":[\"サブスクリプション情報の表示および編集\"],\"9fRa7M\":[\"削除する行を選択\"],\"9hmrEp\":[\"再起動時\"],\"9iX1S0\":[\"このアクションにより、次のインスタンスが削除され、以前に接続されていたインスタンスのインストールバンドルを再実行する必要がある場合があります。\"],\"9jfn-S\":[\"展開なし\"],\"9l0RZY\":[\"使用可能なノードをクリックして、新しいリンクを作成します。キャンセルするには、グラフの外側をクリックしてください。\"],\"9m7jms\":[\"このフェデレーションインベントリーに対してジョブが起動されたときに、ホストがそれぞれのインスタンスグループにルーティングされるソースインベントリー。\"],\"9mfJJf\":[\"ジョブテンプレート\"],\"9nhhVW\":[\"ページ\"],\"9nypdt\":[\"初期値を復元します。\"],\"9odS2n\":[\"失敗したホスト\"],\"9og-0c\":[\"この実行環境は、現在他のリソースで使用されています。削除してもよろしいですか?\"],\"9rFgm2\":[\"サブスクリプション容量\"],\"9rvzNA\":[\"関連付けモーダル\"],\"9td1Wl\":[\"チェック\"],\"9uI_rE\":[\"元に戻す\"],\"9u_dDE\":[\"到達不能なホスト数\"],\"9uxVdR\":[\"ソースコントロール認証情報\"],\"9wvWk3\":[\"この構築済みインベントリー入力は \\n 両方のカテゴリーのグループを作成し、\\n 制限 (ホストパターン) を使用して、それら 2 つの\\n グループの共通部分にあるホストのみを返します。\"],\"A1a8Ku\":[\"管理ジョブの起動エラー\"],\"A1taO8\":[\"検索\"],\"A3o0Xd\":[\"この組織を実行するインスタンスグループ。\"],\"A6paZd\":[\"フェデレーションインベントリーの追加\"],\"A8lIi2\":[\"リビジョンの同期\"],\"A9-PUr\":[\"送信されたヘルスチェックリクエスト。ページをリロードしてお待ちください。\"],\"AA2ASV\":[\"実行環境が正常にコピーされました\"],\"ADVQ46\":[\"ログイン\"],\"ARAUFe\":[\"インベントリーの削除\"],\"AV22aU\":[\"問題が発生しました...\"],\"AWOSPo\":[\"ズームイン\"],\"Ab1y_G\":[\"構築された在庫ソースの同期をキャンセル\"],\"AgTBbk\":[[\"intervalValue\",\"plural\",{\"one\":[\"week\"],\"other\":[\"weeks\"]}]],\"AgTuXC\":[[\"pluralizedItemName\"],\" を削除するパーミッションがありません: \",[\"itemsUnableToDelete\"]],\"Ai2U7L\":[\"ホスト\"],\"Aj3on1\":[\"外部ログの有効化\"],\"AoCBvp\":[\"ジョブスライス\"],\"Apl-Vf\":[\"Red Hat サブスクリプションマニュフェスト\"],\"Apv-R1\":[\"アップグレードまたは更新の準備ができましたら、<0>お問い合わせください。\"],\"AqdlyH\":[\"ノードの作成時または編集時に、パスワードの入力を求める認証情報を持つジョブテンプレートを選択できない\"],\"ArtxnQ\":[\"ソースコントロールの Refspec\"],\"AsLVdj\":[\"1 行につき 1 つの IRC チャネルまたはユーザー名を使用します。チャネルの\\n ポンド記号 (#) およびユーザーのアット記号 (@) は\\n 必要ありません。\"],\"AwUsnG\":[\"インスタンス\"],\"AxC8wb\":[\"出力をコピー\"],\"AxPAXW\":[\"結果が見つかりません\"],\"Axi4f8\":[\"Dragging item \",[\"id\"],\". Item with index \",[\"oldIndex\"],\" in now \",[\"newIndex\"],\".\"],\"Azw0EZ\":[\"新規スマートインベントリーの作成\"],\"B0HFJ8\":[\"1 つ以上のホストの関連付けを解除できませんでした。\"],\"B0P3qo\":[\"ジョブ ID:\"],\"B0dbFG\":[\"スケジュールの削除\"],\"B2Zb_F\":[\"JSON\"],\"B3ZzHO\":[\"最後に自動化\"],\"B4WcU9\":[[\"0\"],\" により承認済み - \",[\"1\"]],\"B7FU4J\":[\"ホストの開始\"],\"B8bpYS\":[\"サブスクリプションを含む Red Hat Subscription Manifest をアップロードします。サブスクリプションマニフェストを生成するには、Red Hat カスタマーポータルの <0>サブスクリプション割り当て にアクセスします。\"],\"BAmn8K\":[\"リソースタイプの選択\"],\"BERhj_\":[\"成功メッセージ\"],\"BGNDgh\":[\"ノードのエイリアス\"],\"BH7upP\":[\"POST\"],\"BIJ2_m\":[\"この組織内のジョブに使用される実行環境。プロジェクト、ジョブテンプレート、またはワークフローのレベルで実行環境が明示的に割り当てられていない場合のフォールバックとして使用されます。\"],\"BNDplB\":[\"テンプレートが正常にコピーされました\"],\"BWTzAb\":[\"手動\"],\"BaPk6N\":[\"playbook を見つけるために使用される基本パス。このパス内で見つかったディレクトリーは、playbook ディレクトリーのドロップダウンに一覧表示されます。基本パスと選択した playbook ディレクトリーを合わせて、playbook を見つけるために使用される完全なパスが提供されます。\"],\"BfYq0G\":[\"ソースコントロールのタイプ\"],\"Bg7M6U\":[\"結果が見つかりません\"],\"Bl2Djq\":[\"トークンの表示\"],\"Bl2eoO\":[\"暗号化済み\"],\"BskWMl\":[\"到達不能\"],\"BsrdSv\":[\"JSONまたはYAML構文を使用してインベントリ変数を入力します。ラジオボタンを使用して、2つを切り替えます。構文の例については、Ansible Controllerのドキュメントを参照してください。\"],\"Bv8zdm\":[\"インプットインベントリ\"],\"BwJKBw\":[\"/\"],\"Bz7WRU\":[[\"0\",\"plural\",{\"one\":[\"有効な電話番号を入力してください。\"],\"other\":[\"有効な電話番号を入力してください。\"]}]],\"BzEFor\":[\"または\"],\"BzbzJb\":[\"ファクト\"],\"BzfzPK\":[\"項目\"],\"C-gr_n\":[\"Azure AD の設定\"],\"C0sUgI\":[\"新規インベントリーの作成\"],\"C2KEkR\":[\"SSH パスワード\"],\"C3Q1LZ\":[\"OIDC 設定の表示\"],\"C4C-qQ\":[\"スケジュールの詳細\"],\"C6GAUT\":[\"展開\"],\"C7dP40\":[[\"0\"],\" を拒否できませんでした。\"],\"C7s60U\":[\"Webhook の詳細\"],\"CAL6E9\":[\"チーム\"],\"CDOlBM\":[\"インスタンス ID\"],\"CE-M2e\":[\"情報\"],\"CGOseh\":[\"スケジュールの詳細\"],\"CGZgZY\":[\"関連付けを解除する行を選択してください\"],\"CG_9l6\":[\"LDAP 1\"],\"CGwKKr\":[[\"0\",\"plural\",{\"one\":[\"グループを削除しますか?\"],\"other\":[\"グループを削除しますか?\"]}]],\"CIEoqM\":[\"インスタンス名\"],\"CKc7jz\":[\"ホストの詳細モーダル\"],\"CL7QiF\":[\"回答を入力し、右側のチェックボックスをクリックして、回答をデフォルトとして選択します。\"],\"CLTHnk\":[\"Survey 質問の順序\"],\"CMmwQ-\":[\"不明な開始日\"],\"CNZ5h9\":[\"データ保持期間\"],\"CS8u6E\":[\"Webhook の有効化\"],\"CSvk3a\":[\"Twilio の「Messaging\\n Service」に関連付けられた番号 (形式は +18005550199)。\"],\"CW11B-\":[\"最小\"],\"CXJHPJ\":[\"変更者 (ユーザー名)\"],\"CZDqWd\":[\"プロジェクトのリビジョンが現在古くなっています。更新して最新のリビジョンを取得してください。\"],\"CZg9aH\":[\"ホストの選択\"],\"C_Lu89\":[\"JSON または YAML 構文のいずれかを使用してインジェクターを入力します。構文のサンプルについては Ansible Controller ドキュメントを参照してください。\"],\"C_NnqT\":[\"新規ホストの作成\"],\"Cc8jO8\":[\"そのコマンドを実行するためにリモートホストへのアクセス時に使用する認証情報を選択します。Ansible がリモートホストにログインするために必要なユーザー名および SSH キーまたはパスワードが含まれる認証情報を選択してください。\"],\"CcKMRv\":[\"このジョブテンプレートは、現在他のリソースで使用されています。削除してもよろしいですか?\"],\"CczdmZ\":[\"すべての認証情報を表示します。\"],\"CdGRti\":[\"すべての通知テンプレートを表示します。\"],\"Ce28nP\":[\"< 0 >注:インスタンスは、< 1 >ポリシールールによって管理されている場合、このインスタンスグループに再関連付けることができます。\"],\"Cev3QF\":[\"タイムアウト (分)\"],\"ChTa9Z\":[[\"intervalValue\",\"plural\",{\"one\":[\"hour\"],\"other\":[\"hours\"]}]],\"CoPs3y\":[\"このワークフローには、ノードが構成されていません。\"],\"CoTqdo\":[\"\\n Note that you may still see the group in the list after\\n disassociating if the host is also a member of that group’s\\n children. This list shows all groups the host is associated\\n with directly and indirectly.\\n \"],\"Coyxic\":[\"このボタンをクリックして、選択した認証情報と指定した入力を使用してシークレット管理システムへの接続を確認します。\"],\"Cs0oSA\":[\"設定の表示\"],\"Csvbqs\":[\"ここに構築されたインベントリプラグインのドキュメントを表示します。\"],\"Cx8SDk\":[\"トークンの有効期限の更新\"],\"D-NlUC\":[\"システム\"],\"D1JWCq\":[[\"interval\"],\" minutes\"],\"D4euEu\":[\"その他の認証設定\"],\"D89zck\":[\"日\"],\"DBBU2q\":[\"このフィールドには、少なくとも 1 つの値を選択する必要があります。\"],\"DBC3t5\":[\"日曜\"],\"DBHTm_\":[\"8 月\"],\"DFNPK8\":[\"可用性チェックの実行\"],\"DGZ08x\":[\"すべてを同期\"],\"DHf0mx\":[\"新規インスタンスの作成\"],\"DHrOgD\":[\"プロジェクトステータスの更新\"],\"DIKUI7\":[\"最小長\"],\"DIX823\":[\"このフィールドは数値で、\",[\"max\"],\" 未満の値である必要があります\"],\"DJIazz\":[\"正常に承認されました\"],\"DNLiC8\":[\"設定を元に戻す\"],\"DNqHaO\":[\"この表には、構築済みインベントリープラグインの\\n いくつかの便利なパラメーターが記載されています。パラメーターの完全なリストについては \"],\"DPfwMq\":[\"完了\"],\"DV-Xbw\":[\"使用言語\"],\"DVIUId\":[\"プロンプトオーバーライド\"],\"DZNGtI\":[\"プロジェクトのチェックアウト結果\"],\"D_oBkC\":[\"GitHub チーム\"],\"DdlJTq\":[\"完全一致 (指定されない場合のデフォルトのルックアップ)。\"],\"De2WsK\":[\"このアクションにより、このユーザーのすべてのロールと選択したチームの関連付けが解除されます。\"],\"DhSza7\":[\"コントローラーノード\"],\"DnkUe2\":[\"Webhook サービスの選択\"],\"DqnAO4\":[\"最初に自動化\"],\"Du6bPw\":[\"住所\"],\"Dug0C-\":[\"指定した実行回数後\"],\"DyYigF\":[\"TACACS+ 設定\"],\"Dz7fsq\":[\"ズームイン\"],\"E6Z4zF\":[\"ファイル形式が無効です。有効な Red Hat サブスクリプションマニフェストをアップロードしてください。\"],\"E86aJB\":[\"ロールの関連付けの解除!\"],\"E9wN_Q\":[\"最終可用性チェック\"],\"EH6-2h\":[\"トポロジービュー\"],\"EHu0x2\":[\"同期\"],\"EIBcgD\":[\"プロジェクトから取得\"],\"EIkRy0\":[\"送信先チャネル\"],\"EJQLCT\":[\"ワークフロージョブテンプレートを削除できませんでした。\"],\"ENDbv1\":[\"すべてのホストを表示します。\"],\"ENRWp9\":[\"アノテーションのタグ\"],\"ENyw54\":[\"関連するグループ\"],\"EP-eCv\":[\"SAML 設定\"],\"EQ-qsg\":[\"ワークフロージョブテンプレート\"],\"ES0WE_\":[\"タイムアウト時\"],\"ETUQuF\":[\"1 つ以上のインベントリーを削除できませんでした。\"],\"EWL-h4\":[\"host-description-\",[\"0\"]],\"E_QGRL\":[\"無効化\"],\"E_tJey\":[\"デフォルトの実行環境\"],\"Eb5CN1\":[[\"0\",\"plural\",{\"one\":[\"This organization is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"EdQY6l\":[\"なし\"],\"Eff_76\":[\"ローカルタイムゾーン\"],\"Eg4kGP\":[\"デフォルトの応答\"],\"EmSrGB\":[\"以前\"],\"EmfKjn\":[\"トラブルシューティング設定を表示\"],\"Emna_v\":[\"ソースの編集\"],\"EmzUsN\":[\"ノードの詳細の表示\"],\"EnC3hS\":[\"カスタム Pod 仕様\"],\"EpH7Cd\":[\"認証情報の削除\"],\"Eq6_y5\":[\"this Tower documentation page\"],\"Eqp9wv\":[\"次の場所でJSONの例を表示します。\"],\"EwxKbE\":[\"削除済み\"],\"EzwCw7\":[\"質問の編集\"],\"F-0xxR\":[\"リソースがこのテンプレートにありません。\"],\"F-LGli\":[\"以下の関連付けを解除する権限がありません: \",[\"itemsUnableToDisassociate\"]],\"F-_-es\":[\"インスタンスの選択\"],\"F0xJYs\":[\"容量調整の更新に失敗しました。\"],\"F2l57P\":[\"新しいインスタンスがオンラインになったときに、このグループに自動的に\\n 割り当てられるすべてのインスタンスの最小割合。\"],\"FCnKmF\":[\"ユーザートークンの作成\"],\"FD8Y9V\":[\"ノードアイコンをクリックして詳細を表示します。\"],\"FEr96N\":[\"テーマ\"],\"FFv0Vh\":[\"自動化\"],\"FG2mko\":[\"リストから項目の選択\"],\"FGnH0p\":[\"これにより、このワークフローの後続のノードがすべてキャンセルされます\"],\"FMpB-A\":[\"< 0 >注:インスタンスが< 1 >ポリシールールによって管理されている場合、手動で関連付けられたインスタンスはインスタンスグループから自動的に分離されることがあります。\"],\"FO7Rwo\":[\"同僚を削除しますか?\"],\"FQto51\":[\"全列を展開\"],\"FTuS3P\":[\"このフィールドは空白ではありません\"],\"FV5MUV\":[\"ユーザーが構築済みグループの正確性について\\n フィードバックを必要とする場合は、プラグイン設定で\\n strict: true を使用することを強くお勧めします。\"],\"FXmp8Q\":[\"ロールの関連付けに失敗しました\"],\"FYJRCY\":[\"1 つ以上のプロジェクトを削除できませんでした。\"],\"F_Nk65\":[\"出力のダウンロード\"],\"F_c3Jb\":[\"カスタムの Kubernetes または OpenShift Pod 仕様\"],\"Failed\":[\"失敗\"],\"Fanpmj\":[\"提示される変数\"],\"FblMFO\":[\"メトリクスの選択\"],\"FclH3w\":[\"正常に保存が実行されました!\"],\"FfGhiE\":[\"ワークフローの保存中にエラー!\"],\"FhTYgi\":[\"1 つ以上のジョブテンプレートを削除できませんでした\"],\"FhhvWu\":[\"これにより、このワークフローの後続のノードがすべてキャンセルされます。\"],\"FiyMaa\":[\".json ファイルの選択\"],\"FjVFQ-\":[\"モジュールの選択\"],\"FjkaiT\":[\"ズームアウト\"],\"FkQvI0\":[\"テンプレートの編集\"],\"FlvpdU\":[\"If enabled, show the changes made\\n by Ansible tasks, where supported. This is equivalent to Ansible’s\\n --diff mode.\"],\"FnSb-y\":[\"ジョブの取り消し\"],\"FnZzou\":[\"インスタンスの状態\"],\"FncCci\":[\"RADIUS\"],\"Fo2bwm\":[\"アクター\"],\"Fo6qAq\":[\"Subversion ソースコントロールの URL の例には次が含まれます。\"],\"Fp0Rk4\":[\"'dev' や 'test' など、このインベントリーを説明する\\n オプションのラベル。ラベルを使用して、インベントリーと完了したジョブを\\n グループ化してフィルタリングできます。\"],\"FqW8E0\":[\"使用済み容量\"],\"FsGJXJ\":[\"クリーニング\"],\"Fx2-x_\":[\"ユーザーロールの追加\"],\"G-jHgL\":[\"ソースパスの設定:\"],\"G2KpGE\":[\"プロジェクトの編集\"],\"G3myU-\":[\"火曜\"],\"G768_0\":[\"拒否\"],\"G8jcl6\":[\"通知テンプレート\"],\"G9MOps\":[\"在庫同期に使用するブランチ。空白の場合はプロジェクトのデフォルトが使用されます。プロジェクトのALLOW_OVERRIDEフィールドがTRUEに設定されている場合にのみ許可されます。\"],\"GDvlUT\":[\"ロール\"],\"GGWsTU\":[\"取り消し済み\"],\"GGuAXg\":[\"SAML 設定の表示\"],\"GHDQ7i\":[\"1 つ以上の組織を削除できませんでした。\"],\"GJKwN0\":[\"スケジュール\"],\"GLZDtF\":[\"システム警告\"],\"GLwo_j\":[\"0 (警告)\"],\"GMaU6_\":[\"起動時にジョブタイプを要求します。\"],\"GO6s6F\":[\"ジョブ設定\"],\"GRwtth\":[\"インスタンスでの可用性チェック実行\"],\"GSYBQc\":[\"API サービス/統合キー\"],\"GTOcxw\":[\"ユーザーの編集\"],\"GU9vaV\":[\"到達不能なホスト\"],\"GXiLKo\":[\"テキストエリア\"],\"GZIG7_\":[\"インベントリーが正常にコピーされました\"],\"G_Dwo_\":[\"Choose an answer type or format you want as the prompt for the user.\\n Refer to the Ansible Controller Documentation for more additional\\n information about each option.\"],\"GaJLE6\":[\"開始ユーザー\"],\"Gd-B71\":[\"認証情報タイプが見つかりません。\"],\"Ge5ecx\":[\"最大ホスト数\"],\"GeIrWJ\":[[\"brandName\"],\" ロゴ\"],\"Gf3vm8\":[\"項目/ページ\"],\"GiXRTS\":[\"1 つ以上のユーザートークンを削除できませんでした。\"],\"Gix1h_\":[\"すべてのジョブを表示\"],\"GkbHM9\":[\"すべてのプロジェクトを表示します。\"],\"Gn7TK5\":[\"ツールの切り替え\"],\"GpNoVG\":[\"スケジュールを追加してこのリストに入力してください。\"],\"GpWp6E\":[\"システムレベルの機能および関数の定義\"],\"GtycJ_\":[\"タスク\"],\"H0z3JJ\":[\"これらの引数は指定されたモジュールで使用されます。\",[\"moduleName\"],\" に関する情報は、次をクリックすると確認できます \"],\"H1M6a6\":[\"すべてのインスタンスを表示します。\"],\"H3kCln\":[\"ホスト名\"],\"H6jbKn\":[\"ユーザーインターフェースの設定\"],\"H7OUPr\":[\"日\"],\"H7e4dl\":[\"YAML または JSON のいずれかを使用して\\n キーと値のペアを指定します。\"],\"H86f9p\":[\"折りたたむ\"],\"H9MIed\":[\"実行ノード\"],\"HAi1aX\":[\"Webhook キーの更新\"],\"HAzhV7\":[\"認証情報\"],\"HDULRt\":[\"ユニークなホスト\"],\"HGOtRu\":[\"通知テストに失敗しました。\"],\"HIfMSF\":[\"多項選択法オプション\"],\"HLAK2g\":[\"This action will cancel the following jobs:\"],\"HODq3s\":[\"1つ以上のワークフローの承認を拒否できませんでした。\"],\"HQ7e8y\":[\"exact で大文字小文字の区別なし。\"],\"HQ7oEt\":[\"チームに戻る\"],\"HUx6pW\":[\"インジェクターの設定\"],\"HajiZl\":[\"月\"],\"HbaQks\":[\"1 行ごとに 1 つのメールアドレスを指定して、この通知タイプの受信者リストを作成します。\"],\"HbnjOn\":[[\"interval\"],\" weeks\"],\"HcznyH\":[\"一部またはすべてのインベントリーソースを同期できませんでした。\"],\"HdE1If\":[\"チャネル\"],\"HdErwL\":[\"承認する行を選択\"],\"Hf0QDK\":[\"プロジェクトが正常にコピーされました\"],\"Hhnh8d\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 日\"],\"other\":[\"#\",\" 日\"]}]],\"HiTf1W\":[\"元に戻すの取り消し\"],\"HjxnnB\":[\"モジュールの選択\"],\"HlhZ5D\":[\"TLS の使用\"],\"HoHveO\":[\"この条件とその他のフィルターの両方を満たす結果を返します。 何も選択されていない場合、これがデフォルトのセットタイプです。\"],\"HpK_8d\":[\"再読み込み\"],\"Ht1JWm\":[\"通知の色\"],\"HwpTx4\":[\"playbook の実行時に ansible が生成する出力のレベルを制御します。\"],\"I0LRRn\":[\"バンドルのダウンロード\"],\"I7Epp-\":[\"オプションの詳細\"],\"I9NouQ\":[\"サブスクリプションが見つかりません\"],\"ICi4pv\":[\"自動化\"],\"ICt7Id\":[\"ノードタイプ\"],\"IEKPuq\":[\"次へスクロール\"],\"IGQ11b\":[\"webhook サービスと共有されるシークレット。サービスはこれを使用してリクエストに署名するため、お使いのリポジトリーのみがプロジェクトの同期をトリガーできます。設定として管理するために独自のシークレットを入力するか、フィールドを空白のままにして保存時に生成させます。\"],\"IJAVcb\":[\"アプリケーションに戻る\"],\"IKg_un\":[\"送信先チャネルまたはユーザー\"],\"IMJYui\":[\"SMS メッセージをルーティングする場所を指定するには、1 行につき 1 つの\\n 電話番号を使用します。電話番号は +11231231234 の形式にする必要があります。詳細については Twilio のドキュメントを参照してください\"],\"IN6gbp\":[\"クリックして、 Survey の質問の順序を並べ替えます\"],\"IPusY8\":[\"更新を実行する前に、ローカルの変更をすべて削除します。\"],\"ISuwrJ\":[\"実行環境の編集\"],\"IV0EjT\":[\"テスト通知\"],\"IVvM2B\":[\"有効なオプション\"],\"IWoF_f\":[\"Survey の表示\"],\"IZfe0p\":[\"ソースコントロールのブランチ\"],\"Igz8MU\":[\"過去 2 週間\"],\"IiR1sT\":[\"ノードタイプ\"],\"IjDwKK\":[\"ログインタイプ\"],\"Ikhk0q\":[\"このワークフロージョブテンプレートの Webhook サービス。\"],\"Iqm2E5\":[[\"pluralizedItemName\"],\" を追加してこのリストに入力してください。\"],\"IrC12v\":[\"アプリケーション\"],\"IrI9pg\":[\"終了日\"],\"IsJ8i6\":[\"ワークフローのブランチを選択します。このブランチは、ブランチの入力を求めるすべてのジョブテンプレートノードに適用されます。\"],\"IspLSK\":[\"管理ジョブが見つかりません。\"],\"J0zi6q\":[\"スキップタグ\"],\"J2HgCR\":[\"Red Hat, Inc.\"],\"J2d1y8\":[\"成功ジョブによるフィルター\"],\"J4y7Uk\":[\"ワークフローがキャンセルされました \"],\"J8VgfD\":[\"特定フィールドもしくは関連オブジェクトが null かどうかをチェック。ブール値を想定。\"],\"JEGlfK\":[\"開始\"],\"JFnJqF\":[\"経過時間\"],\"JFphCp\":[\"3 (デバッグ)\"],\"JGvwnU\":[\"最終使用日時\"],\"JIX50w\":[\"インスタンスグループのフォールバックの防止: 有効にすると、ジョブテンプレートは、実行対象の優先インスタンスグループのリストにインベントリーまたは組織のインスタンスグループを追加できないようにします。\"],\"JJwEMx\":[\"ホストを削除しました\"],\"JKZTiL\":[\"これらは、サポートされているコマンド実行の標準の詳細レベルです。\"],\"JL3si7\":[\"更新中\"],\"JLjfEs\":[\"1 つ以上のスケジュールを削除できませんでした。\"],\"JOmgRg\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" か月\"],\"other\":[\"#\",\" か月\"]}]],\"JRa4kV\":[\"ソースコントロールリポジトリーでプッシュが発生したときにプロジェクトを同期し、ジョブの起動ごとにポーリングや更新を行わなくても、ローカルコピーが常に最新の状態になるようにします。\"],\"JTHoCu\":[\"変更の切り替え\"],\"JUwjsw\":[\"Select an activity type\"],\"JXgd33\":[\"ダッシュボードに戻る\"],\"J_2nGO\":[\"The execution environment that will be used for jobs\\n inside of this organization. This will be used a fallback when\\n an execution environment has not been explicitly assigned at the\\n project, job template or workflow level.\"],\"J_DUZt\":[\"インスタンスグループ\"],\"Ja4VHl\":[[\"0\"],\" 以上\"],\"JgP090\":[\"サブモジュールを追跡する\"],\"JjcTk5\":[\"ソーシャルログイン\"],\"JjfsZM\":[\"ワークフロー承認の削除\"],\"JppQoT\":[\"最終再計算日:\"],\"JsY1p5\":[\"拒否済み\"],\"Jvv6rS\":[\"複数選択\"],\"JwqOfG\":[\"評価対象\"],\"Jy9qCv\":[\"ログインリダイレクトの編集をキャンセルする\"],\"K5AykR\":[\"チームの削除\"],\"K93j4j\":[\"ラベル名\"],\"KC2nS5\":[\"リソースが削除されました\"],\"KDcLJ6\":[\"YAML:\"],\"KEY0qH\":[\"テスト合格。\"],\"KM6m8p\":[\"Team\"],\"KNOsJ0\":[\"このジョブテンプレートを説明する任意のラベル ('dev' や 'test' など)。ラベルを使用して、ジョブテンプレートや完了したジョブをグループ化してフィルタリングできます。\"],\"KQ9EQm\":[\"構築されたインベントリプラグインの使用方法\"],\"KR9Aiy\":[\"This inventory is currently being used by some templates. Are you sure you want to delete it?\"],\"KRf0wm\":[\"認証情報タイプ\"],\"KTvwHj\":[\"認証情報の入力ソース\"],\"KVbzjm\":[\"ビジュアライザー\"],\"KXFYp9\":[\"サブスクリプションの取得\"],\"KXnokb\":[\"システム全体で利用可能な実行環境を特定の組織に再割り当てすることはできません\"],\"KZp4lW\":[\"Lookup select\"],\"K_MYeX\":[\"ユーザーの詳細の表示\"],\"KeRkFA\":[\"サブスクリプションの選択解除\"],\"KeqCdz\":[\"コントロールノードからのピア\"],\"Ki_j_-\":[\"保存時に新しい Webhook キーを生成するには空白のままにします\"],\"KjBkMe\":[\"このコンテナーグループは、現在他のリソースで使用されています。削除してもよろしいですか?\"],\"KjVvNP\":[\"パネル ID\"],\"KkMfgW\":[\"ジョブテンプレート\"],\"KkzJWF\":[\"最初の自動化\"],\"KlQd8_\":[\"トークンのアクセスのスコープ\"],\"KnN1Tu\":[\"有効期限\"],\"KoCnPE\":[\"ジョブの取り消し\"],\"KopV8H\":[\"root グループのみを表示\"],\"KxIA0h\":[\"ホストの切り替え\"],\"Kz9DSl\":[\"既存ホストの追加\"],\"KzQFvE\":[\"組織の編集\"],\"L1Ob4t\":[\"詳細タブ\"],\"L3ooU6\":[\"認証情報\"],\"L7Nz3F\":[\"不足しているリソース\"],\"L8fEEm\":[\"グループ\"],\"L973Qq\":[\"サブスクリプションの要求\"],\"LCl8Ck\":[\"日付検索入力\"],\"LGl_pR\":[\"ジョブ設定の表示\"],\"LGryaQ\":[\"新規認証情報の作成\"],\"LQ29yc\":[\"インベントリソースの同期を開始する\"],\"LQRys9\":[\"サブモジュールは、master ブランチ (または .gitmodules で指定された別のブランチ) の最新のコミットを追跡します。いいえの場合、サブモジュールはメインプロジェクトで指定されたリビジョンに保持されます。これは、git submodule update に --remote フラグを指定することと同じです。\"],\"LQTgjH\":[\"プロジェクトが見つかりません。\"],\"LRePxk\":[\"新しいインスタンスがオンラインになったときにこのグループに自動的に割り当てられるインスタンスの最小数。\"],\"LSUePQ\":[\"起動 | \",[\"0\"]],\"LULLsO\":[\"すべての組織を表示します。\"],\"LV5a9V\":[\"ピア\"],\"LVecP9\":[\"ユーザーロール\"],\"LYAQ1X\":[\"同時実行ジョブの有効化\"],\"LZr1lR\":[\"インスタンスグループが見つかりません。\"],\"Lc0RHh\":[\"スケジュールの切り替え\"],\"LgD0Cy\":[\"アプリケーション名\"],\"LhMjLm\":[\"日時\"],\"Ll7Jei\":[\"LDAP3\"],\"LnYbGj\":[\"Survey の編集\"],\"Lnnjmk\":[\"< 0 >< 1 />新しい \",[\"brandName\"],\" ユーザーインターフェイスの技術プレビューは< 2 >こちらにあります。\"],\"Lqygiq\":[\"プロビジョニングコールバック\"],\"LtBtED\":[\"通知成功の切り替え\"],\"LuXP9q\":[\"アクセス\"],\"LwHwt1\":[[\"brandName\"],\" サブスクリプション\"],\"Lwovp8\":[\"有効にすると、このジョブテンプレートの同時実行が許可されます。\"],\"M0okDw\":[\"データ収集、ロゴ、およびログイン情報の設定\"],\"M73whl\":[\"コンテキスト\"],\"MA-mp9\":[\"Webhook 参照フィルター\"],\"MA7cMf\":[\"構築されたインベントリパラメータテーブル\"],\"MAI_nw\":[\"上記のフィルターを使用して別の検索を試してください。\"],\"MAV-SQ\":[\"認証情報が見つかりません。\"],\"MApRef\":[\"ログインリダイレクトのオーバーライド URL を編集してもよろしいですか?これを行うと、ローカルの認証情報も無効になると、ユーザーのシステムへのログイン機能に影響があります。\"],\"MD0-Al\":[\"セッションの有効期限が近づいています\"],\"MDQLec\":[\"Ansibleがインベントリソースアップデートジョブのために生成する出力レベルを制御します。\"],\"MGpavd\":[\"キー先行入力\"],\"MHM-bv\":[\"無効なリンクターゲットです。子ノードまたは祖先ノードにリンクできません。グラフサイクルはサポートされていません。\"],\"MHbbol\":[\" ジョブスライス\"],\"MKEPCY\":[\"フォロー\"],\"MP1v-1\":[\"凡例\"],\"MP8dU9\":[\"コンテナーレジストリー、イメージ名、およびバージョンタグを含む完全なイメージの場所。\"],\"MQPvAa\":[\"起動時にラベルを要求します。\"],\"MQoyj6\":[\"ワークフロージョブテンプレート\"],\"MTLPCv\":[\"親ノードが障害状態になったときに実行します。\"],\"MVw5um\":[\"2 (より詳細)\"],\"MZU5bt\":[\"1 つ以上のグループを削除できませんでした。\"],\"M_gXds\":[\"Note: This instance may be re-associated with this instance group if it is managed by \"],\"MdhgLT\":[\"IRC サーバーパスワード\"],\"MfCEiB\":[\"Galaxy 認証情報\"],\"MfQHgE\":[\"保持する日数\"],\"Mfk6hJ\":[\"1 つ以上のテンプレートを削除できませんでした。\"],\"Mhn5m4\":[\"レジストリーの認証情報\"],\"Mn45Gz\":[\"インスタンスグループに戻る\"],\"MnbH31\":[\"ページ\"],\"MofjBu\":[\"このプロジェクトを使用するジョブに使用される実行環境。ジョブテンプレートまたはワークフローレベルで実行環境が明示的に割り当てられていない場合に、フォールバックとして使用されます。\"],\"MpLngK\":[\"このプロジェクトの webhook エンドポイント。プッシュがプロジェクトの同期をトリガーするように、リポジトリーの webhook 設定に追加します。\"],\"MpZRQy\":[\"Git\"],\"MuhG5I\":[[\"0\",\"plural\",{\"one\":[\"This approval cannot be deleted due to insufficient permissions or a pending job status\"],\"other\":[\"These approvals cannot be deleted due to insufficient permissions or a pending job status\"]}]],\"MwCc2O\":[\"このワークフロージョブテンプレートの Webhook 認証情報。\"],\"Mwf3Mw\":[\"検索フィルターを使用して、このインベントリーのホストを\\n 設定します。例: ansible_facts__ansible_distribution:\\\"RedHat\\\"。\\n 構文と例の詳細については、ドキュメントを\\n 参照してください。構文と例の詳細については、Ansible Controller の\\n ドキュメントを参照してください。\"],\"MzcRa_\":[\"ユーザーおよび自動化アナリティクス\"],\"Mzqo60\":[\"アーティファクトと比較する値。可能な場合は JSON として解釈され (例: true、3)、そうでない場合はプレーンな文字列として解釈されます。\"],\"N1U4ZG\":[\"サブスクリプションのコンプライアンス\"],\"N36GRB\":[\"このフィールドは数値で、\",[\"min\"],\" より大きい値である必要があります\"],\"N40H-G\":[\"すべて\"],\"N5vmCy\":[\"建設されたインベントリ\"],\"N6GBcC\":[\"削除の確認\"],\"N7wOty\":[\"このジョブで実行する playbook を選択します。\"],\"NAKA53\":[\"ホストの障害\"],\"NBONaK\":[\"ファクトの収集\"],\"NCVKhy\":[\"最近のジョブ\"],\"NDQvUO\":[\"起動時にタグを要求します。\"],\"NIuIk1\":[\"制限なし\"],\"NLKsgx\":[[\"pluralizedItemName\"],\" 一覧\"],\"NO1ZxL\":[\"アプリケーション名\"],\"NPfgIB\":[\"秒\"],\"NQHZnb\":[\"整数\"],\"NRn4V6\":[[\"interval\"],\" months\"],\"NUNUrW\":[\"アノテーションのタグ (オプション)\"],\"NW-xDQ\":[\"これにより、このページのすべての設定値が\\n 工場出荷時のデフォルトに戻ります。続行してもよろしいですか?\"],\"NX18CF\":[\"当日以降\"],\"NYxilo\":[\"最大同時ジョブ数\"],\"Na9fIV\":[\"項目は見つかりません。\"],\"NcVaYu\":[\"終了時刻\"],\"NeA1eI\":[\"パンライト\"],\"Never\":[\"なし\"],\"NgD4On\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"この操作により、次のジョブがキャンセルされます:\"],\"other\":[\"この操作により、次のジョブがキャンセルされます:\"]}]],\"NjnDuY\":[\"Dragging started for item id: \",[\"newId\"],\".\"],\"NjqMGF\":[\"リソースタイプ\"],\"NnH3pK\":[\"テスト\"],\"No Jobs\":[\"ジョブなし\"],\"NpJHAp\":[\"ノードの作成時または編集時に、インベントリーまたはプロジェクトが欠落しているジョブテンプレートは選択できません。別のテンプレートを選択するか、欠落しているフィールドを修正して続行してください。\"],\"NqIlWb\":[\"最終実行日時\"],\"NrGRF4\":[\"サブスクリプション選択モーダル\"],\"NsXTPu\":[\"Ansible ファクトを使用してスマートインベントリーを作成するには、スマートインベントリー画面に移動します。\"],\"NtD3hJ\":[\"関連するキー\"],\"Nu4DdT\":[\"同期\"],\"Nu4oKW\":[\"説明\"],\"Nu7VHX\":[\"選択済みのリソースに適用するロールを選択します。選択するロールがすべて、選択済みの全リソースに対して適用されることに注意してください。\"],\"O-OYOe\":[\"チームの編集\"],\"O06Rp6\":[\"ユーザーインターフェース\"],\"O1Aswy\":[\"無期限\"],\"O28qFz\":[\"ジョブ \",[\"0\"],\" の表示\"],\"O2EuOK\":[\"SAML \",[\"samlIDP\"],\" でサインイン\"],\"O2UpM1\":[\"参照\"],\"O3oNi5\":[\"メール\"],\"O4ilec\":[\"regex で大文字小文字の区別なし。\"],\"O5pAaX\":[\"グラフを表示するインスタンスとメトリクスを選択します\"],\"O78b13\":[\"このトークンが属するアプリケーション。あるいは、このフィールドを空欄のままにしてパーソナルアクセストークンを作成します。\"],\"O8_96D\":[\"リスナーポート\"],\"O9VQlh\":[\"周波数の選択\"],\"OA8xiA\":[\"パンレフト\"],\"OA99Nq\":[\"ホストが最後に自動化されたのはいつですか?\"],\"OC4Tzv\":[\"ここ\"],\"OGoqLy\":[\"# sources with sync failures.\"],\"OHGMM6\":[\"開始日時\"],\"OIv5hN\":[\"サブスクリプションの詳細へのリダイレクト\"],\"OJ9bHy\":[\"1 つ以上のグループの関連付けを解除できませんでした。\"],\"OOq_rD\":[\"Playbook 実行\"],\"OPTWH4\":[\"HTTPS 証明書の検証を有効化\"],\"ORxrw7\":[\"残りの日数\"],\"OSH8xi\":[\"ホップ\"],\"OcRJRt\":[\"取り消しジョブの確認\"],\"Oe_VOY\":[\"1 つ以上のインスタンスを削除できませんでした。\"],\"OgB1k4\":[\"引数\"],\"OiCz65\":[\"Grafana URL\"],\"Oiqdmc\":[\"GitHub 組織でサインイン\"],\"Oj2Ix6\":[\"ジョブがキャンセルされるまでの実行時間 (秒単位)。デフォルトは 0 で、ジョブのタイムアウトはありません。\"],\"OjwX8k\":[\"トークン情報\"],\"OlpaBt\":[\"同時ジョブ: 有効にすると、このジョブテンプレートの同時実行が許可されます。\"],\"OmbooC\":[\"タスクの開始\"],\"OogRLI\":[\"フェデレーションインベントリーが見つかりません。\"],\"OqE3G-\":[\"id フィールドでの正確な検索。\"],\"Osn70z\":[\"デバッグ\"],\"OvBnOM\":[\"設定に戻る\"],\"OyGPiW\":[\"サブスクリプション設定\"],\"OzssJK\":[\"コマンドの実行\"],\"P3spiP\":[\"テンプレートに戻る\"],\"P7d85D\":[\"チームのアクセス権の削除\"],\"P8fBlG\":[\"認証\"],\"PByO0X\":[\"投票\"],\"PCEmEr\":[\"ユーザートークン\"],\"PJ1B0S\":[[\"0\",\"plural\",{\"one\":[\"This project is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"PJf54Q\":[\"ソースに戻る\"],\"PKTjJ3\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"weekday\"],\" of \",[\"month\"]],\"4\":[\"The fourth \",[\"weekday\"],\" of \",[\"month\"]],\"5\":[\"The fifth \",[\"weekday\"],\" of \",[\"month\"]],\"one\":[\"The first \",[\"weekday\"],\" of \",[\"month\"]],\"two\":[\"The second \",[\"weekday\"],\" of \",[\"month\"]]}]],\"PLzYyl\":[\"頻度の例外の詳細\"],\"PMk2Wg\":[\"プロビジョニング解除に失敗\"],\"POKy-m\":[\"実行環境のコピー\"],\"PPsHsC\":[\"すべてをデフォルトに戻す\"],\"PQPOpT\":[\"インベントリーファイル\"],\"PRuZiQ\":[\"リビジョンの更新\"],\"PUnovD\":[\"Amazon EC2\"],\"PVCOQE\":[\"ピアが削除されました。変更が有効になるのを確認するには、 \",[\"0\"],\" のインストールバンドルを再度実行してください。\"],\"PWwwY2\":[\"関連付けの解除\"],\"PYPqaM\":[\"パネル ID (オプション)\"],\"PZBWpL\":[\"Switch to light mode\"],\"P_s0vy\":[\"この Webhook サービスの認証情報タイプを検索できないため、Webhook 認証情報フィールドは使用できません。\"],\"PaTL2O\":[\"受信者リスト\"],\"PhufXn\":[\"ジョブスライスの親\"],\"Pi5vnX\":[\"構築されたインベントリソースの同期に失敗しました\"],\"PiK6Ld\":[\"土\"],\"PiRb8z\":[\"直近の同期\"],\"PjkoCm\":[\"以下のノードを削除してもよろしいですか?\"],\"PkVlOm\":[\"HTTP ヘッダーを JSON 形式で指定します。構文の例については、\\n Ansible Controller のドキュメントを参照してください。\"],\"Po1btV\":[\"グローバルナビゲーション\"],\"Po7y5X\":[\"実行環境をコピーできませんでした\"],\"PvgcEq\":[\"Draggable list to reorder and remove selected items.\"],\"PwAMWD\":[\"すべてのジョブイベントを折りたたむ\"],\"PyV1wC\":[\"インスタンスグループのフォールバックを防止する\"],\"Q3P_4s\":[\"タスク\"],\"Q4hWRC\":[\"ワークフロージョブ (\",[\"total\"],\")\"],\"Q5ZW8j\":[\"サブスクリプションテーブル\"],\"QF_MpS\":[\"\\n このグループに直接あるホストのみを切り離すことができることに\\n 注意してください。サブグループのホストは、それらが属する\\n サブグループレベルから直接切り離す必要があります。\\n \"],\"QFdBqu\":[\"Mattermost\"],\"QGbLBK\":[\"ジョブ ID:\"],\"QHF6CU\":[\"プレイ\"],\"QIOH6p\":[\"開始ユーザー (ユーザー名)\"],\"QIpNLR\":[\"インベントリー同期の失敗はありません。\"],\"QIq3_3\":[\"注: 選択された順序によって、実行の優先順位が設定されます。ドラッグを有効にするには、1 つ以上選択してください。\"],\"QJbMvX\":[\"起動時にパスワードが必要な認証情報は許可されていません。続行するには、次の認証情報を削除するか、同じタイプの認証情報に置き換えてください: \",[\"0\"]],\"QJowYS\":[\"削除の確認\"],\"QKUQw1\":[\"新規ホストの作成\"],\"QKbQTN\":[\"アクティビティーストリームのタイプセレクター\"],\"QOF7Jg\":[[\"0\"],\" を承認できませんでした。\"],\"QPRWww\":[\"実行タイプ\"],\"QR908H\":[\"名前の設定\"],\"QT1rDU\":[\"GitHub Enterprise\"],\"QTwM6Y\":[\"このジョブが実行する playbook が含まれるプロジェクトです。\"],\"QYKS3D\":[\"最近のジョブ\"],\"QamIPZ\":[\"開始ボタンをクリックして開始してください。\"],\"Qay_5h\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"Qd2E32\":[\"指定されたホスト変数のdictから有効な状態を取得します。有効な変数は、ドット表記を使用して指定できます。例: 'foo.bar'\"],\"Qf36YE\":[\"詳細\"],\"QgnNyZ\":[\"同期エラー\"],\"Qhb8lT\":[\"新規アプリケーションの作成\"],\"QmvYrA\":[\"ワークフロージョブテンプレートの任意の説明。\"],\"QnJn75\":[\"最終実行日時\"],\"Qv59HG\":[\"認証情報タイプの選択\"],\"Qv91_c\":[\"LDAP 2\"],\"QyjCeq\":[\"容量\"],\"R-uZ8Y\":[\"SAML でサインイン\"],\"R633QG\":[\"ワークフローの承認に戻る\"],\"R6Gueb\":[\"通知変更の切り替え\"],\"R7s3iG\":[\"以下に戻る\"],\"R9Khdg\":[\"自動\"],\"R9sZsA\":[\"すべてのグループおよびホストの削除\"],\"RBDHUE\":[\"起動時に実行環境を要求します。\"],\"RI8cIw\":[\"この組織で管理できるホストの最大数。\\n 値のデフォルトは 0 で、制限なしを意味します。\\n 詳細については Ansible のドキュメントを参照してください。\"],\"RIcSTA\":[\"有効期限:\"],\"RIeAlp\":[\"このインベントリを使用してジョブを実行するたびに、ジョブタスクを実行する前に、選択したソースからインベントリを更新します。\"],\"RK1gDV\":[\"Azure AD でサインイン\"],\"RMdd1C\":[\"なし (1回実行)\"],\"RO9G1f\":[\"このフィールドは 0 より大きくなければなりません\"],\"RPnV2o\":[\"検索フィルターで結果が生成されませんでした…\"],\"RThfvh\":[\"関連するチームの関連付けを解除しますか?\"],\"R_mzhp\":[\"ユーザートークンに失敗しました。\"],\"RbIaa9\":[\"ジョブが見つかりません。\"],\"RdLvW9\":[\"ジョブの再起動\"],\"Rguqao\":[\"削除する行を選択してください\"],\"RhOukN\":[[\"interval\"],\" hour\"],\"RiQMUh\":[\"実行中\"],\"RjIKOw\":[\"ホストのインベントリーを変更できません。\"],\"RjkhdY\":[\"値で開始するフィールド。\"],\"RkXlPZ\":[\"GitHub\"],\"RlsPz7\":[\"このリンクを削除してもよろしいですか?\"],\"Rm1iI_\":[\"起動時に変数を要求します。\"],\"Roaswv\":[\"User Guide\"],\"RpKSl3\":[\"認証情報が正常にコピーされました\"],\"RsZ4BA\":[\"最後にスクロール\"],\"RtKKbA\":[\"最終\"],\"Ru59oZ\":[\"このテンプレートの webhook を有効にします。\"],\"RuEWFx\":[\"指定日\"],\"RuiOO0\":[\"1 つ以上のアプリケーションを削除できませんでした。\"],\"Rw1xwN\":[\"コンテンツの読み込み\"],\"RxzN1M\":[\"有効化\"],\"RyPas1\":[\"Cancel selected jobs\"],\"S0kLOH\":[\"ID\"],\"S2nsEw\":[\"Greater than の比較条件\"],\"S5gO6Y\":[\"追加のコマンドライン変数をワークフローに渡します。\"],\"S6zj7M\":[\"ジョブテンプレートの場合、run を選択して playbook を実行します。check を選択すると、playbook の構文チェック、環境設定のテスト、および問題の報告のみが行われ、playbook は実行されません。\"],\"S7kN8O\":[\"1 人以上のユーザーを削除できませんでした。\"],\"S7tNdv\":[\"成功時\"],\"S8FW2i\":[\"このソースによって同期されるインベントリファイル。ドロップダウンから選択するか、入力内にファイルを入力します。\"],\"SA-KXq\":[\"パンアップ\"],\"SAw-Ux\":[[\"username\"],\" からの \",[\"0\"],\" のアクセスを削除してもよろしいですか?\"],\"SBfnbf\":[\"すべての実行環境の表示\"],\"SC1Cur\":[\"[ステータス不明]\"],\"SDND4q\":[\"設定されていません\"],\"SIJDi3\":[\"容量調整\"],\"SJjggI\":[\"オプションの更新\"],\"SJmHMo\":[\"ドキュメント。\"],\"SLm_0U\":[\"IRC サーバーポート\"],\"SODyJ3\":[\"ホストの非同期 OK\"],\"SRiPhD\":[\"ノード削除の取り消し\"],\"SV5nA1\":[\"前のステップのいくつかにエラーがあります\"],\"SVG6MY\":[\"フィールドを以前保存した値に戻す\"],\"SYbJcn\":[\"通知テンプレートの編集\"],\"SZvybZ\":[\"LDAP のデフォルト\"],\"SZw9tS\":[\"詳細の表示\"],\"SbRHme\":[\"テキストエリア\"],\"Se_E0z\":[\"ワークフロージョブ\"],\"Sgr5NW\":[\"可用性チェックを実行するインスタンスを選択してください。\"],\"Sh2XTJ\":[\"通知タイプ\"],\"SiexHs\":[\"ダッシュボード (すべてのアクティビティー)\"],\"Sja7f-\":[\"ホストが削除された回数\"],\"Sjoj4f\":[\"認証情報名\"],\"SlfejT\":[\"エラー\"],\"SoREmD\":[\"アプリケーションおよびトークン\"],\"SqA8uD\":[\"ジョブの実行\"],\"SqLEdN\":[\"スマートインベントリーを削除できませんでした。\"],\"SqYo9m\":[\"インスタンスに戻る\"],\"Ssdrw4\":[\"非推奨\"],\"Successful\":[\"成功\"],\"SvPvEX\":[\"ワークフロー承認メッセージのボディー\"],\"Svkela\":[\"前のページに移動\"],\"SwJLlZ\":[\"ワークフロー拒否メッセージのボディー\"],\"SxGqey\":[\"汎用 OIDC 設定\"],\"Sxm8rQ\":[\"ユーザー\"],\"SzFxHC\":[\"LDAP 設定\"],\"SzQMpA\":[\"フォーク\"],\"T2M20E\":[\"その\"],\"T2mGOG\":[\"docs.ansible.com\"],\"T2x15z\":[\"通知の切り替えに失敗しました。\"],\"T4a4A4\":[\"Webhook キー\"],\"T7yEGN\":[\"このアプリケーションのトークンを取得するためにユーザーが使用する必要がある付与タイプ\"],\"T91vKp\":[\"プレイ\"],\"T9hZ3D\":[\"GitHub Enterprise チーム\"],\"TAnffV\":[\"このノードの編集\"],\"TBH48u\":[\"チームを削除できませんでした。\"],\"TC32CH\":[\"データの保持日数\"],\"TD1APv\":[\"サブスクリプションの取得\"],\"TFr1UR\":[\"vCenter からの同期に使用するインベントリープラグインを提供する Ansible コレクションを選択します。community.vmware コレクションは非推奨となり、新しい vmware.vmware コレクションが推奨されます。選択内容はソース変数の \\\"plugin\\\" キーを介して適用されます。キーがない場合は、デフォルトのコレクションが使用されます。\"],\"TJVvMD\":[\"関連する検索タイプ\"],\"TLomdD\":[[\"sessionCountdown\",\"plural\",{\"one\":[\"You will be logged out in \",\"#\",\" second due to inactivity\"],\"other\":[\"You will be logged out in \",\"#\",\" seconds due to inactivity\"]}]],\"TMJ39S\":[\"ロールの関連付けの解除\"],\"TMLAx2\":[\"必須\"],\"TO3h59\":[\"外部のシークレット管理システムからフィールドにデータを入力します\"],\"TO4OtU\":[\"Insights 認証情報\"],\"TOjYb_\":[\"建設されたインベントリホストの詳細を表示\"],\"TP9_K5\":[\"トークン\"],\"TRDppN\":[\"Webhook\"],\"TTMvf7\":[\"グループタイプ\"],\"TU6IDa\":[\"ユーザータイプ\"],\"TXKmNM\":[\"インベントリーを選択する必要があります\"],\"TZEuIE\":[\"認証情報タイプに戻る\"],\"T_87By\":[\"パラメーター\"],\"Ta0ts5\":[\"変更の表示\"],\"TcnG-2\":[\"新規実行環境の作成\"],\"TgSxH9\":[\"プロビジョニングコールバック URL\"],\"TkiN8D\":[\"ユーザーの詳細\"],\"Tmh24b\":[\"有効にすると、ジョブテンプレートは、実行対象の優先インスタンスグループのリストにインベントリーまたは組織のインスタンスグループを追加できないようにします。注記: この設定が有効で空のリストを指定した場合、グローバルインスタンスグループが適用されます。\"],\"Tmuvry\":[\"タイプ先行入力の設定\"],\"ToOoEw\":[\"認証情報のコピー\"],\"Tof7pX\":[\"ジョブ\"],\"Tq71UT\":[\"平日\"],\"Tx3NMN\":[\"秘密鍵のパスフレーズ\"],\"TxKKED\":[\"構築された在庫の詳細を表示\"],\"TyaPAx\":[\"システム管理者\"],\"Tz0i8g\":[\"設定\"],\"U-nEJl\":[\"GitHub 設定の表示\"],\"U011Uh\":[\"最終表示\"],\"U7rA2a\":[\"チェックされていない場合、ローカル変数と外部ソースで見つかったものを組み合わせてマージが実行されます。\"],\"UDf-wR\":[\"消費されたサブスクリプション\"],\"UEaj7U\":[\"インベントリーの同期の失敗\"],\"UJpDop\":[\"Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"UJsNNk\":[\"ソースコントロールのリビジョン\"],\"UPasE4\":[\"Azure AD (デフォルト)\"],\"UPmrRI\":[\"endswith で大文字小文字の区別なし。\"],\"URmyfc\":[\"詳細\"],\"UX2wV1\":[[\"0\",\"plural\",{\"one\":[\"This credential is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"UXBCwc\":[\"姓\"],\"UY6iPZ\":[\"有効にすると、コントロールノードはこのインスタンスを自動的にピアリングします。無効にすると、インスタンスは関連付けられたピアにのみ接続されます。\"],\"UYD5ld\":[\"そして、起動時のリビジョン更新をクリックします\"],\"UYUgdb\":[\"順序\"],\"U_JUCL\":[\"Red Hat Insights\"],\"Ua-Kc6\":[\"www.json.org\"],\"UbOul8\":[\"次を削除してもよろしいですか:\"],\"UbRKMZ\":[\"保留中\"],\"UbqhuT\":[\"フルノードリソースオブジェクトを取得できませんでした。\"],\"Uc_tSU\":[\"ツールの切り替え\"],\"UgFDh3\":[\"このインベントリーは、現在他のリソースで使用されています。削除してもよろしいですか?\"],\"UirGxE\":[\"エラー\"],\"UlykKR\":[\"第 3\"],\"Uo1S9q\":[\"Azure AD Tenant でサインイン\"],\"UueF8b\":[\"実行環境が存在しないか、削除されています。\"],\"UvGjRK\":[\"有効にすると、この playbook を管理者として実行します。\"],\"UwJJCk\":[\"失敗したホストの再起動\"],\"UxKoFf\":[\"ナビゲーション\"],\"UyZ7HQ\":[\"変更メッセージボディー\"],\"V-7saq\":[[\"pluralizedItemName\"],\" を削除しますか?\"],\"V-rJKF\":[\"Seconds\"],\"V0Xv3_\":[[\"intervalValue\",\"plural\",{\"one\":[\"day\"],\"other\":[\"days\"]}]],\"V0fM4k\":[\"ユーザーアナリティクス\"],\"V1EGGU\":[\"名\"],\"V2-omF\":[[\"0\",\"plural\",{\"one\":[\"最終的な削除が処理されるまで、インベントリーは保留状態になります。\"],\"other\":[\"最終的な削除が処理されるまで、インベントリーは保留状態になります。\"]}]],\"V2RwJr\":[\"リスナーアドレス\"],\"V2q9w9\":[\"If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode.\"],\"V3z83V\":[\"LDAP 3\"],\"V4WsyL\":[\"リンクの追加\"],\"V5RUpn\":[\"受信者リスト\"],\"V7qsYh\":[\"注: 資格情報の順序は、コンテンツの同期と検索の優先順位を設定します。ドラッグを有効にするには、1 つ以上選択してください。\"],\"V9xR6T\":[\"セクションの展開\"],\"VAI2fh\":[\"新規コンテナーグループの作成\"],\"VAcXNz\":[\"水曜\"],\"VEj6_Y\":[\"ワークフローの承認\"],\"VFvVc6\":[\"詳細の編集\"],\"VJUm9p\":[\"現在のページ\"],\"VK2gzi\":[\"playbook の実行時に使用する並列または同時プロセスの数。空の値または 1 未満の値の場合、通常は 5 である Ansible のデフォルトが使用されます。デフォルトのフォーク数は、次を変更することで上書きできます\"],\"VL2WkJ\":[\"最後の \",[\"dayOfWeek\"]],\"VLdRt2\":[\"同期ソースの開始\"],\"VNUs2y\":[\"最大フォーク数\"],\"VSJ6r5\":[\"スケジュールはアクティブです\"],\"VSim_H\":[\"インベントリーソースの削除\"],\"VTDO7X\":[\"イベント詳細モーダル\"],\"VU3Nrn\":[\"不明\"],\"VWL2DK\":[\"GitHub 組織\"],\"VXFjd8\":[\"メトリクス\"],\"VZfXhQ\":[\"ホップノード\"],\"VdcFUD\":[\"使用許諾契約書\"],\"ViDr6F\":[\"新規グループの追加\"],\"VmClsw\":[\"このノードに関連付けられているリソースは、削除されました。\"],\"VmvLj9\":[\"クライアントデバイスの安全性に応じて、Public または Confidential に設定します。\"],\"Vqd-tq\":[\"すべて元に戻すことを確認\"],\"Vqgeac\":[\"Press space or enter to begin dragging,\\n and use the arrow keys to navigate up or down.\\n Press enter to confirm the drag, or any other key to\\n cancel the drag operation.\"],\"Vvbbn2\":[\"ロールを削除できませんでした。\"],\"Vw8l6h\":[\"エラーが発生しました\"],\"VzE_M-\":[\"通知失敗の切り替え\"],\"W-O1E9\":[\"プロジェクトのコピー\"],\"W1iIqa\":[\"インベントリーグループの表示\"],\"W3TNvn\":[\"ユーザーに戻る\"],\"W3pOzF\":[\"このプロジェクトを使用するジョブテンプレートで、ソースコントロールのブランチまたはリビジョンの変更を許可します。\"],\"W6uTJi\":[\"インスタンスを取得できませんでした。\"],\"W7DGsV\":[\"起動者 (ユーザー名)\"],\"W9XAF4\":[\"平日\"],\"W9uQXX\":[\"プロンプト\"],\"WAjFYI\":[\"開始日\"],\"WD8djW\":[\"リンク削除の確認\"],\"WL91Ms\":[\"Delete Groups?\"],\"WPM2RV\":[\"回答タイプ\"],\"WQJduu\":[\"キー選択\"],\"WTN9YX\":[\"アカウントトークン\"],\"WTV15I\":[\"ログインリダイレクトのオーバーライド URL\"],\"WVzGc2\":[\"サブスクリプション\"],\"WX9-kf\":[\"IRC ニック\"],\"Wc6m4J\":[\"取得する refspec (Ansible git モジュールに渡されます)。このパラメーターにより、ブランチフィールド経由で、それ以外の方法では利用できない参照にアクセスできます。\"],\"Wdl2f2\":[\"このフィールドは \",[\"0\"],\" 文字以上でなければなりません\"],\"WgsBEi\":[\"新規スマートインベントリーを作成するために 1 つ以上の検索フィルターを入力してください。\"],\"WhSFGl\":[[\"name\"],\" 別にフィルター\"],\"Wi1pUG\":[[\"numJobsToCancel\",\"plural\",{\"one\":[[\"0\"]],\"other\":[[\"1\"]]}]],\"Wk1rOS\":[\"グラフを利用可能な画面サイズに合わせます\"],\"Wm7XbF\":[\"1 つ以上の認証情報を削除できませんでした。\"],\"WqaDMq\":[\"値を含むフィールド。\"],\"Wy25yg\":[\"Twilio\"],\"X03-eC\":[\"値を入力してください。\"],\"X5V9DW\":[\"下の編集ボタンをクリックして、ノードを再構成します。\"],\"X6d3Zy\":[\"組織を削除できませんでした。\"],\"X97mbf\":[\"ジョブタイプの選択\"],\"XA12d8\":[\"スライス自体のホストに加えて、各ジョブスライスに含めるホスト名のオプションのコンマ区切りリスト。すべてのスライスが依存する localhost などの調整ホストを play が対象とする場合に便利です。名前はインベントリーホストと完全に一致します。グループとパターンはサポートされていません。固定されたホストは、スライスごとに 1 回 play を実行します。\"],\"XBROpk\":[\"ワークフローによって管理または影響を受けるホストのリストをさらに制限するホストパターンを指定します。\"],\"XCCkju\":[\"ノードの編集\"],\"XFRygA\":[\"リモートアーカイブソースコントロールの URL の例には次が含まれます。\"],\"XHxwBV\":[\"選択した日付範囲には、少なくとも 1 つのスケジュールオカレンスが必要です。\"],\"XILg0L\":[\"無効なメールアドレスです\"],\"XJOV1Y\":[\"アクティビティー\"],\"XKp83s\":[\"ソースを含むインベントリーはコピーできません。\"],\"XLMJ7O\":[\"クラウド\"],\"XLpxoj\":[\"メールオプション\"],\"XM-gTv\":[\"設定ファイルの詳細については、Ansible のドキュメントを参照してください。\"],\"XOD7tz\":[\"変更の表示\"],\"XOaZX3\":[\"ページネーション\"],\"XP6TQ-\":[\"指定した場合に、ワークフローを表示すると、リソース名の代わりにこのフィールドがノードに表示されます\"],\"XREJvl\":[\"インベントリソースを構成するために使用される変数。このプラグインの設定方法の詳細については、\"],\"XViLWZ\":[\"障害発生時\"],\"XWDz5f\":[\"簡易キー選択\"],\"X_5TsL\":[\"Survey の切り替え\"],\"XaxYwV\":[\"プロンプト値\"],\"XbIM8f\":[\"在庫ソース合計\"],\"XdyHT-\":[\"インポートされたホスト\"],\"XfmfOA\":[\"実行する間隔\"],\"Xg3aVa\":[\"SSL の使用\"],\"XgTa_2\":[\"The inventory will be in a pending status until the final delete is processed.\"],\"XilEsm\":[\"インスタンスグループ\"],\"Xm7ruy\":[\"5 (WinRM デバッグ)\"],\"XmJfZT\":[\"名前\"],\"XmVvzl\":[\"適用するロールの選択\"],\"XnxCSh\":[\"標準エラー\"],\"XozZ38\":[\"1 つ以上のインベントリーリソースを削除できませんでした。\"],\"Xq9A0U\":[\"不明なプロジェクト\"],\"Xt4N6V\":[\"プロンプト | \",[\"0\"]],\"XtpZSU\":[\"すべてのジョブタイプ\"],\"Xx-ftH\":[\"サブスクリプションで許可されているよりも多くのホストに対して自動化しました。\"],\"XyTWuQ\":[\"トポロジービューが反映されるまでお待ちください...\"],\"XyW2nH\":[[\"0\",\"plural\",{\"one\":[\"以下のグループを削除してもよろしいですか?\"],\"other\":[\"以下のグループを削除してもよろしいですか?\"]}]],\"XzD7xj\":[\"アイテムの選択\"],\"Y1YKad\":[\"詳細の編集\"],\"Y296GK\":[\"ロールを削除できませんでした。\"],\"Y2ml-n\":[\"承認済み - \",[\"0\"],\"。詳細はアクティビティーストリームを参照してください。\"],\"Y5VrmH\":[\"インベントリーの同期に設定されていません。\"],\"Y5vgVF\":[\"正常に拒否されました\"],\"Y5xJ7I\":[\"Playbook 名\"],\"Y60pX3\":[\"建設されたインベントリを追加\"],\"YA4I45\":[\"モジュールの選択\"],\"YFmVSY\":[\"関連付けを解除しますか?\"],\"YJddb4\":[\"インスタンスタイプ\"],\"YLMfol\":[\"新しいロールを受け取るリソースのタイプを選択します。たとえば、一連のユーザーに新しいロールを追加する場合は、ユーザーを選択して次へをクリックしてください。次のステップで特定のリソースを選択できるようになります。\"],\"YM06Nm\":[\"認証情報タイプの編集\"],\"YMLB2b\":[\"承認ノードがタイムアウトの期限切れ時に自動的に承認されるか拒否されるか。\"],\"YMpSlP\":[\"インベントリの同期が最新であると見なす時間(秒単位)。ジョブの実行とコールバック中、タスクシステムは最新の同期のタイムスタンプを評価します。キャッシュタイムアウトよりも古い場合、現在のものとは見なされず、新しいインベントリ同期が実行されます。\"],\"YOOdGq\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 分\"],\"other\":[\"#\",\" 分\"]}]],\"YOh7Aw\":[\"ワークフロージョブ \",[\"currentPosition\"],\"/\",[\"total\"]],\"YP5KRj\":[\"新規 Webhook URL は保存時に生成されます。\"],\"YPDLLX\":[\"実行環境に戻る\"],\"YQqM-5\":[\"実行に使用するコンテナーイメージ。\"],\"Yd45Xn\":[\"プロセッサータイプ別のホスト数\"],\"Yfw7TK\":[\"通知がタイムアウトしました\"],\"YgqgXs\":[[\"intervalValue\",\"plural\",{\"one\":[\"minute\"],\"other\":[\"minutes\"]}]],\"YiQ03p\":[\"スケジュールを削除できませんでした。\"],\"YiUAZm\":[\"<0>注記: このインスタンスが<1>ポリシールールによって管理されている場合、このインスタンスグループに再度関連付けられる可能性があります。\"],\"YlGAPh\":[\"ジョブスライスの固定ホスト\"],\"Ym7-mu\":[\"1 行につき 1 つの Slack チャネル。チャネルにはポンド記号 (#) が\\n 必要です。特定のメッセージへの返信またはスレッドの開始を行うには、親メッセージ Id をチャネルに追加します。親メッセージ Id は 16 桁です。10 桁目の後にドット (.) を手動で挿入する必要があります。例: #destination-channel、1231257890.006423。Slack を参照してください\"],\"YmEWZH\":[\"テンプレートの起動\"],\"YmjTf2\":[\"プロビジョニング失敗\"],\"YoXjSs\":[\"起動時にインベントリーを要求します。\"],\"Yq4Eaf\":[\"このジョブのホストのステータス情報は利用できません。\"],\"YsN-3o\":[\"インベントリソース詳細の表示\"],\"Yt-rBv\":[\"このプロジェクトは現在、他のリソースで使用されています。削除してもよろしいですか?\"],\"YuC9dj\":[\"関連付け\"],\"YxDLmM\":[\"Insights システム ID\"],\"Z17FAa\":[\"不明なインベントリ\"],\"Z1Vtl5\":[\"プロジェクトの同期の取り消しに失敗しました。\"],\"Z25_RC\":[\"入力の選択\"],\"Z2hVSb\":[\"ハイブリッド\"],\"Z40J8D\":[\"プロビジョニングコールバック URL の作成を有効にします。この URL を使用して、ホストは \",[\"brandName\"],\" に接続し、このジョブテンプレートを使用して設定の更新を要求できます。\"],\"Z5HWHd\":[\"オン\"],\"Z7ZXbT\":[\"承認\"],\"Z88yEl\":[\"Greater than or equal to の比較条件\"],\"Z9EFpE\":[\"自動化アナリティクスダッシュボード\"],\"ZAWGCX\":[[\"0\"],\" 秒\"],\"ZEP8tT\":[\"起動\"],\"ZGDCzb\":[\"インスタンスが見つかりません。\"],\"ZJjKDg\":[\"管理ノード\"],\"ZKKnVf\":[\"新規ワークフローテンプレートの作成\"],\"ZL3d6Z\":[\"IRC サーバーアドレス\"],\"ZO4CYH\":[\"実行中のジョブ\"],\"ZOLfb2\":[\"このフィールドを空欄にすることはできません。\"],\"ZWhZbs\":[\"ノードの削除の確認\"],\"ZajTWA\":[\"発信元の電話番号\"],\"Zf6u-6\":[\"説明\"],\"ZfrRb0\":[\"インベントリーを選択するか、または起動プロンプトオプションにチェックを付けてください。\"],\"ZhUwVw\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 週間\"],\"other\":[\"#\",\" 週間\"]}]],\"ZhxwOq\":[\"エラーメッセージボディー\"],\"Zikd-1\":[\"自動化したホストの数がサブスクリプション数を下回っています。\"],\"ZjC8QM\":[\"ホストを削除できませんでした。\"],\"ZjvPb1\":[\"作成者 (ユーザー名)\"],\"Zkh5np\":[\"ピアは \",[\"0\"],\" に更新されます。変更を有効にするには、 \",[\"1\"],\" のインストールバンドルを再度実行してください。\"],\"ZpdX6R\":[\"トークンの削除中にエラーが発生しました\"],\"ZrsGjm\":[\"インベントリー\"],\"ZumtuZ\":[\"テンプレートのコピー\"],\"ZvVF4C\":[\"Survey の質問の削除\"],\"ZwCTcT\":[\"最近の求人リストタブ\"],\"ZwujDQ\":[\"過去1年以内\"],\"_-NKbo\":[\"スケジュールの切り替えに失敗しました。\"],\"_2LfCe\":[\"Survey の質問を並べ替えるには、目的の場所にドラッグアンドドロップします。\"],\"_4gGIX\":[\"クリップボードにコピーする\"],\"_5REdR\":[\"構築されたインベントリプラグインのインプットインベントリを選択します。\"],\"_Fg1cM\":[\"ワークフローのタイムアウトメッセージのボディー\"],\"_ITcnz\":[\"日\"],\"_Ia62Q\":[\"構築されたインベントリの例\"],\"_JN1gB\":[\"タスク数\"],\"_K2CvV\":[\"テンプレート\"],\"_LQZpR\":[[\"intervalValue\",\"plural\",{\"one\":[\"year\"],\"other\":[\"years\"]}]],\"_LVfwJ\":[\"構築された在庫ソース同期エラー\"],\"_M4FeF\":[\"このコマンドを内部で実行する実行環境を選択します。\"],\"_MTBwI\":[\"変更メッセージ\"],\"_MdgrM\":[\"これら 2 つのノードの間に新しいノードを追加します\"],\"_PRaan\":[\"1 つ以上の通知テンプレートを削除できませんでした。\"],\"_Pz_QH\":[\"ポリシーで管理\"],\"_W3ZAw\":[[\"selectedItemsCount\",\"plural\",{\"one\":[\"Click to run a health check on the selected instance.\"],\"other\":[\"Click to run a health check on the selected instances.\"]}]],\"_WBq2_\":[\"拒否済み - \",[\"0\"],\"。詳細はアクティビティーストリームを参照してください。\"],\"_Yq4TU\":[\"このグループで同時に実行されるすべてのジョブ全体で許可するフォークの最大数。\\n ゼロは制限が適用されないことを意味します。\"],\"_ZBhqw\":[\"インベントリーソースの同期の取り消しに失敗しました。\"],\"_bAUGi\":[\"HTTP メソッドの選択\"],\"_bE0AS\":[\"インスタンスの選択\"],\"_cV6Mf\":[\"参照…\"],\"_cq4Aa\":[\"ワークフローの承認が見つかりません。\"],\"_ereyb\":[\"TACACS+\"],\"_gCD76\":[\"インスタンスグループの編集\"],\"_ismew\":[\"アーティファクトキー\"],\"_kYJq6\":[\"データの保持日数\"],\"_khNCh\":[\"ジョブテンプレートのデフォルトの認証情報は、同じタイプのものに置き換える必要があります。続行するには、次のタイプの認証情報を選択してください: \",[\"0\"]],\"_oeZtS\":[\"ホストのポーリング\"],\"_rCRcH\":[\"高度な検索に関するドキュメント\"],\"_vI8Rx\":[\"Delete Group?\"],\"a02Xjc\":[\"IRC サーバーアドレス\"],\"a3AD0M\":[\"ログインリダイレクトの編集の確認\"],\"a5zD9f\":[\"変更\"],\"a6E-_p\":[\"contains で大文字小文字の区別なし。\"],\"a8AgQY\":[\"ホストの詳細の表示\"],\"a8nooQ\":[\"第 4\"],\"a9BTUD\":[\"週末の日\"],\"aBgwis\":[\"範囲\"],\"aLlb3-\":[\"ブーリアン\"],\"aNxqSL\":[\"実行環境の削除\"],\"aQ4XJX\":[\"システムトラッキングファクトを個別に有効化\"],\"aSuBiU\":[\"Microsoft Azure Resource Manager\"],\"aTK0Fh\":[\"曜日\"],\"aUNPq3\":[\"実行ノード\"],\"aVoVcG\":[\"複数選択\"],\"aXBrSq\":[\"Red Hat Virtualization\"],\"a_vlog\":[[\"0\"],\" チップの削除\"],\"adPhRK\":[\"このホストが属するインベントリー。\"],\"adjqlB\":[[\"0\"],\" (削除済み)\"],\"aht2s_\":[\"通知の色\"],\"aiejXq\":[\"リソースタイプの追加\"],\"ajDpGH\":[\"ステータス:\"],\"anfIXl\":[\"ユーザーの詳細\"],\"aqqAbL\":[\"有効化されると、インベントリーは、関連付けられたジョブテンプレートを実行する優先インスタンスグループのリストに、組織インスタンスグループを追加することを阻止します。注記: この設定が有効で空のリストを指定した場合、グローバルインスタンスグループが適用されます。\"],\"ar5AA2\":[\"(詳細情報)\"],\"ataY5Z\":[\"ジョブ削除エラー\"],\"ax6e8j\":[\"組織を選択してからホストフィルターを編集します。\"],\"az8lvo\":[\"オフ\"],\"b1CAkh\":[\"管理ジョブ\"],\"b2Z0Zq\":[\"リンク変更の取り消し\"],\"b433OF\":[\"グループの編集\"],\"b4SLah\":[\"左側のエラーを参照してください\"],\"b9Y4up\":[\"クライアント ID\"],\"bDa_hW\":[\"このインベントリーソースの同期を実行するインスタンスグループを選択します。未設定の場合、同期はインベントリーまたはその組織のインスタンスグループで実行されます。\"],\"bE4zYn\":[\"Receptorが着信接続をリッスンするポートを選択します(例: 27199 )。\"],\"bHXYoC\":[\"HTTP メソッド\"],\"bKR18T\":[\"サブスクリプションマニフェストは、Red Hat サブスクリプションのエクスポートです。サブスクリプションマニフェストを生成するには、<0>access.redhat.com にアクセスしてください。詳細については、<1>ユーザーガイドを参照してください。\"],\"bLt_0J\":[\"ワークフロー\"],\"bPq357\":[\"有効な値\"],\"bQZByw\":[\"コンマで区切らずに、1 行ごとに 1 つのアノテーションタグを指定します。\"],\"bTu5jX\":[\"ユーザー名 / パスワード\"],\"bWr6j5\":[\"このフィールドは \",[\"min\"],\" 文字以上でなければなりません\"],\"bY8C86\":[\"すべてのユーザーを表示します。\"],\"bYXbel\":[\"ワークフロージョブテンプレートの Wbhook キー\"],\"baP8gx\":[\"4 (接続デバッグ)\"],\"baqrhc\":[\"HTTP ヘッダー\"],\"bbJ-VR\":[\"ズームアウト\"],\"bcyJXs\":[\"項目 OK\"],\"bd1Kuw\":[\"アイコン URL\"],\"bf7UKi\":[\"更新キャッシュのタイムアウト\"],\"bfgr_e\":[\"質問\"],\"bgjTnp\":[\"0 (正常)\"],\"bgq1rW\":[\"検索送信ボタン\"],\"bhxnLH\":[\"次のグループを削除する権限がありません: \",[\"itemsUnableToDelete\"]],\"bkPO0d\":[\"通知タイプ\"],\"bpECfE\":[\"リンク削除の取り消し\"],\"bpnj1H\":[\"このコンテンツの読み込み中にエラーが発生しました。ページを再読み込みしてください。\"],\"bwRvnp\":[\"アクション\"],\"bx2rrL\":[\"スマートインベントリー\"],\"bxaVlf\":[\"新規認証情報タイプの作成\"],\"byXCTu\":[\"実行回数\"],\"bznJUg\":[\"このワークフローで管理するホストを含むインベントリーを選択します。\"],\"bzv8Dv\":[\"削除エラー\"],\"c-xCSz\":[\"True\"],\"c0n4p3\":[\"ファクトストレージ\"],\"c1Rsz1\":[\"ワークフロー承認の詳細の表示\"],\"c3XJ18\":[\"ヘルプ\"],\"c4kHK7\":[\"サブスクリプションモーダルを閉じる\"],\"c6IFRs\":[\"サービスアカウント JSON ファイル\"],\"c6u6gk\":[\"この組織を実行するインスタンスグループを選択します。\"],\"c7-Adk\":[\"インベントリーソースを同期できませんでした。\"],\"c8HyJq\":[\"このインベントリーを実行するインスタンスグループを選択します。\"],\"c8sV0t\":[\"この機能は非推奨となり、今後のリリースで削除されます。\"],\"c9V3Yo\":[\"ホストの失敗\"],\"c9iw51\":[\"実行中のジョブ\"],\"c9pF61\":[\"クライアント識別子\"],\"cFC8w7\":[\"このインベントリーソースは、現在それに依存している他のリソースで使用されています。削除してもよろしいですか?\"],\"cFCKYZ\":[\"拒否\"],\"cFOXv9\":[\"汎用 OIDC\"],\"cGRiaP\":[\"イベント詳細\"],\"cIdUma\":[\"\\n \",[\"project_base_dir\"],\" に利用可能な playbook ディレクトリーがありません。\\n そのディレクトリーが空であるか、すべての内容が既に\\n 他のプロジェクトに割り当てられています。そこに新しいディレクトリーを作成し、\\n playbook ファイルが「awx」システムユーザーによって読み取り可能であることを確認するか、\\n 上記のソースコントロールタイプオプションを使用して \",[\"brandName\"],\" が\\n ソースコントロールから直接 playbook を取得するようにしてください。\"],\"cNsIJf\":[\"変更済み\"],\"cPTnDL\":[\"プロジェクトの同期\"],\"cQIQa2\":[\"グループの選択\"],\"cQlPDN\":[\"読み込み\"],\"cUKLzq\":[\"順序の編集\"],\"cYir0h\":[\"オプションの選択\"],\"c_PGsA\":[\"ワークフロージョブの詳細\"],\"cbSPfq\":[\"このワークフローはすでに処理されています\"],\"ccA_Bz\":[\"変数名として推奨される形式は、小文字で\\n アンダースコア区切りです (例: foo_bar、user_id、host_name\\n など)。スペースを含む変数名は使用できません。\"],\"cdm6_X\":[\"使用済み容量\"],\"chbm2W\":[\"インスタンスフィルター\"],\"ci3mwY\":[\"このフィールドを空欄にすることはできません\"],\"cit9TY\":[\"親ノードが set_stats を介して生成するアーティファクトの名前。リンクは、親ジョブが選択された結果に一致し、条件が真の場合にのみたどられます。キーが見つからない場合は一致しません。\"],\"cj1KTQ\":[\"すべてのインベントリーを表示します。\"],\"cjJXKx\":[\"ホストの非同期失敗\"],\"ckH3fT\":[\"準備\"],\"ckdiAB\":[\"通知の削除\"],\"cmWTxn\":[\"Less than or equal to の比較条件\"],\"cnGeoo\":[\"削除\"],\"cnnWD0\":[\"By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>\",[\"0\"],\". Uncheck the following boxes to disable this feature.\"],\"ct_Puj\":[\"このフィールドは、指定された認証情報を使用して外部のシークレット管理システムから取得されます。\"],\"cucDBz\":[\"コンテキストテンプレート\"],\"cucG_7\":[\"利用可能なYAMLがありません\"],\"cxjfgY\":[\"ホップノードでは可用性をチェックできません。\"],\"cy3yJa\":[\"確立済み\"],\"d-F6q9\":[\"作成済み\"],\"d-zGjA\":[\"このアクションにより、以下が削除されます。\"],\"d1BVnY\":[\"A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>\",[\"0\"],\".\"],\"d5zxa4\":[\"ローカル\"],\"d6in1T\":[\"このジョブに管理させるホストが含まれるインベントリーを選択します。\"],\"d73flf\":[\"アラートモーダル\"],\"d75lEw\":[\"タイプの設定\"],\"d7VUIS\":[\"ノード \",[\"nodeName\"],\" の削除\"],\"d8B-tr\":[\"ジョブステータスのグラフタブ\"],\"dAZObA\":[\"リダイレクト URI\"],\"dBNZkl\":[\"スマートインベントリーホストの詳細の表示\"],\"dCcO-F\":[\"構成を取得できませんでした。\"],\"dELxuP\":[\"インベントリーが見つかりません。\"],\"dEgA5A\":[\"取り消し\"],\"dH6aQY\":[\"Azure AD Tenant\"],\"dIb9tv\":[\"すべてのアプリケーションを表示します。\"],\"dJcvVX\":[\"スマートホストフィルター\"],\"dNAHKF\":[\"ジョブスライス\"],\"dOjocz\":[\"収束 (コンバージェンス) 選択\"],\"dPGRd8\":[\"有効にすると、サポートされている場合に Ansible タスクによって行われた変更を表示します。これは Ansible の --diff モードと同等です。\"],\"dPY1x1\":[\"(詳細情報)\"],\"dQFAgv\":[\"このプロジェクトは更新する必要があります\"],\"dQjRO3\":[\"同期プロセスの開始\"],\"dbWo0h\":[\"Google でサインイン\"],\"dcGoCm\":[\"インベントリーファイル\"],\"ddIcfH\":[\"最後のページに移動\"],\"dfWFox\":[\"ホスト数\"],\"dk7qNl\":[\"コントロールノード\"],\"dkGxGj\":[\"Subversion\"],\"dlHFy7\":[\"1 つ以上の実行環境を削除できませんでした。\"],\"dnCwNB\":[\"クリップボードへのコピーに成功しました!\"],\"dov9kY\":[\"このフィールドは数値で、\",[\"0\"],\" から \",[\"1\"],\" までの値である必要があります\"],\"dqxQzB\":[\"辞典\"],\"dzQfDY\":[\"10 月\"],\"e0NrBM\":[\"プロジェクト\"],\"e3pQqT\":[\"通知タイプの選択\"],\"e4GHWP\":[\"プル\"],\"e5CMOi\":[\"認証情報タイプが挿入できる値を指定する環境変数または追加変数。\"],\"e5VbKq\":[\"ワークフロージョブテンプレート\"],\"e6BtDv\":[\"<0>\",[\"0\"],\"<1>\",[\"1\"],\"\"],\"e70-_3\":[\"凡例の表示/非表示\"],\"e8GyQg\":[\"メトリクス\"],\"e8U63Z\":[\"プッシュされた参照がこのパターンに一致する場合にのみプロジェクトを同期します (例: refs/heads/main または refs/heads/release-*)。任意のプッシュまたはタグイベントで同期するには空白のままにします。\"],\"e91aLH\":[\"すべての認証情報タイプの表示\"],\"e9k5zp\":[\"このリストに入力するには、スケジュールを追加してください。スケジュールは、テンプレート、プロジェクト、またはインベントリソースに追加できます。\"],\"eAR1n4\":[\"関連する検索タイプの先行入力\"],\"eD_0Fo\":[\"1 つ以上のチームを削除できませんでした。\"],\"eDjsWq\":[\"新規通知テンプレートの作成\"],\"eGkahQ\":[\"ジョブテンプレートの削除\"],\"eHx-29\":[\"ソース詳細\"],\"ePK91l\":[\"編集\"],\"ePS9As\":[\"RADIUS 設定\"],\"eQkgKV\":[\"インストール済み\"],\"eRV9Z3\":[\"タイムアウトが指定されていません\"],\"eRlz2Q\":[\"送信先 SMS 番号\"],\"eSXF_i\":[\"アプリケーションを削除できませんでした。\"],\"eTsJYJ\":[\"説明\"],\"eVJ2lo\":[\"浮動\"],\"eXOp7I\":[\"インスタンスを削除する権限がありません: \",[\"itemsUnableToremove\"]],\"eXWuGz\":[\"最近のテンプレートリストタブ\"],\"eYJ4TK\":[\"構築されたインベントリが見つかりません。\"],\"eeke40\":[\"自動化アナリティクス\"],\"ekUnNJ\":[\"タグの選択\"],\"el9nUc\":[\"スケジュールは非アクティブです\"],\"emqNXf\":[\"Playbook チェック\"],\"eqiT7d\":[\"このインスタンスがメッシュトポロジー内で果たすロールを設定します。デフォルトは \\\"execution\\\" です。\"],\"espHeZ\":[\"インスタンスグループフォールバックの防止: 有効にすると、インベントリーは、関連付けられたジョブテンプレートを実行する優先インスタンスグループのリストに組織インスタンスグループを追加することを防ぎます。\"],\"etQEqZ\":[\"このリンクを削除すると、ブランチの残りの部分が孤立し、起動直後に実行します。\"],\"ewSXyG\":[[\"pluralizedItemName\"],\" をソフト削除しますか?\"],\"f-fQK9\":[\"Grafana API キー\"],\"f2o-xB\":[\"取り消しの確認\"],\"f6Hub0\":[\"並び替え\"],\"f9yJNM\":[\"等しい\"],\"fCZSgU\":[\"すべてのインスタンスグループの表示\"],\"fDzxi_\":[\"保存せずに終了\"],\"fE2kOY\":[\"日付演算子の選択\"],\"fGEOCn\":[\"ジョブステータス\"],\"fGLpQj\":[\"ソースコントロールブランチ/タグ/コミット\"],\"fGQ9Ug\":[\"このジョブの実行対象となるノードにアクセスするための認証情報を選択します。各タイプにつき 1 つの認証情報のみを選択できます。マシン認証情報 (SSH) の場合、認証情報を選択せずに「起動時に入力を求める」をオンにすると、実行時にマシン認証情報を選択する必要があります。認証情報を選択して「起動時に入力を求める」をオンにすると、選択した認証情報が実行時に更新可能なデフォルト値になります。\"],\"fJ9xam\":[\"インスタンスを有効にする\"],\"fKew5B\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"ジョブをキャンセル\"],\"other\":[\"ジョブをキャンセルする\"]}]],\"fL7WXr\":[\"アプリケーション\"],\"fMUEsk\":[[\"0\"],\" 日\"],\"fMulwN\":[\"プロジェクトリビジョンの更新\"],\"fOAyP5\":[\"テキスト入力の検索\"],\"fODqV4\":[\"値が見つかりませんでした。有効な値を入力または選択してください。\"],\"fQCM-p\":[\"組織の詳細の表示\"],\"fQGOXc\":[\"エラー!\"],\"fR8DDt\":[\"すべてのノードの削除の確認\"],\"fVjyJ4\":[\"関連付けの解除の確認\"],\"f_Xpp2\":[\"このアクションにより、以下の関連付けが解除されます。\"],\"fcTDCh\":[\"以下に Red Hat または Red Hat Satellite の認証情報を\\n 入力すると、利用可能なサブスクリプションのリストから選択できます。\\n 使用する認証情報は、更新または拡張されたサブスクリプションを\\n 取得する際に、今後の使用のために保存されます。\"],\"ff_JYN\":[\"ネストされたグループ名でフィルタリング\"],\"fgrmWn\":[\"起動時に差分モードを要求します。\"],\"fhFmMp\":[\"クライアント識別子\"],\"fjX9i5\":[\"スマートインベントリーは見つかりません。\"],\"fk1WEw\":[\"暗号化\"],\"fld-O4\":[\"すべてのジョブ\"],\"fnbZWe\":[\"(任意) ステータス更新を webhook サービスに送り返すために使用する認証情報を選択します。\"],\"foItBN\":[\"週末\"],\"fp4RS1\":[\"コンテンツの読み込みが進行中\"],\"fpMgHS\":[\"月\"],\"fqSfXY\":[\"置換\"],\"fqmP_m\":[\"ホストに到達できません\"],\"fthJP1\":[\"webhook サービスは、この URL に POST リクエストを行うことで、このワークフロージョブテンプレートでジョブを起動できます。\"],\"fwX7gC\":[\"VMware vCenter\"],\"g4o5Lr\":[\"詳細\"],\"g6ekO4\":[\"ホストの切り替えに失敗しました。\"],\"g7CZ-8\":[\"GitHub Enterprise 組織でサインイン\"],\"g9d3sF\":[\"開始メッセージのボディー\"],\"gALXcv\":[\"このノードの削除\"],\"gBnBJa\":[\"ソースワークフローのジョブ\"],\"gDx5MG\":[\"リンクの編集\"],\"gIGcbR\":[\"このグループで同時に実行するジョブの最大数。ゼロは制限が適用されないことを意味します。\"],\"gJccsJ\":[\"ワークフロー承認メッセージ\"],\"gK06zh\":[\"新規ジョブテンプレートの追加\"],\"gM3pS9\":[\"実行環境\"],\"gN3aF4\":[\"LDAP5\"],\"gSVH9P\":[\"すべてのソースの同期\"],\"gUaMtt\":[\"タイムアウト時\"],\"gVYePj\":[\"新規チームの作成\"],\"gWlcwd\":[\"最終ジョブステータス\"],\"gYWK-5\":[\"ユーザーインターフェース設定の表示\"],\"gZXc5U\":[\"ワークフローが続行される前に承認する必要がある個別ユーザーの数。1 回の拒否で常にノードが拒否されます。\"],\"gZaMqy\":[\"GitHub チームでサインイン\"],\"gZkstf\":[\"有効にすると、収集されたファクトが保存され、ホストレベルで表示できるようになります。ファクトは永続化され、実行時にファクトキャッシュに注入されます。\"],\"gcFnpl\":[\"ジョブステータス\"],\"geTfDb\":[\"ジョブの詳細の表示\"],\"ged_ZE\":[\"オラグナイゼーション\"],\"gezukD\":[\"取り消すジョブを選択してください\"],\"gfyddN\":[\".zip ファイルをアップロードする\"],\"gh06VD\":[\"出力\"],\"ghJsq8\":[\"最初にスクロール\"],\"gmB6oO\":[\"スケジュール\"],\"gmBQqV\":[\"プロジェクトの更新\"],\"gnveFZ\":[\"標準エラータブ\"],\"goVc-x\":[\"認証情報プラグイン設定の編集\"],\"go_DGX\":[\"チームロールの追加\"],\"gpKdxJ\":[\"削除する質問の選択\"],\"gpmbqk\":[\"変数\"],\"gpnvle\":[\"削除エラー\"],\"gsj32g\":[\"プロジェクトの同期の取り消し\"],\"gtB4z-\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 時間\"],\"other\":[\"#\",\" 時間\"]}]],\"gwKtbI\":[\"ドキュメンテーションと\"],\"h25sKn\":[\"サブスクリプション管理\"],\"h51QFW\":[\"YAML\"],\"h8DugX\":[\"ラベル\"],\"hAjDQy\":[\"状態の選択\"],\"hBHRCF\":[\"新しいインスタンスがオンラインになったときに、このグループに自動的に\\n 割り当てられるインスタンスの最小数。\"],\"hEBjSg\":[\"Red Hat Satellite 6\"],\"hEnNCI\":[\"Ansible ファクトに関連する現在の検索を削除して、このキーを使用して別の検索ができるようにします。\"],\"hG89Ed\":[\"イメージ\"],\"hHKoQD\":[\"ピアアドレスの選択\"],\"hLDu5N\":[\"アプリケーションの編集\"],\"hNudM0\":[\"このフィールドに値を設定します\"],\"hPa_zN\":[\"組織 (名前)\"],\"hQ0dMQ\":[\"新規ホストの追加\"],\"hQRttt\":[\"送信\"],\"hVPa4O\":[\"オプションを選択してください\"],\"hX8KyU\":[\"このジョブは失敗し、出力がありません。\"],\"hXDKWN\":[\"頻度の詳細\"],\"hXzOVo\":[\"次へ\"],\"hYH0cE\":[\"このジョブを取り消す要求を送信してよろしいですか?\"],\"hYgDIe\":[\"作成\"],\"hZ6znB\":[\"ポート\"],\"hZke6f\":[\"ローカル認証を無効にしてもよろしいですか? これを行うと、ユーザーのログイン機能と、システム管理者がこの変更を元に戻す機能に影響を与える可能性があります。\"],\"hc_ufD\":[\"ジョブタグ\"],\"hdyeZ0\":[\"ジョブの削除\"],\"he3ygx\":[\"コピー\"],\"heqHpI\":[\"プロジェクトのベースパス\"],\"hg6l4j\":[\"3 月\"],\"hgJ0FN\":[\"検索を実行して、ホストフィルターを定義します。\"],\"hgr8eo\":[\"項目\"],\"hgvbYY\":[\"9 月\"],\"hhzh14\":[\"このアカウントに関連するライセンスを見つけることができませんでした。\"],\"hi1n6B\":[[\"brandName\"],\" 内のジョブを含む設定の更新\"],\"hiDMCa\":[\"プロビジョニング\"],\"hjsbgA\":[\"追加変数\"],\"hjwN_s\":[\"リソース名\"],\"hlbQEq\":[\"コンテンツ署名検証の認証情報\"],\"hmEecN\":[\"管理ジョブ\"],\"hmjNLv\":[\"優先テーマ\"],\"hty0d5\":[\"月曜\"],\"hvs-Js\":[\"アプリケーション情報\"],\"i0VMLn\":[\"ワークフロー拒否メッセージ\"],\"i2izXk\":[\"スケジュールにルールがありません\"],\"i4_LY_\":[\"書き込み\"],\"i9sC0B\":[\"チームパーミッションの追加\"],\"iASwqf\":[\"This action will cancel the following job:\"],\"iCFhEl\":[\"発信元の電話番号\"],\"iDNBZe\":[\"通知\"],\"iDWfOR\":[\"1つ以上のワークフロー承認を承認できませんでした。\"],\"iDjyID\":[\"認証情報の詳細の表示\"],\"iE1s1P\":[\"ワークフローの起動\"],\"iEUzMn\":[\"システム\"],\"iH8pgl\":[\"戻る\"],\"iI4bLJ\":[\"前回のログイン\"],\"iIVceM\":[\"コピーエラー\"],\"iJWOeZ\":[\"JSON は利用できません\"],\"iJiCFw\":[\"グループの詳細\"],\"iLO3nG\":[\"再生回数\"],\"iMaC2H\":[\"インスタンスグループ\"],\"iPp22p\":[\"このスケジュールは UI でサポートされていない複雑なルールを\\n 使用しています。このスケジュールを管理するには API を使用してください。\"],\"iQdYL_\":[\"スマートインベントリーの追加\"],\"iRWxmA\":[\"SSL 検証の無効化\"],\"iTylMl\":[\"テンプレート\"],\"iWKCzl\":[\"プロジェクトの基本パスで見つかったディレクトリーのリストから選択します。基本パスと playbook ディレクトリーを合わせて、playbook を見つけるために使用される完全なパスが提供されます。\"],\"iXmHtI\":[\"ジョブタイプの選択\"],\"iZBwau\":[\"このステップにはエラーが含まれています\"],\"i_CDGy\":[\"ブランチの上書き許可\"],\"i_Kv21\":[\"新規ソースの作成\"],\"ifckL-\":[\"行の選択\"],\"ifdViT\":[\"インベントリーの詳細の表示\"],\"ig0q8s\":[\"このインベントリーが、このワークフロー (\",[\"0\"],\") 内の、インベントリーをプロンプトするすべてのワークフローノードに適用されます。\"],\"inP0J5\":[\"サブスクリプションの詳細\"],\"isRobC\":[\"新規\"],\"itlxml\":[\"管理ジョブ\"],\"ittbfT\":[\"ansible_facts による検索には特別な構文が必要です。詳細は、以下を参照してください。\"],\"itu2NQ\":[\"リンク状態のタイプ\"],\"j1a5f1\":[\"ホストの編集\"],\"j6gqC6\":[\"ジョブ実行で使用するブランチ。空欄の場合はプロジェクトのデフォルトが使用されます。プロジェクトの allow_override フィールドが true に設定されている場合にのみ許可されます。\"],\"j7zAEo\":[\"ワークフローのステータス\"],\"j8QfHv\":[\"ホストの編集\"],\"jAxdt7\":[\"削除のキャンセル\"],\"jBGh4u\":[\"ネストされたグループのインベントリ定義:\"],\"jCVu9g\":[\"Cancel selected job\"],\"jEJtMA\":[\"保留中のワークフロー承認\"],\"jEw0Mr\":[\"有効な URL を入力してください\"],\"jFaaUJ\":[\"カノニカル\"],\"jGUu_G\":[\"必要な承認\"],\"jIaeJK\":[\"Survey\"],\"jJdwCB\":[\"戻す\"],\"jKibyt\":[\"ズームのリセット\"],\"jMyq_x\":[\"Workflow Job 1/\",[\"0\"]],\"jaUa4e\":[\"このデータは、Tower ソフトウェアの将来の\\n リリースを強化し、顧客体験と成功の\\n 合理化を支援するために使用されます。\"],\"jc86YO\":[\"起動時に制限を要求します。\"],\"ji-8F7\":[\"この認証情報は、現在他のリソースで使用されています。削除してもよろしいですか?\"],\"jiE6Vn\":[\"組織\"],\"jifz9m\":[\"なし (1回実行)\"],\"jkQOCm\":[\"例外の追加\"],\"jljuYN\":[\"webhook リクエストを受け入れるサービス。\"],\"jluR-N\":[\"警告: \",[\"selectedValue\"],\" は \",[\"0\"],\" へのリンクであり、そのように保存されます。\"],\"joAQQS\":[\"The inventories will be in a pending status until the final delete is processed.\"],\"jqVo_k\":[\"ここ。\"],\"jqzUyM\":[\"利用不可\"],\"jrkyDn\":[\"プレイの開始\"],\"jrsFB3\":[\"出力タブ\"],\"jsz-PY\":[\"不明な終了日\"],\"jwmkq1\":[\"マシンの認証情報\"],\"jzD-D6\":[\"スキップタグは、大規模な playbook があり、play またはタスクの特定の部分をスキップしたい場合に便利です。複数のタグを区切るにはカンマを使用します。タグの使用方法の詳細については、ドキュメントを参照してください。\"],\"k020kO\":[\"アクティビティーストリーム\"],\"k2dzu3\":[\"有効期限 (UTC)\"],\"k30JvV\":[\"選択したカテゴリー\"],\"k5nHqi\":[\"このジョブテンプレートの起動時に使用される実行環境です。解決された実行環境は、このジョブテンプレートに別の実行環境を明示的に割り当てることで上書きできます。\"],\"k6OGfu\":[\"Select the Ansible collection providing the inventory plugin used to sync from vCenter. The community.vmware collection is deprecated in favor of the newer vmware.vmware collection. The selection is saved as the \\\"plugin\\\" key in the source variables.\"],\"kALwhk\":[\"seconds\"],\"kDWprA\":[\"これらの引数は、指定されたモジュールで使用されます。\"],\"kEhyki\":[\"値で終了するフィールド。\"],\"kLja4m\":[\"開始ユーザー:\"],\"kLk5bG\":[\"開始メッセージ\"],\"kNUkGV\":[\"ルックアップタイプ\"],\"kNfXib\":[\"モジュール名\"],\"kODvZJ\":[\"名\"],\"kOVkPY\":[\"インスタンスの切り替え\"],\"kP-3Hw\":[\"インベントリーに戻る\"],\"kQerRU\":[\"このフィールドにスペースを含めることはできません\"],\"kX-GZH\":[\"ジョブの再起動\"],\"kXzl6Z\":[\"ソース変数\"],\"kYDvK4\":[\"組み込みファイル\"],\"kah1PX\":[\"次の場所でYAMLの例を表示します\"],\"kaux7o\":[\"リモートインベントリーソースからのローカルグループおよびホストを上書きする\"],\"kgtWJ0\":[\"このジョブテンプレートを実行するインスタンスグループを選択します。\"],\"kiMHN-\":[\"システム監査者\"],\"kjrq_8\":[\"詳細情報\"],\"kkDQ8m\":[\"木曜\"],\"kkc8HD\":[[\"brandName\"],\" アプリケーションの簡単ログインの有効化\"],\"kpRn7y\":[\"質問の削除\"],\"kpnWnY\":[\"SCMリビジョンが変更されるプロジェクトの更新のたびに、ジョブタスクを実行する前に、選択したソースからインベントリを更新します。これは、Ansibleインベントリ.iniファイル形式などの静的コンテンツを対象としています。\"],\"ks-HYT\":[\"ユーザー権限の追加\"],\"ks71ra\":[\"例外\"],\"kt8V8M\":[\"ワークフローのブランチを選択します。\"],\"ktPOqw\":[\"参照:\"],\"kuIbuV\":[\"ヘルスチェックは、実行ノードでのみ実行できます。\"],\"ku__5b\":[\"第 2\"],\"kyAi7k\":[\"インスタンス\"],\"kyHUFI\":[\"Vault パスワード | \",[\"credId\"]],\"kyfr2I\":[\"チェックを入れると、以前は外部ソースに存在していたが現在削除されているホストとグループがインベントリーから削除されます。インベントリーソースによって管理されていなかったホストとグループは、次の手動で作成されたグループに昇格されます。昇格先の手動で作成されたグループがない場合は、インベントリーのデフォルトの「all」グループに残されます。\"],\"kz7G1W\":[[\"1\"],\" から \",[\"0\"],\" のアクセスを削除しますか? これを行うと、チームのすべてのメンバーに影響します。\"],\"l4MzBY\":[[\"update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" 秒\"],\"other\":[\"#\",\" 秒\"]}]],\"l4k9lc\":[\"最初のノード\"],\"l5XUoS\":[\"Webhook の認証情報\"],\"l75CjT\":[\"はい\"],\"l9ZmWD\":[[\"scm_update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" 秒\"],\"other\":[\"#\",\" 秒\"]}]],\"lCF0wC\":[\"更新\"],\"lJFsGr\":[\"新規インスタンスグループの作成\"],\"lKxoCA\":[\"ジョブイベントの拡張\"],\"lM9cbX\":[\"ホストがグループの子のメンバーでもある場合、関連付けを解除した後もリストにグループが表示されることがあります。このリストには、ホストが直接的および間接的に関連付けられているすべてのグループが表示されます。\"],\"lURfHJ\":[\"セクションを折りたたむ\"],\"lWkKSO\":[\"分\"],\"lWmv3p\":[\"インベントリーソース\"],\"lYDyXS\":[\"スマートインベントリー\"],\"l_jRvf\":[\"Playbook の完了\"],\"lfoFSg\":[\"ホストの削除\"],\"lgm7y2\":[\"編集\"],\"lgphOX\":[\"期待値\"],\"lhgU4l\":[\"テンプレートが見つかりません。\"],\"lhkaAC\":[\"トライアル\"],\"ljGeYw\":[\"標準ユーザー\"],\"lk5WJ7\":[\"host-name-\",[\"0\"]],\"lkgIYt\":[\"Pagerduty\"],\"lo-rJO\":[\"パンダウン\"],\"ltvmAF\":[\"アプリケーションが見つかりません。\"],\"lu2qW5\":[\"任意\"],\"lucaxq\":[\"ログアグリゲータホストとログアグリゲータタイプを指定しないと、ログアグリゲータを有効にできません。\"],\"luxcrf\":[[\"label\"],\" の詳細情報\"],\"lyjq5X\":[\"Slack\"],\"m-eV2_\":[\"コンテナーグループが見つかりません。\"],\"m16xKo\":[\"追加\"],\"m1tKEz\":[\"システム管理者は、すべてのリソースに無制限にアクセスできます。\"],\"m2ErDa\":[\"失敗\"],\"m3k6kn\":[\"構築された在庫ソースの同期をキャンセルできませんでした\"],\"m5MOUX\":[\"ホストに戻る\"],\"mGJIOu\":[\"この構築済みインベントリー入力は\\n 両方のカテゴリーのグループを作成し、\\n 制限 (ホストパターン) を使用して、それら 2 つの\\n グループの共通部分にあるホストのみを返します。\"],\"mNBZ1R\":[\"注記: このフィールドは、リモート名が「origin」であることを前提としています。\"],\"mOFgdC\":[\"最大\"],\"mPiYpP\":[\"ノード状態のタイプ\"],\"mSv_7k\":[\"3年\"],\"mXRKES\":[\"LDAP4\"],\"mXfNlE\":[\"このスケジュールには、必要な Survey 値がありません\"],\"mYGY3B\":[\"日付\"],\"mZiQNk\":[\"権限昇格: 有効にすると、この playbook を管理者として実行します。\"],\"m_tELA\":[\"削除をキャンセルする\"],\"ma7cO9\":[\"グループ \",[\"0\"],\" を削除できませんでした。\"],\"mahPLs\":[\"権限昇格のパスワード\"],\"mcGG2z\":[[\"minutes\"],\" 分 \",[\"seconds\"],\" 秒\"],\"mdNruY\":[\"API トークン\"],\"mgJ1oe\":[\"削除の確認\"],\"mgjN5u\":[\"インスタンスグループへのインスタンスの関連付けを解除しますか?\"],\"mhg7Av\":[\"アドホックコマンドの実行\"],\"mi9ffh\":[\"ホストの詳細\"],\"mk4anB\":[\"ブラウザのデフォルト\"],\"mlDUq3\":[\"変更者 (ユーザー名)\"],\"mnm1rs\":[\"GitHub のデフォルト\"],\"moZ0VP\":[\"同期の状態\"],\"momgZ_\":[\"ワークフロージョブテンプレートの名前。\"],\"mqAOoN\":[\"Playbook ディレクトリーの選択\"],\"n-37ya\":[\"ローカル認証の無効化の確認\"],\"n-LISx\":[\"ワークフローの保存中にエラーが発生しました。\"],\"n-ZioH\":[\"更新されたプロジェクトの取得エラー\"],\"n-qmM7\":[\"JSON 形式のサービスアカウントキーを選択して、次のフィールドに自動入力します。\"],\"n12Go4\":[\"関連グループの読み込みに失敗しました。\"],\"n60kiJ\":[\"*このフィールドは、指定された認証情報を使用して外部のシークレット管理システムから取得されます。\"],\"n6mYYY\":[\"ワークフローのタイムアウトメッセージ\"],\"n9Idrk\":[\"(最初の 10 件に制限)\"],\"n9lz4A\":[\"失敗したジョブ\"],\"nBAIS_\":[\"イベント詳細の表示\"],\"nC35Na\":[\"Are you sure you want delete the group below?\"],\"nCU-1E\":[\"プロビジョニングコールバック URL の作成を\\n 有効にします。この URL を使用して、ホストは \",[\"brandName\"],\" に\\n 接続し、このジョブテンプレートを使用して\\n 設定の更新を要求できます\"],\"nCY9IL\":[\"ホストがスキップされました\"],\"nDjIzD\":[\"プロジェクトの詳細の表示\"],\"nGbNEN\":[\"プロジェクトを最新と見なす時間 (秒単位)。ジョブの実行およびコールバック中に、タスクシステムは最新のプロジェクト更新のタイムスタンプを評価します。キャッシュタイムアウトよりも古い場合は最新とは見なされず、新しいプロジェクト更新が実行されます。\"],\"nI54lc\":[\"プロジェクトを削除してから同期する\"],\"nJPBvA\":[\"ファイル、ディレクトリー、またはスクリプト\"],\"nJTOTZ\":[\"この組織内のジョブに使用される実行環境。これは、実行環境がプロジェクト、ジョブテンプレート、またはワークフローレベルで明示的に割り当てられていない場合にフォールバックとして使用されます。\"],\"nLGsp4\":[\"このワークフロージョブテンプレートのアンケートを有効にします。\"],\"nMiE53\":[\"有効な変数\"],\"nOhz3x\":[\"ログアウト\"],\"nPH1Cr\":[\"これらの実行環境は、それらに依存する他のリソースによって使用され得る。本当に削除してもよろしいですか?\"],\"nQOwDS\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"dayOfWeek\"]],\"4\":[\"The fourth \",[\"dayOfWeek\"]],\"5\":[\"The fifth \",[\"dayOfWeek\"]],\"one\":[\"The first \",[\"dayOfWeek\"]],\"two\":[\"The second \",[\"dayOfWeek\"]]}]],\"nRXCOn\":[\"失敗したホスト数\"],\"nSTT11\":[\"再起動元:\"],\"nTENWI\":[\"サブスクリプション管理へ戻る\"],\"nU16mp\":[\"キャッシュタイムアウト\"],\"nZPX7r\":[\"警告: 変更が保存されていません\"],\"nZW6P0\":[\"ローカルタイムゾーン\"],\"nZYB4j\":[\"ステータス情報はありません\"],\"nZYxse\":[\"ホストのグループとの関連付けを解除しますか?\"],\"n_qDNz\":[\"Switch to dark mode\"],\"naCW6Z\":[\"4 月\"],\"ncxIQL\":[\"1 つ以上のインスタンスの関連付けを解除できませんでした。\"],\"neiOWk\":[\"構築されたインベントリ文書をここで表示\"],\"nfnm9D\":[\"組織名\"],\"ng00aZ\":[\"ホストフィルター\"],\"nhxAdQ\":[\"キーワード\"],\"nlsWzF\":[\"Survey の質問を追加してください。\"],\"nnY7VU\":[\"Pagerduty サブドメイン\"],\"noGZlf\":[\"キャッシュのタイムアウト (秒)\"],\"npGo-z\":[[\"label\"],\" でサインイン\"],\"nuh_Wq\":[\"Webhook URL\"],\"nvUq8j\":[\"1 (詳細)\"],\"nzozOC\":[\"ユーザーの削除\"],\"nzr1qE\":[\"ファイルのアップロードが拒否されました。単一の .json ファイルを選択してください。\"],\"o-JPE2\":[\"Survey の質問は見つかりません。\"],\"o0RwAq\":[\"GitHub Enterprise でサインイン\"],\"o0x5-R\":[\"このフィールドの値の選択\"],\"o4NRE0\":[\"詳細な検索値の入力\"],\"o5J6dR\":[\"このノードを実行する条件を指定\"],\"o9R2tO\":[\"SSL 接続\"],\"oABS9f\":[\"このフィールドに値を入力するか、起動プロンプトを表示するオプションを選択します。\"],\"oB5EwG\":[\"外部シークレット管理システム\"],\"oBmCtD\":[\"Are you sure you want delete the groups below?\"],\"oC5JSb\":[\"更新されたプロジェクトデータの取得に失敗しました。\"],\"oCKCYp\":[\"通知が正常に送信されました\"],\"oEijQ7\":[\"startswith で大文字小文字の区別なし。\"],\"oFtmtl\":[\"Select the inventory containing the hosts\\n you want this job to manage.\"],\"oGKq12\":[\"2つのグループを構築し、交差点に制限する\"],\"oH1Qle\":[\"このワークフロージョブテンプレートの Webhook URL。\"],\"oHOOxn\":[\"デフォルトでは、サービスの使用状況に関する分析データを収集し、Red Hat に送信します。サービスによって収集されるデータには 2 つのカテゴリーがあります。詳細については、<0>この Tower ドキュメントページを参照してください。この機能を無効にするには、次のボックスのチェックを外してください。\"],\"oII7vS\":[\"GitHub 設定\"],\"oKMFX4\":[\"未更新\"],\"oKbBFU\":[\"# source with sync failures.\"],\"oNOjE7\":[\"終了日時\"],\"oNZQUQ\":[\"Kubernetes または OpenShift との認証のための認証情報\"],\"oQqtoP\":[\"管理ジョブに戻る\"],\"oRt7Uv\":[[\"interval\"],\" years\"],\"oTDA5P\":[[\"0\",\"plural\",{\"one\":[\"このインスタンスは現在、他のリソースで使用されています。削除してもよろしいですか?\"],\"other\":[\"これらのインスタンスのプロビジョニングを解除すると、それらに依存する他のリソースに影響する可能性があります。それでも削除してもよろしいですか?\"]}]],\"oWvSIB\":[\"送信者のメール\"],\"oX_mCH\":[\"プロジェクトの同期エラー\"],\"oZvDsd\":[[\"interval\"],\" hours\"],\"ocUvR-\":[\"False\"],\"ofO19Q\":[\"GitHub Enterprise チームでサインイン\"],\"ofcQVG\":[\"保存されていない変更モーダル\"],\"olEUh2\":[\"成功\"],\"opS--k\":[\"インスタンスグループに戻る\"],\"orh4t6\":[\"ホスト OK\"],\"osCeRO\":[\"Azure AD 設定の表示\"],\"ot7qsv\":[\"すべてのフィルターの解除\"],\"ovBPCi\":[\"デフォルト\"],\"owBGkJ\":[\"終了が期待値と一致しませんでした (\",[\"0\"],\")\"],\"owQ8JH\":[\"インスタンスグループの追加\"],\"ozbhWy\":[\"削除エラー\"],\"p-nfFx\":[\"ここにファイルをドラッグするか、参照してアップロード\"],\"p-ngUo\":[\"フォロー解除\"],\"p-pp9U\":[\"文字列\"],\"p2LEhJ\":[\"パーソナルアクセストークン\"],\"p2_GCq\":[\"パスワードの確認\"],\"p3PM8G\":[\"最初のノードから再起動\"],\"p6-JME\":[\"1 つ目はすべての参照を取得します。2 つ目は Github のプルリクエスト番号 62 を取得します。この例では、ブランチは「pull/62/head」である必要があります。\"],\"pAtylB\":[\"見つかりません\"],\"pCCQER\":[\"システム全体で利用可能\"],\"pH8j40\":[\"以前に削除されたアクティブなホスト\"],\"pHyx6k\":[\"多項選択法 (単一の選択可)\"],\"pKQcta\":[\"Pod 仕様のカスタマイズ\"],\"pOJNDA\":[\"コマンド\"],\"pOd3wA\":[\"Enter キーを押して、回答の選択肢をさらに追加します。回答の選択肢は、1 行に 1 つです。\"],\"pOhwkU\":[\"このアクションにより、\",[\"0\"],\" から次のロールの関連付けが解除されます:\"],\"pRZ6hs\":[\"実行:\"],\"pSypIG\":[\"説明の表示\"],\"pYENvg\":[\"認証付与タイプ\"],\"pZJ0-s\":[\"このグループで同時に実行されているすべてのジョブで許可するフォークの最大数。ゼロは制限が適用されないことを意味します。\"],\"pa1SrG\":[[\"interval\"],\" days\"],\"peCAyQ\":[\"RADIUS 設定の表示\"],\"pfw0Wr\":[\"すべて\"],\"pguZh2\":[\"jinja2 式から変数を作成します。定義した構築済みグループに\\n 期待されるホストが含まれていない場合に役立ちます。これを使用して\\n 式から hostvars を追加できるため、それらの式の\\n 結果の値がわかります。\"],\"phTgAm\":[\"システムのファクトを設定するには、`gather_facts: true`\\n を持つインベントリーに対して playbook を実行する必要があるため、\\n Ansible ファクトのインベントリーの仕様を提示するのは\\n 困難です。実際のファクトはシステムごとに\\n 異なります。\"],\"pkY73W\":[\"Rocket.Chat\"],\"pn7Xy3\":[\"Django を参照\"],\"poMgBa\":[\"起動時に SCM ブランチを要求します。\"],\"ppcQy0\":[\"ズームを 100% に設定し、グラフを中央に配置\"],\"prydaE\":[\"プロジェクトの同期の失敗\"],\"pw2VDK\":[[\"month\"],\" の最後の \",[\"weekday\"]],\"q-Uk_P\":[\"1 つ以上の認証情報タイプを削除できませんでした。\"],\"q-hNag\":[\"コレクション\"],\"q45OlW\":[\"リージョン\"],\"q5tQBE\":[\"関連する検索フィールドのあいまい検索でタイプを無効に設定\"],\"q67y3T\":[\"通知テンプレートテストは見つかりません。\"],\"qAlZNb\":[\"次のワークフロー承認に対応できません: \",[\"itemsUnableToDeny\"]],\"qCUUnr\":[\"残りのホストがありません\"],\"qChjCy\":[\"初回実行日時\"],\"qD-pvR\":[\"ダッシュボード ID (オプション)\"],\"qEMgTP\":[\"インベントリーソース同期エラー\"],\"qJK-de\":[\"OIDC でサインイン\"],\"qS0GhO\":[\"実行環境がありません\"],\"qSSVmd\":[\"送信先チャネルまたはユーザー\"],\"qSSg1L\":[\"利用可能なノードへのリンク\"],\"qWD0iN\":[\"このデータは、ソフトウェアの将来のリリースを強化し、\\n Automation Analytics を提供するために\\n 使用されます。\"],\"qXRYa2\":[\"ブランチでのサブモジュールの最新のコミットを追跡する\"],\"qYkrfg\":[\"プロビジョニングコールバックの詳細\"],\"qZ2MTC\":[\"これらは \",[\"brandName\"],\" がコマンドの実行をサポートするモジュールです。\"],\"qgjtIt\":[\"収束 (コンバージェンス)\"],\"qlhQw_\":[\"インベントリーの同期\"],\"qliDbL\":[\"リモートアーカイブ\"],\"qlwLcm\":[\"トラブルシューティング\"],\"qmBmJJ\":[\"クライアントシークレットが表示されるのはこれだけです。\"],\"qmYgP7\":[\"承認\"],\"qqeAJM\":[\"なし\"],\"qtFFSS\":[\"起動時のリビジョン更新\"],\"qtaMu8\":[\"インベントリー (名前)\"],\"qvCD_i\":[\"例には次が含まれます。\"],\"qwaCoN\":[\"ソースコントロールの更新\"],\"qxZ5RX\":[\"ホスト\"],\"qznBkw\":[\"ワークフローリンクモーダル\"],\"r6Aglb\":[\"JSON または YAML 構文のいずれかを使用してインジェクターを入力します。構文のサンプルについては Ansible Controller ドキュメントを参照してください。\"],\"r6y-jM\":[\"警告\"],\"r6zgGo\":[\"12 月\"],\"r8ojWq\":[\"削除の確認\"],\"r8oq0Y\":[\"過去 24 時間\"],\"rBdPPP\":[[\"name\"],\" を削除できませんでした。\"],\"rE95l8\":[\"クライアントタイプ\"],\"rG3WVm\":[\"選択\"],\"rHK_Sg\":[\"カスタム仮想環境 \",[\"virtualEnvironment\"],\" は、実行環境に置き換える必要があります。実行環境への移行の詳細については、<0>ドキュメント を参照してください。\"],\"rK7UBZ\":[\"すべてのホストの再起動\"],\"rKS_55\":[\"ファクトストレージ: 有効にすると、収集されたファクトが保存され、ホストレベルで表示できるようになります。ファクトは永続化され、実行時にファクトキャッシュに注入されます。\"],\"rKTFNB\":[\"認証情報タイプの削除\"],\"rLznGJ\":[\"承認が作成されたときに、アップストリームの set_stats アーティファクトでレンダリングされる Jinja2 テンプレート。これを使用して、以前のジョブステップの関連コンテキストを承認者に表示します。使用可能な変数は、親ノードの set_stats データから取得されます。\"],\"rMrKOB\":[\"プロジェクトを同期できませんでした。\"],\"rOZRCa\":[\"ワークフローのリンク\"],\"rSYkIY\":[\"このフィールドは数値でなければなりません\"],\"rXhu41\":[\"2 (デバッグ)\"],\"rYHzDr\":[\"項目/ページ\"],\"r_IfWZ\":[\"インベントリーの編集\"],\"rdUucN\":[\"プレビュー\"],\"rfYaVc\":[\"回答の変数名\"],\"rfpIXM\":[\"起動時にインスタンスグループを要求します。\"],\"rfx2oA\":[\"ワークフロー保留メッセージのボディー\"],\"riBcU5\":[\"IRC ニック\"],\"rjVfy3\":[\"ワークフロードキュメント\"],\"rjyWPb\":[\"1 月\"],\"rmb2GE\":[[\"0\"],\" により拒否済み - \",[\"1\"]],\"rmt9Tu\":[\"ホストの合計\"],\"ruhGSG\":[\"インベントリーソース同期の取り消し\"],\"rvia3m\":[\"その他の認証\"],\"rw1pRJ\":[\"バンドルのダウンロード\"],\"rwWNpy\":[\"インベントリー\"],\"s-MGs7\":[\"リソース\"],\"s2xYUy\":[\"リモートインベントリーソースのローカル変数を上書きする\"],\"s3KtlK\":[\"選択した例外により、このスケジュールには発生がありません。\"],\"s4Qnj2\":[\"実行環境\"],\"s4fge-\":[\"過去 1 ヵ月\"],\"s5aIEB\":[\"新規ワークフロージョブテンプレートの削除\"],\"s5mACA\":[\"インスタンスの詳細\"],\"s5r5nt\":[[\"0\",\"plural\",{\"one\":[\"このインスタンスグループは現在他のリソースによって使用されています。削除してもよろしいですか?\"],\"other\":[\"これらのインスタンスグループを削除すると、それらに依存する他のリソースに影響を与える可能性があります。それでも削除してもよろしいですか?\"]}]],\"s6F6Ks\":[\"このジョブの出力は見つかりません\"],\"s70SJY\":[\"ロギング設定\"],\"s8hQty\":[\"すべてのジョブを表示します。\"],\"s9EKbs\":[\"SSL 検証の無効化\"],\"sAz1tZ\":[\"関連付けの解除の確認\"],\"sBJ5MF\":[\"ソース\"],\"sCEb_0\":[\"すべてのインベントリーホストを表示します。\"],\"sGodAp\":[\"Pod 仕様の上書き\"],\"sMDRa_\":[\"グループに戻る\"],\"sOMf4x\":[\"最近のテンプレート\"],\"sSFxX6\":[\"ジョブ起動時のリビジョン更新\"],\"sTkKoT\":[\"拒否する行を選択\"],\"sUyFTB\":[\"ダッシュボードへのリダイレクト\"],\"sV3kNp\":[\"このインスタンスグループは、現在他のリソースで使用されています。削除してもよろしいですか?\"],\"sVh4-e\":[\"このリンクの削除\"],\"sW5OjU\":[\"必須\"],\"sZif4m\":[\"関連するグループの関連付けを解除しますか?\"],\"s_XkZs\":[\"開始\"],\"s_r4Az\":[\"このフィールドは整数でなければなりません\"],\"sesAIn\":[\"ジョブの開始、成功、または失敗時に送信される\\n 通知の内容を変更するには、カスタムメッセージを使用します。ジョブに関する\\n 情報にアクセスするには波括弧を使用します:\"],\"sgRZMG\":[\"ハイブリッドノード\"],\"siJgSI\":[\"ジョブが見つかりません。\"],\"sjMCOP\":[\"最終変更日時\"],\"sjVfrA\":[\"コマンド\"],\"smFRaX\":[\"ジョブはすでに開始されています\"],\"sqMsvU\":[[\"0\",\"plural\",{\"one\":[\"#\",\" 個のソースで同期に失敗しました。\"],\"other\":[\"#\",\" 個のソースで同期に失敗しました。\"]}]],\"sr4LMa\":[\"インベントリーソース\"],\"svR3aM\":[\"OpenStack\"],\"svy2x9\":[\"この条件またはその他のフィルターを満たす結果を返します。\"],\"sxkWRg\":[\"詳細\"],\"syupn5\":[\"ブランドイメージ\"],\"syyeb9\":[\"最初\"],\"t-R8-P\":[\"実行\"],\"t2q1xO\":[\"スケジュールの編集\"],\"t4v_7X\":[\"ノードタイプの選択\"],\"t9QlBd\":[\"11 月\"],\"tRm9qR\":[\"タグは、大規模な playbook があり、play またはタスクの特定の部分を実行したい場合に便利です。複数のタグを区切るにはカンマを使用します。タグの使用方法の詳細については、ドキュメントを参照してください。\"],\"tVEot_\":[[\"0\",\"plural\",{\"one\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"other\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"]}]],\"tXkhj_\":[\"開始\"],\"t_YqKh\":[\"削除\"],\"tbSVlt\":[\"ユーザーのアクセス権の削除\"],\"tfDRzk\":[\"保存\"],\"tfh2eq\":[\"クリックして、このノードへの新しいリンクを作成します。\"],\"tgPwON\":[\"演算子\"],\"tgSBSE\":[\"リンクの削除\"],\"tgWuMB\":[\"変更日時\"],\"thJljW\":[\"警告: \"],\"toJdZA\":[\"Reorder\"],\"tpCmSt\":[\"policy rules.\"],\"tqlcfo\":[\"プロビジョニング解除\"],\"trjiIV\":[\"ピアの関連付けに失敗しました。\"],\"tst44n\":[\"イベント\"],\"twE5a9\":[\"認証情報を削除できませんでした。\"],\"txNbrI\":[\"ソースコントロールブランチ\"],\"ty2DZX\":[\"この組織は、現在他のリソースで使用されています。削除してもよろしいですか?\"],\"tzgOKK\":[\"これはすでに処理されています\"],\"u-sh8m\":[\"/ (プロジェクト root)\"],\"u4ex5r\":[\"7 月\"],\"u4n8Fm\":[\"ピアの削除に失敗しました。\"],\"u4x6Jy\":[\"ジョブに戻る\"],\"u5AJST\":[\"Playbook の実行中に使用する並列または同時プロセスの数。いずれの値も入力しないと、Ansible 設定ファイルのデフォルト値が使用されます。より多くの情報を確認できます。\"],\"u7f6WK\":[\"すべてのワークフロー承認を表示します。\"],\"u84wS1\":[\"ジョブキャンセルエラー\"],\"uAQUqI\":[\"ステータス\"],\"uAhZbx\":[\"障害のある在庫ソース\"],\"uCjD1h\":[\"セッションの期限が切れました。中断したところから続行するには、ログインしてください。\"],\"uImfEm\":[\"ワークフロー保留メッセージ\"],\"uJz8NJ\":[\"ジョブの実行中は検索が無効になっています\"],\"uPRp5U\":[\"ルックアップの取り消し\"],\"uTDtiS\":[\"第 5\"],\"uUehLT\":[\"待機中\"],\"uVu1Yt\":[\"タイプ選択の設定\"],\"uYtvvN\":[\"実行環境を編集する前にプロジェクトを選択してください。\"],\"ucSTeu\":[\"作成者 (ユーザー名)\"],\"ucgZ0o\":[\"組織\"],\"ugZpot\":[\"外部認証情報のテスト\"],\"ulRNXw\":[\"Dragging cancelled. List is unchanged.\"],\"upC07l\":[\"Survey Disabled\"],\"uuPCEU\":[\"If you want the Inventory Source to update on launch , click on Update on Launch, and also go to \"],\"uyJsf6\":[\"情報\"],\"uzTiFQ\":[\"スケジュールに戻る\"],\"v-CZEv\":[\"起動プロンプト\"],\"v-EbDj\":[\"トラブルシューティング設定\"],\"v-M-LP\":[\"テンプレートの起動\"],\"v0urVb\":[\"サブスクリプションをお持ちでない場合は、Red Hat に\\n アクセスしてトライアルサブスクリプションを取得できます。\"],\"v1kQyJ\":[\"Webhook\"],\"v2dMHj\":[\"ホストパラメーターを使用した再起動\"],\"v2gmVS\":[\"このアクションでは、次の項目がソフト削除されます。\"],\"v45yUL\":[\"関連付けの解除\"],\"v7vAuj\":[\"ジョブの合計\"],\"vCS_TJ\":[\"インベントリーソース \",[\"name\"],\" を削除できませんでした。\"],\"vEr6TL\":[\"これらの引数は指定されたモジュールで使用されます。\",[\"0\"],\" に関する情報は、クリックすると見つかります: \"],\"vF82C6\":[\"親ノードが正常な状態になったときに実行します。\"],\"vFKI2e\":[\"スケジュールルール\"],\"vFVhzc\":[\"ソーシャル\"],\"vGVmd5\":[\"有効な変数が設定されていない限り、このフィールドは無視されます。有効な変数がこの値と一致すると、インポート時にこのホストが有効になります。\"],\"vGjmyl\":[\"削除済み\"],\"vHAaZi\":[\"すべてをスキップ\"],\"vIb3RK\":[\"新規スケジュールの作成\"],\"vKRQJB\":[\"カスタムの Kubernetes または OpenShift Pod 仕様を渡すためのフィールド。\"],\"vLyv1R\":[\"非表示\"],\"vPrMqH\":[\"リビジョン #\"],\"vQHUI6\":[\"チェックすると、子グループとホストのすべての変数が削除され、外部ソースで見つかったものに置き換えられます。\"],\"vTL8gi\":[\"終了時刻\"],\"vUOn9d\":[\"戻る\"],\"vYFWsi\":[\"チームの選択\"],\"vYuE8q\":[\"ジョブ実行の経過時間\"],\"vZbIkJ\":[\"GitLab\"],\"vcH-SH\":[\"Bitbucketデータセンター\"],\"ve_jRy\":[\"条件時\"],\"vgwVkd\":[\"UTC\"],\"vlHGDw\":[\"追加のコマンドライン変数を playbook に渡します。これは ansible-playbook の -e または --extra-vars コマンドラインパラメーターです。YAML または JSON を使用してキー/値のペアを指定します。構文の例についてはドキュメントを参照してください。\"],\"voRH7M\":[\"例:\"],\"vq1XXv\":[\"フィルターを適用して新しいスマートインベントリーを作成\"],\"vq2WxD\":[\"火\"],\"vq9gg6\":[\"次のワークフロー承認に対応できません: \",[\"itemsUnableToApprove\"]],\"vqAmQC\":[\"モジュール\"],\"vvY8pz\":[\"起動時にスキップタグを要求します。\"],\"vye-ip\":[\"起動時にタイムアウトを要求します。\"],\"vzsN_5\":[[\"interval\"],\" day\"],\"w07pgp\":[\"起動時に詳細レベルを要求します。\"],\"w0kTk8\":[\"失敗したノードから再起動\"],\"w14eW4\":[\"すべてのトークンを表示します。\"],\"w1RiT6\":[[\"0\",\"plural\",{\"one\":[\"このインベントリーソースは現在それに依存する他のリソースによって使用されています。削除してもよろしいですか?\"],\"other\":[\"これらのインベントリーソースを削除すると、それらに依存する他のリソースに影響を与える可能性があります。それでも削除してもよろしいですか?\"]}]],\"w2VTLB\":[\"Less than の比較条件\"],\"w3EE8S\":[\"自動化されたホスト\"],\"w4j7js\":[\"チームの詳細の表示\"],\"w6zx64\":[\"ブラウザのデフォルトを使用\"],\"wCnaTT\":[\"フィールドを新しい値に置き換え\"],\"wF-BAU\":[\"インベントリーの追加\"],\"wFnb77\":[\"インベントリー ID\"],\"wKEfMu\":[\"イベントの処理が完了しました。\"],\"wO29qX\":[\"組織が見つかりません。\"],\"wW08QA\":[\"等しくない\"],\"wX6sAX\":[\"2年\"],\"wXAVe-\":[\"モジュール引数\"],\"wXB7k5\":[\"通知の色を指定します。使用できる色は 16 進数の\\n カラーコードです (例: #3af または #789abc)。\"],\"waFx9W\":[\"管理\"],\"wdxz7K\":[\"ソース\"],\"wgNoIs\":[\"すべて選択\"],\"wkgHlv\":[\"新規ノードの追加\"],\"wlQNTg\":[\"メンバー\"],\"wnizTi\":[\"サブスクリプションの選択\"],\"wpT1VN\":[\"条件\"],\"wpt6vB\":[\"LDAP2\"],\"wqXiR2\":[\"追加のコマンドライン変更を渡します。2 つの ansible コマンドラインパラメーターがあります: \"],\"wsggVq\":[\"チェックされていない場合、外部ソースに見つからないローカルの子ホストとグループは、インベントリの更新プロセスで変更されません。\"],\"x-a4Mr\":[\"Webhook の認証情報\"],\"x02hbg\":[\"プロビジョニングコールバック: プロビジョニングコールバック URL の作成を有効にします。この URL を使用して、ホストは Ansible AWX に接続し、このジョブテンプレートを使用して設定の更新を要求できます。\"],\"x4Xp3c\":[\"更新\"],\"x5DnMs\":[\"最終変更日時\"],\"x6_dAC\":[\"フェデレーションインベントリー\"],\"x6oT_o\":[\"利用可能なホスト\"],\"x7PDL5\":[\"ロギング\"],\"x8uKc7\":[\"インスタンスの状態\"],\"x9WS62\":[[\"0\"],\" の取り消し\"],\"xAYSEs\":[\"開始時刻\"],\"xAqth4\":[\"Google OAuth 2.0 設定の表示\"],\"xC9EVu\":[\"キャンセルされたノード\"],\"xCJdfg\":[\"消去\"],\"xDr_ct\":[\"終了\"],\"xESTou\":[\"ジョブの削除に失敗しました。\"],\"xF5tnT\":[\"Vault パスワード\"],\"xGQZwx\":[\"コンテナーグループの追加\"],\"xGVfLh\":[\"続行\"],\"xHZS6u\":[\"成功ジョブ\"],\"xHokxV\":[[\"0\",\"plural\",{\"one\":[\"The selected job cannot be deleted due to insufficient permission or a running job status\"],\"other\":[\"The selected jobs cannot be deleted due to insufficient permissions or a running job status\"]}]],\"xHt036\":[\"パーソナルアクセストークン\"],\"xKQRBr\":[\"最大長\"],\"xM01Pk\":[\"デフォルトの応答\"],\"xONDaO\":[\"Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?\"],\"xOl1yT\":[\"名前フィールドを正確に検索します。\"],\"xPO5w7\":[\"GitHub でサインイン\"],\"xPpkbX\":[\"Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway\"],\"xPxMOJ\":[\"無効な時間形式です\"],\"xQioPk\":[\"複数の親がある場合にこのノードを実行するための前提条件。参照:\"],\"xSytdh\":[\"終了日時:\"],\"xUhTCP\":[\"ソースの選択\"],\"xVhQZV\":[\"金\"],\"xY9DEq\":[\"インベントリー内のホストをターゲットにするために使用されるパターン。フィールドを空白のままにすると、all、および * はすべて、インベントリー内のすべてのホストを対象とします。Ansible のホストパターンに関する詳細情報を確認できます。\"],\"xY9s5E\":[\"タイムアウト\"],\"x_Ej3K\":[\"ユーザーへのプロンプトとして使用する回答タイプまたは形式を選択してください。\\n 各オプションの詳細については、Ascender のドキュメントを参照してください。\"],\"x_ugm_\":[\"グループ合計\"],\"xa7N9Z\":[\"ログインリダイレクトのオーバーライド URL\"],\"xcaG5l\":[\"ワークフローの編集\"],\"xd2LI3\":[\"有効期限: \",[\"0\"]],\"xdA_-p\":[\"ツール\"],\"xe5RvT\":[\"YAMLタブ\"],\"xefC7k\":[\"IRC サーバーポート\"],\"xeiujy\":[\"テキスト\"],\"xg771-\":[\"LDAP1\"],\"xhj1Rt\":[\"要求したページが見つかりませんでした。\"],\"xi4nE2\":[\"エラーメッセージ\"],\"xnSIXG\":[\"1 つ以上のホストを削除できませんでした。\"],\"xoCdYY\":[\"特定フィールドの値が提供されたリストに存在するかどうかをチェック (項目のコンマ区切りのリストを想定)。\"],\"xoXoBo\":[\"エラーの削除\"],\"xrG8k4\":[\"Google Compute Engine\"],\"xtRU96\":[\"GitHub Enterprise 組織\"],\"xuYTJb\":[\"ジョブテンプレートを削除できませんでした。\"],\"xw06rt\":[\"設定は工場出荷時のデフォルトと一致します。\"],\"xxTtJH\":[\"一致するホスト名のみがインポートされる正規表現。このフィルターは、インベントリープラグインフィルターが適用された後、後処理ステップとして適用されます。\"],\"y11WBZ\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"選択したジョブをキャンセル\"],\"other\":[\"選択したジョブをキャンセル\"]}]],\"y8ibKI\":[\"インスタンスの削除\"],\"yCCaoF\":[\"インスタンスの更新に失敗しました。\"],\"yDeNnS\":[\"新しい構築されたインベントリを作成する\"],\"yDifzB\":[\"選択の確認\"],\"yGS9cI\":[\"利用可能\"],\"yGUKlf\":[\"管理ジョブ\"],\"yGfW7Y\":[\"この場所を変更するには、\",[\"brandName\"],\" のデプロイ時に PROJECTS_ROOT を変更します。\"],\"yMIahh\":[\"Red Hat Ansible Automation Platform へようこそ!\\n サブスクリプションをアクティブ化するには、以下の手順を完了してください。\"],\"yMYuDg\":[\"自動化コントローラーバージョン\"],\"yMfU4O\":[\"送信者のメール\"],\"yNcGa2\":[\"アクセストークンの有効期限\"],\"yOXgbH\":[\"注記: GitHub または Bitbucket に SSH プロトコルを使用する場合は、SSH キーのみを入力し、(git 以外の) ユーザー名は入力しないでください。また、GitHub と Bitbucket は SSH 使用時のパスワード認証をサポートしていません。読み取り専用の GIT プロトコル (git://) は、ユーザー名やパスワードの情報を使用しません。\"],\"yQE2r9\":[\"ロード中\"],\"yRiHPB\":[\"ジョブを実行してこのリストに入力してください。\"],\"yRkqG9\":[\"制限\"],\"yRsSBw\":[\"承認\"],\"yUlffE\":[\"再起動\"],\"yVgnJA\":[\"この組織で管理できるホストの最大数。\\n 値のデフォルトは 0 で、制限なしを意味します。詳細については Ansible の\\n ドキュメントを参照してください。\"],\"yX3qAQ\":[\"ワークフロージョブテンプレートノード\"],\"yaG1CX\":[\"LDAP\"],\"yaX9sM\":[\"ワークフローテンプレート\"],\"yb_fjw\":[\"承認\"],\"ydoZpB\":[\"チームが見つかりません。\"],\"ydw9CW\":[\"失敗したホスト\"],\"yfG3F2\":[\"ダイレクトキー\"],\"yjwMJ8\":[\"ホストが自動化された回数\"],\"yjyGja\":[\"入力の展開\"],\"ylXj1N\":[\"選択済み\"],\"yq6OqI\":[\"この時だけ唯一、トークンの値と、関連する更新トークンの値が表示されます。\"],\"yqiwAW\":[\"ワークフローの取り消し\"],\"yrUyDQ\":[\"このインスタンスの現在のライフサイクルステージを設定します。デフォルトは \\\"installed\\\" です。\"],\"yrwl2P\":[\"有効\"],\"yuXsFE\":[\"1 つ以上のワークフロー承認を削除できませんでした。\"],\"yuvDX_\":[[\"intervalValue\",\"plural\",{\"one\":[\"month\"],\"other\":[\"months\"]}]],\"ywSBEn\":[\"関連付けのロールエラー\"],\"yxDqcD\":[\"認証コードの有効期限\"],\"yy1cWw\":[\"メッセージのカスタマイズ…\"],\"yz7wBu\":[\"閉じる\"],\"yzQhLU\":[\"ポリシーインスタンスの最小値\"],\"yzdDia\":[\"Survey の削除\"],\"z-BNGk\":[\"ユーザートークンの削除\"],\"z0DcIS\":[\"暗号化\"],\"z3XA1I\":[\"ホストの再試行\"],\"z409y8\":[\"Webhook サービス\"],\"z7NLxJ\":[\"この特定のユーザーのアクセスのみを削除する場合は、チームから削除してください。\"],\"z8mwbl\":[\"新しいインスタンスがオンラインになると、このグループに自動的に割り当てられるすべてのインスタンスの最小パーセンテージ。\"],\"zBO1TV\":[[\"numOccurrences\",\"plural\",{\"one\":[\"#\",\" 回の発生後\"],\"other\":[\"#\",\" 回の発生後\"]}]],\"zHcXAG\":[\"実行環境をシステム全体で利用できるようにするには、このフィールドを空白のままにします。\"],\"zICM7E\":[\"同期する前にローカル変更を破棄する\"],\"zJY4Uj\":[\"Playbook\"],\"zKJMiH\":[\"Playbook ディレクトリー\"],\"zK_63z\":[\"無効なユーザー名またはパスワードです。やり直してください。\"],\"zLsDix\":[\"LDAP ユーザー\"],\"zMKkOk\":[\"組織に戻る\"],\"zN0nhk\":[\"Red Hat または Red Hat Satellite の認証情報を提供して、自動化アナリティクスを有効にします。\"],\"zQRgi-\":[\"通知開始の切り替え\"],\"zTediT\":[\"このフィールドは数値で、\",[\"min\"],\" から \",[\"max\"],\" までの値である必要があります\"],\"zUIPys\":[\"Jinja 2の条件に基づいてホストをグループに追加します。\"],\"z_PZxu\":[\"ワークフロー承認を削除できませんでした。\"],\"zbLCH1\":[\"インベントリーのタイプ\"],\"zcQj5X\":[\"先にキーを選択\"],\"zdl7YZ\":[\"ソースパスの選択\"],\"zeEQd_\":[\"6 月\"],\"zf7FzC\":[\"Kubernetes または OpenShift との認証に使用する認証情報。\\\"Kubernetes/OpenShift API ベアラートークン” のタイプでなければなりません。空白のままにすると、基になる Pod のサービスアカウントが使用されます。\"],\"zfZydd\":[\"Survey プレビューモーダル\"],\"zfsBaJ\":[\"自動化アナリティクスについて\"],\"zgInnV\":[\"ワークフローノード表示モーダル\"],\"zga9sT\":[\"OK\"],\"zhPLvU\":[\"関連付けに失敗しました。\"],\"zhrjek\":[\"グループ\"],\"zi_YNm\":[[\"0\"],\" を取り消すことができませんでした。\"],\"zmu4-P\":[\"アカウント SID\"],\"znG7ed\":[\"Playbook の選択\"],\"znTz5r\":[\"スケジュールが見つかりません。\"],\"znuW_M\":[\"はいの場合、無効なエントリーを致命的なエラーにします。それ以外の場合はスキップして\\n 続行します。\"],\"zq0gmb\":[\"期間の選択\"],\"ztOzCj\":[\"起動時の更新\"],\"ztw2L3\":[\"少なくとも 1 つの入力に値が必要です\"],\"zvfXp0\":[\"通知承認の切り替え\"],\"zx4BuL\":[\"週\"],\"zzDlyQ\":[\"成功\"],\"{count, plural, one {# fork} other {# forks}}\":[[\"count\",\"plural\",{\"one\":[\"#\",\" fork\"],\"other\":[\"#\",\" forks\"]}]]}")}; \ No newline at end of file diff --git a/awx/ui/src/locales/ja/messages.po b/awx/ui/src/locales/ja/messages.po index 63120941..e6568b2f 100644 --- a/awx/ui/src/locales/ja/messages.po +++ b/awx/ui/src/locales/ja/messages.po @@ -57,7 +57,7 @@ msgid "TACACS+" msgstr "TACACS+" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:637 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:232 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:251 msgid "Workflow timed out message body" msgstr "ワークフローのタイムアウトメッセージのボディー" @@ -115,6 +115,10 @@ msgstr "このコマンドを内部で実行する実行環境を選択します msgid "Add a new node between these two nodes" msgstr "これら 2 つのノードの間に新しいノードを追加します" +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:170 +msgid "Changed message" +msgstr "変更メッセージ" + #: screens/Job/JobOutput/JobOutputSearch.js:120 msgid "Host Polling" msgstr "ホストのポーリング" @@ -148,7 +152,7 @@ msgid "Maximum number of forks to allow across all jobs running concurrently on msgstr "このグループで同時に実行されるすべてのジョブ全体で許可するフォークの最大数。\n" " ゼロは制限が適用されないことを意味します。" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:341 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:349 #: screens/Inventory/InventorySources/InventorySourceListItem.js:89 msgid "Failed to cancel Inventory Source Sync" msgstr "インベントリーソースの同期の取り消しに失敗しました。" @@ -332,8 +336,8 @@ msgstr "チェックアウトするブランチ。ブランチに加えて、タ #: components/JobList/JobList.js:265 #: components/JobList/JobListItem.js:109 #: components/Lookup/ProjectLookup.js:134 -#: components/NotificationList/NotificationList.js:219 -#: components/NotificationList/NotificationListItem.js:34 +#: components/NotificationList/NotificationList.js:230 +#: components/NotificationList/NotificationListItem.js:36 #: components/PromptDetail/PromptDetail.js:125 #: components/RelatedTemplateList/RelatedTemplateList.js:200 #: components/TemplateList/TemplateList.js:219 @@ -433,7 +437,7 @@ msgstr "クリックしてジョブの詳細を表示" msgid "Sync Project" msgstr "プロジェクトの同期" -#: components/NotificationList/NotificationList.js:194 +#: components/NotificationList/NotificationList.js:205 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:135 msgid "Grafana" msgstr "Grafana" @@ -513,7 +517,7 @@ msgstr "イベント" msgid "Repeat Frequency" msgstr "繰り返しの頻度" -#: screens/Inventory/shared/Inventory.helptext.js:171 +#: screens/Inventory/shared/Inventory.helptext.js:172 msgid "Variables used to configure the constructed inventory plugin. For a detailed description of how to configure this plugin, see" msgstr "構築されたインベントリプラグインを構成するために使用される変数。このプラグインの設定方法の詳細については、" @@ -575,8 +579,8 @@ msgstr "コンテナーグループ" msgid "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" msgstr "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" -#: components/NotificationList/NotificationList.js:220 -#: components/NotificationList/NotificationListItem.js:35 +#: components/NotificationList/NotificationList.js:231 +#: components/NotificationList/NotificationListItem.js:38 #: screens/Credential/shared/TypeInputsSubForm.js:46 #: screens/InstanceGroup/shared/ContainerGroupForm.js:79 #: screens/Instances/Shared/InstanceForm.js:95 @@ -600,7 +604,7 @@ msgid "You cannot select multiple vault credentials with the same vault ID. Doin msgstr "同じ Vault ID を持つ複数の Vault 認証情報を選択することはできません。これを行うと、同じ Vault ID を持つもう一方の選択が自動的に解除されます。" #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:334 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:342 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:350 #: screens/Project/ProjectDetail/ProjectDetail.js:354 msgid "Cancel Sync" msgstr "同期の取り消し" @@ -713,8 +717,8 @@ msgstr "統計" msgid "Create new credential Type" msgstr "新規認証情報タイプの作成" -#: screens/Inventory/shared/Inventory.helptext.js:103 -#: screens/Inventory/shared/Inventory.helptext.js:118 +#: screens/Inventory/shared/Inventory.helptext.js:104 +#: screens/Inventory/shared/Inventory.helptext.js:119 msgid "If you want the Inventory Source to update on launch, click on Update on Launch, and also go to " msgstr "インベントリーソースを起動時に更新する場合は、「起動時に更新」をクリックし、次の場所にも移動します: " @@ -732,7 +736,7 @@ msgid "Start Time" msgstr "開始時刻" #: screens/Inventory/shared/Inventory.helptext.js:48 -#: screens/Inventory/shared/Inventory.helptext.js:184 +#: screens/Inventory/shared/Inventory.helptext.js:185 msgid "Variables must be in JSON or YAML syntax. Use the radio button to toggle between the two." msgstr "変数は JSON または YAML 構文にする必要があります。ラジオボタンを使用してこの構文を切り替えます。" @@ -748,7 +752,7 @@ msgstr "ファイルの相違点" msgid "Relaunch from canceled node" msgstr "キャンセルされたノードから再起動" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:271 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:279 msgid "Cache timeout" msgstr "キャッシュタイムアウト" @@ -828,7 +832,7 @@ msgstr "出現回数を入力してください。" msgid "Fuzzy search on name field." msgstr "名前フィールドのあいまい検索。" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:106 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:107 msgid "Ansible Controller Documentation." msgstr "Ansible コントローラーのドキュメント。" @@ -836,7 +840,7 @@ msgstr "Ansible コントローラーのドキュメント。" msgid "The Instance Groups to which this instance belongs." msgstr "このインスタンスが属するインスタンスグループ。" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:97 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:98 msgid "You may apply a number of possible variables in the\n" " message. For more information, refer to the" msgstr "メッセージには複数の変数を適用できます。\n" @@ -885,7 +889,7 @@ msgstr "ワークフローノード" msgid "Overwrite" msgstr "上書き" -#: components/NotificationList/NotificationList.js:195 +#: components/NotificationList/NotificationList.js:206 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:136 msgid "Hipchat" msgstr "Hipchat" @@ -920,7 +924,7 @@ msgstr "ソースコントロールのブランチ" msgid "Tabs" msgstr "タブ" -#: screens/Template/Template.js:273 +#: screens/Template/Template.js:274 #: screens/Template/WorkflowJobTemplate.js:286 msgid "View Template Details" msgstr "テンプレートの詳細の表示" @@ -966,7 +970,7 @@ msgstr "{interval, plural, one {# 年} other {# 年}}" msgid "Inventory Source Sync" msgstr "インベントリーソース同期" -#: screens/Inventory/shared/Inventory.helptext.js:146 +#: screens/Inventory/shared/Inventory.helptext.js:147 msgid "Inventory Plugins" msgstr "インベントリプラグイン" @@ -1036,7 +1040,7 @@ msgstr "1 (情報)" msgid "Set the instance enabled or disabled. If disabled, jobs will not be assigned to this instance." msgstr "インスタンスを有効または無効に設定します。無効にした場合には、ジョブはこのインスタンスに割り当てられません。" -#: screens/Inventory/shared/Inventory.helptext.js:105 +#: screens/Inventory/shared/Inventory.helptext.js:106 msgid "and click on Update Revision on Launch." msgstr "[起動時にリビジョンを更新]をクリックします。" @@ -1525,8 +1529,8 @@ msgstr "1 つ以上のジョブを削除できませんでした。" msgid "Run Command" msgstr "コマンドの実行" -#: screens/Inventory/shared/Inventory.helptext.js:156 -#: screens/Inventory/shared/Inventory.helptext.js:179 +#: screens/Inventory/shared/Inventory.helptext.js:157 +#: screens/Inventory/shared/Inventory.helptext.js:180 msgid "plugin configuration guide." msgstr "プラグイン設定ガイドを参照してください。" @@ -1637,9 +1641,9 @@ msgstr "新規フェデレーションインベントリーの作成" #: components/Lookup/OrganizationLookup.js:141 #: components/Lookup/ProjectLookup.js:129 #: components/Lookup/ProjectLookup.js:159 -#: components/NotificationList/NotificationList.js:181 -#: components/NotificationList/NotificationList.js:218 -#: components/NotificationList/NotificationListItem.js:29 +#: components/NotificationList/NotificationList.js:192 +#: components/NotificationList/NotificationList.js:229 +#: components/NotificationList/NotificationListItem.js:31 #: components/OptionsList/OptionsList.js:48 #: components/PaginatedTable/PaginatedTable.js:76 #: components/PromptDetail/PromptDetail.js:115 @@ -1753,14 +1757,14 @@ msgstr "新規フェデレーションインベントリーの作成" #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:182 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:197 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:238 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:204 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:205 #: screens/Inventory/InventorySources/InventorySourceList.js:212 #: screens/Inventory/InventorySources/InventorySourceListItem.js:60 #: screens/Inventory/shared/ConstructedInventoryForm.js:66 #: screens/Inventory/shared/FederatedInventoryForm.js:56 #: screens/Inventory/shared/InventoryForm.js:50 #: screens/Inventory/shared/InventoryGroupForm.js:33 -#: screens/Inventory/shared/InventorySourceForm.js:133 +#: screens/Inventory/shared/InventorySourceForm.js:139 #: screens/Inventory/shared/SmartInventoryForm.js:46 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:98 #: screens/ManagementJob/ManagementJobList/ManagementJobList.js:91 @@ -1883,7 +1887,7 @@ msgstr "{automatedInstancesSinceDateTime} 以来 {automatedInstancesCount}" msgid "No job data available" msgstr "利用可能なジョブデータがありません" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:309 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:317 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:22 msgid "Source variables" msgstr "ソース変数" @@ -2020,7 +2024,7 @@ msgid "Confirm" msgstr "確認" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:526 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:142 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:143 msgid "Success message body" msgstr "成功メッセージボディー" @@ -2295,7 +2299,7 @@ msgstr "失敗したホスト" msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?" msgstr "この実行環境は、現在他のリソースで使用されています。削除してもよろしいですか?" -#: components/NotificationList/NotificationList.js:196 +#: components/NotificationList/NotificationList.js:207 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:137 msgid "IRC" msgstr "IRC" @@ -2499,7 +2503,7 @@ msgstr "外部ログの有効化" #: components/Sparkline/Sparkline.js:30 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:51 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:181 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:182 #: screens/Inventory/InventorySources/InventorySourceListItem.js:31 #: screens/Project/ProjectDetail/ProjectDetail.js:134 #: screens/Project/ProjectList/ProjectListItem.js:56 @@ -2539,7 +2543,7 @@ msgstr "システムトラッキングファクトを個別に有効化" msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" msgstr "ノードの作成時または編集時に、パスワードの入力を求める認証情報を持つジョブテンプレートを選択できない" -#: screens/Inventory/shared/Inventory.helptext.js:193 +#: screens/Inventory/shared/Inventory.helptext.js:194 msgid "If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on. Note: If this setting is enabled and you provided an empty list, the global instance groups will be applied." msgstr "有効化されると、インベントリーは、関連付けられたジョブテンプレートを実行する優先インスタンスグループのリストに、組織インスタンスグループを追加することを阻止します。注記: この設定が有効で空のリストを指定した場合、グローバルインスタンスグループが適用されます。" @@ -2676,7 +2680,7 @@ msgstr "1 つ以上のホストの関連付けを解除できませんでした #: components/Sparkline/Sparkline.js:27 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:48 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:178 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:179 #: screens/Inventory/InventorySources/InventorySourceListItem.js:28 #: screens/Project/ProjectDetail/ProjectDetail.js:131 #: screens/Project/ProjectList/ProjectListItem.js:53 @@ -2763,7 +2767,7 @@ msgstr "項目 OK" msgid "Icon URL" msgstr "アイコン URL" -#: screens/Inventory/shared/InventorySourceForm.js:159 +#: screens/Inventory/shared/InventorySourceForm.js:165 msgid "Select the Instance Groups this inventory source sync should run on. If unset, the sync runs on the instance groups of the inventory or its organization." msgstr "このインベントリーソースの同期を実行するインスタンスグループを選択します。未設定の場合、同期はインベントリーまたはその組織のインスタンスグループで実行されます。" @@ -2772,7 +2776,7 @@ msgid "Select the port that Receptor will listen on for incoming connections, e. msgstr "Receptorが着信接続をリッスンするポートを選択します(例: 27199 )。" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:517 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:133 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:134 msgid "Success message" msgstr "成功メッセージ" @@ -2829,7 +2833,7 @@ msgstr "HTTP メソッド" msgid "The execution environment that will be used for jobs inside of this organization. This will be used as a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." msgstr "この組織内のジョブに使用される実行環境。プロジェクト、ジョブテンプレート、またはワークフローのレベルで実行環境が明示的に割り当てられていない場合のフォールバックとして使用されます。" -#: components/NotificationList/NotificationList.js:190 +#: components/NotificationList/NotificationList.js:201 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:131 msgid "Notification type" msgstr "通知タイプ" @@ -2863,7 +2867,7 @@ msgstr "リンク削除の取り消し" msgid "There was an error loading this content. Please reload the page." msgstr "このコンテンツの読み込み中にエラーが発生しました。ページを再読み込みしてください。" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:292 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:300 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:135 msgid "Enabled Value" msgstr "有効な値" @@ -3176,7 +3180,7 @@ msgstr "< 0 >注:インスタンスは、< 1 >ポリシールールによっ msgid "Timeout minutes" msgstr "タイムアウト (分)" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:353 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:361 msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" msgstr "このインベントリーソースは、現在それに依存している他のリソースで使用されています。削除してもよろしいですか?" @@ -3331,7 +3335,7 @@ msgstr "Less than or equal to の比較条件" #: screens/Inventory/FederatedInventoryDetail/FederatedInventoryDetail.js:187 #: screens/Inventory/InventoryDetail/InventoryDetail.js:185 #: screens/Inventory/InventoryGroups/InventoryGroupsList.js:102 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:356 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:364 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:67 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:71 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:76 @@ -3354,6 +3358,7 @@ msgstr "Less than or equal to の比較条件" msgid "Delete" msgstr "削除" +#: components/NotificationList/NotificationListItem.js:105 #: components/StatusLabel/StatusLabel.js:53 #: screens/Job/JobOutput/shared/HostStatusBar.js:43 msgid "Changed" @@ -3485,7 +3490,7 @@ msgstr "GitHub チーム" #: screens/Inventory/InventoryDetail/InventoryDetail.js:157 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:43 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:78 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:317 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:325 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:133 #: screens/Job/JobDetail/JobDetail.js:578 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:425 @@ -3859,7 +3864,7 @@ msgstr "デフォルトの実行環境" #: components/PromptDetail/PromptJobTemplateDetail.js:122 #: components/PromptDetail/PromptJobTemplateDetail.js:130 #: components/TemplateList/TemplateListItem.js:263 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:245 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:246 #: screens/Job/JobDetail/JobDetail.js:180 #: screens/Job/JobDetail/JobDetail.js:214 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:216 @@ -3980,7 +3985,7 @@ msgstr "トポロジービュー" msgid "Syncing" msgstr "同期" -#: screens/Inventory/shared/InventorySourceForm.js:192 +#: screens/Inventory/shared/InventorySourceForm.js:198 msgid "Source details" msgstr "ソース詳細" @@ -4072,7 +4077,7 @@ msgstr "認証情報の削除" #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:56 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:61 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:100 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:332 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:340 #: screens/Inventory/InventorySources/InventorySourceListItem.js:105 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:148 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:450 @@ -4154,7 +4159,7 @@ msgstr "タイムアウトが指定されていません" msgid "On Timeout" msgstr "タイムアウト時" -#: screens/Inventory/shared/Inventory.helptext.js:196 +#: screens/Inventory/shared/Inventory.helptext.js:197 msgid "Prevent Instance Group Fallback: If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on." msgstr "インスタンスグループフォールバックの防止: 有効にすると、インベントリーは、関連付けられたジョブテンプレートを実行する優先インスタンスグループのリストに組織インスタンスグループを追加することを防ぎます。" @@ -4496,7 +4501,7 @@ msgstr "コンテンツの読み込みが進行中" msgid "Mon" msgstr "月" -#: screens/Organization/Organization.js:239 +#: screens/Organization/Organization.js:240 msgid "View Organization Details" msgstr "組織の詳細の表示" @@ -4509,7 +4514,7 @@ msgstr "組織の詳細の表示" #: components/JobList/JobList.js:345 #: components/LaunchButton/LaunchButton.js:248 #: components/LaunchPrompt/LaunchPrompt.js:99 -#: components/NotificationList/NotificationList.js:246 +#: components/NotificationList/NotificationList.js:259 #: components/PaginatedTable/ToolbarDeleteButton.js:148 #: components/RelatedTemplateList/RelatedTemplateList.js:254 #: components/ResourceAccessList/ResourceAccessList.js:249 @@ -4553,7 +4558,7 @@ msgstr "組織の詳細の表示" #: screens/Inventory/InventoryHosts/InventoryHostList.js:204 #: screens/Inventory/InventoryList/InventoryList.js:300 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:270 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:363 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:371 #: screens/Inventory/InventorySources/InventorySourceList.js:240 #: screens/Inventory/InventorySources/InventorySourceList.js:252 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:155 @@ -4705,11 +4710,11 @@ msgid "Notification Templates" msgstr "通知テンプレート" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:508 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:124 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:125 msgid "Start message body" msgstr "開始メッセージのボディー" -#: screens/Inventory/shared/Inventory.helptext.js:128 +#: screens/Inventory/shared/Inventory.helptext.js:129 msgid "Branch to use on inventory sync. Project default used if blank. Only allowed if project allow_override field is set to true." msgstr "在庫同期に使用するブランチ。空白の場合はプロジェクトのデフォルトが使用されます。プロジェクトのALLOW_OVERRIDEフィールドがTRUEに設定されている場合にのみ許可されます。" @@ -4818,7 +4823,7 @@ msgid "Failed to delete one or more user tokens." msgstr "1 つ以上のユーザートークンを削除できませんでした。" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:553 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:169 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:188 msgid "Workflow approved message" msgstr "ワークフロー承認メッセージ" @@ -4999,12 +5004,12 @@ msgstr "タイムアウト時" msgid "Create New Team" msgstr "新規チームの作成" -#: screens/Inventory/shared/Inventory.helptext.js:148 +#: screens/Inventory/shared/Inventory.helptext.js:149 msgid "in the documentation and the" msgstr "ドキュメンテーションと" #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:152 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:206 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:207 #: screens/Project/ProjectDetail/ProjectDetail.js:160 msgid "Last Job Status" msgstr "最終ジョブステータス" @@ -5336,7 +5341,7 @@ msgid "Preferred Theme" msgstr "優先テーマ" #: screens/Instances/Shared/InstanceForm.js:31 -#: screens/Inventory/shared/InventorySourceForm.js:92 +#: screens/Inventory/shared/InventorySourceForm.js:98 #: screens/Project/shared/ProjectForm.js:121 msgid "Set a value for this field" msgstr "このフィールドに値を設定します" @@ -5469,7 +5474,7 @@ msgid "Download Bundle" msgstr "バンドルのダウンロード" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:577 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:187 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:206 msgid "Workflow denied message" msgstr "ワークフロー拒否メッセージ" @@ -5522,7 +5527,7 @@ msgstr "ノードタイプ" msgid "View Credential Details" msgstr "認証情報の詳細の表示" -#: components/NotificationList/NotificationList.js:177 +#: components/NotificationList/NotificationList.js:188 #: routeConfig.js:140 #: screens/Inventory/Inventories.js:119 #: screens/Inventory/InventorySource/InventorySource.js:101 @@ -5742,7 +5747,7 @@ msgstr "テスト通知" #: screens/Credential/CredentialDetail/CredentialDetail.js:262 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:234 #: screens/Inventory/InventoryDetail/InventoryDetail.js:122 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:305 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:313 #: screens/Project/ProjectDetail/ProjectDetail.js:333 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:357 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:193 @@ -5791,7 +5796,7 @@ msgstr "ソースコントロールのブランチ" #: screens/Instances/InstanceDetail/InstanceDetail.js:248 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:225 #: screens/Inventory/InventoryDetail/InventoryDetail.js:107 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:239 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:240 #: screens/Organization/OrganizationDetail/OrganizationDetail.js:116 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:418 #: util/getRelatedResourceDeleteDetails.js:282 @@ -6121,7 +6126,7 @@ msgid "View YAML examples at" msgstr "次の場所でYAMLの例を表示します" #: components/PromptDetail/PromptInventorySourceDetail.js:35 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:142 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:143 msgid "Overwrite local groups and hosts from remote inventory source" msgstr "リモートインベントリーソースからのローカルグループおよびホストを上書きする" @@ -6130,7 +6135,7 @@ msgid "Resource deleted" msgstr "リソースが削除されました" #: screens/Inventory/shared/Inventory.helptext.js:54 -#: screens/Inventory/shared/Inventory.helptext.js:187 +#: screens/Inventory/shared/Inventory.helptext.js:188 msgid "YAML:" msgstr "YAML:" @@ -6217,7 +6222,7 @@ msgid "Initiated By" msgstr "開始ユーザー:" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:499 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:115 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:116 msgid "Start message" msgstr "開始メッセージ" @@ -6281,7 +6286,7 @@ msgstr "インスタンスの切り替え" msgid "Back to Inventories" msgstr "インベントリーに戻る" -#: screens/Inventory/shared/Inventory.helptext.js:113 +#: screens/Inventory/shared/Inventory.helptext.js:114 msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format." msgstr "SCMリビジョンが変更されるプロジェクトの更新のたびに、ジョブタスクを実行する前に、選択したソースからインベントリを更新します。これは、Ansibleインベントリ.iniファイル形式などの静的コンテンツを対象としています。" @@ -6375,7 +6380,7 @@ msgstr "インスタンス" msgid "Including File" msgstr "組み込みファイル" -#: screens/Inventory/shared/Inventory.helptext.js:81 +#: screens/Inventory/shared/Inventory.helptext.js:82 msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." msgstr "チェックを入れると、以前は外部ソースに存在していたが現在削除されているホストとグループがインベントリーから削除されます。インベントリーソースによって管理されていなかったホストとグループは、次の手動で作成されたグループに昇格されます。昇格先の手動で作成されたグループがない場合は、インベントリーのデフォルトの「all」グループに残されます。" @@ -6412,7 +6417,7 @@ msgstr "詳細タブ" #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:100 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:72 #: screens/InstanceGroup/shared/ContainerGroupForm.js:50 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:298 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:306 #: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:39 #: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:38 #: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:38 @@ -6423,7 +6428,7 @@ msgstr "詳細タブ" #: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:117 #: screens/Inventory/shared/InventorySourceSubForms/TerraformSubForm.js:38 #: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:39 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:39 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:44 msgid "Credential" msgstr "認証情報" @@ -6432,7 +6437,7 @@ msgid "First node" msgstr "最初のノード" #: components/PromptDetail/PromptInventorySourceDetail.js:97 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:273 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:281 msgid "{update_cache_timeout, plural, one {# second} other {# seconds}}" msgstr "{update_cache_timeout, plural, one {# 秒} other {# 秒}}" @@ -6496,7 +6501,7 @@ msgstr "ジョブ設定の表示" #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:122 #: screens/Instances/InstanceDetail/InstanceDetail.js:349 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:96 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:329 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:337 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:145 #: screens/Project/ProjectDetail/ProjectDetail.js:340 #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:229 @@ -6550,7 +6555,7 @@ msgstr "標準ユーザー" msgid "host-name-{0}" msgstr "host-name-{0}" -#: components/NotificationList/NotificationList.js:198 +#: components/NotificationList/NotificationList.js:209 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:139 msgid "Pagerduty" msgstr "Pagerduty" @@ -6609,7 +6614,7 @@ msgstr "新しいインスタンスがオンラインになったときにこの msgid "Launch | {0}" msgstr "起動 | {0}" -#: components/NotificationList/NotificationListItem.js:79 +#: components/NotificationList/NotificationListItem.js:84 msgid "Toggle notification success" msgstr "通知成功の切り替え" @@ -6702,7 +6707,7 @@ msgstr "同時実行ジョブの有効化" msgid "Smart Inventory" msgstr "スマートインベントリー" -#: components/NotificationList/NotificationList.js:200 +#: components/NotificationList/NotificationList.js:211 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:141 msgid "Slack" msgstr "Slack" @@ -6738,7 +6743,7 @@ msgstr "追加" msgid "System administrators have unrestricted access to all resources." msgstr "システム管理者は、すべてのリソースに無制限にアクセスできます。" -#: components/NotificationList/NotificationListItem.js:86 +#: components/NotificationList/NotificationListItem.js:91 msgid "Failure" msgstr "失敗" @@ -6883,7 +6888,7 @@ msgstr "フォロー" #: components/Lookup/MultiCredentialsLookup.js:205 #: components/Lookup/OrganizationLookup.js:135 #: components/Lookup/ProjectLookup.js:149 -#: components/NotificationList/NotificationList.js:210 +#: components/NotificationList/NotificationList.js:221 #: components/RelatedTemplateList/RelatedTemplateList.js:183 #: components/Schedule/ScheduleList/ScheduleList.js:205 #: components/TemplateList/TemplateList.js:235 @@ -7095,7 +7100,7 @@ msgstr "このフィールドは数値で、{min} より大きい値である必 msgid "All" msgstr "すべて" -#: screens/Inventory/shared/Inventory.helptext.js:177 +#: screens/Inventory/shared/Inventory.helptext.js:178 msgid "constructed inventory" msgstr "建設されたインベントリ" @@ -7109,7 +7114,7 @@ msgid "Confirm Delete" msgstr "削除の確認" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:625 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:223 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:242 msgid "Workflow timed out message" msgstr "ワークフローのタイムアウトメッセージ" @@ -7205,7 +7210,7 @@ msgstr "なし" msgid "Organization Name" msgstr "組織名" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:282 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:290 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:149 msgid "Host Filter" msgstr "ホストフィルター" @@ -7257,7 +7262,7 @@ msgstr "{pluralizedItemName} 一覧" msgid "Please add survey questions." msgstr "Survey の質問を追加してください。" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:287 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:295 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:121 msgid "Enabled Variable" msgstr "有効な変数" @@ -7369,7 +7374,7 @@ msgstr "同期" #: components/Lookup/ApplicationLookup.js:128 #: components/Lookup/HostFilterLookup.js:439 #: components/Lookup/HostListItem.js:10 -#: components/NotificationList/NotificationList.js:186 +#: components/NotificationList/NotificationList.js:197 #: components/PromptDetail/PromptDetail.js:120 #: components/Schedule/ScheduleDetail/ScheduleDetail.js:337 #: components/Schedule/ScheduleList/ScheduleList.js:197 @@ -7404,13 +7409,13 @@ msgstr "同期" #: screens/Inventory/InventoryHosts/InventoryHostList.js:125 #: screens/Inventory/InventoryHosts/InventoryHostList.js:141 #: screens/Inventory/InventoryList/InventoryList.js:215 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:221 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:222 #: screens/Inventory/shared/ConstructedInventoryForm.js:74 #: screens/Inventory/shared/ConstructedInventoryHint.js:63 #: screens/Inventory/shared/FederatedInventoryForm.js:64 #: screens/Inventory/shared/InventoryForm.js:58 #: screens/Inventory/shared/InventoryGroupForm.js:41 -#: screens/Inventory/shared/InventorySourceForm.js:141 +#: screens/Inventory/shared/InventorySourceForm.js:147 #: screens/Inventory/shared/SmartInventoryForm.js:54 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:104 #: screens/Job/JobOutput/HostEventModal.js:118 @@ -7555,7 +7560,7 @@ msgstr "GitHub Enterprise でサインイン" #: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130 #: screens/Inventory/shared/InventorySourceSubForms/TerraformSubForm.js:46 #: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:47 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:47 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:52 #: screens/Inventory/shared/SmartInventoryForm.js:66 #: screens/NotificationTemplate/shared/NotificationTemplateForm.js:29 #: screens/NotificationTemplate/shared/NotificationTemplateForm.js:66 @@ -7588,7 +7593,7 @@ msgstr "SAML {samlIDP} でサインイン" msgid "Browse" msgstr "参照" -#: components/NotificationList/NotificationList.js:193 +#: components/NotificationList/NotificationList.js:204 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:134 #: screens/User/shared/UserForm.js:104 #: screens/User/UserDetail/UserDetail.js:71 @@ -8011,7 +8016,7 @@ msgid "Sat" msgstr "土" #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:46 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:176 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:177 #: screens/Inventory/InventorySources/InventorySourceListItem.js:26 #: screens/Project/ProjectDetail/ProjectDetail.js:129 #: screens/Project/ProjectList/ProjectListItem.js:51 @@ -8048,7 +8053,7 @@ msgid "Specify HTTP Headers in JSON format. Refer to\n" msgstr "HTTP ヘッダーを JSON 形式で指定します。構文の例については、\n" " Ansible Controller のドキュメントを参照してください。" -#: components/NotificationList/NotificationList.js:199 +#: components/NotificationList/NotificationList.js:210 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:140 msgid "Rocket.Chat" msgstr "Rocket.Chat" @@ -8106,7 +8111,7 @@ msgstr "ズームを 100% に設定し、グラフを中央に配置" msgid "Revert all to default" msgstr "すべてをデフォルトに戻す" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:255 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:256 #: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:135 msgid "Inventory file" msgstr "インベントリーファイル" @@ -8183,6 +8188,11 @@ msgstr "インスタンスグループのフォールバックを防止する" msgid "Maximum number of forks to allow across all jobs running concurrently on this group. Zero means no limit will be enforced." msgstr "このグループで同時に実行されているすべてのジョブで許可するフォークの最大数。ゼロは制限が適用されないことを意味します。" +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:263 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:56 +msgid "Collection" +msgstr "コレクション" + #: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:207 msgid "Failed to delete one or more credential types." msgstr "1 つ以上の認証情報タイプを削除できませんでした。" @@ -8197,7 +8207,7 @@ msgstr "リージョン" #: components/WorkflowOutputNavigation/WorkflowOutputNavigation.js:148 msgid "Workflow Jobs ({total})" -msgstr "" +msgstr "ワークフロージョブ ({total})" #: components/Search/AdvancedSearch.js:315 msgid "Set type disabled for related search field fuzzy searches" @@ -8233,11 +8243,11 @@ msgstr "残りのホストがありません" msgid "ID of the dashboard (optional)" msgstr "ダッシュボード ID (オプション)" -#: screens/Inventory/shared/Inventory.helptext.js:127 +#: screens/Inventory/shared/Inventory.helptext.js:128 msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'" msgstr "指定されたホスト変数のdictから有効な状態を取得します。有効な変数は、ドット表記を使用して指定できます。例: 'foo.bar'" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:339 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:347 #: screens/Inventory/InventorySources/InventorySourceListItem.js:88 msgid "Inventory Source Sync Error" msgstr "インベントリーソース同期エラー" @@ -8264,14 +8274,14 @@ msgstr "" #: components/VerbositySelectField/VerbositySelectField.js:35 #: components/VerbositySelectField/VerbositySelectField.js:45 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:217 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:261 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:269 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:47 #: screens/Job/JobDetail/JobDetail.js:369 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:257 msgid "Verbosity" msgstr "詳細" -#: components/NotificationList/NotificationList.js:197 +#: components/NotificationList/NotificationList.js:208 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:138 msgid "Mattermost" msgstr "Mattermost" @@ -8498,6 +8508,10 @@ msgstr "ワークフローの承認に戻る" msgid "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Controller documentation for example syntax." msgstr "JSON または YAML 構文のいずれかを使用してインジェクターを入力します。構文のサンプルについては Ansible Controller ドキュメントを参照してください。" +#: components/NotificationList/NotificationListItem.js:112 +msgid "Toggle notification changed" +msgstr "通知変更の切り替え" + #: components/Workflow/WorkflowLegend.js:122 #: screens/Job/JobOutput/JobOutputSearch.js:140 msgid "Warning" @@ -8566,7 +8580,7 @@ msgid "Prompt for instance groups on launch." msgstr "起動時にインスタンスグループを要求します。" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:613 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:214 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:233 msgid "Workflow pending message body" msgstr "ワークフロー保留メッセージのボディー" @@ -8608,7 +8622,7 @@ msgstr "IRC ニック" msgid "Expires on" msgstr "有効期限:" -#: screens/Inventory/shared/Inventory.helptext.js:98 +#: screens/Inventory/shared/Inventory.helptext.js:99 msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." msgstr "このインベントリを使用してジョブを実行するたびに、ジョブタスクを実行する前に、選択したソースからインベントリを更新します。" @@ -8733,7 +8747,7 @@ msgstr "このテンプレートの webhook を有効にします。" msgid "On date" msgstr "指定日" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:340 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:348 #: screens/Inventory/InventorySources/InventorySourceListItem.js:90 msgid "Cancel Inventory Source Sync" msgstr "インベントリーソース同期の取り消し" @@ -8810,7 +8824,7 @@ msgid "Greater than comparison." msgstr "Greater than の比較条件" #: components/PromptDetail/PromptInventorySourceDetail.js:40 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:148 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:149 msgid "Overwrite local variables from remote inventory source" msgstr "リモートインベントリーソースのローカル変数を上書きする" @@ -8882,7 +8896,7 @@ msgstr "1 人以上のユーザーを削除できませんでした。" msgid "On Success" msgstr "成功時" -#: screens/Inventory/shared/Inventory.helptext.js:192 +#: screens/Inventory/shared/Inventory.helptext.js:193 msgid "The inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." msgstr "このソースによって同期されるインベントリファイル。ドロップダウンから選択するか、入力内にファイルを入力します。" @@ -8947,7 +8961,7 @@ msgstr "設定されていません" msgid "Workflow Job" msgstr "ワークフロージョブ" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:82 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:83 msgid "Use custom messages to change the content of\n" " notifications sent when a job starts, succeeds, or fails. Use\n" " curly braces to access information about the job:" @@ -9151,7 +9165,7 @@ msgid "Go to previous page" msgstr "前のページに移動" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:565 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:178 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:197 msgid "Workflow approved message body" msgstr "ワークフロー承認メッセージのボディー" @@ -9168,7 +9182,7 @@ msgid "required" msgstr "必須" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:589 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:196 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:215 msgid "Workflow denied message body" msgstr "ワークフロー拒否メッセージのボディー" @@ -9270,7 +9284,7 @@ msgstr "docs.ansible.com" msgid "Edit Schedule" msgstr "スケジュールの編集" -#: components/NotificationList/NotificationList.js:250 +#: components/NotificationList/NotificationList.js:263 msgid "Failed to toggle notification." msgstr "通知の切り替えに失敗しました。" @@ -9359,6 +9373,10 @@ msgstr "保存" msgid "Click to create a new link to this node." msgstr "クリックして、このノードへの新しいリンクを作成します。" +#: screens/Inventory/shared/Inventory.helptext.js:78 +msgid "Select the Ansible collection providing the inventory plugin used to sync from vCenter. The community.vmware collection is deprecated in favor of the newer vmware.vmware collection. The selection is applied via the \"plugin\" key in the source variables; when the key is absent, the default collection is used." +msgstr "vCenter からの同期に使用するインベントリープラグインを提供する Ansible コレクションを選択します。community.vmware コレクションは非推奨となり、新しい vmware.vmware コレクションが推奨されます。選択内容はソース変数の \"plugin\" キーを介して適用されます。キーがない場合は、デフォルトのコレクションが使用されます。" + #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:167 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:136 msgid "Operator" @@ -9476,7 +9494,7 @@ msgid "Deprovisioning" msgstr "プロビジョニング解除" #: components/DetailList/LaunchedByDetail.js:27 -#: components/NotificationList/NotificationList.js:202 +#: components/NotificationList/NotificationList.js:213 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:143 msgid "Webhook" msgstr "Webhook" @@ -9517,7 +9535,7 @@ msgstr "認証情報を削除できませんでした。" msgid "Private key passphrase" msgstr "秘密鍵のパスフレーズ" -#: components/NotificationList/NotificationListItem.js:58 +#: components/NotificationList/NotificationListItem.js:63 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:47 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:53 msgid "Start" @@ -9537,7 +9555,7 @@ msgstr "インベントリーを選択する必要があります" #: components/PromptDetail/PromptProjectDetail.js:100 #: components/PromptDetail/PromptWFJobTemplateDetail.js:81 #: components/Schedule/ScheduleDetail/ScheduleDetail.js:477 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:266 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:274 #: screens/Job/JobDetail/JobDetail.js:345 #: screens/Project/ProjectDetail/ProjectDetail.js:229 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 @@ -9591,7 +9609,7 @@ msgstr "Red Hat Insights" msgid "View GitHub Settings" msgstr "GitHub 設定の表示" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:257 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:258 msgid "/ (project root)" msgstr "/ (プロジェクト root)" @@ -9620,7 +9638,7 @@ msgstr "Playbook の実行中に使用する並列または同時プロセスの msgid "View all Workflow Approvals." msgstr "すべてのワークフロー承認を表示します。" -#: screens/Inventory/shared/Inventory.helptext.js:92 +#: screens/Inventory/shared/Inventory.helptext.js:93 msgid "When not checked, a merge will be performed, combining local variables with those found on the external source." msgstr "チェックされていない場合、ローカル変数と外部ソースで見つかったものを組み合わせてマージが実行されます。" @@ -9714,7 +9732,7 @@ msgstr "ツールの切り替え" #: screens/Inventory/InventoryList/InventoryList.js:211 #: screens/Inventory/InventoryList/InventoryList.js:241 #: screens/Inventory/InventoryList/InventoryListItem.js:121 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:225 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:226 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:107 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:153 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:163 @@ -9765,7 +9783,7 @@ msgid "Test External Credential" msgstr "外部認証情報のテスト" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:601 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:205 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:224 msgid "Workflow pending message" msgstr "ワークフロー保留メッセージ" @@ -9948,7 +9966,7 @@ msgstr "ナビゲーション" msgid "If enabled, control nodes will peer to this instance automatically. If disabled, instance will be connected only to associated peers." msgstr "有効にすると、コントロールノードはこのインスタンスを自動的にピアリングします。無効にすると、インスタンスは関連付けられたピアにのみ接続されます。" -#: screens/Inventory/shared/Inventory.helptext.js:120 +#: screens/Inventory/shared/Inventory.helptext.js:121 msgid "and click on Update Revision on Launch" msgstr "そして、起動時のリビジョン更新をクリックします" @@ -9967,6 +9985,10 @@ msgstr "実行環境を編集する前にプロジェクトを選択してくだ msgid "Order" msgstr "順序" +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:179 +msgid "Changed message body" +msgstr "変更メッセージボディー" + #: components/Schedule/Schedule.js:65 msgid "Back to Schedules" msgstr "スケジュールに戻る" @@ -10085,7 +10107,7 @@ msgstr "新規コンテナーグループの作成" msgid "Bitbucket Data Center" msgstr "Bitbucketデータセンター" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:367 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:375 msgid "Failed to delete inventory source {name}." msgstr "インベントリーソース {name} を削除できませんでした。" @@ -10151,7 +10173,7 @@ msgstr "詳細の編集" msgid "Deleted" msgstr "削除済み" -#: screens/Inventory/shared/Inventory.helptext.js:129 +#: screens/Inventory/shared/Inventory.helptext.js:130 msgid "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import." msgstr "有効な変数が設定されていない限り、このフィールドは無視されます。有効な変数がこの値と一致すると、インポート時にこのホストが有効になります。" @@ -10250,11 +10272,11 @@ msgstr "モジュール" msgid "Confirm revert all" msgstr "すべて元に戻すことを確認" -#: screens/Inventory/shared/Inventory.helptext.js:89 +#: screens/Inventory/shared/Inventory.helptext.js:90 msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source." msgstr "チェックすると、子グループとホストのすべての変数が削除され、外部ソースで見つかったものに置き換えられます。" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:350 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:358 msgid "Delete inventory source" msgstr "インベントリーソースの削除" @@ -10325,7 +10347,7 @@ msgstr "ジョブ実行の経過時間" msgid "GitLab" msgstr "GitLab" -#: components/NotificationList/NotificationListItem.js:93 +#: components/NotificationList/NotificationListItem.js:98 msgid "Toggle notification failure" msgstr "通知失敗の切り替え" @@ -10426,8 +10448,8 @@ msgstr "このフィールドは {0} 文字以上でなければなりません" #: components/JobList/JobListItem.js:197 #: components/PromptDetail/PromptInventorySourceDetail.js:78 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:222 -#: screens/Inventory/shared/InventorySourceForm.js:162 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:223 +#: screens/Inventory/shared/InventorySourceForm.js:168 #: screens/Job/JobDetail/JobDetail.js:180 #: screens/Job/JobDetail/JobDetail.js:332 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:93 @@ -10511,7 +10533,7 @@ msgstr "キー選択" msgid "Pass extra command line changes. There are two ansible command line parameters: " msgstr "追加のコマンドライン変更を渡します。2 つの ansible コマンドラインパラメーターがあります: " -#: screens/Inventory/shared/Inventory.helptext.js:84 +#: screens/Inventory/shared/Inventory.helptext.js:85 msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process." msgstr "チェックされていない場合、外部ソースに見つからないローカルの子ホストとグループは、インベントリの更新プロセスで変更されません。" @@ -10554,7 +10576,7 @@ msgid "Specify a notification color. Acceptable colors are hex\n" msgstr "通知の色を指定します。使用できる色は 16 進数の\n" " カラーコードです (例: #3af または #789abc)。" -#: components/NotificationList/NotificationList.js:201 +#: components/NotificationList/NotificationList.js:212 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:142 msgid "Twilio" msgstr "Twilio" @@ -10594,7 +10616,7 @@ msgid "updated" msgstr "更新" #: screens/Inventory/AdvancedInventoryHostDetail/AdvancedInventoryHostDetail.js:50 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:320 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:328 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:135 #: screens/Project/ProjectList/ProjectListItem.js:274 #: screens/TopologyView/Tooltip.js:347 @@ -10795,7 +10817,7 @@ msgid "Successful jobs" msgstr "成功ジョブ" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:535 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:151 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:152 msgid "Error message" msgstr "エラーメッセージ" @@ -10924,7 +10946,7 @@ msgstr "不明なプロジェクト" msgid "Preconditions for running this node when there are multiple parents. Refer to the" msgstr "複数の親がある場合にこのノードを実行するための前提条件。参照:" -#: screens/Inventory/shared/Inventory.helptext.js:140 +#: screens/Inventory/shared/Inventory.helptext.js:141 msgid "Variables used to configure the inventory source. For a detailed description of how to configure this plugin, see" msgstr "インベントリソースを構成するために使用される変数。このプラグインの設定方法の詳細については、" @@ -10934,7 +10956,7 @@ msgstr "Google Compute Engine" #: components/Sparkline/Sparkline.js:34 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:55 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:185 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:186 #: screens/Inventory/InventorySources/InventorySourceListItem.js:35 #: screens/Project/ProjectDetail/ProjectDetail.js:138 #: screens/Project/ProjectList/ProjectListItem.js:60 @@ -10956,7 +10978,7 @@ msgstr "すべてのジョブタイプ" msgid "GitHub Enterprise Organization" msgstr "GitHub Enterprise 組織" -#: screens/Inventory/shared/InventorySourceForm.js:170 +#: screens/Inventory/shared/InventorySourceForm.js:176 msgid "Choose a source" msgstr "ソースの選択" @@ -10990,7 +11012,7 @@ msgstr "簡易キー選択" msgid "You have automated against more hosts than your subscription allows." msgstr "サブスクリプションで許可されているよりも多くのホストに対して自動化しました。" -#: screens/Inventory/shared/Inventory.helptext.js:130 +#: screens/Inventory/shared/Inventory.helptext.js:131 msgid "Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied." msgstr "一致するホスト名のみがインポートされる正規表現。このフィルターは、インベントリープラグインフィルターが適用された後、後処理ステップとして適用されます。" @@ -11116,7 +11138,7 @@ msgstr "LDAP" msgid "Workflow Template" msgstr "ワークフローテンプレート" -#: components/NotificationList/NotificationListItem.js:40 +#: components/NotificationList/NotificationListItem.js:45 #: components/Workflow/WorkflowLegend.js:118 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:76 msgid "Approval" @@ -11278,7 +11300,7 @@ msgstr "プロビジョニング失敗" msgid "Whether the approval node is automatically approved or denied when the timeout expires." msgstr "承認ノードがタイムアウトの期限切れ時に自動的に承認されるか拒否されるか。" -#: screens/Inventory/shared/Inventory.helptext.js:125 +#: screens/Inventory/shared/Inventory.helptext.js:126 msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed." msgstr "インベントリの同期が最新であると見なす時間(秒単位)。ジョブの実行とコールバック中、タスクシステムは最新の同期のタイムスタンプを評価します。キャッシュタイムアウトよりも古い場合、現在のものとは見なされず、新しいインベントリ同期が実行されます。" @@ -11292,7 +11314,7 @@ msgstr "アクセストークンの有効期限" #: components/WorkflowOutputNavigation/WorkflowOutputNavigation.js:147 msgid "Workflow Job {currentPosition}/{total}" -msgstr "" +msgstr "ワークフロージョブ {currentPosition}/{total}" #: components/Schedule/ScheduleDetail/FrequencyDetails.js:69 msgid "{interval, plural, one {# minute} other {# minutes}}" @@ -11436,7 +11458,7 @@ msgstr "Insights システム ID" msgid "Authorization Code Expiration" msgstr "認証コードの有効期限" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:69 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:70 msgid "Customize messages…" msgstr "メッセージのカスタマイズ…" @@ -11662,7 +11684,7 @@ msgid "{interval, plural, one {# week} other {# weeks}}" msgstr "{interval, plural, one {# 週間} other {# 週間}}" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:544 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:160 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:161 msgid "Error message body" msgstr "エラーメッセージボディー" @@ -11705,7 +11727,7 @@ msgstr "管理ノード" #: components/Lookup/MultiCredentialsLookup.js:201 #: components/Lookup/OrganizationLookup.js:131 #: components/Lookup/ProjectLookup.js:153 -#: components/NotificationList/NotificationList.js:206 +#: components/NotificationList/NotificationList.js:217 #: components/RelatedTemplateList/RelatedTemplateList.js:179 #: components/Schedule/ScheduleList/ScheduleList.js:201 #: components/TemplateList/TemplateList.js:231 @@ -11821,7 +11843,7 @@ msgstr "トークンの削除中にエラーが発生しました" msgid "Select period" msgstr "期間の選択" -#: components/NotificationList/NotificationListItem.js:65 +#: components/NotificationList/NotificationListItem.js:70 msgid "Toggle notification start" msgstr "通知開始の切り替え" @@ -11869,7 +11891,7 @@ msgid "This field must be a number and have a value between {min} and {max}" msgstr "このフィールドは数値で、{min} から {max} までの値である必要があります" #: components/PromptDetail/PromptInventorySourceDetail.js:45 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:154 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:155 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:93 msgid "Update on launch" msgstr "起動時の更新" @@ -11886,7 +11908,7 @@ msgstr "Jinja 2の条件に基づいてホストをグループに追加しま msgid "Copy Template" msgstr "テンプレートのコピー" -#: components/NotificationList/NotificationListItem.js:51 +#: components/NotificationList/NotificationListItem.js:56 msgid "Toggle notification approvals" msgstr "通知承認の切り替え" @@ -11914,7 +11936,7 @@ msgstr "過去1年以内" msgid "Week" msgstr "週" -#: components/NotificationList/NotificationListItem.js:72 +#: components/NotificationList/NotificationListItem.js:77 #: components/StatusLabel/StatusLabel.js:39 msgid "Success" msgstr "成功" diff --git a/awx/ui/src/locales/ko/messages.js b/awx/ui/src/locales/ko/messages.js index 0983552a..05dccf45 100644 --- a/awx/ui/src/locales/ko/messages.js +++ b/awx/ui/src/locales/ko/messages.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"--iDlT\":[\"프로젝트 삭제\"],\"-0AkQd\":[[\"forks\",\"plural\",{\"one\":[\"#\",\" 포크\"],\"other\":[\"#\",\" 포크\"]}]],\"-0B-ue\":[\"프로젝트\"],\"-5kO8P\":[\"토요일\"],\"-6EcFR\":[\"Enter를 눌러 편집합니다. ESC를 눌러 편집을 중지합니다.\"],\"-7M7WW\":[\"기본값을 토글하려면 클릭합니다.\"],\"-7VWRl\":[\"RAM \",[\"0\"]],\"-8WGoO\":[\"플러그인 매개 변수가 필요합니다.\"],\"-9d7Ol\":[\"PagerDuty 하위 도메인\"],\"-9y9jy\":[\"실행 중인 상태 점검\"],\"-9yY_Q\":[\"인벤토리를 복사하지 못했습니다.\"],\"-AZQnp\":[\"SAML\"],\"-FWz2-\":[\"이전 스크롤\"],\"-FjWgX\":[\"목요일\"],\"-GMFSa\":[\"프로젝트를 복사하지 못했습니다.\"],\"-GOG9X\":[\"설명 숨기기\"],\"-NI2UI\":[\"이 작업 템플릿에서 수행하는 작업을 지정된 수의 작업 슬라이스로 나눕니다. 각 슬라이스는 인벤토리의 일부에 대해 동일한 작업을 실행합니다.\"],\"-NezOR\":[\"현재 일부 인증 정보에서 이 인증 정보 유형을 사용하고 있으며 삭제할 수 없습니다.\"],\"-OpL2l\":[\"부모 노드의 최종 상태에 관계없이 실행합니다.\"],\"-PyL32\":[\"이 노드를 삭제하시겠습니까?\"],\"-RAMET\":[\"이 링크 편집\"],\"-SAqJ3\":[\"인증 정보를 복사하지 못했습니다.\"],\"-Uepfb\":[\"컨트롤\"],\"-b3ghh\":[\"권한 에스컬레이션\"],\"-cWxFz\":[\"콘텐츠 서명을 활성화하여 프로젝트가 동기화될 때 콘텐츠가 안전하게 유지되었는지 확인합니다. 콘텐츠가 변조된 경우 작업이 실행되지 않습니다.\"],\"-hh3vo\":[\"마지막 작업 업데이트를 로드할 수 없음\"],\"-li8PK\":[\"구독 사용\"],\"-nb9qF\":[\"(실행 시 프롬프트)\"],\"-ohrPc\":[\"자동 완성 검색\"],\"-rfqXD\":[\"설문 조사 활성화\"],\"-uOi7U\":[\"클릭하여 번들을 다운로드합니다\"],\"-vAlj5\":[\"작업을 시작하지 못했습니다.\"],\"-z0Ubz\":[\"적용할 역할 선택\"],\"-zW4qj\":[\"체크아웃할 브랜치입니다. 브랜치 외에도 태그, 커밋 해시 및 임의의 참조를 입력할 수 있습니다. 사용자 지정 refspec을 제공하지 않으면 일부 커밋 해시 및 참조를 사용하지 못할 수 있습니다.\"],\"-zy2Nq\":[\"유형\"],\"0-31GV\":[\"제거 중\"],\"0-yjzX\":[\"버전을 사용할 수 있으려면 프로젝트를 동기화해야 합니다.\"],\"00_HDq\":[\"정책 유형\"],\"00cteM\":[\"이 필드는 \",[\"0\"],\"자를 초과할 수 없습니다\"],\"01Zgfk\":[\"시간 초과\"],\"02FGuS\":[\"새 그룹 만들기\"],\"02ePaq\":[[\"0\"],\" 선택\"],\"02o5A-\":[\"새 프로젝트 만들기\"],\"05TJDT\":[\"작업 세부 정보를 보려면 클릭합니다.\"],\"06Veq8\":[\"동기화 프로젝트\"],\"08IuMU\":[\"변수 덮어쓰기\"],\"08dX0o\":[\"Grafana\"],\"0Ca6Bi\":[[\"dateStr\"],\" (<0>\",[\"username\"],\" 기준)\"],\"0DRyjU\":[\"실행 중인 Handlers\"],\"0JjrTf\":[\"파일을 구문 분석하는 동안 오류가 발생했습니다. 파일 형식을 확인하고 다시 시도하십시오.\"],\"0K8MzY\":[\"이 필드는 \",[\"max\"],\"자를 초과할 수 없습니다\"],\"0LUj25\":[\"인스턴스 그룹 삭제\"],\"0MFMD5\":[\"하나 이상의 인스턴스에서 상태 확인을 실행하지 못했습니다.\"],\"0Ohn6b\":[\"시작자\"],\"0PUWHV\":[\"반복 빈도\"],\"0Pz6gk\":[\"구성된 인벤토리 플러그인을 구성하는 데 사용되는 변수입니다. 이 플러그인을 구성하는 방법에 대한 자세한 설명은 다음을 참조하십시오.\"],\"0QsHpG\":[\"해당 유형에 대해 정렬된 필드 집합을 정의하는 입력 스키마입니다.\"],\"0Tddvz\":[\"Grafana 서버의 기본 URL입니다. /api/annotations\\n 엔드포인트가 기본 Grafana URL에 자동으로\\n 추가됩니다.\"],\"0WL4_U\":[\"모든 노드 삭제\"],\"0WP27-\":[\"작업 출력을 기다리는 중..\"],\"0YAsXQ\":[\"컨테이너 그룹\"],\"0ZdD1M\":[[\"0\",\"plural\",{\"one\":[\"You cannot cancel the following job because it is not running:\"],\"other\":[\"You cannot cancel the following jobs because they are not running:\"]}]],\"0ZqUtV\":[\"자세한 내용은 다음을 참조하십시오\"],\"0_ru-E\":[\"인벤토리 복사\"],\"0cqIWs\":[\"기본 인증 암호\"],\"0d48JM\":[\"다중 선택(여러 선택)\"],\"0eOoxo\":[\"시작 날짜/시간 이후의 종료 날짜/시간을 선택하십시오.\"],\"0f7U0k\":[\"수요일\"],\"0gPQCa\":[\"항상\"],\"0lvFRT\":[\"자격 증명의 자격 증명 유형은 사용 중인 리소스의 기능이 손상될 수 있으므로 변경할 수 없습니다.\"],\"0pC_y6\":[\"이벤트\"],\"0qOaMt\":[\"이 자격 증명 및 메타데이터를 테스트하라는 요청에 문제가 발생했습니다.\"],\"0rVzXl\":[\"Google OAuth 2 설정\"],\"0sNe72\":[\"역할 추가\"],\"0tNXE8\":[\"PUT\"],\"0tfvhT\":[\"인스턴스 그룹이 사용하는 용량\"],\"0wlLcO\":[\"유지해야 하는 데이터 일 수를 설정합니다.\"],\"0zpgxV\":[\"옵션\"],\"0zs8j5\":[\"이 노드의 작업이 실패 경로를 따르기 전에 실패 후 자동으로 재시도되는 최대 횟수입니다. 취소된 작업은 재시도되지 않습니다.\"],\"1-4GhF\":[\"동기화 취소\"],\"10B0do\":[\"테스트 알림을 발송하지 못했습니다.\"],\"1280Tg\":[\"호스트 이름\"],\"12j25_\":[\"GPG 공개 키\"],\"12kemj\":[\"소스 제어 URL\"],\"14KOyT\":[\"Source vars\"],\"15GcuU\":[\"기타 인증 설정 보기\"],\"17TKua\":[\"인스턴스 그룹\"],\"19zgn6\":[\"인스턴스 유형\"],\"1A3EXy\":[\"확장\"],\"1C5cFl\":[\"다음 실행\"],\"1Ey8My\":[\"IP 주소\"],\"1F0IaT\":[\"일정 보기\"],\"1HMy92\":[\"JSON:\"],\"1I6UoR\":[\"보기\"],\"1L3KBl\":[\"새 인증 정보 유형 만들기\"],\"1LRwvx\":[\"인벤토리 소스를 시작 시 업데이트하려면 시작 시 업데이트를 클릭하고 다음 위치로도 이동하십시오: \"],\"1Ltnvs\":[\"노드 추가\"],\"1PQRWr\":[\"시작 시간\"],\"1QRNEs\":[\"반복 빈도\"],\"1RYzKu\":[\"취소된 노드에서 다시 시작\"],\"1UJu6o\":[\"1에서 31 사이의 날짜 번호를 선택하십시오.\"],\"1UjRxI\":[\"캐시 제한 시간\"],\"1UzENP\":[\"제공되지 않음\"],\"1V4Yvg\":[\"기타 시스템\"],\"1WlWk7\":[\"인벤토리 호스트 세부 정보 보기\"],\"1WsB5U\":[\"이 계정과 연결된 서브스크립션을 찾을 수 없습니다.\"],\"1ZaQUH\":[\"성\"],\"1_gTC7\":[\"동일한 vault ID로 여러 인증 정보를 선택할 수 없습니다. 이렇게 하면 동일한 vault ID를 가진 다른 인증 정보가 자동으로 선택 취소됩니다.\"],\"1abtmx\":[\"하위 그룹 및 호스트 승격\"],\"1ahgeV\":[\"Google OAuth2\"],\"1cT4RU\":[\"SCM 업데이트\"],\"1fO-kL\":[\"인스턴스를 전환하지 못했습니다.\"],\"1hCxP5\":[\"하나 이상의 인스턴스 그룹을 삭제하지 못했습니다.\"],\"1kwHxg\":[\"호스트 통계\"],\"1n50PN\":[\"JSON 탭\"],\"1qd4yi\":[\"변수는 JSON 또는 YAML 구문이어야 합니다. 라디오 버튼을 사용하여 둘 사이를 전환합니다.\"],\"1rDBnp\":[\"파일 차이점\"],\"1w2SCz\":[\"소스 제어 유형 선택\"],\"1xdJD7\":[\"화면에 맞추기\"],\"1yHVE-\":[\"추가 중\"],\"2-iKER\":[\"활동 스트림 보기\"],\"2B_v7Y\":[\"정책 인스턴스 백분율\"],\"2CTKOa\":[\"프로젝트로 돌아가기\"],\"2FB7vv\":[\"기본 실행 환경을 편집하기 전에 조직을 선택합니다.\"],\"2FeJcd\":[\"건너뛴 항목\"],\"2H9REH\":[\"이름 필드에서 퍼지 검색\"],\"2JV4mx\":[\"이 인스턴스가 속하는 인스턴스 그룹입니다.\"],\"2KlsJC\":[\"메시지에 사용 가능한 여러 변수를 적용할 수 있습니다.\\n 자세한 내용은 다음을 참조하십시오.\"],\"2MSEkM\":[\"인벤토리를 삭제하지 못했습니다.\"],\"2a07Yj\":[\"알림 템플릿 복사\"],\"2ekvhy\":[\"예외 빈도\"],\"2gDkH_\":[\"이벤트 발생 횟수를 입력해 주십시오.\"],\"2iyx-2\":[\"Ansible 컨트롤러 설명서\"],\"2n41Wr\":[\"워크플로우 템플릿 추가\"],\"2nsB1O\":[\"토큰으로 돌아가기\"],\"2ocqzE\":[\"Webhook: 이 템플릿에 대한 webhook을 활성화합니다.\"],\"2ooR7j\":[\"LDAP 5\"],\"2p6eVk\":[\"검색 모달\"],\"2pNIxF\":[\"워크플로 노드\"],\"2pgi-L\":[\"호스트를 사용할 수 있고 실행 중인 작업에 포함되어야 하는지\\n 여부를 나타냅니다. 외부 인벤토리에 속한 호스트의 경우, 인벤토리\\n 동기화 프로세스에 의해 재설정될 수 있습니다.\"],\"2qfwJn\":[\"덮어쓰기\"],\"2r06bV\":[\"Hipchat\"],\"2rvMKg\":[\"토큰 새로 고침\"],\"2w-INk\":[\"호스트 세부 정보\"],\"2zs1kI\":[\"이 값은 이전에 입력한 암호와 일치하지 않습니다. 암호를 확인하십시오.\"],\"3-SkJA\":[\"호스트에서 그룹을 분리하시겠습니까?\"],\"3-sY1p\":[\"대상 SMS 번호\"],\"328Yxp\":[\"소스 제어 분기\"],\"38Or-7\":[\"탭\"],\"38VIWI\":[\"템플릿 세부 정보 보기\"],\"39y5bn\":[\"금요일\"],\"3A9ATS\":[\"실행 환경을 찾을 수 없습니다.\"],\"3AOZPn\":[\"디버그 옵션 보기 및 편집\"],\"3FUtN9\":[\"인벤토리 소스 동기화\"],\"3IVQDN\":[\"이 일정은 UI에서 지원되지 않는 복잡한 규칙을\\n 사용합니다. 이 일정을 관리하려면 API를 사용하십시오.\"],\"3JjdaA\":[\"실행\"],\"3JnvxN\":[\"새 역할을 받을 리소스를 선택합니다. 다음 단계에서 적용할 역할을 선택할 수 있습니다. 여기에서 선택한 리소스에는 다음 단계에서 선택한 모든 역할이 수신됩니다.\"],\"3JzsDb\":[\"5월\"],\"3LoUor\":[\"대상 채널\"],\"3LqMX2\":[\"CIQ Ascender Automation Platform\"],\"3PAU4M\":[\"년\"],\"3PZalO\":[\"호스트를 찾을 수 없습니다.\"],\"3Rke7L\":[\"1 (정보)\"],\"3WGwSW\":[\"업데이트를 수행하기 전에 로컬 리포지토리를 완전히 삭제합니다. 리포지토리 크기에 따라 업데이트를 완료하는 데 필요한 시간이 크게 늘어날 수 있습니다.\"],\"3YSVMq\":[\"삭제 오류\"],\"3aIe4Y\":[\"새 조직 만들기\"],\"3b24mY\":[\"CPU \",[\"0\"]],\"3fG1e7\":[\"경과된 시간\"],\"3fMc43\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 년\"],\"other\":[\"#\",\" 년\"]}]],\"3hCQhK\":[\"인벤토리 플러그인\"],\"3hvUyZ\":[\"새로운 선택\"],\"3mTiHp\":[\"템플릿을 복사하지 못했습니다.\"],\"3pBNb0\":[\"출력 다시 로드\"],\"3sFvGC\":[\"인스턴스 활성화 또는 비활성화를 설정합니다. 비활성화된 경우 작업이 이 인스턴스에 할당되지 않습니다.\"],\"3sXZ-V\":[\"update Revision on Launch를 클릭합니다.\"],\"3uAM50\":[\"최종 사용자 라이센스 계약\"],\"3wPA9L\":[\"카테고리 설정\"],\"3y7qi5\":[\"인증 정보로 돌아가기\"],\"3yy_k-\":[\"모든 팀 보기.\"],\"4-RjdJ\":[[\"interval\"],\" year\"],\"40lLFI\":[\"다음 페이지로 이동\"],\"41KRqu\":[\"인증 정보 암호\"],\"45BzQy\":[\"상태 점검은 비동기 작업입니다. 다음을 참조하십시오.\"],\"45cx0B\":[\"서브스크립션 편집 취소\"],\"45gLaI\":[\"시작 시 자격 증명을 입력하라는 메시지를 표시합니다.\"],\"46SUtl\":[\"그룹 편집\"],\"479kuh\":[\"클립보드에 전체 버전을 복사합니다.\"],\"47e97a\":[\"최대 재시도 횟수\"],\"4BITzH\":[\"오류:\"],\"4LzLLz\":[\"모든 설정 보기\"],\"4Q4HZp\":[[\"pluralizedItemName\"],\" 을/를 찾을 수 없음\"],\"4QXpWJ\":[\"시간 초과\"],\"4QfhOe\":[\"not__ 및 __search와 같은 일부 검색 수정자는 스마트 인벤토리 호스트 필터에서 지원되지 않습니다. 이 필터를 사용하여 새 스마트 인벤토리를 생성하려면 제거합니다.\"],\"4S2cNE\":[\"로깅 설정 보기\"],\"4Wt2Ty\":[\"목록에서 항목 선택\"],\"4_ESDh\":[\"이 필드는 정규 표현식이어야 합니다\"],\"4_xiC_\":[\"아티팩트\"],\"4alXD6\":[\"이 그룹에서 동시에 실행할 최대 작업 수입니다.\\n 0은 제한이 적용되지 않음을 의미합니다.\"],\"4bhLaA\":[\"인증 정보 유형 선택\"],\"4cWhxn\":[\"이 인스턴스가 정책에 의해 관리되는지 여부를 제어합니다. 활성화된 경우, 인스턴스는 정책 규칙에 따라 인스턴스 그룹에 대한 자동 할당 및 할당 해제에 사용할 수 있습니다.\"],\"4dQFvz\":[\"완료\"],\"4g1rw0\":[\"이메일 알림이 호스트에 도달하려는 시도를 중지하고\\n 시간 초과되기까지의 시간(초)입니다. 범위는\\n 1초에서 120초입니다.\"],\"4hPyPF\":[\"저장 및 종료\"],\"4j2eOR\":[\"이 호스트가 속할 인벤토리를 선택합니다.\"],\"4jnim6\":[\"webhook 서비스를 선택합니다.\"],\"4km-Vu\":[\"규정 준수 외\"],\"4kw_um\":[[\"interval\"],\" minute\"],\"4lCMxZ\":[\"실패 설명:\"],\"4lgLew\":[\"2월\"],\"4mQyZf\":[\"webhook 서비스는 이를 공유 시크릿으로 사용할 수 있습니다.\"],\"4nLbTY\":[\"모든 관리 작업 보기\"],\"4o_cFL\":[\"애플리케이션 삭제\"],\"4s0pSB\":[\"playbook에 의해 관리되거나 영향을 받는 호스트 목록을 추가로 제한하는 호스트 패턴을 제공합니다. 여러 패턴이 허용됩니다. 패턴에 대한 자세한 정보와 예제는 Ansible 설명서를 참조하십시오.\"],\"4uVADI\":[\"클라이언트 시크릿\"],\"4vFDZV\":[\"새 작업 템플릿 만들기\"],\"4vkbaA\":[\"이 인벤토리 업데이트의 소스가 되는 프로젝트입니다.\"],\"4yGeRr\":[\"인벤토리 동기화\"],\"4zue79\":[\"저작권\"],\"5-qYGv\":[\"인스턴스 편집\"],\"54_SyV\":[[\"0\",\"plural\",{\"one\":[\"You do not have permission to cancel the following job:\"],\"other\":[\"You do not have permission to cancel the following jobs:\"]}]],\"56fd5u\":[\"이 워크플로우에서 모든 노드를 제거하시겠습니까?\"],\"5B77Dm\":[\"마지막 작업\"],\"5F5F4w\":[\"워크플로우 승인\"],\"5IhYoj\":[\"노드 유형\"],\"5K7kGO\":[\"문서\"],\"5KMGbn\":[\"이 작업을 취소하시겠습니까?\"],\"5RMgCw\":[\"호스트\"],\"5S4tZv\":[\"빈도가 예상 값과 일치하지 않음\"],\"5Sa1Ss\":[\"이메일\"],\"5TnQp6\":[\"작업 유형\"],\"5WFDw4\":[\"그룹 별로만\"],\"5X2wog\":[\"로그인하는 데 문제가 있었습니다. 다시 시도하십시오.\"],\"5_vHPm\":[\"TACACS + 설정 보기\"],\"5ajaW1\":[\"부모 노드의 아티팩트가 조건과 일치할 때 실행합니다.\"],\"5dJK4M\":[\"역할\"],\"5eHyY-\":[\"테스트 알림\"],\"5eL2KN\":[\"대상 URL\"],\"5lqXf5\":[\"팩토리 기본 설정으로 되돌립니다.\"],\"5n_soj\":[\"시작 시 작업 슬라이스 수를 입력하라는 메시지를 표시합니다.\"],\"5p6-Mk\":[\"실패한 작업으로 필터링\"],\"5pDe2G\":[\"Remove \",[\"0\"],\" Access\"],\"5pa4JT\":[\"플레이북 시작됨\"],\"5qauVA\":[\"이 워크플로우 작업 템플릿은 현재 다른 리소스에서 사용되고 있습니다. 삭제하시겠습니까?\"],\"5vA8H0\":[\"일치하는 호스트가 없음\"],\"5xzS8Q\":[\"이것이 「constructed」 플러그인의\\n 소스 파일임을 보장하는 토큰입니다.\"],\"5y9wkB\":[\"알림으로 돌아가기\"],\"6-OdGi\":[\"프로토콜\"],\"6-ptnU\":[\"옵션\"],\"623gDt\":[\"사용자를 삭제하지 못했습니다.\"],\"63C4Yo\":[\"컨테이너 그룹\"],\"66Zq7T\":[\"링크 변경 저장\"],\"66qTfS\":[\"지난 주\"],\"679-JR\":[\"id, 이름 또는 설명 필드에서 퍼지 검색\"],\"68OTAn\":[\"This intance is currently being used by other resources. Are you sure you want to delete it?\"],\"68h6WG\":[\"관리 작업 시작\"],\"69aXwM\":[\"기존 그룹 추가\"],\"69zuwn\":[\"Deprovisioning these instances could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"6ASSBg\":[\"LDAP 4\"],\"6BzDub\":[\"소프트 삭제\"],\"6GBt0m\":[\"메타데이터\"],\"6HLTEb\":[\"필터...\"],\"6J-cs1\":[\"시간 제한 (초)\"],\"6KhU4s\":[\"변경 사항을 저장하지 않고 Workflow Creator를 종료하시겠습니까?\"],\"6LTyxl\":[\"버전\"],\"6PmtyP\":[\"범례 전환\"],\"6RDwJM\":[\"토큰\"],\"6UYTy8\":[\"분\"],\"6V3Ea3\":[\"복사됨\"],\"6WwHL3\":[\"총 노드\"],\"6XOI1I\":[\"새 페더레이션 인벤토리 만들기\"],\"6XgEPi\":[\"시간\"],\"6YtxFj\":[\"이름\"],\"6Z5ACo\":[\"호스트 구성 키\"],\"6bpC9t\":[\"실패한 노드\"],\"6cylr_\":[\"Stdout\"],\"6f961q\":[\"누락된 경우에만\"],\"6hEnxG\":[\"권한 에스컬레이션 활성화\"],\"6j6_0F\":[\"관련 리소스\"],\"6kpN96\":[\"알림을 삭제하지 못했습니다.\"],\"6lGV3K\":[\"더 적은 수를 표시\"],\"6msU0q\":[\"하나 이상의 작업을 삭제하지 못했습니다.\"],\"6nsio_\":[\"명령 실행\"],\"6oNH0E\":[\"플러그인 구성 가이드.\"],\"6pMgh_\":[\"LDAP 설정 보기\"],\"6rSKy6\":[\"이 페더레이션 인벤토리의 소스 인벤토리를 선택합니다. 작업이 시작되면 호스트가 각 소스 인벤토리의 인스턴스 그룹으로 자동으로 라우팅됩니다.\"],\"6uvnKV\":[\"API 서비스/통합 키\"],\"6vrz8I\":[\"하나 이상의 작업을 취소하지 못했습니다.\"],\"6zGHNM\":[\"남아 있는 호스트\"],\"74MNbw\":[\"Ctrl IQ, Inc.\"],\"764xeZ\":[\"설문 조사를 업데이트하지 못했습니다.\"],\"7Bj3x9\":[\"실패\"],\"7ElOdS\":[\"대시보드 ID\"],\"7IUE9q\":[\"소스 변수\"],\"7JF9w9\":[\"질문 추가\"],\"7L01XJ\":[\"동작\"],\"7O5TcN\":[\"이벤트 요약을 사용할 수 없음\"],\"7PzzBU\":[\"User\"],\"7UZtKb\":[\"이 워크플로우 작업 템플릿을 소유한 조직입니다.\"],\"7VETeB\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"],\"7VpPHA\":[\"확인\"],\"7Xk3M1\":[\"이 작업이 실행할 playbook이 포함된 프로젝트를 선택합니다.\"],\"7ZhNzL\":[\"첫 페이지로 이동\"],\"7b8TOD\":[\"세부 정보\"],\"7bDeKc\":[\"서브스크립션 매니페스트\"],\"7fJwmW\":[\"선택된 항목 목록입니다.\"],\"7hS02I\":[[\"automatedInstancesSinceDateTime\"],\" 이후 \",[\"automatedInstancesCount\"]],\"7icMBj\":[\"사용 가능한 작업 데이터가 없습니다.\"],\"7kb4LU\":[\"승인됨\"],\"7p5kLi\":[\"대시보드\"],\"7q256R\":[\"분기 덮어쓰기 허용\"],\"7qFdk8\":[\"인증 정보 편집\"],\"7sMeHQ\":[\"키\"],\"7sNhEz\":[\"사용자 이름\"],\"7w3QvK\":[\"성공 메시지 본문\"],\"7wgt9A\":[\"플레이북 실행\"],\"7zmvk2\":[\"항목 실패\"],\"81eOdm\":[\"워크플로우 다시 시작\"],\"82O8kJ\":[\"이 프로젝트는 현재 동기화 중이며 동기화 프로세스가 완료될 때까지 클릭할 수 없습니다\"],\"82sWFi\":[\"관리\"],\"84Usx_\":[\"프로젝트를 삭제하지 못했습니다.\"],\"87a_t_\":[\"레이블\"],\"88ip8h\":[\"모두 되돌리기\"],\"8BkLPF\":[\"허용된 URI 목록, 공백으로 구분\"],\"8F8HYs\":[\"사용할 Ansible Automation Platform 서브스크립션을 선택합니다.\"],\"8H3Igx\":[[\"interval\"],\" month\"],\"8Oef5v\":[\"GIT 소스 제어의 URL 예제는 다음과 같습니다.\"],\"8XM8GW\":[\"역할을 적절하게 할당하지 못했습니다.\"],\"8Z236a\":[\"브랜드 로고\"],\"8ZsakT\":[\"암호\"],\"8_wZUD\":[\"팀 역할\"],\"8d57h8\":[\"기타 시스템 설정 보기\"],\"8gCRbU\":[\"기타 프롬프트\"],\"8gaTqG\":[\"유형 세부 정보\"],\"8kDNpI\":[\"조건이 평가되기 전에 부모 노드 결과가 필요합니다.\"],\"8l9yyw\":[\"작업 템플릿\"],\"8lEjQX\":[\"번들 설치\"],\"8lb4Do\":[\"서브스크립션 지우기\"],\"8oiwP_\":[\"입력 구성\"],\"8p_xVT\":[[\"0\",\"plural\",{\"one\":[[\"1\"]],\"other\":[[\"2\"]]}]],\"8u5g0S\":[\"스마트 인벤토리 삭제\"],\"8vETh9\":[\"표시\"],\"8wxHsh\":[\"이 워크플로우 작업 템플릿의 Webhook 키입니다.\"],\"8yd882\":[\"하나 이상의 팀을 연결 해제하지 못했습니다.\"],\"8zGO4o\":[\"필드는 지정된 정규식과 일치합니다.\"],\"8zoIOi\":[[\"0\",\"plural\",{\"one\":[\"This credential type is currently being used by some credentials and cannot be deleted.\"],\"other\":[\"Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?\"]}]],\"8zvzWO\":[\"이 워크플로우 작업 템플릿의 동시 실행을 허용합니다.\"],\"9-wVFp\":[\"페더레이션 인벤토리 세부 정보 보기\"],\"91UHfE\":[\"인벤토리 업데이트\"],\"91lyAf\":[\"동시 작업\"],\"933cZy\":[\"기타 시스템 설정\"],\"954HqS\":[\"호스트가 처음으로 자동화된 시점은 언제였나요?\"],\"95p1BK\":[\"새 사용자 만들기\"],\"98Qtlu\":[\"이 프로젝트를 사용하여 작업이 실행될 때마다 작업을 시작하기 전에 프로젝트의 리비전을 업데이트합니다.\"],\"991Df5\":[\"a new webhook key will be generated on save.\"],\"99qC6z\":[[\"interval\"],\" week\"],\"9Ah95g\":[[\"0\",\"plural\",{\"one\":[\"이 인벤토리는 현재 일부 템플릿에서 사용 중입니다. 정말 삭제하시겠습니까?\"],\"other\":[\"이 인벤토리를 삭제하면 이에 의존하는 일부 템플릿에 영향을 줄 수 있습니다. 그래도 삭제하시겠습니까?\"]}]],\"9BTNYL\":[\"Expected at least one of client_email, project_id or private_key to be present in the file.\"],\"9BpfLa\":[\"레이블 선택\"],\"9DOXq6\":[\"모든 템플릿 보기.\"],\"9DugxF\":[\"서브스크립션 유형\"],\"9HhFQ8\":[\"이 값 이외의 값을 가진 결과와 다른 필터를 만족하는 결과를 반환합니다.\"],\"9L1ngr\":[\"총 작업\"],\"9N-4tQ\":[\"인증 정보 유형\"],\"9NyAH9\":[\"건너뜀\"],\"9PB0sF\":[\"IRC\"],\"9Rsklx\":[\"모든 노드 제거\"],\"9Tmez1\":[\"인스턴스 세부 정보 보기\"],\"9UuGMQ\":[\"삭제 보류 중\"],\"9V-Un3\":[\"실제 스토리지 활성화\"],\"9VMv7k\":[\"건설된 인벤토리\"],\"9Wm-J4\":[\"암호 전환\"],\"9XA1Rs\":[\"현재 프로젝트가 동기화되고 있으며 동기화가 완료된 후 리버전을 사용할 수 있습니다.\"],\"9Y3BQE\":[\"조직 삭제\"],\"9YSB0Z\":[\"이 일정에는 인벤토리가 없습니다.\"],\"9ZnrIx\":[\"서브스크립션 정보 보기 및 편집\"],\"9fRa7M\":[\"삭제할 행 선택\"],\"9hmrEp\":[\"다시 시작\"],\"9iX1S0\":[\"이 작업을 수행하면 다음 인스턴스가 제거되며 이전에 연결되었던 모든 인스턴스에 대해 설치 번들을 다시 실행해야 할 수 있습니다.\"],\"9jfn-S\":[\"확장되지 않음\"],\"9l0RZY\":[\"사용 가능한 노드를 클릭하여 새 링크를 생성합니다. 취소하려면 그래프 외부를 클릭합니다.\"],\"9m7jms\":[\"이 페더레이션 인벤토리에 대해 작업이 시작될 때 호스트가 각각의 인스턴스 그룹으로 라우팅되는 소스 인벤토리입니다.\"],\"9mfJJf\":[\"작업 템플릿\"],\"9nhhVW\":[\"페이지\"],\"9nypdt\":[\"초기 값을 복원합니다.\"],\"9odS2n\":[\"실패한 호스트\"],\"9og-0c\":[\"현재 다른 리소스에서 이 실행 환경이 사용되고 있습니다. 삭제하시겠습니까?\"],\"9rFgm2\":[\"구독 용량\"],\"9rvzNA\":[\"연결 모달\"],\"9td1Wl\":[\"확인\"],\"9uI_rE\":[\"실행 취소\"],\"9u_dDE\":[\"연결할 수 없는 호스트 수\"],\"9uxVdR\":[\"소스 제어 인증 정보\"],\"9wvWk3\":[\"이 구성된 인벤토리 입력은 \\n 두 카테고리 모두에 대한 그룹을 생성하고 \\n 제한(호스트 패턴)을 사용하여 해당 두 그룹의 \\n 교집합에 있는 호스트만 반환합니다.\"],\"A1a8Ku\":[\"관리 작업 시작 오류\"],\"A1taO8\":[\"검색\"],\"A3o0Xd\":[\"이 조직에서 실행할 인스턴스 그룹입니다.\"],\"A6paZd\":[\"페더레이션 인벤토리 추가\"],\"A8lIi2\":[\"버전의 동기화\"],\"A9-PUr\":[\"상태 점검 요청이 제출되었습니다. 잠시 기다렸다가 페이지를 다시 로드하십시오.\"],\"AA2ASV\":[\"실행 환경이 성공적으로 복사되었습니다\"],\"ADVQ46\":[\"로그인\"],\"ARAUFe\":[\"인벤토리 삭제\"],\"AV22aU\":[\"문제가 발생했습니다..\"],\"AWOSPo\":[\"확대\"],\"Ab1y_G\":[\"구축된 재고 소스 동기화 취소\"],\"AgTBbk\":[[\"intervalValue\",\"plural\",{\"one\":[\"week\"],\"other\":[\"weeks\"]}]],\"AgTuXC\":[[\"pluralizedItemName\"],\": \",[\"itemsUnableToDelete\"],\"을 삭제할 수 있는 권한이 없습니다.\"],\"Ai2U7L\":[\"호스트\"],\"Aj3on1\":[\"외부 로깅 활성화\"],\"AoCBvp\":[\"작업 분할\"],\"Apl-Vf\":[\"Red Hat 서브스크립션 매니페스트\"],\"Apv-R1\":[\"업그레이드 또는 갱신할 준비가 되었으면 <0>에 문의하십시오.\"],\"AqdlyH\":[\"노드를 생성하거나 편집할 때 암호를 입력하라는 인증 정보가 있는 작업 템플릿을 선택할 수 없습니다.\"],\"ArtxnQ\":[\"소스 제어 참조\"],\"AsLVdj\":[\"한 줄에 하나의 IRC 채널 또는 사용자 이름을 사용합니다. 채널의\\n 파운드 기호(#)와 사용자의 골뱅이 기호(@)는\\n 필요하지 않습니다.\"],\"AwUsnG\":[\"인스턴스\"],\"AxC8wb\":[\"출력 복사\"],\"AxPAXW\":[\"결과를 찾을 수 없음\"],\"Axi4f8\":[\"Dragging item \",[\"id\"],\". Item with index \",[\"oldIndex\"],\" in now \",[\"newIndex\"],\".\"],\"Azw0EZ\":[\"새 스마트 인벤토리 만들기\"],\"B0HFJ8\":[\"하나 이상의 호스트를 연결 해제하지 못했습니다.\"],\"B0P3qo\":[\"작업 ID:\"],\"B0dbFG\":[\"일정 삭제\"],\"B2Zb_F\":[\"JSON\"],\"B3ZzHO\":[\"마지막 자동화\"],\"B4WcU9\":[[\"0\"],\" 님이 승인함 - \",[\"1\"]],\"B7FU4J\":[\"호스트 시작됨\"],\"B8bpYS\":[\"서브스크립션이 포함된 Red Hat 서브스크립션 매니페스트를 업로드합니다. 서브스크립션 매니페스트를 생성하려면 Red Hat 고객 포털에서 <0>서브스크립션 할당으로 이동하십시오.\"],\"BAmn8K\":[\"리소스 유형 선택\"],\"BERhj_\":[\"성공 메시지\"],\"BGNDgh\":[\"노드 별칭\"],\"BH7upP\":[\"POST\"],\"BIJ2_m\":[\"이 조직 내의 작업에 사용될 실행 환경입니다. 프로젝트, 작업 템플릿 또는 워크플로우 수준에서 실행 환경이 명시적으로 할당되지 않은 경우 대체로 사용됩니다.\"],\"BNDplB\":[\"템플릿이 성공적으로 복사됨\"],\"BWTzAb\":[\"수동\"],\"BaPk6N\":[\"playbook을 찾는 데 사용되는 기본 경로입니다. 이 경로 안에서 발견된 디렉터리가 playbook 디렉터리 드롭다운에 나열됩니다. 기본 경로와 선택한 playbook 디렉터리를 함께 사용하면 playbook을 찾는 데 사용되는 전체 경로가 제공됩니다.\"],\"BfYq0G\":[\"소스 제어 유형\"],\"Bg7M6U\":[\"결과를 찾을 수 없음\"],\"Bl2Djq\":[\"토큰 보기\"],\"Bl2eoO\":[\"암호화됨\"],\"BskWMl\":[\"연결할 수 없음\"],\"BsrdSv\":[\"JSON 또는 YAML 구문을 사용하여 인벤토리 변수를 입력합니다. 라디오 버튼을 사용하여 둘 사이를 전환합니다. 예제 구문은 Ansible Controller 설명서를 참조하십시오.\"],\"Bv8zdm\":[\"재고 입력\"],\"BwJKBw\":[\"/\"],\"Bz7WRU\":[[\"0\",\"plural\",{\"one\":[\"유효한 전화번호를 입력하십시오.\"],\"other\":[\"유효한 전화번호를 입력하십시오.\"]}]],\"BzEFor\":[\"또는\"],\"BzbzJb\":[\"팩트\"],\"BzfzPK\":[\"항목\"],\"C-gr_n\":[\"Azure AD 설정\"],\"C0sUgI\":[\"새 인벤토리 만들기\"],\"C2KEkR\":[\"SSH 암호\"],\"C3Q1LZ\":[\"OIDC 설정 보기\"],\"C4C-qQ\":[\"일정 세부 정보\"],\"C6GAUT\":[\"확장됨\"],\"C7dP40\":[[\"0\"],\" 을/를 거부하지 못했습니다.\"],\"C7s60U\":[\"Webhook 세부 정보\"],\"CAL6E9\":[\"팀\"],\"CDOlBM\":[\"인스턴스 ID\"],\"CE-M2e\":[\"정보\"],\"CGOseh\":[\"일정 세부 정보\"],\"CGZgZY\":[\"연결할 행을 선택\"],\"CG_9l6\":[\"LDAP 1\"],\"CGwKKr\":[[\"0\",\"plural\",{\"one\":[\"그룹을 삭제하시겠습니까?\"],\"other\":[\"그룹을 삭제하시겠습니까?\"]}]],\"CIEoqM\":[\"인스턴스 이름\"],\"CKc7jz\":[\"호스트 세부 정보 모달\"],\"CL7QiF\":[\"답을 입력한 다음 확인란 오른쪽을 클릭하여 답변을 기본값으로 선택합니다.\"],\"CLTHnk\":[\"설문 조사 질문 순서\"],\"CMmwQ-\":[\"알 수 없는 시작일\"],\"CNZ5h9\":[\"데이터 보존 기간\"],\"CS8u6E\":[\"Webhook 활성화\"],\"CSvk3a\":[\"Twilio의 「Messaging\\n Service」에 연결된 번호로 형식은 +18005550199입니다.\"],\"CW11B-\":[\"최소\"],\"CXJHPJ\":[\"(사용자 이름)에 의해 수정됨\"],\"CZDqWd\":[\"현재 프로젝트 버전이 최신 버전이 아닙니다. 최신 버전을 가져오려면 새로 고침하십시오.\"],\"CZg9aH\":[\"호스트 선택\"],\"C_Lu89\":[\"JSON 또는 YAML 구문을 사용하여 입력합니다. 구문 예제는 Ansible Controller 설명서를 참조하십시오.\"],\"C_NnqT\":[\"새 호스트 만들기\"],\"Cc8jO8\":[\"원격 호스트에 액세스하여 명령을 실행할 때 사용할 인증 정보를 선택합니다. Ansible에서 원격 호스트에 로그인해야 하는 사용자 이름 및 SSH 키 또는 암호가 포함된 인증 정보를 선택합니다.\"],\"CcKMRv\":[\"이 작업 템플릿은 현재 다른 리소스에서 사용하고 있습니다. 삭제하시겠습니까?\"],\"CczdmZ\":[\"모든 인증 정보 보기\"],\"CdGRti\":[\"모든 알림 템플릿 보기.\"],\"Ce28nP\":[\"< 0 > 참고: < 1 > 정책 규칙에 의해 관리되는 경우 인스턴스가 이 인스턴스 그룹과 다시 연결될 수 있습니다. \"],\"Cev3QF\":[\"시간 제한 (분)\"],\"ChTa9Z\":[[\"intervalValue\",\"plural\",{\"one\":[\"hour\"],\"other\":[\"hours\"]}]],\"CoPs3y\":[\"이 워크플로에는 노드가 구성되어 있지 않습니다.\"],\"CoTqdo\":[\"\\n Note that you may still see the group in the list after\\n disassociating if the host is also a member of that group’s\\n children. This list shows all groups the host is associated\\n with directly and indirectly.\\n \"],\"Coyxic\":[\"이 버튼을 클릭하여 선택한 인증 정보 및 지정된 입력을 사용하여 시크릿 관리 시스템에 대한 연결을 확인합니다.\"],\"Cs0oSA\":[\"설정 보기\"],\"Csvbqs\":[\"구성된 인벤토리 플러그인 문서를 여기에서 볼 수 있습니다.\"],\"Cx8SDk\":[\"토큰 만료 새로 고침\"],\"D-NlUC\":[\"시스템\"],\"D1JWCq\":[[\"interval\"],\" minutes\"],\"D4euEu\":[\"기타 인증 설정\"],\"D89zck\":[\"일요일\"],\"DBBU2q\":[\"이 필드에 대해 하나 이상의 값을 선택해야 합니다.\"],\"DBC3t5\":[\"이벤트\"],\"DBHTm_\":[\"8월\"],\"DFNPK8\":[\"실행 상태 점검\"],\"DGZ08x\":[\"모두 동기화\"],\"DHf0mx\":[\"새 인스턴스 만들기\"],\"DHrOgD\":[\"프로젝트 업데이트 상태\"],\"DIKUI7\":[\"최소 길이\"],\"DIX823\":[\"이 필드는 숫자여야 하며 \",[\"max\"],\"보다 작은 값이어야 합니다\"],\"DJIazz\":[\"성공적으로 승인됨\"],\"DNLiC8\":[\"설정 복원\"],\"DNqHaO\":[\"이 표는 구성된 인벤토리 플러그인의\\n 몇 가지 유용한 매개 변수를 제공합니다. 전체 매개 변수 목록은 \"],\"DPfwMq\":[\"완료\"],\"DV-Xbw\":[\"기본 언어\"],\"DVIUId\":[\"프롬프트 덮어쓰기\"],\"DZNGtI\":[\"프로젝트 체크아웃 결과\"],\"D_oBkC\":[\"GitHub 팀\"],\"DdlJTq\":[\"정확한 일치(지정되지 않은 경우 기본 조회).\"],\"De2WsK\":[\"이 작업은 선택한 팀에서 이 사용자의 모든 역할을 제거합니다.\"],\"DhSza7\":[\"컨트롤러 노드\"],\"DnkUe2\":[\"Webhook 서비스 선택\"],\"DqnAO4\":[\"첫 번째 자동화\"],\"Du6bPw\":[\"주소\"],\"Dug0C-\":[\"발생 횟수 이후\"],\"DyYigF\":[\"TACACS + 설정\"],\"Dz7fsq\":[\"확대\"],\"E6Z4zF\":[\"잘못된 파일 형식입니다. 유효한 Red Hat 서브스크립션 목록을 업로드하십시오.\"],\"E86aJB\":[\"역할 연결 해제!\"],\"E9wN_Q\":[\"마지막 상태 점검\"],\"EH6-2h\":[\"토폴로지 보기\"],\"EHu0x2\":[\"동기화\"],\"EIBcgD\":[\"프로젝트에서 소싱\"],\"EIkRy0\":[\"대상 채널\"],\"EJQLCT\":[\"워크플로 작업 템플릿을 삭제하지 못했습니다.\"],\"ENDbv1\":[\"모든 호스트 보기\"],\"ENRWp9\":[\"주석 태그\"],\"ENyw54\":[\"관련 그룹\"],\"EP-eCv\":[\"SAML 설정\"],\"EQ-qsg\":[\"워크플로우 작업 템플릿\"],\"ES0WE_\":[\"시간 초과 시\"],\"ETUQuF\":[\"하나 이상의 인벤토리를 삭제하지 못했습니다.\"],\"EWL-h4\":[\"host-description-\",[\"0\"]],\"E_QGRL\":[\"비활성화됨\"],\"E_tJey\":[\"기본 실행 환경\"],\"Eb5CN1\":[[\"0\",\"plural\",{\"one\":[\"This organization is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"EdQY6l\":[\"없음\"],\"Eff_76\":[\"현지 시간대\"],\"Eg4kGP\":[\"기본 답변\"],\"EmSrGB\":[\"이전\"],\"EmfKjn\":[\"문제 해결 설정 보기\"],\"Emna_v\":[\"소스 편집\"],\"EmzUsN\":[\"노드 세부 정보 보기\"],\"EnC3hS\":[\"사용자 정의 Pod 사양\"],\"EpH7Cd\":[\"인증 정보 삭제\"],\"Eq6_y5\":[\"this Tower documentation page\"],\"Eqp9wv\":[\"에서 JSON 예제 보기\"],\"EwxKbE\":[\"삭제됨\"],\"EzwCw7\":[\"질문 편집\"],\"F-0xxR\":[\"이 템플릿에서 리소스가 누락되어 있습니다.\"],\"F-LGli\":[[\"itemsUnableToDisassociate\"],\"과 같이 연결을 해제할 수 있는 권한이 없습니다.\"],\"F-_-es\":[\"인스턴스 선택\"],\"F0xJYs\":[\"크기 조정을 업데이트하지 못했습니다.\"],\"F2l57P\":[\"새 인스턴스가 온라인 상태가 될 때 이 그룹에 자동으로\\n 할당되는 모든 인스턴스의 최소 비율입니다.\"],\"FCnKmF\":[\"사용자 토큰 만들기\"],\"FD8Y9V\":[\"노드 아이콘을 클릭하여 세부 정보를 표시합니다.\"],\"FEr96N\":[\"테마\"],\"FFv0Vh\":[\"자동화\"],\"FG2mko\":[\"목록에서 항목 선택\"],\"FGnH0p\":[\"이 워크플로우의 모든 후속 노드가 취소됩니다.\"],\"FMpB-A\":[\"< 0 > 참고: 인스턴스가 < 1 > 정책 규칙에 의해 관리되는 경우 수동으로 연결된 인스턴스가 인스턴스 그룹에서 자동으로 연결 해제될 수 있습니다. \"],\"FO7Rwo\":[\"동료를 제거하시겠습니까?\"],\"FQto51\":[\"모든 줄 확장\"],\"FTuS3P\":[\"이 필드는 비워 둘 수 없습니다.\"],\"FV5MUV\":[\"사용자가 구성된 그룹의 정확성에 대한\\n 피드백이 필요한 경우, 플러그인 구성에서\\n strict: true를 사용하는 것이 좋습니다.\"],\"FXmp8Q\":[\"역할을 연결하지 못했습니다.\"],\"FYJRCY\":[\"하나 이상의 프로젝트를 삭제하지 못했습니다.\"],\"F_Nk65\":[\"출력 다운로드\"],\"F_c3Jb\":[\"사용자 정의 Kubernetes 또는 OpenShift Pod 사양\"],\"Failed\":[\"실패\"],\"Fanpmj\":[\"프롬프트 변수\"],\"FblMFO\":[\"메트릭 선택\"],\"FclH3w\":[\"성공적으로 저장했습니다!\"],\"FfGhiE\":[\"워크플로우를 저장하는 동안 오류가 발생했습니다!\"],\"FhTYgi\":[\"하나 이상의 작업 템플릿을 삭제하지 못했습니다.\"],\"FhhvWu\":[\"이 워크플로우의 모든 후속 노드가 취소됩니다.\"],\"FiyMaa\":[\".json 파일 선택\"],\"FjVFQ-\":[\"모듈 선택\"],\"FjkaiT\":[\"축소\"],\"FkQvI0\":[\"템플릿 편집\"],\"FlvpdU\":[\"If enabled, show the changes made\\n by Ansible tasks, where supported. This is equivalent to Ansible’s\\n --diff mode.\"],\"FnSb-y\":[\"작업 취소\"],\"FnZzou\":[\"인스턴스 상태\"],\"FncCci\":[\"RADIUS\"],\"Fo2bwm\":[\"작업자\"],\"Fo6qAq\":[\"Subversion 소스 제어의 URL 예제는 다음과 같습니다.\"],\"Fp0Rk4\":[\"'dev' 또는 'test'와 같이 이 인벤토리를 설명하는\\n 선택적 레이블입니다. 레이블을 사용하여 인벤토리와 완료된 작업을\\n 그룹화하고 필터링할 수 있습니다.\"],\"FqW8E0\":[\"사용된 용량\"],\"FsGJXJ\":[\"정리\"],\"Fx2-x_\":[\"사용자 역할 추가\"],\"G-jHgL\":[\"소스 경로 설정\"],\"G2KpGE\":[\"프로젝트 편집\"],\"G3myU-\":[\"화요일\"],\"G768_0\":[\"거부됨\"],\"G8jcl6\":[\"알림 템플릿\"],\"G9MOps\":[\"인벤토리 동기화 시 사용할 분기. 비어 있는 경우 프로젝트 기본값이 사용됩니다. 프로젝트 allow_override 필드가 true로 설정된 경우에만 허용됩니다.\"],\"GDvlUT\":[\"역할\"],\"GGWsTU\":[\"취소됨\"],\"GGuAXg\":[\"SAML 설정 보기\"],\"GHDQ7i\":[\"하나 이상의 조직을 삭제하지 못했습니다.\"],\"GJKwN0\":[\"일정\"],\"GLZDtF\":[\"시스템 경고\"],\"GLwo_j\":[\"0 (경고)\"],\"GMaU6_\":[\"시작 시 작업 유형을 입력하라는 메시지를 표시합니다.\"],\"GO6s6F\":[\"작업 설정\"],\"GRwtth\":[\"인스턴스에서 상태 점검을 실행합니다.\"],\"GSYBQc\":[\"API 서비스/통합 키\"],\"GTOcxw\":[\"사용자 편집\"],\"GU9vaV\":[\"연결할 수 없는 호스트\"],\"GXiLKo\":[\"텍스트 영역\"],\"GZIG7_\":[\"인벤토리가 성공적으로 복사됨\"],\"G_Dwo_\":[\"Choose an answer type or format you want as the prompt for the user.\\n Refer to the Ansible Controller Documentation for more additional\\n information about each option.\"],\"GaJLE6\":[\"초기자\"],\"Gd-B71\":[\"인증 정보 유형을 찾을 수 없습니다.\"],\"Ge5ecx\":[\"최대 호스트\"],\"GeIrWJ\":[[\"brandName\"],\" 로고\"],\"Gf3vm8\":[\"페이지당\"],\"GiXRTS\":[\"하나 이상의 사용자 토큰을 삭제하지 못했습니다.\"],\"Gix1h_\":[\"모든 작업 보기\"],\"GkbHM9\":[\"모든 프로젝트 보기.\"],\"Gn7TK5\":[\"툴 전환\"],\"GpNoVG\":[\"이 목록을 채울 일정을 추가하십시오.\"],\"GpWp6E\":[\"시스템 수준 기능 및 함수 정의\"],\"GtycJ_\":[\"작업\"],\"H0z3JJ\":[\"이 인수는 지정된 모듈과 함께 사용됩니다. 다음을 클릭하여 \",[\"moduleName\"],\"에 대한 정보를 찾을 수 있습니다 \"],\"H1M6a6\":[\"모든 인스턴스 보기.\"],\"H3kCln\":[\"호스트 이름\"],\"H6jbKn\":[\"사용자 인터페이스 설정\"],\"H7OUPr\":[\"일\"],\"H7e4dl\":[\"YAML 또는 JSON 중 하나를 사용하여\\n 키/값 쌍을 제공합니다.\"],\"H86f9p\":[\"접기\"],\"H9MIed\":[\"실행 노드\"],\"HAi1aX\":[\"Webhook 키 업데이트\"],\"HAzhV7\":[\"인증 정보\"],\"HDULRt\":[\"독특한 호스트\"],\"HGOtRu\":[\"알림 테스트에 실패했습니다.\"],\"HIfMSF\":[\"다중 선택 옵션\"],\"HLAK2g\":[\"This action will cancel the following jobs:\"],\"HODq3s\":[\"하나 이상의 워크플로우 승인을 거부하지 못했습니다.\"],\"HQ7e8y\":[\"대소문자를 구분하지 않는 동일한 버전입니다.\"],\"HQ7oEt\":[\"팀으로 돌아가기\"],\"HUx6pW\":[\"인젝터 구성\"],\"HajiZl\":[\"월\"],\"HbaQks\":[\"이 유형의 알림에 대한 수신자 목록을 만들려면 한 줄에 하나의 이메일 주소를 사용합니다.\"],\"HbnjOn\":[[\"interval\"],\" weeks\"],\"HcznyH\":[\"일부 또는 모든 인벤토리 소스를 동기화하지 못했습니다.\"],\"HdE1If\":[\"채널\"],\"HdErwL\":[\"승인할 행 선택\"],\"Hf0QDK\":[\"프로젝트가 성공적으로 복사됨\"],\"Hhnh8d\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 일\"],\"other\":[\"#\",\" 일\"]}]],\"HiTf1W\":[\"되돌리기 취소\"],\"HjxnnB\":[\"모듈 선택\"],\"HlhZ5D\":[\"TLS 사용\"],\"HoHveO\":[\"이 필터와 다른 필터를 모두 만족하는 결과를 반환합니다. 아무것도 선택하지 않으면 이것이 기본 세트 유형입니다.\"],\"HpK_8d\":[\"다시 로드\"],\"Ht1JWm\":[\"알림 색상\"],\"HwpTx4\":[\"playbook이 실행될 때 ansible이 생성하는 출력 수준을 제어합니다.\"],\"I0LRRn\":[\"번들 다운로드\"],\"I7Epp-\":[\"옵션 세부 정보\"],\"I9NouQ\":[\"서브스크립션을 찾을 수 없음\"],\"ICi4pv\":[\"자동화\"],\"ICt7Id\":[\"노드 유형\"],\"IEKPuq\":[\"다음 스크롤\"],\"IGQ11b\":[\"webhook 서비스와 공유되는 시크릿입니다. 서비스는 이를 사용하여 요청에 서명하므로 사용자의 리포지토리만 프로젝트 동기화를 트리거할 수 있습니다. 구성으로 관리하려면 자신의 시크릿을 입력하거나, 저장 시 하나가 생성되도록 필드를 비워 두십시오.\"],\"IJAVcb\":[\"애플리케이션으로 돌아가기\"],\"IKg_un\":[\"대상 채널 또는 사용자\"],\"IMJYui\":[\"SMS 메시지를 라우팅할 위치를 지정하려면 한 줄에 하나의\\n 전화번호를 사용합니다. 전화번호는 +11231231234 형식이어야 합니다. 자세한 내용은 Twilio 설명서를 참조하십시오.\"],\"IN6gbp\":[\"클릭하여 설문조사 질문의 순서를 다시 정렬합니다.\"],\"IPusY8\":[\"업데이트를 수행하기 전에 로컬 수정 사항을 모두 제거합니다.\"],\"ISuwrJ\":[\"실행 환경 편집\"],\"IV0EjT\":[\"테스트 알림\"],\"IVvM2B\":[\"활성화된 옵션\"],\"IWoF_f\":[\"설문 조사보기\"],\"IZfe0p\":[\"소스 제어 분기\"],\"Igz8MU\":[\"지난 2주\"],\"IiR1sT\":[\"노드 유형\"],\"IjDwKK\":[\"로그인 유형\"],\"Ikhk0q\":[\"이 워크플로우 작업 템플릿의 Webhook 서비스입니다.\"],\"Iqm2E5\":[\"이 목록을 채우려면 \",[\"pluralizedItemName\"],\" 을 추가하십시오.\"],\"IrC12v\":[\"애플리케이션\"],\"IrI9pg\":[\"종료일\"],\"IsJ8i6\":[\"워크플로의 브랜치를 선택합니다. 이 브랜치는 브랜치 입력을 요청하는 모든 작업 템플릿 노드에 적용됩니다.\"],\"IspLSK\":[\"관리 작업을 찾을 수 없습니다.\"],\"J0zi6q\":[\"태그 건너뛰기\"],\"J2HgCR\":[\"Red Hat, Inc.\"],\"J2d1y8\":[\"성공한 작업으로 필터링\"],\"J4y7Uk\":[\"워크플로우가 취소되었습니다 \"],\"J8VgfD\":[\"지정된 필드 또는 관련 개체가 null인지 여부를 확인합니다. 부울 값이 필요합니다.\"],\"JEGlfK\":[\"시작됨\"],\"JFnJqF\":[\"경과됨\"],\"JFphCp\":[\"3 (디버그)\"],\"JGvwnU\":[\"마지막으로 사용됨\"],\"JIX50w\":[\"인스턴스 그룹 폴백 방지: 활성화하면 작업 템플릿이 실행할 기본 설정 인스턴스 그룹 목록에 인벤토리 또는 조직 인스턴스 그룹을 추가하지 못하게 합니다.\"],\"JJwEMx\":[\"호스트 삭제됨\"],\"JKZTiL\":[\"이는 표준 실행 명령을 실행하기 위해 지원되는 상세 수준입니다.\"],\"JL3si7\":[\"업데이트 중\"],\"JLjfEs\":[\"하나 이상의 일정을 삭제하지 못했습니다.\"],\"JOmgRg\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 개월\"],\"other\":[\"#\",\" 개월\"]}]],\"JRa4kV\":[\"소스 제어 리포지토리에서 푸시가 발생할 때 프로젝트를 동기화하여 모든 작업 시작 시 폴링하거나 업데이트하지 않아도 로컬 복사본이 항상 최신 상태로 유지되도록 합니다.\"],\"JTHoCu\":[\"변경 사항 토글\"],\"JUwjsw\":[\"Select an activity type\"],\"JXgd33\":[\"대시보드로 돌아가기\"],\"J_2nGO\":[\"The execution environment that will be used for jobs\\n inside of this organization. This will be used a fallback when\\n an execution environment has not been explicitly assigned at the\\n project, job template or workflow level.\"],\"J_DUZt\":[\"인스턴스 그룹\"],\"Ja4VHl\":[[\"0\"],\" 기타 정보\"],\"JgP090\":[\"하위 모듈 추적\"],\"JjcTk5\":[\"소셜 로그인\"],\"JjfsZM\":[\"워크플로우 승인 삭제\"],\"JppQoT\":[\"마지막 재계산일:\"],\"JsY1p5\":[\"거부됨\"],\"Jvv6rS\":[\"다중 선택 옵션\"],\"JwqOfG\":[\"평가 대상\"],\"Jy9qCv\":[\"로그인 리디렉션 편집 취소\"],\"K5AykR\":[\"팀 삭제\"],\"K93j4j\":[\"레이블 이름\"],\"KC2nS5\":[\"삭제된 리소스\"],\"KDcLJ6\":[\"YAML:\"],\"KEY0qH\":[\"통과\"],\"KM6m8p\":[\"Team\"],\"KNOsJ0\":[\"이 작업 템플릿을 설명하는 선택적 레이블입니다(예: 'dev' 또는 'test'). 레이블을 사용하여 작업 템플릿과 완료된 작업을 그룹화하고 필터링할 수 있습니다.\"],\"KQ9EQm\":[\"구성된 인벤토리 플러그인 사용 방법\"],\"KR9Aiy\":[\"This inventory is currently being used by some templates. Are you sure you want to delete it?\"],\"KRf0wm\":[\"인증 정보 유형\"],\"KTvwHj\":[\"인증 정보 입력 소스\"],\"KVbzjm\":[\"시각화 도구\"],\"KXFYp9\":[\"서브스크립션 받기\"],\"KXnokb\":[\"전역적으로 사용 가능한 실행 환경을 특정 조직에 다시 할당할 수 없습니다.\"],\"KZp4lW\":[\"Lookup select\"],\"K_MYeX\":[\"사용자 세부 정보보기\"],\"KeRkFA\":[\"서브스크립션 선택 지우기\"],\"KeqCdz\":[\"제어 노드의 피어\"],\"Ki_j_-\":[\"저장 시 새 webhook 키를 생성하려면 비워 둡니다\"],\"KjBkMe\":[\"현재 이 컨테이너 그룹에 다른 리소스가 있습니다. 삭제하시겠습니까?\"],\"KjVvNP\":[\"패널 ID\"],\"KkMfgW\":[\"작업 템플릿\"],\"KkzJWF\":[\"첫 번째 자동화\"],\"KlQd8_\":[\"토큰 액세스 범위\"],\"KnN1Tu\":[\"만료\"],\"KoCnPE\":[\"작업 취소\"],\"KopV8H\":[\"root 그룹만 표시\"],\"KxIA0h\":[\"호스트 전환\"],\"Kz9DSl\":[\"기존 호스트 추가\"],\"KzQFvE\":[\"조직 편집\"],\"L1Ob4t\":[\"세부 정보 탭\"],\"L3ooU6\":[\"인증 정보\"],\"L7Nz3F\":[\"누락된 리소스\"],\"L8fEEm\":[\"그룹\"],\"L973Qq\":[\"서브스크립션 요청\"],\"LCl8Ck\":[\"날짜 검색 입력\"],\"LGl_pR\":[\"작업 설정 보기\"],\"LGryaQ\":[\"새 인증 정보 만들기\"],\"LQ29yc\":[\"재고 소스 동기화 시작\"],\"LQRys9\":[\"하위 모듈은 master 브랜치(또는 .gitmodules에 지정된 다른 브랜치)의 최신 커밋을 추적합니다. 아니요인 경우 하위 모듈은 기본 프로젝트에서 지정한 리비전으로 유지됩니다. 이는 git submodule update에 --remote 플래그를 지정하는 것과 동일합니다.\"],\"LQTgjH\":[\"프로젝트를 찾을 수 없음\"],\"LRePxk\":[\"새 인스턴스가 온라인 상태가 되면 이 그룹에 자동으로 할당되는 최소 인스턴스 수입니다.\"],\"LSUePQ\":[\"시작 | \",[\"0\"]],\"LULLsO\":[\"모든 조직 보기.\"],\"LV5a9V\":[\"피어\"],\"LVecP9\":[\"사용자 역할\"],\"LYAQ1X\":[\"동시 작업 활성화\"],\"LZr1lR\":[\"인스턴스 그룹을 찾을 수 없습니다.\"],\"Lc0RHh\":[\"일정 전환\"],\"LgD0Cy\":[\"애플리케이션 이름\"],\"LhMjLm\":[\"시간\"],\"Ll7Jei\":[\"LDAP3\"],\"LnYbGj\":[\"설문조사 편집\"],\"Lnnjmk\":[\"< 0 > < 1/> 새로운 \",[\"brandName\"],\" 사용자 인터페이스의 기술 미리보기는 < 2 > 여기 에서 찾을 수 있습니다. \"],\"Lqygiq\":[\"프로비저닝 콜백\"],\"LtBtED\":[\"알림 전환 성공\"],\"LuXP9q\":[\"액세스\"],\"LwHwt1\":[[\"brandName\"],\" 서브스크립션\"],\"Lwovp8\":[\"활성화하면 이 작업 템플릿의 동시 실행이 허용됩니다.\"],\"M0okDw\":[\"데이터 수집, 로고 및 로그인에 대한 기본 설정\"],\"M73whl\":[\"컨텍스트\"],\"MA-mp9\":[\"Webhook 참조 필터\"],\"MA7cMf\":[\"구성된 재고 매개 변수 테이블\"],\"MAI_nw\":[\"위의 필터를 사용하여 다른 검색을 시도하십시오.\"],\"MAV-SQ\":[\"인증 정보를 찾을 수 없습니다.\"],\"MApRef\":[\"로그인 리디렉션 재정의 URL을 편집하시겠습니까? 편집하는 경우 로컬 인증이 비활성화되어 있는 동안 사용자가 시스템에 로그인하는 데 영향을 미칠 수 있습니다.\"],\"MD0-Al\":[\"세션이 만료될 예정입니다.\"],\"MDQLec\":[\"Ansible이 인벤토리 소스 업데이트 작업에 대해 생성할 출력 수준을 제어합니다.\"],\"MGpavd\":[\"키 유형 헤드\"],\"MHM-bv\":[\"잘못된 링크 대상입니다. 자식 또는 상위 노드에 연결할 수 없습니다. 그래프 주기는 지원되지 않습니다.\"],\"MHbbol\":[\" 작업 분할\"],\"MKEPCY\":[\"팔로우\"],\"MP1v-1\":[\"범례\"],\"MP8dU9\":[\"컨테이너 레지스트리, 이미지 이름, 버전 태그를 포함한 전체 이미지 위치입니다.\"],\"MQPvAa\":[\"시작 시 레이블을 입력하라는 메시지를 표시합니다.\"],\"MQoyj6\":[\"워크플로우 작업 템플릿\"],\"MTLPCv\":[\"부모 노드가 실패 상태가 되면 실행합니다.\"],\"MVw5um\":[\"2 (자세한 내용)\"],\"MZU5bt\":[\"하나 이상의 그룹을 삭제하지 못했습니다.\"],\"M_gXds\":[\"Note: This instance may be re-associated with this instance group if it is managed by \"],\"MdhgLT\":[\"IRC 서버 암호\"],\"MfCEiB\":[\"Galaxy 인증 정보\"],\"MfQHgE\":[\"보관 일수\"],\"Mfk6hJ\":[\"하나 이상의 템플릿을 삭제하지 못했습니다.\"],\"Mhn5m4\":[\"레지스트리 인증 정보\"],\"Mn45Gz\":[\"인스턴스 그룹으로 돌아가기\"],\"MnbH31\":[\"페이지\"],\"MofjBu\":[\"이 프로젝트를 사용하는 작업에 사용될 실행 환경입니다. 작업 템플릿 또는 워크플로 수준에서 실행 환경이 명시적으로 할당되지 않은 경우 폴백으로 사용됩니다.\"],\"MpLngK\":[\"이 프로젝트의 webhook 끝점입니다. 푸시가 프로젝트 동기화를 트리거하도록 리포지토리의 webhook 구성에 추가합니다.\"],\"MpZRQy\":[\"Git\"],\"MuhG5I\":[[\"0\",\"plural\",{\"one\":[\"This approval cannot be deleted due to insufficient permissions or a pending job status\"],\"other\":[\"These approvals cannot be deleted due to insufficient permissions or a pending job status\"]}]],\"MwCc2O\":[\"이 워크플로우 작업 템플릿의 Webhook 자격 증명입니다.\"],\"Mwf3Mw\":[\"검색 필터를 사용하여 이 인벤토리의 호스트를\\n 채웁니다. 예: ansible_facts__ansible_distribution:\\\"RedHat\\\".\\n 추가 구문 및 예제는 설명서를\\n 참조하십시오. 추가 구문 및 예제는 Ansible Controller 설명서를\\n 참조하십시오.\"],\"MzcRa_\":[\"사용자 및 자동화 분석\"],\"Mzqo60\":[\"아티팩트와 비교할 값입니다. 가능한 경우 JSON으로 해석되며(예: true, 3), 그렇지 않으면 일반 문자열로 해석됩니다.\"],\"N1U4ZG\":[\"구독 규정 준수\"],\"N36GRB\":[\"이 필드는 숫자여야 하며 \",[\"min\"],\"보다 큰 값이어야 합니다\"],\"N40H-G\":[\"모두\"],\"N5vmCy\":[\"건설 인벤토리\"],\"N6GBcC\":[\"삭제 확인\"],\"N7wOty\":[\"이 작업에서 실행할 playbook을 선택합니다.\"],\"NAKA53\":[\"호스트 실패\"],\"NBONaK\":[\"팩트 수집\"],\"NCVKhy\":[\"최근 작업\"],\"NDQvUO\":[\"시작 시 태그를 입력하라는 메시지를 표시합니다.\"],\"NIuIk1\":[\"무제한\"],\"NLKsgx\":[[\"pluralizedItemName\"],\" 목록\"],\"NO1ZxL\":[\"애플리케이션 이름\"],\"NPfgIB\":[\"초\"],\"NQHZnb\":[\"정수\"],\"NRn4V6\":[[\"interval\"],\" months\"],\"NUNUrW\":[\"주석 태그(선택 사항)\"],\"NW-xDQ\":[\"이렇게 하면 이 페이지의 모든 구성 값이\\n 기본 출고 값으로 되돌아갑니다. 계속하시겠습니까?\"],\"NX18CF\":[\"해당일 또는 이후\"],\"NYxilo\":[\"최대 동시 작업 수\"],\"Na9fIV\":[\"항목을 찾을 수 없습니다.\"],\"NcVaYu\":[\"완료 시간\"],\"NeA1eI\":[\"Pan right\"],\"Never\":[\"없음\"],\"NgD4On\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"이 작업은 다음 작업을 취소합니다:\"],\"other\":[\"이 작업은 다음 작업을 취소합니다:\"]}]],\"NjnDuY\":[\"Dragging started for item id: \",[\"newId\"],\".\"],\"NjqMGF\":[\"리소스 유형\"],\"NnH3pK\":[\"테스트\"],\"No Jobs\":[\"작업 없음\"],\"NpJHAp\":[\"노드를 생성하거나 편집할 때 인벤토리 또는 프로젝트가 누락된 작업 템플릿을 선택할 수 없습니다. 다른 템플릿을 선택하거나 누락된 필드를 수정하여 계속 진행합니다.\"],\"NqIlWb\":[\"마지막 실행\"],\"NrGRF4\":[\"서브스크립션 선택 모달\"],\"NsXTPu\":[\"ansible 팩트를 사용하여 스마트 인벤토리를 생성하려면 스마트 인벤토리 화면으로 이동합니다.\"],\"NtD3hJ\":[\"관련 키\"],\"Nu4DdT\":[\"동기화\"],\"Nu4oKW\":[\"설명\"],\"Nu7VHX\":[\"선택한 리소스에 적용할 역할을 선택합니다. 선택한 모든 역할이 선택한 모든 리소스에 적용됩니다.\"],\"O-OYOe\":[\"팀 편집\"],\"O06Rp6\":[\"사용자 인터페이스\"],\"O1Aswy\":[\"만료되지 않음\"],\"O28qFz\":[\"작업 \",[\"0\"],\" 보기 \"],\"O2EuOK\":[\"SAML \",[\"samlIDP\"],\"으로 로그인\"],\"O2UpM1\":[\"검색\"],\"O3oNi5\":[\"이메일\"],\"O4ilec\":[\"대소문자를 구분하지 않는 정규식 버전입니다.\"],\"O5pAaX\":[\"차트를 표시할 인스턴스 및 메트릭을 선택합니다.\"],\"O78b13\":[\"이 토큰이 속한 애플리케이션이나 이 필드를 비워 개인 액세스 토큰을 만듭니다.\"],\"O8_96D\":[\"리스너 포트\"],\"O9VQlh\":[\"빈도 선택\"],\"OA8xiA\":[\"Panhiera\"],\"OA99Nq\":[\"호스트가 마지막으로 자동화한 시기는 언제인가요?\"],\"OC4Tzv\":[\"여기\"],\"OGoqLy\":[\"# sources with sync failures.\"],\"OHGMM6\":[\"시작일/시간\"],\"OIv5hN\":[\"서브스크립션 세부 정보로 리디렉션\"],\"OJ9bHy\":[\"하나 이상의 그룹을 연결 해제하지 못했습니다.\"],\"OOq_rD\":[\"플레이북 실행\"],\"OPTWH4\":[\"HTTPS 인증서 확인 활성화\"],\"ORxrw7\":[\"남은 일수\"],\"OSH8xi\":[\"홉\"],\"OcRJRt\":[\"작업 취소 확인\"],\"Oe_VOY\":[\"하나 이상의 인스턴스를 제거하지 못했습니다.\"],\"OgB1k4\":[\"인수\"],\"OiCz65\":[\"Grafana URL\"],\"Oiqdmc\":[\"GitHub 조직으로 로그인\"],\"Oj2Ix6\":[\"작업이 취소되기 전에 실행되는 시간(초)입니다. 작업 시간 초과가 없도록 기본값은 0입니다.\"],\"OjwX8k\":[\"토큰 정보\"],\"OlpaBt\":[\"동시 작업: 활성화하면 이 작업 템플릿의 동시 실행이 허용됩니다.\"],\"OmbooC\":[\"호스트 시작됨\"],\"OogRLI\":[\"페더레이션 인벤토리를 찾을 수 없습니다.\"],\"OqE3G-\":[\"id 필드에서 정확한 검색\"],\"Osn70z\":[\"디버그\"],\"OvBnOM\":[\"설정으로 돌아가기\"],\"OyGPiW\":[\"서브스크립션 설정\"],\"OzssJK\":[\"명령 실행\"],\"P3spiP\":[\"템플릿으로 돌아가기\"],\"P7d85D\":[\"팀 액세스 제거\"],\"P8fBlG\":[\"인증\"],\"PByO0X\":[\"투표\"],\"PCEmEr\":[\"사용자 토큰\"],\"PJ1B0S\":[[\"0\",\"plural\",{\"one\":[\"This project is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"PJf54Q\":[\"출처로 돌아가기\"],\"PKTjJ3\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"weekday\"],\" of \",[\"month\"]],\"4\":[\"The fourth \",[\"weekday\"],\" of \",[\"month\"]],\"5\":[\"The fifth \",[\"weekday\"],\" of \",[\"month\"]],\"one\":[\"The first \",[\"weekday\"],\" of \",[\"month\"]],\"two\":[\"The second \",[\"weekday\"],\" of \",[\"month\"]]}]],\"PLzYyl\":[\"빈도 예외 세부 정보\"],\"PMk2Wg\":[\"프로비저닝 해제 실패\"],\"POKy-m\":[\"실행 환경 복사\"],\"PPsHsC\":[\"모두 기본값으로 되돌립니다.\"],\"PQPOpT\":[\"인벤토리 파일\"],\"PRuZiQ\":[\"버전 새로 고침\"],\"PUnovD\":[\"Amazon EC2\"],\"PVCOQE\":[\"피어가 제거되었습니다. 변경 사항을 적용하려면 \",[\"0\"],\" 에 대한 설치 번들을 다시 실행하십시오.\"],\"PWwwY2\":[\"연결 해제\"],\"PYPqaM\":[\"패널 ID (선택 사항)\"],\"PZBWpL\":[\"Switch to light mode\"],\"P_s0vy\":[\"이 webhook 서비스의 인증 정보 유형을 조회할 수 없으므로 webhook 인증 정보 필드를 사용할 수 없습니다.\"],\"PaTL2O\":[\"수신자 목록\"],\"PhufXn\":[\"작업 분할 부모\"],\"Pi5vnX\":[\"구성된 인벤토리 소스를 동기화하지 못했습니다.\"],\"PiK6Ld\":[\"토요일\"],\"PiRb8z\":[\"최신 동기화\"],\"PjkoCm\":[\"아래 노드를 삭제하시겠습니까.\"],\"PkVlOm\":[\"HTTP 헤더를 JSON 형식으로 지정합니다. 예제 구문은\\n Ansible Controller 설명서를 참조하십시오.\"],\"Po1btV\":[\"전역 탐색\"],\"Po7y5X\":[\"실행 환경을 복사하지 못했습니다.\"],\"PvgcEq\":[\"Draggable list to reorder and remove selected items.\"],\"PwAMWD\":[\"모든 작업 이벤트 축소\"],\"PyV1wC\":[\"인스턴스 그룹 폴백 방지\"],\"Q3P_4s\":[\"작업\"],\"Q4hWRC\":[\"Workflow Jobs (\",[\"total\"],\")\"],\"Q5ZW8j\":[\"서브스크립션 테이블\"],\"QF_MpS\":[\"\\n 이 그룹에 직접 있는 호스트만 연결을\\n 해제할 수 있습니다. 하위 그룹의 호스트는 해당 호스트가 속한\\n 하위 그룹 수준에서 직접 연결을 해제해야 합니다.\\n \"],\"QFdBqu\":[\"가장 중요\"],\"QGbLBK\":[\"작업 ID\"],\"QHF6CU\":[\"플레이\"],\"QIOH6p\":[\"초기자 (사용자 이름)\"],\"QIpNLR\":[\"인벤토리 동기화 실패 없음\"],\"QIq3_3\":[\"참고: 선택한 순서에 따라 실행 우선 순위가 설정됩니다. 드래그를 활성화하려면 둘 이상의 항목을 선택합니다.\"],\"QJbMvX\":[\"실행 시 암호가 필요한 인증 정보는 허용되지 않습니다. 계속하려면 다음 인증 정보를 제거하거나 동일한 유형의 인증 정보로 교체하십시오: \",[\"0\"]],\"QJowYS\":[\"삭제 확인\"],\"QKUQw1\":[\"새 호스트 만들기\"],\"QKbQTN\":[\"활동 스트림 유형 선택기\"],\"QOF7Jg\":[\"승인하지 못했습니다 \",[\"0\"],\".\"],\"QPRWww\":[\"실행 유형\"],\"QR908H\":[\"설정 이름\"],\"QT1rDU\":[\"GitHub Enterprise\"],\"QTwM6Y\":[\"이 작업이 실행할 playbook이 포함된 프로젝트입니다.\"],\"QYKS3D\":[\"최근 작업\"],\"QamIPZ\":[\"시작하려면 시작 버튼을 클릭하십시오.\"],\"Qay_5h\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"Qd2E32\":[\"주어진 호스트 변수 딕트에서 활성화된 상태를 검색합니다. 활성화된 변수는 점 표기법 (예: 'foo.bar') 을 사용하여 지정할 수 있습니다.\"],\"Qf36YE\":[\"상세 정보\"],\"QgnNyZ\":[\"동기화 오류\"],\"Qhb8lT\":[\"새 애플리케이션 만들기\"],\"QmvYrA\":[\"워크플로우 작업 템플릿에 대한 선택적 설명입니다.\"],\"QnJn75\":[\"마지막 실행\"],\"Qv59HG\":[\"인증 정보 유형 선택\"],\"Qv91_c\":[\"LDAP 2\"],\"QyjCeq\":[\"용량\"],\"R-uZ8Y\":[\"SAML으로 로그인\"],\"R633QG\":[\"워크플로우 승인으로 돌아가기\"],\"R7s3iG\":[\"다음으로 돌아가기\"],\"R9Khdg\":[\"자동\"],\"R9sZsA\":[\"모든 그룹 및 호스트 삭제\"],\"RBDHUE\":[\"시작 시 실행 환경을 입력하라는 메시지를 표시합니다.\"],\"RI8cIw\":[\"이 조직에서 관리할 수 있는 최대 호스트 수입니다.\\n 값은 기본적으로 0이며 이는 제한이 없음을 의미합니다.\\n 자세한 내용은 Ansible 설명서를 참조하십시오.\"],\"RIcSTA\":[\"만료일\"],\"RIeAlp\":[\"작업이 이 인벤토리를 사용하여 실행될 때마다 작업 작업을 실행하기 전에 선택한 소스에서 인벤토리를 새로 고칩니다.\"],\"RK1gDV\":[\"Azure AD로 로그인\"],\"RMdd1C\":[\"없음 (한 번 실행)\"],\"RO9G1f\":[\"이 필드는 0보다 커야 합니다\"],\"RPnV2o\":[\"검색 필터에서 결과를 생성하지 않았습니다.\"],\"RThfvh\":[\"관련 팀을 분리하시겠습니까?\"],\"R_mzhp\":[\"사용자 토큰에 실패했습니다.\"],\"RbIaa9\":[\"토큰을 찾을 수 없습니다.\"],\"RdLvW9\":[\"작업 다시 시작\"],\"Rguqao\":[\"삭제할 행 선택\"],\"RhOukN\":[[\"interval\"],\" hour\"],\"RiQMUh\":[\"실행 중\"],\"RjIKOw\":[\"호스트에서 인벤토리를 변경할 수 없음\"],\"RjkhdY\":[\"필드는 값으로 시작합니다.\"],\"RkXlPZ\":[\"GitHub\"],\"RlsPz7\":[\"이 링크를 삭제하시겠습니까?\"],\"Rm1iI_\":[\"시작 시 변수를 입력하라는 메시지를 표시합니다.\"],\"Roaswv\":[\"User Guide\"],\"RpKSl3\":[\"인증 정보가 성공적으로 복사됨\"],\"RsZ4BA\":[\"마지막 스크롤\"],\"RtKKbA\":[\"마지막\"],\"Ru59oZ\":[\"이 템플릿에 대한 webhook을 활성화합니다.\"],\"RuEWFx\":[\"날짜에\"],\"RuiOO0\":[\"하나 이상의 애플리케이션을 삭제하지 못했습니다.\"],\"Rw1xwN\":[\"콘텐츠 로딩 중\"],\"RxzN1M\":[\"활성화됨\"],\"RyPas1\":[\"Cancel selected jobs\"],\"S0kLOH\":[\"ID\"],\"S2nsEw\":[\"비교보다 큽니다.\"],\"S5gO6Y\":[\"워크플로우에 추가 명령줄 변수를 전달합니다.\"],\"S6zj7M\":[\"작업 템플릿의 경우 run을 선택하여 playbook을 실행합니다. check를 선택하면 playbook을 실행하지 않고 playbook 구문 확인, 환경 설정 테스트 및 문제 보고만 수행합니다.\"],\"S7kN8O\":[\"하나 이상의 사용자를 삭제하지 못했습니다.\"],\"S7tNdv\":[\"성공 시\"],\"S8FW2i\":[\"이 소스에 의해 동기화될 인벤토리 파일. 드롭다운에서 선택하거나 입력란에 파일을 입력할 수 있습니다.\"],\"SA-KXq\":[\"팬업\"],\"SAw-Ux\":[[\"username\"],\" 에서 \",[\"0\"],\" 액세스 권한을 삭제하시겠습니까?\"],\"SBfnbf\":[\"모든 실행 환경 보기\"],\"SC1Cur\":[\"알 수 없는 상태\"],\"SDND4q\":[\"구성되지 않음\"],\"SIJDi3\":[\"용량 조정\"],\"SJjggI\":[\"업데이트 옵션\"],\"SJmHMo\":[\"설명서.\"],\"SLm_0U\":[\"IRC 서버 포트\"],\"SODyJ3\":[\"호스트 동기화 확인\"],\"SRiPhD\":[\"노드 제거 취소\"],\"SV5nA1\":[\"이전 단계 중 일부에는 오류가 있습니다.\"],\"SVG6MY\":[\"이전에 저장된 값으로 필드를 되돌리기\"],\"SYbJcn\":[\"알림 템플릿 편집\"],\"SZvybZ\":[\"LDAP 기본값\"],\"SZw9tS\":[\"세부 정보 보기\"],\"SbRHme\":[\"텍스트 영역\"],\"Se_E0z\":[\"워크플로우 작업\"],\"Sgr5NW\":[\"상태 점검을 실행할 인스턴스를 선택합니다.\"],\"Sh2XTJ\":[\"알림 유형\"],\"SiexHs\":[\"대시보드(모든 활동)\"],\"Sja7f-\":[\"호스트가 몇 번이나 삭제되었나요?\"],\"Sjoj4f\":[\"인증 정보 이름\"],\"SlfejT\":[\"오류\"],\"SoREmD\":[\"애플리케이션 및 토큰\"],\"SqA8uD\":[\"작업 실행\"],\"SqLEdN\":[\"스마트 인벤토리를 삭제하지 못했습니다.\"],\"SqYo9m\":[\"인스턴스로 돌아가기\"],\"Ssdrw4\":[\"더 이상 사용되지 않음\"],\"Successful\":[\"성공\"],\"SvPvEX\":[\"워크플로우 승인 메시지 본문\"],\"Svkela\":[\"이전 페이지로 이동\"],\"SwJLlZ\":[\"워크플로우 거부 메시지 본문\"],\"SxGqey\":[\"일반 OIDC 설정\"],\"Sxm8rQ\":[\"사용자\"],\"SzFxHC\":[\"LDAP 설정\"],\"SzQMpA\":[\"포크\"],\"T2M20E\":[\"그만큼\"],\"T2mGOG\":[\"docs.ansible.com\"],\"T2x15z\":[\"알림을 전환하지 못했습니다.\"],\"T4a4A4\":[\"Webhook 키\"],\"T7yEGN\":[\"사용자가 이 애플리케이션의 토큰을 획득하기 위해 사용해야 하는 권한 부여 유형\"],\"T91vKp\":[\"플레이\"],\"T9hZ3D\":[\"GitHub Enterprise 팀\"],\"TAnffV\":[\"이 노드 편집\"],\"TBH48u\":[\"팀을 삭제하지 못했습니다.\"],\"TC32CH\":[\"데이터 유지 일수\"],\"TD1APv\":[\"서브스크립션 가져오기\"],\"TJVvMD\":[\"관련 검색 유형\"],\"TLomdD\":[[\"sessionCountdown\",\"plural\",{\"one\":[\"You will be logged out in \",\"#\",\" second due to inactivity\"],\"other\":[\"You will be logged out in \",\"#\",\" seconds due to inactivity\"]}]],\"TMJ39S\":[\"역할 연결 해제\"],\"TMLAx2\":[\"필수 항목\"],\"TO3h59\":[\"외부 보안 관리 시스템에서 필드 채우기\"],\"TO4OtU\":[\"Insights 인증 정보\"],\"TOjYb_\":[\"구성된 인벤토리 호스트 세부 정보 보기\"],\"TP9_K5\":[\"토큰\"],\"TRDppN\":[\"Webhook\"],\"TTMvf7\":[\"그룹 유형\"],\"TU6IDa\":[\"사용자 유형\"],\"TXKmNM\":[\"인벤토리를 선택해야 함\"],\"TZEuIE\":[\"인증 정보 유형으로 돌아가기\"],\"T_87By\":[\"매개변수\"],\"Ta0ts5\":[\"변경 사항 표시\"],\"TcnG-2\":[\"새로운 실행 환경 만들기\"],\"TgSxH9\":[\"콜백 URL 프로비저닝\"],\"TkiN8D\":[\"사용자 세부 정보\"],\"Tmh24b\":[\"활성화하면 작업 템플릿이 실행할 기본 설정 인스턴스 그룹 목록에 인벤토리 또는 조직 인스턴스 그룹을 추가하지 못하게 합니다. 참고: 이 설정이 활성화되어 있고 빈 목록을 제공한 경우 전역 인스턴스 그룹이 적용됩니다.\"],\"Tmuvry\":[\"설정 유형 자동 완성\"],\"ToOoEw\":[\"인증 정보 복사\"],\"Tof7pX\":[\"작업\"],\"Tq71UT\":[\"평일\"],\"Tx3NMN\":[\"개인 키 암호\"],\"TxKKED\":[\"구축된 재고 세부 정보 보기\"],\"TyaPAx\":[\"시스템 관리자\"],\"Tz0i8g\":[\"설정\"],\"U-nEJl\":[\"GitHub 설정 보기\"],\"U011Uh\":[\"마지막 확인\"],\"U7rA2a\":[\"선택하지 않으면 병합이 수행되어 로컬 변수와 외부 소스에 있는 변수를 결합합니다.\"],\"UDf-wR\":[\"사용한 구독\"],\"UEaj7U\":[\"인벤토리 동기화 실패\"],\"UJpDop\":[\"Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"UJsNNk\":[\"소스 제어 버전\"],\"UPasE4\":[\"Azure AD 기본값\"],\"UPmrRI\":[\"마지막에 대소문자를 구분하지 않는 버전입니다.\"],\"URmyfc\":[\"세부 정보\"],\"UX2wV1\":[[\"0\",\"plural\",{\"one\":[\"This credential is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"UXBCwc\":[\"성\"],\"UY6iPZ\":[\"활성화되면 제어 노드가 이 인스턴스를 자동으로 피어링합니다. 비활성화된 경우, 인스턴스는 연결된 동료에게만 연결됩니다.\"],\"UYD5ld\":[\"실행 시 버전 업데이트를 클릭합니다\"],\"UYUgdb\":[\"순서\"],\"U_JUCL\":[\"Red Hat Insights\"],\"Ua-Kc6\":[\"www.json.org\"],\"UbOul8\":[\"삭제하시겠습니까\"],\"UbRKMZ\":[\"보류 중\"],\"UbqhuT\":[\"전체 노드 리소스 오브젝트를 검색하지 못했습니다.\"],\"Uc_tSU\":[\"툴 전환\"],\"UgFDh3\":[\"이 인벤토리는 현재 다른 리소스에서 사용하고 있습니다. 삭제하시겠습니까?\"],\"UirGxE\":[\"오류\"],\"UlykKR\":[\"세 번째\"],\"Uo1S9q\":[\"Azure AD Tenant로 로그인\"],\"UueF8b\":[\"실행 환경이 없거나 삭제되었습니다.\"],\"UvGjRK\":[\"활성화하면 이 playbook을 관리자로 실행합니다.\"],\"UwJJCk\":[\"실패한 호스트 다시 시작\"],\"UxKoFf\":[\"탐색\"],\"V-7saq\":[[\"pluralizedItemName\"],\" 을/를 삭제하시겠습니까?\"],\"V-rJKF\":[\"Seconds\"],\"V0Xv3_\":[[\"intervalValue\",\"plural\",{\"one\":[\"day\"],\"other\":[\"days\"]}]],\"V0fM4k\":[\"사용자 분석\"],\"V1EGGU\":[\"이름\"],\"V2-omF\":[[\"0\",\"plural\",{\"one\":[\"최종 삭제가 처리될 때까지 인벤토리는 대기 상태가 됩니다.\"],\"other\":[\"최종 삭제가 처리될 때까지 인벤토리는 대기 상태가 됩니다.\"]}]],\"V2RwJr\":[\"청취자 주소\"],\"V2q9w9\":[\"If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode.\"],\"V3z83V\":[\"LDAP 3\"],\"V4WsyL\":[\"링크 추가\"],\"V5RUpn\":[\"수신자 목록\"],\"V7qsYh\":[\"참고: 이러한 인증 정보의 순서는 콘텐츠의 동기화 및 조회에 대한 우선 순위를 설정합니다. 끌어오기를 활성화하려면 하나 이상 선택합니다.\"],\"V9xR6T\":[\"섹션 확장\"],\"VAI2fh\":[\"새 컨테이너 그룹 만들기\"],\"VAcXNz\":[\"수요일\"],\"VEj6_Y\":[\"워크플로우 승인\"],\"VFvVc6\":[\"세부 정보 편집\"],\"VJUm9p\":[\"현재 페이지\"],\"VK2gzi\":[\"playbook을 실행하는 동안 사용할 병렬 또는 동시 프로세스 수입니다. 빈 값 또는 1보다 작은 값은 일반적으로 5인 Ansible 기본값을 사용합니다. 기본 포크 수는 다음을 변경하여 재정의할 수 있습니다\"],\"VL2WkJ\":[\"마지막 \",[\"dayOfWeek\"]],\"VLdRt2\":[\"동기화 소스 시작\"],\"VNUs2y\":[\"최대 포크\"],\"VSJ6r5\":[\"일정이 활성화됨\"],\"VSim_H\":[\"인벤토리 소스 삭제\"],\"VTDO7X\":[\"이벤트 세부 정보 모달\"],\"VU3Nrn\":[\"누락됨\"],\"VWL2DK\":[\"GitHub 조직\"],\"VXFjd8\":[\"메트릭\"],\"VZfXhQ\":[\"홉 노드\"],\"VdcFUD\":[\"최종 사용자 라이센스 계약\"],\"ViDr6F\":[\"새 그룹 추가\"],\"VmClsw\":[\"이 노드와 연결된 리소스가 삭제되었습니다.\"],\"VmvLj9\":[\"클라이언트 장치의 보안 수준에 따라 Public 또는 Confidential로 설정합니다.\"],\"Vqd-tq\":[\"모두 되돌리기 확인\"],\"Vqgeac\":[\"Press space or enter to begin dragging,\\n and use the arrow keys to navigate up or down.\\n Press enter to confirm the drag, or any other key to\\n cancel the drag operation.\"],\"Vvbbn2\":[\"역할을 삭제하지 못했습니다.\"],\"Vw8l6h\":[\"오류가 발생했습니다.\"],\"VzE_M-\":[\"알림 전환 실패\"],\"W-O1E9\":[\"프로젝트 복사\"],\"W1iIqa\":[\"인벤토리 그룹 보기\"],\"W3TNvn\":[\"사용자로 돌아가기\"],\"W3pOzF\":[\"이 프로젝트를 사용하는 작업 템플릿에서 소스 제어 브랜치 또는 리비전 변경을 허용합니다.\"],\"W6uTJi\":[\"인스턴스를 가져오지 못했습니다.\"],\"W7DGsV\":[\"(사용자 이름)에 의해 시작됨\"],\"W9XAF4\":[\"평일\"],\"W9uQXX\":[\"프롬프트\"],\"WAjFYI\":[\"시작일\"],\"WD8djW\":[\"링크 삭제 확인\"],\"WL91Ms\":[\"Delete Groups?\"],\"WPM2RV\":[\"응답 유형\"],\"WQJduu\":[\"키 선택\"],\"WTN9YX\":[\"계정 토큰\"],\"WTV15I\":[\"로그인 리디렉션 덮어쓰기 URL 편집\"],\"WVzGc2\":[\"서브스크립션\"],\"WX9-kf\":[\"IRC 닉네임\"],\"Wc6m4J\":[\"가져올 refspec입니다(Ansible git 모듈에 전달됨). 이 매개변수를 사용하면 브랜치 필드를 통해 다른 방법으로는 사용할 수 없는 참조에 액세스할 수 있습니다.\"],\"Wdl2f2\":[\"이 필드는 최소 \",[\"0\"],\"자 이상이어야 합니다\"],\"WgsBEi\":[\"새 스마트 인벤토리를 생성하려면 하나 이상의 검색 필터를 입력합니다.\"],\"WhSFGl\":[[\"name\"],\"으로 필터링\"],\"Wi1pUG\":[[\"numJobsToCancel\",\"plural\",{\"one\":[[\"0\"]],\"other\":[[\"1\"]]}]],\"Wk1rOS\":[\"그래프를 사용 가능한 화면 크기에 맞춥니다.\"],\"Wm7XbF\":[\"하나 이상의 인증 정보를 삭제하지 못했습니다.\"],\"WqaDMq\":[\"필드에 값이 있습니다.\"],\"Wy25yg\":[\"Twilio\"],\"X03-eC\":[\"값을 입력하십시오.\"],\"X5V9DW\":[\"노드를 재구성하려면 아래의 편집 버튼을 클릭합니다.\"],\"X6d3Zy\":[\"조직을 삭제하지 못했습니다.\"],\"X97mbf\":[\"작업 유형 선택\"],\"XA12d8\":[\"슬라이스 자체의 호스트 외에도 각 작업 슬라이스에 포함할 호스트 이름의 선택적 쉼표로 구분된 목록입니다. play가 모든 슬라이스가 의존하는 localhost와 같은 조정 호스트를 대상으로 할 때 유용합니다. 이름은 인벤토리 호스트와 정확히 일치합니다. 그룹과 패턴은 지원되지 않습니다. 고정된 호스트는 슬라이스당 한 번씩 play를 실행합니다.\"],\"XBROpk\":[\"워크플로우에서 관리하거나 영향을 받는 호스트 목록을 추가로 제한할 호스트 패턴을 제공합니다.\"],\"XCCkju\":[\"노드 편집\"],\"XFRygA\":[\"원격 아카이브 소스 제어의 URL 예제는 다음과 같습니다.\"],\"XHxwBV\":[\"선택한 날짜 범위는 하나 이상의 일정이 포함되어 있어야 합니다.\"],\"XILg0L\":[\"유효하지 않은 이메일 주소입니다\"],\"XJOV1Y\":[\"활동\"],\"XKp83s\":[\"소스와 함께 인벤토리를 복사할 수 없습니다.\"],\"XLMJ7O\":[\"클라우드\"],\"XLpxoj\":[\"이메일 옵션\"],\"XM-gTv\":[\"구성 파일에 대한 자세한 내용은 Ansible 설명서를 참조하십시오.\"],\"XOD7tz\":[\"변경 사항 표시\"],\"XOaZX3\":[\"페이지 번호\"],\"XP6TQ-\":[\"지정된 경우 이 필드는 워크플로우를 볼 때 리소스 이름 대신 노드에 표시됩니다.\"],\"XREJvl\":[\"인벤토리 소스를 구성하는 데 사용되는 변수입니다. 이 플러그인을 구성하는 방법에 대한 자세한 설명은 다음을 참조하십시오.\"],\"XViLWZ\":[\"실패 시\"],\"XWDz5f\":[\"간단한 키 선택\"],\"X_5TsL\":[\"설문조사 토글\"],\"XaxYwV\":[\"프롬프트 값\"],\"XbIM8f\":[\"총 재고 소스\"],\"XdyHT-\":[\"가져온 호스트\"],\"XfmfOA\":[\"모두 실행\"],\"Xg3aVa\":[\"SSL 사용\"],\"XgTa_2\":[\"The inventory will be in a pending status until the final delete is processed.\"],\"XilEsm\":[\"인스턴스 그룹\"],\"Xm7ruy\":[\"5 (WinRM 디버그)\"],\"XmJfZT\":[\"이름\"],\"XmVvzl\":[\"적용할 역할 선택\"],\"XnxCSh\":[\"표준 오류\"],\"XozZ38\":[\"하나 이상의 인벤토리 소스를 삭제하지 못했습니다.\"],\"Xq9A0U\":[\"알 수 없는 프로젝트\"],\"Xt4N6V\":[\"프롬프트 | \",[\"0\"]],\"XtpZSU\":[\"모든 작업 유형\"],\"Xx-ftH\":[\"서브스크립션에서 허용하는 것보다 더 많은 호스트에 대해 자동화되었습니다.\"],\"XyTWuQ\":[\"토폴로지 보기가 채워질 때까지 기다리십시오...\"],\"XyW2nH\":[[\"0\",\"plural\",{\"one\":[\"아래 그룹을 삭제하시겠습니까?\"],\"other\":[\"아래 그룹을 삭제하시겠습니까?\"]}]],\"XzD7xj\":[\"항목 선택\"],\"Y1YKad\":[\"세부 정보 편집\"],\"Y296GK\":[\"역할을 삭제하지 못했습니다\"],\"Y2ml-n\":[\"승인됨 - \",[\"0\"],\". 자세한 내용은 활동 스트림을 참조하십시오.\"],\"Y5VrmH\":[\"인벤토리 동기화에 대해 구성되지 않았습니다.\"],\"Y5vgVF\":[\"성공적으로 거부됨\"],\"Y5xJ7I\":[\"플레이북 이름\"],\"Y60pX3\":[\"구성된 인벤토리 추가\"],\"YA4I45\":[\"모듈 선택\"],\"YFmVSY\":[\"연결 해제하시겠습니까?\"],\"YJddb4\":[\"인스턴스 유형\"],\"YLMfol\":[\"새 역할을 받을 리소스 유형을 선택합니다. 예를 들어 사용자 집합에 새 역할을 추가하려면 사용자를 선택하고 다음을 클릭합니다. 다음 단계에서 특정 리소스를 선택할 수 있습니다.\"],\"YM06Nm\":[\"인증 정보 유형 편집\"],\"YMLB2b\":[\"시간 초과가 만료될 때 승인 노드가 자동으로 승인되거나 거부되는지 여부입니다.\"],\"YMpSlP\":[\"재고 동기화를 현재로 간주하는 데 걸리는 시간 (초) 입니다. 작업 실행 및 콜백 중에 작업 시스템은 최신 동기화의 타임스탬프를 평가합니다. 캐시 시간 초과보다 오래된 경우 현재로 간주되지 않으며 새 인벤토리 동기화가 수행됩니다.\"],\"YOOdGq\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 분\"],\"other\":[\"#\",\" 분\"]}]],\"YOh7Aw\":[\"Workflow Job \",[\"currentPosition\"],\"/\",[\"total\"]],\"YP5KRj\":[\"저장 시 새 Webhook URL이 생성됩니다.\"],\"YPDLLX\":[\"실행 환경으로 돌아가기\"],\"YQqM-5\":[\"실행에 사용할 컨테이너 이미지입니다.\"],\"Yd45Xn\":[\"프로세서 유형별 호스트\"],\"Yfw7TK\":[\"알림 시간 초과\"],\"YgqgXs\":[[\"intervalValue\",\"plural\",{\"one\":[\"minute\"],\"other\":[\"minutes\"]}]],\"YiQ03p\":[\"일정을 삭제하지 못했습니다.\"],\"YiUAZm\":[\"<0>참고: 이 인스턴스가 <1>정책 규칙에 의해 관리되는 경우 이 인스턴스 그룹에 다시 연결될 수 있습니다.\"],\"YlGAPh\":[\"작업 분할 고정 호스트\"],\"Ym7-mu\":[\"한 줄에 하나의 Slack 채널입니다. 채널에는 파운드 기호(#)가\\n 필요합니다. 특정 메시지에 응답하거나 스레드를 시작하려면 부모 메시지 Id를 채널에 추가하십시오. 여기서 부모 메시지 Id는 16자리입니다. 10번째 자리 뒤에 점(.)을 수동으로 삽입해야 합니다. 예: #destination-channel, 1231257890.006423. Slack 참조\"],\"YmEWZH\":[\"템플릿 시작\"],\"YmjTf2\":[\"프로비저닝 실패\"],\"YoXjSs\":[\"시작 시 인벤토리를 입력하라는 메시지를 표시합니다.\"],\"Yq4Eaf\":[\"이 작업의 호스트 상태 정보를 사용할 수 없습니다.\"],\"YsN-3o\":[\"인벤토리 소스 세부 정보 보기\"],\"Yt-rBv\":[\"이 프로젝트는 현재 다른 리소스에서 사용되고 있습니다. 삭제하시겠습니까?\"],\"YuC9dj\":[\"연결\"],\"YxDLmM\":[\"Insights 시스템 ID\"],\"Z17FAa\":[\"알 수 없는 인벤토리\"],\"Z1Vtl5\":[\"프로젝트 동기화 취소 실패\"],\"Z25_RC\":[\"입력 선택\"],\"Z2hVSb\":[\"하이브리드\"],\"Z40J8D\":[\"프로비저닝 콜백 URL 생성을 활성화합니다. 이 URL을 사용하여 호스트는 \",[\"brandName\"],\"에 연결하고 이 작업 템플릿을 사용하여 구성 업데이트를 요청할 수 있습니다.\"],\"Z5HWHd\":[\"On\"],\"Z7ZXbT\":[\"승인\"],\"Z88yEl\":[\"비교보다 크거나 같습니다.\"],\"Z9EFpE\":[\"자동화 분석 대시보드\"],\"ZAWGCX\":[[\"0\"],\" 초\"],\"ZEP8tT\":[\"시작\"],\"ZGDCzb\":[\"인스턴스를 찾을 수 없습니다.\"],\"ZJjKDg\":[\"관리형 노드\"],\"ZKKnVf\":[\"새 워크플로 템플릿 만들기\"],\"ZL3d6Z\":[\"IRC 서버 주소\"],\"ZO4CYH\":[\"실행 중인 작업\"],\"ZOLfb2\":[\"이 필드는 비워 둘 수 없습니다.\"],\"ZWhZbs\":[\"노드 제거 확인\"],\"ZajTWA\":[\"소스 전화 번호\"],\"Zf6u-6\":[\"설명\"],\"ZfrRb0\":[\"인벤토리를 선택하거나 시작 시 프롬프트 옵션을 선택하십시오.\"],\"ZhUwVw\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 주\"],\"other\":[\"#\",\" 주\"]}]],\"ZhxwOq\":[\"오류 메시지 본문\"],\"Zikd-1\":[\"자동화된 호스트 수는 서브스크립션 수 보다 적습니다.\"],\"ZjC8QM\":[\"호스트를 삭제하지 못했습니다.\"],\"ZjvPb1\":[\"(사용자 이름)에 의해 생성됨\"],\"Zkh5np\":[\"동료들은 \",[\"0\"],\" 에 업데이트됩니다. 변경 사항을 적용하려면 \",[\"1\"],\" 에 대한 설치 번들을 다시 실행하십시오.\"],\"ZpdX6R\":[\"토큰 삭제 중 오류 발생\"],\"ZrsGjm\":[\"인벤토리\"],\"ZumtuZ\":[\"템플릿 복사\"],\"ZvVF4C\":[\"설문 조사 질문 삭제\"],\"ZwCTcT\":[\"최근 작업 목록 탭\"],\"ZwujDQ\":[\"지난 해\"],\"_-NKbo\":[\"일정을 전환하지 못했습니다.\"],\"_2LfCe\":[\"설문조사 질문을 재정렬하려면 원하는 위치에 끌어다 놓습니다.\"],\"_4gGIX\":[\"클립보드에 복사\"],\"_5REdR\":[\"구성된 인벤토리 플러그인에 대한 Input Inventories를 선택합니다.\"],\"_Fg1cM\":[\"워크플로우 시간 초과 메시지 본문\"],\"_ITcnz\":[\"일\"],\"_Ia62Q\":[\"구축된 인벤토리 예시\"],\"_JN1gB\":[\"작업 수\"],\"_K2CvV\":[\"템플릿\"],\"_LQZpR\":[[\"intervalValue\",\"plural\",{\"one\":[\"year\"],\"other\":[\"years\"]}]],\"_LVfwJ\":[\"구성된 인벤토리 소스 동기화 오류\"],\"_M4FeF\":[\"이 명령을 실행할 실행 환경을 선택합니다.\"],\"_MdgrM\":[\"두 노드 사이에 새 노드 추가\"],\"_PRaan\":[\"하나 이상의 알림 템플릿을 삭제하지 못했습니다.\"],\"_Pz_QH\":[\"정책에 의해 관리됨\"],\"_W3ZAw\":[[\"selectedItemsCount\",\"plural\",{\"one\":[\"Click to run a health check on the selected instance.\"],\"other\":[\"Click to run a health check on the selected instances.\"]}]],\"_WBq2_\":[\"거부됨 - \",[\"0\"],\". 자세한 내용은 활동 스트림을 참조하십시오.\"],\"_Yq4TU\":[\"이 그룹에서 동시에 실행되는 모든 작업에서 허용되는 최대 포크 수입니다.\\n 0은 제한이 적용되지 않음을 의미합니다.\"],\"_ZBhqw\":[\"인벤토리 소스 동기화를 취소하지 못했습니다.\"],\"_bAUGi\":[\"HTTP 방법 선택\"],\"_bE0AS\":[\"인스턴스 선택\"],\"_cV6Mf\":[\"검색 중...\"],\"_cq4Aa\":[\"워크플로우 승인을 찾을 수 없습니다.\"],\"_ereyb\":[\"TACACS+\"],\"_gCD76\":[\"인스턴스 그룹 편집\"],\"_ismew\":[\"아티팩트 키\"],\"_kYJq6\":[\"데이터 보관 일수\"],\"_khNCh\":[\"작업 템플릿의 기본 인증 정보는 동일한 유형의 인증 정보로 교체해야 합니다. 계속하려면 다음 유형에 대한 인증 정보를 선택하십시오: \",[\"0\"]],\"_oeZtS\":[\"호스트 폴링\"],\"_rCRcH\":[\"고급 검색 설명서\"],\"_vI8Rx\":[\"Delete Group?\"],\"a02Xjc\":[\"IRC 서버 주소\"],\"a3AD0M\":[\"로그인 리디렉션 편집 확인\"],\"a5zD9f\":[\"변경 사항\"],\"a6E-_p\":[\"대소문자를 구분하지 않는 버전을 포함합니다.\"],\"a8AgQY\":[\"호스트 세부 정보 보기\"],\"a8nooQ\":[\"네 번째\"],\"a9BTUD\":[\"주말\"],\"aBgwis\":[\"범위\"],\"aLlb3-\":[\"부울 방식\"],\"aNxqSL\":[\"실행 환경 삭제\"],\"aQ4XJX\":[\"로그 시스템 추적 사실을 개별적으로 활성화\"],\"aSuBiU\":[\"Microsoft Azure Resource Manager\"],\"aTK0Fh\":[\"요일에\"],\"aUNPq3\":[\"실행 노드\"],\"aVoVcG\":[\"다중 선택\"],\"aXBrSq\":[\"Red Hat Virtualization\"],\"a_vlog\":[[\"0\"],\" 칩 제거\"],\"adPhRK\":[\"이 호스트가 속할 인벤토리입니다.\"],\"adjqlB\":[[\"0\"],\" (삭제됨)\"],\"aht2s_\":[\"알림 색상\"],\"aiejXq\":[\"리소스 유형 추가\"],\"ajDpGH\":[\"상태:\"],\"anfIXl\":[\"사용자 세부 정보\"],\"aqqAbL\":[\"활성화하면 인벤토리에서 연결된 작업 템플릿을 실행하는 기본 인스턴스 그룹 목록에 조직 인스턴스 그룹을 추가하지 않습니다. 참고: 이 설정이 활성화되어 있고 빈 목록을 제공한 경우 글로벌 인스턴스 그룹이 적용됩니다.\"],\"ar5AA2\":[\"자세한 내용\"],\"ataY5Z\":[\"작업 삭제 오류\"],\"ax6e8j\":[\"호스트 필터를 편집하기 전에 조직을 선택하십시오.\"],\"az8lvo\":[\"Off\"],\"b1CAkh\":[\"관리 작업\"],\"b2Z0Zq\":[\"링크 변경 취소\"],\"b433OF\":[\"그룹 편집\"],\"b4SLah\":[\"왼쪽의 오류 보기\"],\"b9Y4up\":[\"클라이언트 ID\"],\"bDa_hW\":[\"이 인벤토리 소스 동기화를 실행할 인스턴스 그룹을 선택합니다. 설정하지 않으면 인벤토리 또는 해당 조직의 인스턴스 그룹에서 동기화가 실행됩니다.\"],\"bE4zYn\":[\"수신 연결에 대해 리셉터가 수신 대기할 포트를 선택하십시오 (예: 27199).\"],\"bHXYoC\":[\"HTTP 방법\"],\"bKR18T\":[\"서브스크립션 매니페스트는 Red Hat 서브스크립션의 내보내기입니다. 서브스크립션 매니페스트를 생성하려면 <0>access.redhat.com으로 이동하십시오. 자세한 내용은 <1>사용자 가이드를 참조하십시오.\"],\"bLt_0J\":[\"워크플로우\"],\"bPq357\":[\"활성화된 값\"],\"bQZByw\":[\"쉼표 없이 한 줄에 하나의 주석 태그를 사용합니다.\"],\"bTu5jX\":[\"사용자 이름 / 암호\"],\"bWr6j5\":[\"이 필드는 최소 \",[\"min\"],\"자 이상이어야 합니다\"],\"bY8C86\":[\"모든 사용자 보기.\"],\"bYXbel\":[\"워크플로 작업 템플릿 webhook 키\"],\"baP8gx\":[\"4 (연결 디버그)\"],\"baqrhc\":[\"HTTP 헤더\"],\"bbJ-VR\":[\"축소\"],\"bcyJXs\":[\"항목 확인\"],\"bd1Kuw\":[\"아이콘 URL\"],\"bf7UKi\":[\"캐시 시간 초과 업데이트\"],\"bfgr_e\":[\"질문\"],\"bgjTnp\":[\"0 (정상)\"],\"bgq1rW\":[\"검색 제출 버튼\"],\"bhxnLH\":[\"다음 그룹을 삭제할 권한이 없습니다. \",[\"itemsUnableToDelete\"]],\"bkPO0d\":[\"알림 유형\"],\"bpECfE\":[\"링크 삭제 취소\"],\"bpnj1H\":[\"이 콘텐츠를 로드하는 동안 오류가 발생했습니다. 페이지를 다시 로드하십시오.\"],\"bwRvnp\":[\"동작\"],\"bx2rrL\":[\"스마트 인벤토리\"],\"bxaVlf\":[\"새 인증 정보 유형 만들기\"],\"byXCTu\":[\"발생\"],\"bznJUg\":[\"이 워크플로우에서 관리할 호스트가 포함된 인벤토리를 선택합니다.\"],\"bzv8Dv\":[\"제거 오류\"],\"c-xCSz\":[\"True\"],\"c0n4p3\":[\"실제 스토리지\"],\"c1Rsz1\":[\"워크플로우 승인 세부 정보 보기\"],\"c3XJ18\":[\"도움말\"],\"c4kHK7\":[\"서브스크립션 모달 닫기\"],\"c6IFRs\":[\"서비스 계정 JSON 파일\"],\"c6u6gk\":[\"이 조직에서 실행할 인스턴스 그룹을 선택합니다.\"],\"c7-Adk\":[\"인벤토리 소스를 동기화하지 못했습니다.\"],\"c8HyJq\":[\"이 인벤토리의 인스턴스 그룹을 선택하여 실행할 인스턴스를 선택합니다.\"],\"c8sV0t\":[\"이 기능은 더 이상 사용되지 않으며 향후 릴리스에서 제거될 예정입니다.\"],\"c9V3Yo\":[\"호스트 실패\"],\"c9iw51\":[\"실행 중인 작업\"],\"c9pF61\":[\"클라이언트 식별자\"],\"cFC8w7\":[\"이 인벤토리 소스는 현재 이를 사용하는 다른 리소스에서 사용되고 있습니다. 삭제하시겠습니까?\"],\"cFCKYZ\":[\"거부\"],\"cFOXv9\":[\"일반 OIDC\"],\"cGRiaP\":[\"이벤트 세부 정보\"],\"cIdUma\":[\"\\n \",[\"project_base_dir\"],\"에 사용 가능한 playbook 디렉토리가 없습니다.\\n 해당 디렉토리가 비어 있거나 모든 내용이 이미\\n 다른 프로젝트에 할당되어 있습니다. 그곳에 새 디렉토리를 만들고\\n playbook 파일을 「awx」 시스템 사용자가 읽을 수 있는지 확인하거나,\\n 위의 소스 제어 유형 옵션을 사용하여 \",[\"brandName\"],\"이(가)\\n 소스 제어에서 직접 playbook을 검색하도록 하십시오.\"],\"cNsIJf\":[\"변경됨\"],\"cPTnDL\":[\"프로젝트 동기화\"],\"cQIQa2\":[\"그룹 선택\"],\"cQlPDN\":[\"읽기\"],\"cUKLzq\":[\"순서 편집\"],\"cYir0h\":[\"옵션 선택\"],\"c_PGsA\":[\"워크플로우 작업 세부 정보\"],\"cbSPfq\":[\"이 워크플로우는 이미 수행되었습니다.\"],\"ccA_Bz\":[\"변수 이름에 권장되는 형식은 소문자와\\n 밑줄로 구분된 형식입니다(예: foo_bar, user_id, host_name\\n 등). 공백이 있는 변수 이름은 허용되지 않습니다.\"],\"cdm6_X\":[\"사용된 용량\"],\"chbm2W\":[\"인스턴스 필터\"],\"ci3mwY\":[\"이 필드는 비워 둘 수 없습니다.\"],\"cit9TY\":[\"부모 노드가 set_stats를 통해 생성한 아티팩트의 이름입니다. 링크는 부모 작업이 선택한 결과와 일치하고 조건이 참일 때만 따릅니다. 누락된 키는 일치하지 않습니다.\"],\"cj1KTQ\":[\"모든 인벤토리 보기\"],\"cjJXKx\":[\"호스트 동기화 실패\"],\"ckH3fT\":[\"준비됨\"],\"ckdiAB\":[\"알림 삭제\"],\"cmWTxn\":[\"비교 값보다 적거나 같습니다.\"],\"cnGeoo\":[\"삭제\"],\"cnnWD0\":[\"By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>\",[\"0\"],\". Uncheck the following boxes to disable this feature.\"],\"ct_Puj\":[\"이 필드는 지정된 인증 정보를 사용하여 외부 시크릿 관리 시스템에서 검색됩니다.\"],\"cucDBz\":[\"컨텍스트 템플릿\"],\"cucG_7\":[\"사용할 수 있는 YAML 없음\"],\"cxjfgY\":[\"홉 노드에서 상태 점검을 실행할 수 없습니다.\"],\"cy3yJa\":[\"설립되었습니다\"],\"d-F6q9\":[\"생성됨\"],\"d-zGjA\":[\"이 작업은 다음을 삭제합니다.\"],\"d1BVnY\":[\"A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>\",[\"0\"],\".\"],\"d5zxa4\":[\"지역\"],\"d6in1T\":[\"이 작업이 관리할 호스트가 포함된 인벤토리를 선택합니다.\"],\"d73flf\":[\"경고 모달\"],\"d75lEw\":[\"설정 유형\"],\"d7VUIS\":[[\"nodeName\"],\" 노드 제거\"],\"d8B-tr\":[\"작업 상태 그래프 탭\"],\"dAZObA\":[\"리디렉션 URI\"],\"dBNZkl\":[\"스마트 인벤토리 호스트 세부 정보 보기\"],\"dCcO-F\":[\"구성을 검색하지 못했습니다.\"],\"dELxuP\":[\"인벤토리를 찾을 수 없음\"],\"dEgA5A\":[\"취소\"],\"dH6aQY\":[\"Azure AD Tenant\"],\"dIb9tv\":[\"모든 애플리케이션 보기.\"],\"dJcvVX\":[\"스마트 호스트 필터\"],\"dNAHKF\":[\"작업 분할\"],\"dOjocz\":[\"통합 선택\"],\"dPGRd8\":[\"활성화하면 지원되는 경우 Ansible 작업으로 변경된 사항을 표시합니다. 이는 Ansible의 --diff 모드와 동일합니다.\"],\"dPY1x1\":[\"자세한 내용\"],\"dQFAgv\":[\"이 프로젝트를 업데이트해야 합니다.\"],\"dQjRO3\":[\"동기화 프로세스 시작\"],\"dbWo0h\":[\"Google로 로그인\"],\"dcGoCm\":[\"인벤토리 파일\"],\"ddIcfH\":[\"마지막 페이지로 이동\"],\"dfWFox\":[\"호스트 수\"],\"dk7qNl\":[\"컨트롤 노드\"],\"dkGxGj\":[\"Subversion\"],\"dlHFy7\":[\"하나 이상의 실행 환경을 삭제하지 못했습니다.\"],\"dnCwNB\":[\"클립보드에 성공적으로 복사되었습니다!\"],\"dov9kY\":[\"이 필드는 숫자여야 하며 \",[\"0\"],\"과(와) \",[\"1\"],\" 사이의 값이어야 합니다\"],\"dqxQzB\":[\"사전\"],\"dzQfDY\":[\"10월\"],\"e0NrBM\":[\"프로젝트\"],\"e3pQqT\":[\"알림 유형 선택\"],\"e4GHWP\":[\"당기다\"],\"e5CMOi\":[\"인증 정보 유형에서 삽입할 수 있는 값을 지정하는 환경 변수 또는 추가 변수입니다.\"],\"e5VbKq\":[\"워크플로우 작업 템플릿\"],\"e6BtDv\":[\"<0>\",[\"0\"],\"<1>\",[\"1\"],\"\"],\"e70-_3\":[\"범례 전환\"],\"e8GyQg\":[\"메트릭\"],\"e8U63Z\":[\"푸시된 참조가 이 패턴과 일치하는 경우에만 프로젝트를 동기화합니다(예: refs/heads/main 또는 refs/heads/release-*). 모든 푸시 또는 태그 이벤트에서 동기화하려면 비워 둡니다.\"],\"e91aLH\":[\"모든 인증 정보 유형 보기\"],\"e9k5zp\":[\"이 목록을 채울 일정을 추가하십시오. 템플릿, 프로젝트 또는 인벤토리 소스에 일정을 추가할 수 있습니다.\"],\"eAR1n4\":[\"관련 검색 자동 완성\"],\"eD_0Fo\":[\"하나 이상의 팀을 삭제하지 못했습니다.\"],\"eDjsWq\":[\"새 알림 템플릿 만들기\"],\"eGkahQ\":[\"작업 템플릿 삭제\"],\"eHx-29\":[\"소스 세부 정보\"],\"ePK91l\":[\"편집\"],\"ePS9As\":[\"RADIUS 설정\"],\"eQkgKV\":[\"설치됨\"],\"eRV9Z3\":[\"시간 초과가 지정되지 않음\"],\"eRlz2Q\":[\"대상 SMS 번호\"],\"eSXF_i\":[\"애플리케이션을 삭제하지 못했습니다.\"],\"eTsJYJ\":[\"설명\"],\"eVJ2lo\":[\"부동 값\"],\"eXOp7I\":[\"인스턴스를 제거할 수 있는 권한이 없습니다. \",[\"itemsUnableToremove\"]],\"eXWuGz\":[\"최근 템플릿 목록 탭\"],\"eYJ4TK\":[\"건설된 인벤토리를 찾을 수 없습니다.\"],\"eeke40\":[\"자동화 분석\"],\"ekUnNJ\":[\"태그 선택\"],\"el9nUc\":[\"일정이 비활성 상태입니다\"],\"emqNXf\":[\"플레이북 확인\"],\"eqiT7d\":[\"이 인스턴스가 메시 토폴로지 내에서 수행할 역할을 설정합니다. 기본값은 \\\"실행\\\"입니다.\"],\"espHeZ\":[\"인스턴스 그룹 폴백 방지: 활성화된 경우, 인벤토리에서 연결된 작업 템플릿을 실행하도록 기본 인스턴스 그룹 목록에 조직 인스턴스 그룹을 추가할 수 없습니다.\"],\"etQEqZ\":[\"이 링크를 제거하면 나머지 분기가 분리되고 시작 시 즉시 실행됩니다.\"],\"ewSXyG\":[[\"pluralizedItemName\"],\" 을 (를) 소프트 삭제하시겠습니까?\"],\"f-fQK9\":[\"Grafana API 키\"],\"f2o-xB\":[\"취소 확인\"],\"f6Hub0\":[\"분류\"],\"f9yJNM\":[\"같음\"],\"fCZSgU\":[\"모든 인스턴스 그룹 보기\"],\"fDzxi_\":[\"저장하지 않고 종료\"],\"fE2kOY\":[\"날짜 연산자 선택\"],\"fGEOCn\":[\"작업 상태\"],\"fGLpQj\":[\"소스 제어 분기/태그/커밋\"],\"fGQ9Ug\":[\"이 작업이 실행될 노드에 액세스하기 위한 인증 정보를 선택합니다. 각 유형당 하나의 인증 정보만 선택할 수 있습니다. 머신 인증 정보(SSH)의 경우 인증 정보를 선택하지 않고 “시작 시 입력 요청”을 선택하면 런타임에 머신 인증 정보를 선택해야 합니다. 인증 정보를 선택하고 “시작 시 입력 요청”을 선택하면 선택한 인증 정보가 런타임에 업데이트할 수 있는 기본값이 됩니다.\"],\"fJ9xam\":[\"인스턴스 활성화\"],\"fKew5B\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"작업 취소\"],\"other\":[\"작업 취소\"]}]],\"fL7WXr\":[\"애플리케이션\"],\"fMUEsk\":[[\"0\"],\"일\"],\"fMulwN\":[\"프로젝트 버전 새로 고침\"],\"fOAyP5\":[\"검색 텍스트 입력\"],\"fODqV4\":[\"이 값을 찾을 수 없습니다. 유효한 값을 입력하거나 선택하십시오.\"],\"fQCM-p\":[\"조직 세부 정보 보기\"],\"fQGOXc\":[\"오류!\"],\"fR8DDt\":[\"모든 노드 제거 확인\"],\"fVjyJ4\":[\"연결 해제 확인\"],\"f_Xpp2\":[\"이 작업은 다음과 같이 연결을 해제합니다.\"],\"fcTDCh\":[\"아래에 Red Hat 또는 Red Hat Satellite 인증 정보를\\n 입력하면 사용 가능한 서브스크립션 목록에서 선택할 수 있습니다.\\n 사용하는 인증 정보는 갱신 또는 확장된 서브스크립션을\\n 검색하는 데 나중에 사용하기 위해 저장됩니다.\"],\"ff_JYN\":[\"중첩된 그룹 이름 필터링\"],\"fgrmWn\":[\"시작 시 diff 모드를 입력하라는 메시지를 표시합니다.\"],\"fhFmMp\":[\"클라이언트 식별자\"],\"fjX9i5\":[\"스마트 인벤토리를 찾을 수 없습니다.\"],\"fk1WEw\":[\"암호화\"],\"fld-O4\":[\"모든 작업\"],\"fnbZWe\":[\"선택적으로 상태 업데이트를 webhook 서비스로 다시 보내는 데 사용할 인증 정보를 선택합니다.\"],\"foItBN\":[\"주말\"],\"fp4RS1\":[\"content-loading-in-progress\"],\"fpMgHS\":[\"월요일\"],\"fqSfXY\":[\"교체\"],\"fqmP_m\":[\"호스트에 연결할 수 없음\"],\"fthJP1\":[\"webhook 서비스는 이 URL에 POST 요청을 하여 이 워크플로 작업 템플릿으로 작업을 시작할 수 있습니다.\"],\"fwX7gC\":[\"VMware vCenter\"],\"g4o5Lr\":[\"상세 정보\"],\"g6ekO4\":[\"호스트를 전환하지 못했습니다.\"],\"g7CZ-8\":[\"GitHub Enterprise 조직으로 로그인\"],\"g9d3sF\":[\"메시지 본문 시작\"],\"gALXcv\":[\"이 노드 삭제\"],\"gBnBJa\":[\"소스 워크플로 작업\"],\"gDx5MG\":[\"링크 편집\"],\"gIGcbR\":[\"이 그룹에서 동시에 실행할 최대 작업 수입니다. 0은 제한이 적용되지 않음을 의미합니다.\"],\"gJccsJ\":[\"워크플로우 승인 메시지\"],\"gK06zh\":[\"작업 템플릿 추가\"],\"gM3pS9\":[\"실행 환경\"],\"gN3aF4\":[\"LDAP5\"],\"gSVH9P\":[\"모든 소스 동기화\"],\"gUaMtt\":[\"시간 초과 시\"],\"gVYePj\":[\"새 팀 만들기\"],\"gWlcwd\":[\"마지막 작업 상태\"],\"gYWK-5\":[\"사용자 인터페이스 설정 보기\"],\"gZXc5U\":[\"워크플로우가 계속되기 전에 승인해야 하는 고유 사용자 수입니다. 단 한 번의 거부로 항상 노드가 거부됩니다.\"],\"gZaMqy\":[\"GitHub 팀으로 로그인\"],\"gZkstf\":[\"활성화하면 수집된 팩트를 저장하여 호스트 수준에서 볼 수 있습니다. 팩트는 유지되며 런타임에 팩트 캐시에 삽입됩니다.\"],\"gcFnpl\":[\"작업 상태\"],\"geTfDb\":[\"작업 세부 정보보기\"],\"ged_ZE\":[\"오라그니제이션\"],\"gezukD\":[\"취소할 작업 선택\"],\"gfyddN\":[\".zip 파일 업로드\"],\"gh06VD\":[\"출력\"],\"ghJsq8\":[\"먼저 스크롤\"],\"gmB6oO\":[\"스케줄\"],\"gmBQqV\":[\"프로젝트 업데이트\"],\"gnveFZ\":[\"표준 오류 탭\"],\"goVc-x\":[\"인증 정보 플러그인 설정 편집\"],\"go_DGX\":[\"팀 역할 추가\"],\"gpKdxJ\":[\"삭제할 질문을 선택\"],\"gpmbqk\":[\"변수\"],\"gpnvle\":[\"삭제 오류\"],\"gsj32g\":[\"프로젝트 동기화 취소\"],\"gtB4z-\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 시간\"],\"other\":[\"#\",\" 시간\"]}]],\"gwKtbI\":[\"설명서 및\"],\"h25sKn\":[\"서브스크립션 관리\"],\"h51QFW\":[\"YAML\"],\"h8DugX\":[\"레이블\"],\"hAjDQy\":[\"상태 선택\"],\"hBHRCF\":[\"새 인스턴스가 온라인 상태가 될 때 이 그룹에 자동으로\\n 할당되는 최소 인스턴스 수입니다.\"],\"hEBjSg\":[\"Red Hat Satellite 6\"],\"hEnNCI\":[\"이 키를 사용하여 다른 검색을 활성화하려면 ansible 팩트와 관련된 현재 검색을 제거합니다.\"],\"hG89Ed\":[\"이미지\"],\"hHKoQD\":[\"피어 주소 선택\"],\"hLDu5N\":[\"애플리케이션 편집\"],\"hNudM0\":[\"이 필드의 값을 설정합니다.\"],\"hPa_zN\":[\"조직(이름)\"],\"hQ0dMQ\":[\"새 호스트 추가\"],\"hQRttt\":[\"제출\"],\"hVPa4O\":[\"옵션 선택\"],\"hX8KyU\":[\"이 작업은 실패하여 출력이 없습니다.\"],\"hXDKWN\":[\"빈도 세부 정보\"],\"hXzOVo\":[\"다음\"],\"hYH0cE\":[\"이 작업을 취소하기 위한 요청을 제출하시겠습니까?\"],\"hYgDIe\":[\"만들기\"],\"hZ6znB\":[\"포트\"],\"hZke6f\":[\"로컬 인증을 비활성화하시겠습니까? 이렇게 하면 로그인할 수 있는 사용자와 시스템 관리자가 이러한 변경을 취소할 수 있습니다.\"],\"hc_ufD\":[\"작업 태그\"],\"hdyeZ0\":[\"작업 삭제\"],\"he3ygx\":[\"복사\"],\"heqHpI\":[\"프로젝트 기본 경로\"],\"hg6l4j\":[\"3월\"],\"hgJ0FN\":[\"호스트 필터를 정의하여 검색을 수행\"],\"hgr8eo\":[\"항목\"],\"hgvbYY\":[\"9월\"],\"hhzh14\":[\"이 계정과 연결된 라이선스를 찾을 수 없습니다.\"],\"hi1n6B\":[[\"brandName\"],\"의 작업 관련 설정 업데이트\"],\"hiDMCa\":[\"프로비저닝\"],\"hjsbgA\":[\"추가 변수\"],\"hjwN_s\":[\"리소스 이름\"],\"hlbQEq\":[\"콘텐츠 서명 확인 인증 정보\"],\"hmEecN\":[\"관리 작업\"],\"hmjNLv\":[\"기본 테마\"],\"hty0d5\":[\"월요일\"],\"hvs-Js\":[\"애플리케이션 정보\"],\"i0VMLn\":[\"워크플로우 거부 메시지\"],\"i2izXk\":[\"일정에 규칙이 누락되어 있습니다\"],\"i4_LY_\":[\"쓰기\"],\"i9sC0B\":[\"팀 권한 추가\"],\"iASwqf\":[\"This action will cancel the following job:\"],\"iCFhEl\":[\"소스 전화 번호\"],\"iDNBZe\":[\"알림\"],\"iDWfOR\":[\"하나 이상의 워크플로 승인을 승인하지 못했습니다.\"],\"iDjyID\":[\"인증 정보 세부 정보보기\"],\"iE1s1P\":[\"워크플로우 시작\"],\"iEUzMn\":[\"시스템\"],\"iH8pgl\":[\"뒤로\"],\"iI4bLJ\":[\"마지막 로그인\"],\"iIVceM\":[\"복사 오류\"],\"iJWOeZ\":[\"사용할 수 있는 JSON 없음\"],\"iJiCFw\":[\"그룹 세부 정보\"],\"iLO3nG\":[\"플레이 수\"],\"iMaC2H\":[\"인스턴스 그룹\"],\"iPp22p\":[\"이 일정은 UI에서 지원되지 않는 복잡한 규칙을\\n 사용합니다. 이 일정을 관리하려면 API를 사용하십시오.\"],\"iQdYL_\":[\"스마트 인벤토리 추가\"],\"iRWxmA\":[\"SSL 확인 비활성화\"],\"iTylMl\":[\"템플릿\"],\"iWKCzl\":[\"프로젝트 기본 경로에서 발견된 디렉터리 목록에서 선택합니다. 기본 경로와 playbook 디렉터리를 함께 사용하면 playbook을 찾는 데 사용되는 전체 경로가 제공됩니다.\"],\"iXmHtI\":[\"작업 유형 선택\"],\"iZBwau\":[\"이 단계에는 오류가 포함되어 있습니다.\"],\"i_CDGy\":[\"분기 덮어쓰기 허용\"],\"i_Kv21\":[\"새 소스 만들기\"],\"ifckL-\":[\"행 선택\"],\"ifdViT\":[\"인벤토리 세부 정보보기\"],\"ig0q8s\":[\"이 인벤토리는 이 워크플로우(\",[\"0\"],\") 내의 모든 워크플로 노드에 적용되며, 인벤토리를 요청하는 메시지를 표시합니다.\"],\"inP0J5\":[\"서브스크립션 세부 정보\"],\"isRobC\":[\"새로운\"],\"itlxml\":[\"관리 작업\"],\"ittbfT\":[\"ansible_facts로 검색하는 경우 특수 구문이 필요합니다.\"],\"itu2NQ\":[\"링크 상태 유형\"],\"j1a5f1\":[\"호스트 편집\"],\"j6gqC6\":[\"작업 실행에 사용할 브랜치입니다. 비어 있으면 프로젝트 기본값이 사용됩니다. 프로젝트의 allow_override 필드가 true로 설정된 경우에만 허용됩니다.\"],\"j7zAEo\":[\"워크플로우 상태\"],\"j8QfHv\":[\"호스트 편집\"],\"jAxdt7\":[\"삭제 취소\"],\"jBGh4u\":[\"중첩된 그룹 인벤토리 정의:\"],\"jCVu9g\":[\"Cancel selected job\"],\"jEJtMA\":[\"워크플로우 승인 보류 중\"],\"jEw0Mr\":[\"유효한 URL을 입력하십시오\"],\"jFaaUJ\":[\"캐노티컬\"],\"jGUu_G\":[\"필요한 승인\"],\"jIaeJK\":[\"설문 조사\"],\"jJdwCB\":[\"되돌리기\"],\"jKibyt\":[\"확대/축소 재설정\"],\"jMyq_x\":[\"Workflow Job 1/\",[\"0\"]],\"jaUa4e\":[\"이 데이터는 Tower 소프트웨어의 향후\\n 릴리스를 개선하고 고객 경험과 성공을\\n 간소화하는 데 사용됩니다.\"],\"jc86YO\":[\"시작 시 제한을 입력하라는 메시지를 표시합니다.\"],\"ji-8F7\":[\"현재 다른 리소스에서 이 인증 정보를 사용하고 있습니다. 삭제하시겠습니까?\"],\"jiE6Vn\":[\"조직\"],\"jifz9m\":[\"없음 (한 번 실행)\"],\"jkQOCm\":[\"예외 추가\"],\"jljuYN\":[\"webhook 요청을 수락할 서비스입니다.\"],\"jluR-N\":[\"경고: \",[\"selectedValue\"],\"은(는) \",[\"0\"],\"에 대한 링크이며 해당 링크로 저장됩니다.\"],\"joAQQS\":[\"The inventories will be in a pending status until the final delete is processed.\"],\"jqVo_k\":[\"여기.\"],\"jqzUyM\":[\"사용할 수 없음\"],\"jrkyDn\":[\"플레이 시작됨\"],\"jrsFB3\":[\"출력 탭\"],\"jsz-PY\":[\"알 수 없는 완료일\"],\"jwmkq1\":[\"시스템 인증 정보\"],\"jzD-D6\":[\"건너뛰기 태그는 대규모 playbook이 있고 play 또는 작업의 특정 부분을 건너뛰려는 경우에 유용합니다. 여러 태그를 구분하려면 쉼표를 사용합니다. 태그 사용에 대한 자세한 내용은 설명서를 참조하십시오.\"],\"k020kO\":[\"활동 스트림\"],\"k2dzu3\":[\"UTC에서 만료\"],\"k30JvV\":[\"선택한 카테고리\"],\"k5nHqi\":[\"이 작업 템플릿을 시작할 때 사용할 실행 환경입니다. 확인된 실행 환경은 이 작업 템플릿에 다른 실행 환경을 명시적으로 할당하여 재정의할 수 있습니다.\"],\"kALwhk\":[\"seconds\"],\"kDWprA\":[\"이러한 인수는 지정된 모듈과 함께 사용됩니다.\"],\"kEhyki\":[\"필드는 값으로 끝납니다.\"],\"kLja4m\":[\"초기자\"],\"kLk5bG\":[\"시작 메시지\"],\"kNUkGV\":[\"검색 유형\"],\"kNfXib\":[\"모듈 이름\"],\"kODvZJ\":[\"이름\"],\"kOVkPY\":[\"인스턴스 전환\"],\"kP-3Hw\":[\"인벤토리로 돌아가기\"],\"kQerRU\":[\"이 필드에는 공백을 포함할 수 없습니다\"],\"kX-GZH\":[\"작업 다시 시작\"],\"kXzl6Z\":[\"소스 변수\"],\"kYDvK4\":[\"파일 포함\"],\"kah1PX\":[\"에서 YAML 예제 보기\"],\"kaux7o\":[\"원격 인벤토리 소스에서 로컬 그룹 및 호스트 덮어쓰기\"],\"kgtWJ0\":[\"이 작업 템플릿이 실행될 인스턴스 그룹을 선택합니다.\"],\"kiMHN-\":[\"시스템 감사\"],\"kjrq_8\":[\"더 많은 정보\"],\"kkDQ8m\":[\"목요일\"],\"kkc8HD\":[[\"brandName\"],\" 애플리케이션에 대한 간편 로그인 활성화\"],\"kpRn7y\":[\"질문 삭제\"],\"kpnWnY\":[\"SCM 개정이 변경되는 프로젝트가 업데이트될 때마다 작업 작업을 실행하기 전에 선택한 소스에서 인벤토리를 새로 고칩니다. 이것은 Ansible 인벤토리 .ini 파일 형식과 같은 정적 콘텐츠를 위한 것입니다.\"],\"ks-HYT\":[\"사용자 권한 추가\"],\"ks71ra\":[\"예외\"],\"kt8V8M\":[\"워크플로우에 사용할 브랜치를 선택합니다.\"],\"ktPOqw\":[\"참조\"],\"kuIbuV\":[\"상태 검사는 실행 노드에서만 실행할 수 있습니다.\"],\"ku__5b\":[\"초\"],\"kyAi7k\":[\"인스턴스\"],\"kyHUFI\":[\"Vault 암호 | \",[\"credId\"]],\"kyfr2I\":[\"이 옵션을 선택하면 이전에 외부 소스에 있었지만 지금은 제거된 모든 호스트와 그룹이 인벤토리에서 제거됩니다. 인벤토리 소스에서 관리하지 않은 호스트와 그룹은 다음에 수동으로 생성된 그룹으로 승격되며, 승격할 수동으로 생성된 그룹이 없는 경우 인벤토리의 기본 「all」 그룹에 남습니다.\"],\"kz7G1W\":[[\"1\"],\"에서 \",[\"0\"],\" 액세스 권한을 삭제하시겠습니까? 이렇게 하면 팀의 모든 구성원에게 영향을 미칩니다.\"],\"l4MzBY\":[[\"update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" 초\"],\"other\":[\"#\",\" 초\"]}]],\"l4k9lc\":[\"첫 번째 노드\"],\"l5XUoS\":[\"Webhook 인증 정보\"],\"l75CjT\":[\"제공됨\"],\"l9ZmWD\":[[\"scm_update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" 초\"],\"other\":[\"#\",\" 초\"]}]],\"lCF0wC\":[\"새로고침\"],\"lJFsGr\":[\"새 인스턴스 그룹 만들기\"],\"lKxoCA\":[\"작업 이벤트 확장\"],\"lM9cbX\":[\"호스트도 해당 그룹의 자녀 중 하나인 경우, 연결 해제 후에도 목록에 그룹이 표시될 수 있습니다. 이 목록에는 호스트가 직간접적으로 연관된 모든 그룹이 표시됩니다.\"],\"lURfHJ\":[\"섹션 축소\"],\"lWkKSO\":[\"분\"],\"lWmv3p\":[\"인벤토리 소스\"],\"lYDyXS\":[\"스마트 인벤토리\"],\"l_jRvf\":[\"플레이북 완료\"],\"lfoFSg\":[\"호스트 삭제\"],\"lgm7y2\":[\"편집\"],\"lgphOX\":[\"예상 값\"],\"lhgU4l\":[\"템플릿을 찾을 수 없습니다.\"],\"lhkaAC\":[\"평가판\"],\"ljGeYw\":[\"일반 사용자\"],\"lk5WJ7\":[\"host-name-\",[\"0\"]],\"lkgIYt\":[\"PagerDuty\"],\"lo-rJO\":[\"팬다운\"],\"ltvmAF\":[\"애플리케이션을 찾을 수 없습니다.\"],\"lu2qW5\":[\"모든\"],\"lucaxq\":[\"로깅 집계기 호스트 및 로깅 집계기 유형을 제공하지 않으면 로그 집계기를 활성화할 수 없습니다.\"],\"luxcrf\":[[\"label\"],\"에 대한 추가 정보\"],\"lyjq5X\":[\"Slack\"],\"m-eV2_\":[\"컨테이너 그룹을 찾을 수 없습니다.\"],\"m16xKo\":[\"추가\"],\"m1tKEz\":[\"시스템 관리자는 모든 리소스에 무제한 액세스할 수 있습니다.\"],\"m2ErDa\":[\"실패\"],\"m3k6kn\":[\"구축된 인벤토리 소스 동기화를 취소하지 못했습니다.\"],\"m5MOUX\":[\"호스트로 돌아가기\"],\"mGJIOu\":[\"이 구성된 인벤토리 입력은\\n 두 카테고리 모두에 대한 그룹을 생성하고\\n 제한(호스트 패턴)을 사용하여 해당 두 그룹의\\n 교집합에 있는 호스트만 반환합니다.\"],\"mNBZ1R\":[\"참고: 이 필드는 원격 이름이 “origin”이라고 가정합니다.\"],\"mOFgdC\":[\"최대\"],\"mPiYpP\":[\"노드 상태 유형\"],\"mSv_7k\":[\"해당 대화로 복귀할 수 있습니다.\"],\"mXRKES\":[\"LDAP4\"],\"mXfNlE\":[\"이 일정에는 필수 설문 조사 값이 없습니다.\"],\"mYGY3B\":[\"날짜\"],\"mZiQNk\":[\"권한 상승: 활성화하면 이 playbook을 관리자로 실행합니다.\"],\"m_tELA\":[\"취소 삭제\"],\"ma7cO9\":[\"그룹 \",[\"0\"],\" 을/를 삭제하지 못했습니다.\"],\"mahPLs\":[\"권한 에스컬레이션 암호\"],\"mcGG2z\":[[\"minutes\"],\" 분 \",[\"seconds\"],\" 초\"],\"mdNruY\":[\"API 토큰\"],\"mgJ1oe\":[\"삭제 확인\"],\"mgjN5u\":[\"인스턴스를 인스턴스 그룹에서 분리하시겠습니까?\"],\"mhg7Av\":[\"애드혹 명령 실행\"],\"mi9ffh\":[\"호스트 세부 정보\"],\"mk4anB\":[\"브라우저 기본값\"],\"mlDUq3\":[\"(사용자 이름)에 의해 수정됨\"],\"mnm1rs\":[\"GitHub 기본값\"],\"moZ0VP\":[\"동기화 상태\"],\"momgZ_\":[\"워크플로우 작업 템플릿의 이름입니다.\"],\"mqAOoN\":[\"Playbook 디렉토리 선택\"],\"n-37ya\":[\"로컬 인증 비활성화 확인\"],\"n-LISx\":[\"워크플로를 저장하는 동안 오류가 발생했습니다.\"],\"n-ZioH\":[\"업데이트된 프로젝트를 가져오는 동안 오류 발생\"],\"n-qmM7\":[\"JSON 형식의 서비스 계정 키를 선택하여 다음 필드를 자동으로 채웁니다.\"],\"n12Go4\":[\"관련 그룹을 로드하지 못했습니다.\"],\"n60kiJ\":[\"*이 필드는 지정된 인증 정보를 사용하여 외부 보안 관리 시스템에서 검색됩니다.\"],\"n6mYYY\":[\"워크플로우 시간 초과 메시지\"],\"n9Idrk\":[\"(상위 10개로 제한)\"],\"n9lz4A\":[\"실패한 작업\"],\"nBAIS_\":[\"이벤트 세부 정보 보기\"],\"nC35Na\":[\"Are you sure you want delete the group below?\"],\"nCU-1E\":[\"프로비저닝 콜백 URL 생성을\\n 활성화합니다. URL을 사용하여 호스트가 \",[\"brandName\"],\"에\\n 연결하고 이 작업 템플릿을 사용하여\\n 구성 업데이트를 요청할 수 있습니다\"],\"nCY9IL\":[\"호스트 건너뜀\"],\"nDjIzD\":[\"프로젝트 세부 정보보기\"],\"nGbNEN\":[\"프로젝트를 최신으로 간주하는 시간(초)입니다. 작업 실행 및 콜백 중에 작업 시스템은 최신 프로젝트 업데이트의 타임스탬프를 평가합니다. 캐시 시간 초과보다 오래된 경우 최신으로 간주되지 않으며 새 프로젝트 업데이트가 수행됩니다.\"],\"nI54lc\":[\"동기화 전에 프로젝트 삭제\"],\"nJPBvA\":[\"파일, 디렉터리 또는 스크립트\"],\"nJTOTZ\":[\"이 조직 내의 작업에 사용할 실행 환경입니다. 실행 환경이 프로젝트, 작업 템플릿 또는 워크플로 수준에서 명시적으로 할당되지 않은 경우 폴백으로 사용됩니다.\"],\"nLGsp4\":[\"이 워크플로우 작업 템플릿에 대한 설문 조사를 활성화합니다.\"],\"nMiE53\":[\"활성화된 변수\"],\"nOhz3x\":[\"로그 아웃\"],\"nPH1Cr\":[\"이러한 실행 환경은 해당 환경에 의존하는 다른 리소스에서 사용할 수 있습니다. 그래도 삭제하시겠습니까?\"],\"nQOwDS\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"dayOfWeek\"]],\"4\":[\"The fourth \",[\"dayOfWeek\"]],\"5\":[\"The fifth \",[\"dayOfWeek\"]],\"one\":[\"The first \",[\"dayOfWeek\"]],\"two\":[\"The second \",[\"dayOfWeek\"]]}]],\"nRXCOn\":[\"실패한 호스트 수\"],\"nSTT11\":[\"다시 시작 위치:\"],\"nTENWI\":[\"서브스크립션 관리로 돌아가기\"],\"nU16mp\":[\"캐시 제한 시간\"],\"nZPX7r\":[\"경고: 저장하지 않은 변경 사항\"],\"nZW6P0\":[\"현지 시간대\"],\"nZYB4j\":[\"사용 가능한 상태 없음\"],\"nZYxse\":[\"그룹에서 호스트를 분리하시겠습니까?\"],\"n_qDNz\":[\"Switch to dark mode\"],\"naCW6Z\":[\"4월\"],\"ncxIQL\":[\"하나 이상의 인스턴스를 연결 해제하지 못했습니다.\"],\"neiOWk\":[\"여기에서 구축된 인벤토리 문서 보기\"],\"nfnm9D\":[\"조직 이름\"],\"ng00aZ\":[\"호스트 필터\"],\"nhxAdQ\":[\"키워드\"],\"nlsWzF\":[\"설문 조사를 추가하십시오.\"],\"nnY7VU\":[\"PagerDuty 하위 도메인\"],\"noGZlf\":[\"캐시 제한 시간 (초)\"],\"npGo-z\":[[\"label\"],\"(으)로 로그인\"],\"nuh_Wq\":[\"Webhook URL\"],\"nvUq8j\":[\"1 (상세 정보)\"],\"nzozOC\":[\"사용자 삭제\"],\"nzr1qE\":[\"파일 업로드가 거부되었습니다. 단일 .json 파일을 선택하십시오.\"],\"o-JPE2\":[\"설문 조사 질문을 찾을 수 없습니다.\"],\"o0RwAq\":[\"GitHub Enterprise로 로그인\"],\"o0x5-R\":[\"이 필드의 값을 선택\"],\"o4NRE0\":[\"고급 검색 값 입력\"],\"o5J6dR\":[\"이 노드를 실행해야 하는 조건을 지정합니다.\"],\"o9R2tO\":[\"SSL 연결\"],\"oABS9f\":[\"이 필드에 값을 제공하거나 시작 시 프롬프트 실행 옵션을 선택합니다.\"],\"oB5EwG\":[\"외부 시크릿 관리 시스템\"],\"oBmCtD\":[\"Are you sure you want delete the groups below?\"],\"oC5JSb\":[\"업데이트된 프로젝트 데이터를 가져오지 못했습니다.\"],\"oCKCYp\":[\"알림이 전송되었습니다.\"],\"oEijQ7\":[\"처음에 대소문자를 구분하지 않는 버전입니다.\"],\"oFtmtl\":[\"Select the inventory containing the hosts\\n you want this job to manage.\"],\"oGKq12\":[\"2개 그룹 구성, 교차로로 제한\"],\"oH1Qle\":[\"이 워크플로우 작업 템플릿의 Webhook URL입니다.\"],\"oHOOxn\":[\"기본적으로 서비스 사용에 대한 분석 데이터를 수집하여 Red Hat에 전송합니다. 서비스에서 수집하는 데이터에는 두 가지 범주가 있습니다. 자세한 내용은 <0>이 Tower 문서 페이지를 참조하십시오. 이 기능을 비활성화하려면 다음 확인란의 선택을 해제하십시오.\"],\"oII7vS\":[\"GitHub 설정\"],\"oKMFX4\":[\"업데이트되지 않음\"],\"oKbBFU\":[\"# source with sync failures.\"],\"oNOjE7\":[\"종료일/시간\"],\"oNZQUQ\":[\"Kubernetes 또는 OpenShift로 인증하는 인증 정보\"],\"oQqtoP\":[\"관리 작업으로 돌아가기\"],\"oRt7Uv\":[[\"interval\"],\" years\"],\"oTDA5P\":[[\"0\",\"plural\",{\"one\":[\"이 인스턴스는 현재 다른 리소스에서 사용 중입니다. 정말 삭제하시겠습니까?\"],\"other\":[\"이 인스턴스의 프로비저닝을 해제하면 이에 의존하는 다른 리소스에 영향을 줄 수 있습니다. 그래도 삭제하시겠습니까?\"]}]],\"oWvSIB\":[\"보낸 사람 이메일\"],\"oX_mCH\":[\"프로젝트 동기화 오류\"],\"oZvDsd\":[[\"interval\"],\" hours\"],\"ocUvR-\":[\"False\"],\"ofO19Q\":[\"GitHub Enterprise 팀으로 로그인\"],\"ofcQVG\":[\"저장되지 않은 변경 사항 모달\"],\"olEUh2\":[\"성공\"],\"opS--k\":[\"인스턴스 그룹으로 돌아가기\"],\"orh4t6\":[\"호스트 확인\"],\"osCeRO\":[\"Azure AD 설정 보기\"],\"ot7qsv\":[\"모든 필터 지우기\"],\"ovBPCi\":[\"기본값\"],\"owBGkJ\":[\"종료가 예상 값과 일치하지 않음 (\",[\"0\"],\")\"],\"owQ8JH\":[\"인스턴스 그룹 추가\"],\"ozbhWy\":[\"삭제 오류\"],\"p-nfFx\":[\"여기에 파일을 드래그하거나 업로드할 파일을 찾습니다.\"],\"p-ngUo\":[\"팔로우 취소\"],\"p-pp9U\":[\"string\"],\"p2LEhJ\":[\"개인 액세스 토큰\"],\"p2_GCq\":[\"암호 확인\"],\"p3PM8G\":[\"첫 번째 노드에서 다시 시작\"],\"p6-JME\":[\"첫 번째는 모든 참조를 가져옵니다. 두 번째는 Github 풀 요청 번호 62를 가져옵니다. 이 예제에서 브랜치는 “pull/62/head”여야 합니다.\"],\"pAtylB\":[\"찾을 수 없음\"],\"pCCQER\":[\"전역적으로 사용 가능\"],\"pH8j40\":[\"이전에 삭제된 활성 호스트\"],\"pHyx6k\":[\"다중 선택(단일 선택)\"],\"pKQcta\":[\"Pod 사양 사용자 정의\"],\"pOJNDA\":[\"커맨드\"],\"pOd3wA\":[\"'Enter'를 눌러 더 많은 답변 선택 사항을 추가합니다. 행당 하나의 응답 선택.\"],\"pOhwkU\":[\"이 작업은 \",[\"0\"],\" 에서 다음 역할의 연결을 해제합니다.\"],\"pRZ6hs\":[\"실행\"],\"pSypIG\":[\"설명 표시\"],\"pYENvg\":[\"인증 권한 부여 유형\"],\"pZJ0-s\":[\"이 그룹에서 동시에 실행되는 모든 작업에서 허용되는 최대 포크 수입니다. 0은 제한이 적용되지 않음을 의미합니다.\"],\"pa1SrG\":[[\"interval\"],\" days\"],\"peCAyQ\":[\"RADIUS 설정 보기\"],\"pfw0Wr\":[\"전체\"],\"pguZh2\":[\"jinja2 표현식에서 변수를 생성합니다. 정의한 구성된\\n 그룹에 예상 호스트가 포함되어 있지 않은 경우 유용할 수\\n 있습니다. 표현식에서 hostvars를 추가하여 해당 표현식의\\n 결과 값이 무엇인지 알 수 있도록 사용할 수 있습니다.\"],\"phTgAm\":[\"시스템 팩트를 채우려면 `gather_facts: true`가\\n 있는 인벤토리에 대해 playbook을 실행해야 하기 때문에\\n Ansible 팩트에 대한 인벤토리의 사양을 제공하기가\\n 어렵습니다. 실제 팩트는 시스템마다\\n 다릅니다.\"],\"pkY73W\":[\"Rocket.Chat\"],\"pn7Xy3\":[\"Django 참조\"],\"poMgBa\":[\"시작 시 SCM 브랜치를 입력하라는 메시지를 표시합니다.\"],\"ppcQy0\":[\"zoom을 100% 및 센터 그래프로 설정\"],\"prydaE\":[\"프로젝트 동기화 실패\"],\"pw2VDK\":[[\"month\"],\"의 마지막 \",[\"weekday\"]],\"q-Uk_P\":[\"하나 이상의 인증 정보 유형을 삭제하지 못했습니다.\"],\"q45OlW\":[\"리전\"],\"q5tQBE\":[\"관련 검색 필드 퍼지 검색에 대해 설정 유형 비활성화\"],\"q67y3T\":[\"알림 템플릿을 찾을 수 없습니다.\"],\"qAlZNb\":[\"다음 워크플로 승인에 대해 조치를 취할 수 없습니다: \",[\"itemsUnableToDeny\"]],\"qCUUnr\":[\"남아 있는 호스트가 없음\"],\"qChjCy\":[\"첫 번째 실행\"],\"qD-pvR\":[\"대시보드 ID (선택 사항)\"],\"qEMgTP\":[\"인벤토리 소스 동기화 오류\"],\"qJK-de\":[\"OIDC로 로그인\"],\"qS0GhO\":[\"실행 환경이 없습니다\"],\"qSSVmd\":[\"대상 채널 또는 사용자\"],\"qSSg1L\":[\"사용 가능한 노드에 대한 링크\"],\"qWD0iN\":[\"이 데이터는 소프트웨어의 향후 릴리스를 개선하고\\n Automation Analytics를 제공하는 데\\n 사용됩니다.\"],\"qXRYa2\":[\"분기에서 하위 모듈의 최신 커밋 추적\"],\"qYkrfg\":[\"프로비저닝 호출 세부 정보\"],\"qZ2MTC\":[\"다음은 \",[\"brandName\"],\"에서 명령 실행을 지원하는 모듈입니다.\"],\"qgjtIt\":[\"통합\"],\"qlhQw_\":[\"인벤토리 동기화\"],\"qliDbL\":[\"원격 아카이브\"],\"qlwLcm\":[\"문제 해결\"],\"qmBmJJ\":[\"이는 클라이언트 시크릿이 표시되는 유일한 시간입니다.\"],\"qmYgP7\":[\"승인됨\"],\"qqeAJM\":[\"없음\"],\"qtFFSS\":[\"시작 시 버전 업데이트\"],\"qtaMu8\":[\"인벤토리(이름)\"],\"qvCD_i\":[\"예제는 다음과 같습니다.\"],\"qwaCoN\":[\"소스 제어 업데이트\"],\"qxZ5RX\":[\"호스트\"],\"qznBkw\":[\"워크플로우 링크 모달\"],\"r6Aglb\":[\"JSON 또는 YAML 구문을 사용하여 인젝터를 입력합니다. 구문 예제는 Ansible Controller 설명서를 참조하십시오.\"],\"r6y-jM\":[\"경고\"],\"r6zgGo\":[\"12월\"],\"r8ojWq\":[\"제거 확인\"],\"r8oq0Y\":[\"지난 24 시간\"],\"rBdPPP\":[[\"name\"],\" 을/를 삭제하지 못했습니다.\"],\"rE95l8\":[\"클라이언트 유형\"],\"rG3WVm\":[\"선택\"],\"rHK_Sg\":[\"사용자 지정 가상 환경 \",[\"virtualEnvironment\"],\" 은 실행 환경으로 교체해야 합니다. 실행 환경으로 마이그레이션하는 방법에 대한 자세한 내용은 해당 <0>문서를 참조하십시오.\"],\"rK7UBZ\":[\"모든 호스트 다시 시작\"],\"rKS_55\":[\"팩트 스토리지: 활성화하면 수집된 팩트를 저장하여 호스트 수준에서 볼 수 있습니다. 팩트는 유지되며 런타임에 팩트 캐시에 삽입됩니다.\"],\"rKTFNB\":[\"인증 정보 유형 삭제\"],\"rLznGJ\":[\"승인이 생성될 때 업스트림 set_stats 아티팩트로 렌더링되는 Jinja2 템플릿입니다. 이를 사용하여 이전 작업 단계의 관련 컨텍스트를 승인자에게 표시합니다. 사용 가능한 변수는 부모 노드의 set_stats 데이터에서 가져옵니다.\"],\"rMrKOB\":[\"프로젝트를 동기화하지 못했습니다.\"],\"rOZRCa\":[\"워크플로우 링크\"],\"rSYkIY\":[\"이 필드는 숫자여야 합니다\"],\"rXhu41\":[\"2 (디버그)\"],\"rYHzDr\":[\"페이지당 항목\"],\"r_IfWZ\":[\"인벤토리 편집\"],\"rdUucN\":[\"미리보기\"],\"rfYaVc\":[\"응답 변수 이름\"],\"rfpIXM\":[\"시작 시 인스턴스 그룹을 입력하라는 메시지를 표시합니다.\"],\"rfx2oA\":[\"워크플로우 보류 메시지 본문\"],\"riBcU5\":[\"IRC 닉네임\"],\"rjVfy3\":[\"워크플로우 문서\"],\"rjyWPb\":[\"1월\"],\"rmb2GE\":[[\"0\"],\" 님이 거부함 - \",[\"1\"]],\"rmt9Tu\":[\"총 호스트\"],\"ruhGSG\":[\"인벤토리 소스 동기화 취소\"],\"rvia3m\":[\"기타 인증\"],\"rw1pRJ\":[\"번들 다운로드\"],\"rwWNpy\":[\"인벤토리\"],\"s-MGs7\":[\"리소스\"],\"s2xYUy\":[\"원격 인벤토리 소스에서 로컬 변수 덮어쓰기\"],\"s3KtlK\":[\"이 일정에는 선택한 예외로 인해 발생하지 않습니다.\"],\"s4Qnj2\":[\"실행 환경\"],\"s4fge-\":[\"지난 한 달\"],\"s5aIEB\":[\"워크플로우 작업 템플릿 삭제\"],\"s5mACA\":[\"인스턴스 세부 정보\"],\"s5r5nt\":[[\"0\",\"plural\",{\"one\":[\"이 인스턴스 그룹은 현재 다른 리소스에서 사용 중입니다. 삭제하시겠습니까?\"],\"other\":[\"이러한 인스턴스 그룹을 삭제하면 이에 의존하는 다른 리소스에 영향을 줄 수 있습니다. 그래도 삭제하시겠습니까?\"]}]],\"s6F6Ks\":[\"이 작업에 대한 출력을 찾을 수 없습니다.\"],\"s70SJY\":[\"로깅 설정\"],\"s8hQty\":[\"모든 작업 보기.\"],\"s9EKbs\":[\"SSL 확인 비활성화\"],\"sAz1tZ\":[\"연결 해제 확인\"],\"sBJ5MF\":[\"소스\"],\"sCEb_0\":[\"모든 인벤토리 호스트 보기\"],\"sGodAp\":[\"Pod 사양 덮어쓰기\"],\"sMDRa_\":[\"그룹으로 돌아가기\"],\"sOMf4x\":[\"최근 템플릿\"],\"sSFxX6\":[\"작업 시작 시 버전 업데이트\"],\"sTkKoT\":[\"거부할 행 선택\"],\"sUyFTB\":[\"대시보드로 리디렉션\"],\"sV3kNp\":[\"이 인스턴스 그룹은 현재 다른 리소스에 의해 있습니다. 삭제하시겠습니까?\"],\"sVh4-e\":[\"이 링크 삭제\"],\"sW5OjU\":[\"필수\"],\"sZif4m\":[\"관련 그룹을 분리하시겠습니까?\"],\"s_XkZs\":[\"시작\"],\"s_r4Az\":[\"이 필드는 정수여야 합니다\"],\"sesAIn\":[\"작업이 시작, 성공 또는 실패할 때 전송되는\\n 알림의 내용을 변경하려면 사용자 정의 메시지를 사용합니다. 작업에 대한\\n 정보에 액세스하려면 중괄호를 사용합니다:\"],\"sgRZMG\":[\"하이브리드 노드\"],\"siJgSI\":[\"사용자를 찾을 수 없음\"],\"sjMCOP\":[\"최종 업데이트\"],\"sjVfrA\":[\"명령\"],\"smFRaX\":[\"작업이 이미 시작되었습니다\"],\"sqMsvU\":[[\"0\",\"plural\",{\"one\":[\"#\",\" 개 소스에서 동기화 실패.\"],\"other\":[\"#\",\" 개 소스에서 동기화 실패.\"]}]],\"sr4LMa\":[\"인벤토리 소스\"],\"svR3aM\":[\"OpenStack\"],\"svy2x9\":[\"이 필터 또는 다른 필터를 만족하는 결과를 반환합니다.\"],\"sxkWRg\":[\"고급\"],\"syupn5\":[\"브랜드 이미지\"],\"syyeb9\":[\"첫 번째\"],\"t-R8-P\":[\"실행\"],\"t2q1xO\":[\"일정 편집\"],\"t4v_7X\":[\"노드 유형 선택\"],\"t9QlBd\":[\"11월\"],\"tRm9qR\":[\"태그는 대규모 playbook이 있고 play 또는 작업의 특정 부분을 실행하려는 경우에 유용합니다. 여러 태그를 구분하려면 쉼표를 사용합니다. 태그 사용에 대한 자세한 내용은 설명서를 참조하십시오.\"],\"tVEot_\":[[\"0\",\"plural\",{\"one\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"other\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"]}]],\"tXkhj_\":[\"시작\"],\"t_YqKh\":[\"제거\"],\"tbSVlt\":[\"사용자 액세스 제거\"],\"tfDRzk\":[\"저장\"],\"tfh2eq\":[\"이 노드에 대한 새 링크를 생성하려면 클릭합니다.\"],\"tgPwON\":[\"연산자\"],\"tgSBSE\":[\"링크 제거\"],\"tgWuMB\":[\"수정됨\"],\"thJljW\":[\"경고: \"],\"toJdZA\":[\"Reorder\"],\"tpCmSt\":[\"policy rules.\"],\"tqlcfo\":[\"프로비저닝 해제 중\"],\"trjiIV\":[\"동료를 연결하지 못했습니다.\"],\"tst44n\":[\"이벤트\"],\"twE5a9\":[\"인증 정보를 삭제하지 못했습니다.\"],\"txNbrI\":[\"소스 제어 분기\"],\"ty2DZX\":[\"이 조직은 현재 다른 리소스에서 사용 중입니다. 삭제하시겠습니까?\"],\"tzgOKK\":[\"이 작업은 이미 수행되었습니다.\"],\"u-sh8m\":[\"/ (프로젝트 root)\"],\"u4ex5r\":[\"7월\"],\"u4n8Fm\":[\"동료를 제거하지 못했습니다.\"],\"u4x6Jy\":[\"작업으로 돌아가기\"],\"u5AJST\":[\"플레이북을 실행하는 동안 사용할 병렬 또는 동시 프로세스 수입니다. 값을 입력하지 않으면 ansible 구성 파일에서 기본값을 사용합니다. 자세한 정보를 참조하십시오.\"],\"u7f6WK\":[\"모든 워크플로우 승인 보기.\"],\"u84wS1\":[\"작업 취소 오류\"],\"uAQUqI\":[\"상태\"],\"uAhZbx\":[\"실패가 있는 재고 소스\"],\"uCjD1h\":[\"세션이 만료되었습니다. 세션이 만료되기 전의 위치에서 계속하려면 로그인하십시오.\"],\"uImfEm\":[\"워크플로우 보류 메시지\"],\"uJz8NJ\":[\"작업이 실행되는 동안 검색이 비활성화됩니다.\"],\"uPRp5U\":[\"검색 취소\"],\"uTDtiS\":[\"다섯 번째\"],\"uUehLT\":[\"대기 중\"],\"uVu1Yt\":[\"설정 유형 선택\"],\"uYtvvN\":[\"실행 환경을 편집하기 전에 프로젝트를 선택합니다.\"],\"ucSTeu\":[\"(사용자 이름)에 의해 생성됨\"],\"ucgZ0o\":[\"조직\"],\"ugZpot\":[\"외부 자격 증명 테스트\"],\"ulRNXw\":[\"Dragging cancelled. List is unchanged.\"],\"upC07l\":[\"Survey Disabled\"],\"uuPCEU\":[\"If you want the Inventory Source to update on launch , click on Update on Launch, and also go to \"],\"uyJsf6\":[\"정보\"],\"uzTiFQ\":[\"일정으로 돌아가기\"],\"v-CZEv\":[\"시작 시 프롬프트\"],\"v-EbDj\":[\"문제 해결 설정\"],\"v-M-LP\":[\"템플릿 시작\"],\"v0urVb\":[\"서브스크립션이 없는 경우 Red Hat을\\n 방문하여 평가판 서브스크립션을 받을 수 있습니다.\"],\"v1kQyJ\":[\"Webhook\"],\"v2dMHj\":[\"호스트 매개변수를 사용하여 다시 시작\"],\"v2gmVS\":[\"이 작업은 다음을 부드럽게 삭제합니다.\"],\"v45yUL\":[\"연결 해제\"],\"v7vAuj\":[\"총 작업\"],\"vCS_TJ\":[\"인벤토리 소스 \",[\"name\"],\" 삭제에 실패했습니다.\"],\"vEr6TL\":[\"이러한 인수는 지정된 모듈과 함께 사용됩니다. \",[\"0\"],\"에 대한 정보는 다음을 클릭하여 찾을 수 있습니다: \"],\"vF82C6\":[\"부모 노드가 성공하면 실행됩니다.\"],\"vFKI2e\":[\"일정 규칙\"],\"vFVhzc\":[\"SOCIAL\"],\"vGVmd5\":[\"활성화된 변수가 설정되지 않은 경우 이 필드는 무시됩니다. 사용 가능한 변수가 이 값과 일치하면 호스트는 가져오기에서 활성화됩니다.\"],\"vGjmyl\":[\"삭제됨\"],\"vHAaZi\":[\"모두 건너뛰기\"],\"vIb3RK\":[\"새 일정 만들기\"],\"vKRQJB\":[\"사용자 정의 Kubernetes 또는 OpenShift Pod 사양을 전달하는 필드입니다.\"],\"vLyv1R\":[\"숨기기\"],\"vPrMqH\":[\"버전 #\"],\"vQHUI6\":[\"이 옵션을 선택하면 하위 그룹 및 호스트에 대한 모든 변수가 제거되고 외부 소스에 있는 변수로 대체됩니다.\"],\"vTL8gi\":[\"종료 시간\"],\"vUOn9d\":[\"돌아가기\"],\"vYFWsi\":[\"팀 선택\"],\"vYuE8q\":[\"작업이 실행되는 데 경과된 시간\"],\"vZbIkJ\":[\"GitLab\"],\"vcH-SH\":[\"Bitbucket 데이터 센터\"],\"ve_jRy\":[\"조건부\"],\"vgwVkd\":[\"UTC\"],\"vlHGDw\":[\"추가 명령줄 변수를 playbook에 전달합니다. 이것은 ansible-playbook의 -e 또는 --extra-vars 명령줄 매개변수입니다. YAML 또는 JSON을 사용하여 키/값 쌍을 제공합니다. 구문 예제는 설명서를 참조하십시오.\"],\"voRH7M\":[\"예:\"],\"vq1XXv\":[\"적용된 필터를 사용하여 새 스마트 인벤토리 만들기\"],\"vq2WxD\":[\"화요일\"],\"vq9gg6\":[\"다음 워크플로 승인에 대해 조치를 취할 수 없습니다: \",[\"itemsUnableToApprove\"]],\"vqAmQC\":[\"모듈\"],\"vvY8pz\":[\"시작 시 건너뛸 태그를 입력하라는 메시지를 표시합니다.\"],\"vye-ip\":[\"시작 시 시간 초과를 입력하라는 메시지를 표시합니다.\"],\"vzsN_5\":[[\"interval\"],\" day\"],\"w07pgp\":[\"시작 시 상세 정보 수준을 입력하라는 메시지를 표시합니다.\"],\"w0kTk8\":[\"실패한 노드에서 다시 시작\"],\"w14eW4\":[\"모든 토큰 보기\"],\"w1RiT6\":[[\"0\",\"plural\",{\"one\":[\"이 인벤토리 소스는 현재 이에 의존하는 다른 리소스에서 사용 중입니다. 삭제하시겠습니까?\"],\"other\":[\"이러한 인벤토리 소스를 삭제하면 이에 의존하는 다른 리소스에 영향을 줄 수 있습니다. 그래도 삭제하시겠습니까?\"]}]],\"w2VTLB\":[\"비교 값보다 적습니다.\"],\"w3EE8S\":[\"자동화된 호스트\"],\"w4j7js\":[\"팀 세부 정보 보기\"],\"w6zx64\":[\"브라우저 기본값 사용\"],\"wCnaTT\":[\"필드를 새 값으로 교체\"],\"wF-BAU\":[\"인벤토리 추가\"],\"wFnb77\":[\"인벤토리 ID\"],\"wKEfMu\":[\"이벤트 처리가 완료되었습니다.\"],\"wO29qX\":[\"조직을 찾을 수 없습니다.\"],\"wW08QA\":[\"같지 않음\"],\"wX6sAX\":[\"지난 2년\"],\"wXAVe-\":[\"모듈 인수\"],\"wXB7k5\":[\"알림 색상을 지정합니다. 사용 가능한 색상은 16진수\\n 색상 코드입니다(예: #3af 또는 #789abc).\"],\"waFx9W\":[\"관리됨\"],\"wdxz7K\":[\"소스\"],\"wgNoIs\":[\"모두 선택\"],\"wkgHlv\":[\"새 노드 추가\"],\"wlQNTg\":[\"멤버\"],\"wnizTi\":[\"서브스크립션 선택\"],\"wpT1VN\":[\"조건\"],\"wpt6vB\":[\"LDAP2\"],\"wqXiR2\":[\"추가 명령줄 변경 사항을 전달합니다. 두 개의 ansible 명령줄 매개 변수가 있습니다: \"],\"wsggVq\":[\"선택하지 않으면 외부 소스에서 찾을 수 없는 로컬 하위 호스트 및 그룹이 인벤토리 업데이트 프로세스에 의해 그대로 유지됩니다.\"],\"x-a4Mr\":[\"Webhook 인증 정보\"],\"x02hbg\":[\"프로비저닝 콜백: 프로비저닝 콜백 URL 생성을 활성화합니다. 이 URL을 사용하여 호스트는 Ansible AWX에 연결하고 이 작업 템플릿을 사용하여 구성 업데이트를 요청할 수 있습니다.\"],\"x4Xp3c\":[\"업데이트됨\"],\"x5DnMs\":[\"마지막으로 변경된 사항\"],\"x6_dAC\":[\"페더레이션 인벤토리\"],\"x6oT_o\":[\"사용 가능한 호스트\"],\"x7PDL5\":[\"로깅\"],\"x8uKc7\":[\"인스턴스 상태\"],\"x9WS62\":[\"취소 \",[\"0\"]],\"xAYSEs\":[\"시작 시간\"],\"xAqth4\":[\"Google OAuth 2 설정 보기\"],\"xC9EVu\":[\"취소된 노드\"],\"xCJdfg\":[\"지우기\"],\"xDr_ct\":[\"종료\"],\"xESTou\":[\"작업을 삭제하지 못했습니다.\"],\"xF5tnT\":[\"Vault 암호\"],\"xGQZwx\":[\"컨테이너 그룹 추가\"],\"xGVfLh\":[\"계속\"],\"xHZS6u\":[\"성공적인 작업\"],\"xHokxV\":[[\"0\",\"plural\",{\"one\":[\"The selected job cannot be deleted due to insufficient permission or a running job status\"],\"other\":[\"The selected jobs cannot be deleted due to insufficient permissions or a running job status\"]}]],\"xHt036\":[\"개인 액세스 토큰\"],\"xKQRBr\":[\"최대 길이\"],\"xM01Pk\":[\"기본 응답\"],\"xONDaO\":[\"Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?\"],\"xOl1yT\":[\"이름 필드에 대한 정확한 검색.\"],\"xPO5w7\":[\"GitHub로 로그인\"],\"xPpkbX\":[\"Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway\"],\"xPxMOJ\":[\"유효하지 않은 시간 형식입니다\"],\"xQioPk\":[\"여러 명의 부모가 있을 때 이 노드를 실행하기 위한 전제 조건\"],\"xSytdh\":[\"완료:\"],\"xUhTCP\":[\"소스 선택\"],\"xVhQZV\":[\"금요일\"],\"xY9DEq\":[\"인벤토리의 호스트를 대상으로 지정하는 데 사용되는 패턴입니다. 필드를 비워두면 all 및 *는 인벤토리의 모든 호스트를 대상으로 합니다. Ansible의 호스트 패턴에 대한 자세한 정보를 찾을 수 있습니다.\"],\"xY9s5E\":[\"시간 초과\"],\"x_Ej3K\":[\"사용자에게 표시할 프롬프트로 원하는 답변 유형 또는 형식을 선택하세요.\\n 각 옵션에 대한 추가 정보는 Ascender 설명서를 참조하세요.\"],\"x_ugm_\":[\"총 그룹\"],\"xa7N9Z\":[\"로그인 리디렉션 덮어쓰기 URL 편집\"],\"xcaG5l\":[\"워크플로우 편집\"],\"xd2LI3\":[[\"0\"],\"에 만료됨\"],\"xdA_-p\":[\"툴\"],\"xe5RvT\":[\"YAML 탭\"],\"xefC7k\":[\"IRC 서버 포트\"],\"xeiujy\":[\"텍스트\"],\"xg771-\":[\"LDAP1\"],\"xhj1Rt\":[\"요청하신 페이지를 찾을 수 없습니다.\"],\"xi4nE2\":[\"오류 메시지\"],\"xnSIXG\":[\"하나 이상의 호스트를 삭제하지 못했습니다.\"],\"xoCdYY\":[\"지정된 필드의 값이 제공된 목록에 있는지 확인합니다. 쉼표로 구분된 항목 목록이 있어야 합니다.\"],\"xoXoBo\":[\"오류 삭제\"],\"xrG8k4\":[\"Google Compute Engine\"],\"xtRU96\":[\"GitHub Enterprise 조직\"],\"xuYTJb\":[\"작업 템플릿을 삭제하지 못했습니다.\"],\"xw06rt\":[\"설정이 기본 설정과 일치합니다.\"],\"xxTtJH\":[\"호스트 이름과 일치하는 정규 표현식을 가져옵니다. 필터는 인벤토리 플러그인 필터를 적용한 후 사후 처리 단계로 적용됩니다.\"],\"y11WBZ\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"선택한 작업 취소\"],\"other\":[\"선택한 작업 취소\"]}]],\"y8ibKI\":[\"인스턴스 제거\"],\"yCCaoF\":[\"인스턴스를 업데이트하지 못했습니다.\"],\"yDeNnS\":[\"새 인벤토리 생성\"],\"yDifzB\":[\"선택 확인\"],\"yGS9cI\":[\"상태 양호\"],\"yGUKlf\":[\"관리 작업\"],\"yGfW7Y\":[\"이 위치를 변경하려면 \",[\"brandName\"],\"을(를) 배포할 때 PROJECTS_ROOT를 변경하십시오.\"],\"yMIahh\":[\"Red Hat Ansible Automation Platform에 오신 것을 환영합니다!\\n 서브스크립션을 활성화하려면 아래 단계를 완료하십시오.\"],\"yMYuDg\":[\"Automation Controller 버전\"],\"yMfU4O\":[\"보낸 사람 이메일\"],\"yNcGa2\":[\"액세스 토큰 만료\"],\"yOXgbH\":[\"참고: GitHub 또는 Bitbucket에 SSH 프로토콜을 사용하는 경우 SSH 키만 입력하고 (git 이외의) 사용자 이름은 입력하지 마십시오. 또한 GitHub와 Bitbucket은 SSH 사용 시 암호 인증을 지원하지 않습니다. 읽기 전용 GIT 프로토콜(git://)은 사용자 이름 또는 암호 정보를 사용하지 않습니다.\"],\"yQE2r9\":[\"로딩 중\"],\"yRiHPB\":[\"이 목록을 채우려면 작업을 실행하십시오.\"],\"yRkqG9\":[\"제한\"],\"yRsSBw\":[\"승인\"],\"yUlffE\":[\"다시 시작\"],\"yVgnJA\":[\"이 조직에서 관리할 수 있는 최대 호스트 수입니다.\\n 값은 기본적으로 0이며 이는 제한이 없음을 의미합니다. 자세한 내용은 Ansible\\n 설명서를 참조하십시오.\"],\"yX3qAQ\":[\"워크플로우 작업 템플릿 노드\"],\"yaG1CX\":[\"LDAP\"],\"yaX9sM\":[\"워크플로우 템플릿\"],\"yb_fjw\":[\"승인\"],\"ydoZpB\":[\"팀을 찾을 수 없음\"],\"ydw9CW\":[\"실패한 호스트\"],\"yfG3F2\":[\"직접 키\"],\"yjwMJ8\":[\"호스트가 자동화한 횟수\"],\"yjyGja\":[\"입력 확장\"],\"ylXj1N\":[\"선택됨\"],\"yq6OqI\":[\"토큰 값과 연결된 새로 고침 토큰 값이 표시되는 유일한 시간입니다.\"],\"yqiwAW\":[\"워크플로우 취소\"],\"yrUyDQ\":[\"이 인스턴스의 현재 라이프사이클 단계를 설정합니다. 기본값은 \\\"설치됨\\\"입니다.\"],\"yrwl2P\":[\"준수\"],\"yuXsFE\":[\"하나 이상의 워크플로우 승인을 삭제하지 못했습니다.\"],\"yuvDX_\":[[\"intervalValue\",\"plural\",{\"one\":[\"month\"],\"other\":[\"months\"]}]],\"ywSBEn\":[\"역할 연결 오류\"],\"yxDqcD\":[\"인증 코드 만료\"],\"yy1cWw\":[\"메시지 사용자 정의...\"],\"yz7wBu\":[\"닫기\"],\"yzQhLU\":[\"정책 인스턴스 최소\"],\"yzdDia\":[\"설문 조사 삭제\"],\"z-BNGk\":[\"사용자 토큰 삭제\"],\"z0DcIS\":[\"암호화\"],\"z3XA1I\":[\"호스트 재시도\"],\"z409y8\":[\"Webhook 서비스\"],\"z7NLxJ\":[\"이 특정 사용자에 대한 액세스 권한만 제거하려면 팀에서 제거하십시오.\"],\"z8mwbl\":[\"새 인스턴스가 온라인 상태가 되면 이 그룹에 자동으로 할당되는 모든 인스턴스의 최소 비율입니다.\"],\"zBO1TV\":[[\"numOccurrences\",\"plural\",{\"one\":[\"#\",\" 회 발생 후\"],\"other\":[\"#\",\" 회 발생 후\"]}]],\"zHcXAG\":[\"이 필드를 비워 두고 실행 환경을 전역적으로 사용할 수 있도록 합니다.\"],\"zICM7E\":[\"동기화 전에 로컬 변경 사항 삭제\"],\"zJY4Uj\":[\"Playbook\"],\"zKJMiH\":[\"플레이북 디렉토리\"],\"zK_63z\":[\"사용자 이름 또는 암호가 잘못되었습니다. 다시 시도하십시오.\"],\"zLsDix\":[\"LDAP 사용자\"],\"zMKkOk\":[\"조직으로 돌아가기\"],\"zN0nhk\":[\"Automation Analytics를 활성화하려면 Red Hat 또는 Red Hat Satellite 인증 정보를 제공합니다.\"],\"zQRgi-\":[\"알림 시작 전환\"],\"zTediT\":[\"이 필드는 숫자여야 하며 \",[\"min\"],\"과(와) \",[\"max\"],\" 사이의 값이어야 합니다\"],\"zUIPys\":[\"Jinja2 조건에 따라 호스트를 그룹에 추가하세요.\"],\"z_PZxu\":[\"워크플로우 승인을 삭제하지 못했습니다.\"],\"zbLCH1\":[\"인벤토리 유형\"],\"zcQj5X\":[\"먼저 키 선택\"],\"zdl7YZ\":[\"소스 경로 선택\"],\"zeEQd_\":[\"6월\"],\"zf7FzC\":[\"Kubernetes 또는 OpenShift로 인증하는 인증 정보입니다. \\\"Kubernetes/OpenShift API Bearer Token\\\" 유형이어야 합니다. 정보를 입력하지 않는 경우 기본 Pod의 서비스 계정이 사용됩니다.\"],\"zfZydd\":[\"설문 조사 프리뷰 모달\"],\"zfsBaJ\":[\"Automation Analytics에 대해 자세히 알아보기\"],\"zgInnV\":[\"워크플로우 노드 보기 모달\"],\"zga9sT\":[\"OK\"],\"zhPLvU\":[\"연결에 실패했습니다.\"],\"zhrjek\":[\"그룹\"],\"zi_YNm\":[[\"0\"],\" 취소 실패\"],\"zmu4-P\":[\"계정 SID\"],\"znG7ed\":[\"Playbook 선택\"],\"znTz5r\":[\"스케줄을 찾을 수 없습니다.\"],\"znuW_M\":[\"예인 경우 잘못된 항목을 치명적인 오류로 처리하고, 그렇지 않으면 건너뛰고\\n 계속합니다.\"],\"zq0gmb\":[\"기간 선택\"],\"ztOzCj\":[\"시작 시 업데이트\"],\"ztw2L3\":[\"하나 이상의 입력에 값이 있어야 합니다\"],\"zvfXp0\":[\"알림 승인 전환\"],\"zx4BuL\":[\"주\"],\"zzDlyQ\":[\"성공\"],\"{count, plural, one {# fork} other {# forks}}\":[[\"count\",\"plural\",{\"one\":[\"#\",\" fork\"],\"other\":[\"#\",\" forks\"]}]]}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"--iDlT\":[\"프로젝트 삭제\"],\"-0AkQd\":[[\"forks\",\"plural\",{\"one\":[\"#\",\" 포크\"],\"other\":[\"#\",\" 포크\"]}]],\"-0B-ue\":[\"프로젝트\"],\"-5kO8P\":[\"토요일\"],\"-6EcFR\":[\"Enter를 눌러 편집합니다. ESC를 눌러 편집을 중지합니다.\"],\"-7M7WW\":[\"기본값을 토글하려면 클릭합니다.\"],\"-7VWRl\":[\"RAM \",[\"0\"]],\"-8WGoO\":[\"플러그인 매개 변수가 필요합니다.\"],\"-9d7Ol\":[\"PagerDuty 하위 도메인\"],\"-9y9jy\":[\"실행 중인 상태 점검\"],\"-9yY_Q\":[\"인벤토리를 복사하지 못했습니다.\"],\"-AZQnp\":[\"SAML\"],\"-FWz2-\":[\"이전 스크롤\"],\"-FjWgX\":[\"목요일\"],\"-GMFSa\":[\"프로젝트를 복사하지 못했습니다.\"],\"-GOG9X\":[\"설명 숨기기\"],\"-NI2UI\":[\"이 작업 템플릿에서 수행하는 작업을 지정된 수의 작업 슬라이스로 나눕니다. 각 슬라이스는 인벤토리의 일부에 대해 동일한 작업을 실행합니다.\"],\"-NezOR\":[\"현재 일부 인증 정보에서 이 인증 정보 유형을 사용하고 있으며 삭제할 수 없습니다.\"],\"-OpL2l\":[\"부모 노드의 최종 상태에 관계없이 실행합니다.\"],\"-PyL32\":[\"이 노드를 삭제하시겠습니까?\"],\"-RAMET\":[\"이 링크 편집\"],\"-SAqJ3\":[\"인증 정보를 복사하지 못했습니다.\"],\"-Uepfb\":[\"컨트롤\"],\"-b3ghh\":[\"권한 에스컬레이션\"],\"-cWxFz\":[\"콘텐츠 서명을 활성화하여 프로젝트가 동기화될 때 콘텐츠가 안전하게 유지되었는지 확인합니다. 콘텐츠가 변조된 경우 작업이 실행되지 않습니다.\"],\"-hh3vo\":[\"마지막 작업 업데이트를 로드할 수 없음\"],\"-li8PK\":[\"구독 사용\"],\"-nb9qF\":[\"(실행 시 프롬프트)\"],\"-ohrPc\":[\"자동 완성 검색\"],\"-rfqXD\":[\"설문 조사 활성화\"],\"-uOi7U\":[\"클릭하여 번들을 다운로드합니다\"],\"-vAlj5\":[\"작업을 시작하지 못했습니다.\"],\"-z0Ubz\":[\"적용할 역할 선택\"],\"-zW4qj\":[\"체크아웃할 브랜치입니다. 브랜치 외에도 태그, 커밋 해시 및 임의의 참조를 입력할 수 있습니다. 사용자 지정 refspec을 제공하지 않으면 일부 커밋 해시 및 참조를 사용하지 못할 수 있습니다.\"],\"-zy2Nq\":[\"유형\"],\"0-31GV\":[\"제거 중\"],\"0-yjzX\":[\"버전을 사용할 수 있으려면 프로젝트를 동기화해야 합니다.\"],\"00_HDq\":[\"정책 유형\"],\"00cteM\":[\"이 필드는 \",[\"0\"],\"자를 초과할 수 없습니다\"],\"01Zgfk\":[\"시간 초과\"],\"02FGuS\":[\"새 그룹 만들기\"],\"02ePaq\":[[\"0\"],\" 선택\"],\"02o5A-\":[\"새 프로젝트 만들기\"],\"05TJDT\":[\"작업 세부 정보를 보려면 클릭합니다.\"],\"06Veq8\":[\"동기화 프로젝트\"],\"08IuMU\":[\"변수 덮어쓰기\"],\"08dX0o\":[\"Grafana\"],\"0Ca6Bi\":[[\"dateStr\"],\" (<0>\",[\"username\"],\" 기준)\"],\"0DRyjU\":[\"실행 중인 Handlers\"],\"0JjrTf\":[\"파일을 구문 분석하는 동안 오류가 발생했습니다. 파일 형식을 확인하고 다시 시도하십시오.\"],\"0K8MzY\":[\"이 필드는 \",[\"max\"],\"자를 초과할 수 없습니다\"],\"0LUj25\":[\"인스턴스 그룹 삭제\"],\"0MFMD5\":[\"하나 이상의 인스턴스에서 상태 확인을 실행하지 못했습니다.\"],\"0Ohn6b\":[\"시작자\"],\"0PUWHV\":[\"반복 빈도\"],\"0Pz6gk\":[\"구성된 인벤토리 플러그인을 구성하는 데 사용되는 변수입니다. 이 플러그인을 구성하는 방법에 대한 자세한 설명은 다음을 참조하십시오.\"],\"0QsHpG\":[\"해당 유형에 대해 정렬된 필드 집합을 정의하는 입력 스키마입니다.\"],\"0Tddvz\":[\"Grafana 서버의 기본 URL입니다. /api/annotations\\n 엔드포인트가 기본 Grafana URL에 자동으로\\n 추가됩니다.\"],\"0WL4_U\":[\"모든 노드 삭제\"],\"0WP27-\":[\"작업 출력을 기다리는 중..\"],\"0YAsXQ\":[\"컨테이너 그룹\"],\"0ZdD1M\":[[\"0\",\"plural\",{\"one\":[\"You cannot cancel the following job because it is not running:\"],\"other\":[\"You cannot cancel the following jobs because they are not running:\"]}]],\"0ZqUtV\":[\"자세한 내용은 다음을 참조하십시오\"],\"0_ru-E\":[\"인벤토리 복사\"],\"0cqIWs\":[\"기본 인증 암호\"],\"0d48JM\":[\"다중 선택(여러 선택)\"],\"0eOoxo\":[\"시작 날짜/시간 이후의 종료 날짜/시간을 선택하십시오.\"],\"0f7U0k\":[\"수요일\"],\"0gPQCa\":[\"항상\"],\"0lvFRT\":[\"자격 증명의 자격 증명 유형은 사용 중인 리소스의 기능이 손상될 수 있으므로 변경할 수 없습니다.\"],\"0pC_y6\":[\"이벤트\"],\"0qOaMt\":[\"이 자격 증명 및 메타데이터를 테스트하라는 요청에 문제가 발생했습니다.\"],\"0rVzXl\":[\"Google OAuth 2 설정\"],\"0sNe72\":[\"역할 추가\"],\"0tNXE8\":[\"PUT\"],\"0tfvhT\":[\"인스턴스 그룹이 사용하는 용량\"],\"0wlLcO\":[\"유지해야 하는 데이터 일 수를 설정합니다.\"],\"0zpgxV\":[\"옵션\"],\"0zs8j5\":[\"이 노드의 작업이 실패 경로를 따르기 전에 실패 후 자동으로 재시도되는 최대 횟수입니다. 취소된 작업은 재시도되지 않습니다.\"],\"1-4GhF\":[\"동기화 취소\"],\"10B0do\":[\"테스트 알림을 발송하지 못했습니다.\"],\"1280Tg\":[\"호스트 이름\"],\"12j25_\":[\"GPG 공개 키\"],\"12kemj\":[\"소스 제어 URL\"],\"14KOyT\":[\"Source vars\"],\"15GcuU\":[\"기타 인증 설정 보기\"],\"17TKua\":[\"인스턴스 그룹\"],\"19zgn6\":[\"인스턴스 유형\"],\"1A3EXy\":[\"확장\"],\"1C5cFl\":[\"다음 실행\"],\"1Ey8My\":[\"IP 주소\"],\"1F0IaT\":[\"일정 보기\"],\"1HMy92\":[\"JSON:\"],\"1I6UoR\":[\"보기\"],\"1L3KBl\":[\"새 인증 정보 유형 만들기\"],\"1LRwvx\":[\"인벤토리 소스를 시작 시 업데이트하려면 시작 시 업데이트를 클릭하고 다음 위치로도 이동하십시오: \"],\"1Ltnvs\":[\"노드 추가\"],\"1PQRWr\":[\"시작 시간\"],\"1QRNEs\":[\"반복 빈도\"],\"1RYzKu\":[\"취소된 노드에서 다시 시작\"],\"1UJu6o\":[\"1에서 31 사이의 날짜 번호를 선택하십시오.\"],\"1UjRxI\":[\"캐시 제한 시간\"],\"1UzENP\":[\"제공되지 않음\"],\"1V4Yvg\":[\"기타 시스템\"],\"1WlWk7\":[\"인벤토리 호스트 세부 정보 보기\"],\"1WsB5U\":[\"이 계정과 연결된 서브스크립션을 찾을 수 없습니다.\"],\"1ZaQUH\":[\"성\"],\"1_gTC7\":[\"동일한 vault ID로 여러 인증 정보를 선택할 수 없습니다. 이렇게 하면 동일한 vault ID를 가진 다른 인증 정보가 자동으로 선택 취소됩니다.\"],\"1abtmx\":[\"하위 그룹 및 호스트 승격\"],\"1ahgeV\":[\"Google OAuth2\"],\"1cT4RU\":[\"SCM 업데이트\"],\"1fO-kL\":[\"인스턴스를 전환하지 못했습니다.\"],\"1hCxP5\":[\"하나 이상의 인스턴스 그룹을 삭제하지 못했습니다.\"],\"1kwHxg\":[\"호스트 통계\"],\"1n50PN\":[\"JSON 탭\"],\"1qd4yi\":[\"변수는 JSON 또는 YAML 구문이어야 합니다. 라디오 버튼을 사용하여 둘 사이를 전환합니다.\"],\"1rDBnp\":[\"파일 차이점\"],\"1w2SCz\":[\"소스 제어 유형 선택\"],\"1xdJD7\":[\"화면에 맞추기\"],\"1yHVE-\":[\"추가 중\"],\"2-iKER\":[\"활동 스트림 보기\"],\"2B_v7Y\":[\"정책 인스턴스 백분율\"],\"2CTKOa\":[\"프로젝트로 돌아가기\"],\"2FB7vv\":[\"기본 실행 환경을 편집하기 전에 조직을 선택합니다.\"],\"2FeJcd\":[\"건너뛴 항목\"],\"2H9REH\":[\"이름 필드에서 퍼지 검색\"],\"2JV4mx\":[\"이 인스턴스가 속하는 인스턴스 그룹입니다.\"],\"2KlsJC\":[\"메시지에 사용 가능한 여러 변수를 적용할 수 있습니다.\\n 자세한 내용은 다음을 참조하십시오.\"],\"2MSEkM\":[\"인벤토리를 삭제하지 못했습니다.\"],\"2a07Yj\":[\"알림 템플릿 복사\"],\"2ekvhy\":[\"예외 빈도\"],\"2gDkH_\":[\"이벤트 발생 횟수를 입력해 주십시오.\"],\"2iyx-2\":[\"Ansible 컨트롤러 설명서\"],\"2n41Wr\":[\"워크플로우 템플릿 추가\"],\"2nsB1O\":[\"토큰으로 돌아가기\"],\"2ocqzE\":[\"Webhook: 이 템플릿에 대한 webhook을 활성화합니다.\"],\"2ooR7j\":[\"LDAP 5\"],\"2p6eVk\":[\"검색 모달\"],\"2pNIxF\":[\"워크플로 노드\"],\"2pgi-L\":[\"호스트를 사용할 수 있고 실행 중인 작업에 포함되어야 하는지\\n 여부를 나타냅니다. 외부 인벤토리에 속한 호스트의 경우, 인벤토리\\n 동기화 프로세스에 의해 재설정될 수 있습니다.\"],\"2qfwJn\":[\"덮어쓰기\"],\"2r06bV\":[\"Hipchat\"],\"2rvMKg\":[\"토큰 새로 고침\"],\"2w-INk\":[\"호스트 세부 정보\"],\"2zs1kI\":[\"이 값은 이전에 입력한 암호와 일치하지 않습니다. 암호를 확인하십시오.\"],\"3-SkJA\":[\"호스트에서 그룹을 분리하시겠습니까?\"],\"3-sY1p\":[\"대상 SMS 번호\"],\"328Yxp\":[\"소스 제어 분기\"],\"38Or-7\":[\"탭\"],\"38VIWI\":[\"템플릿 세부 정보 보기\"],\"39y5bn\":[\"금요일\"],\"3A9ATS\":[\"실행 환경을 찾을 수 없습니다.\"],\"3AOZPn\":[\"디버그 옵션 보기 및 편집\"],\"3FUtN9\":[\"인벤토리 소스 동기화\"],\"3IVQDN\":[\"이 일정은 UI에서 지원되지 않는 복잡한 규칙을\\n 사용합니다. 이 일정을 관리하려면 API를 사용하십시오.\"],\"3JjdaA\":[\"실행\"],\"3JnvxN\":[\"새 역할을 받을 리소스를 선택합니다. 다음 단계에서 적용할 역할을 선택할 수 있습니다. 여기에서 선택한 리소스에는 다음 단계에서 선택한 모든 역할이 수신됩니다.\"],\"3JzsDb\":[\"5월\"],\"3LoUor\":[\"대상 채널\"],\"3LqMX2\":[\"CIQ Ascender Automation Platform\"],\"3PAU4M\":[\"년\"],\"3PZalO\":[\"호스트를 찾을 수 없습니다.\"],\"3Rke7L\":[\"1 (정보)\"],\"3WGwSW\":[\"업데이트를 수행하기 전에 로컬 리포지토리를 완전히 삭제합니다. 리포지토리 크기에 따라 업데이트를 완료하는 데 필요한 시간이 크게 늘어날 수 있습니다.\"],\"3YSVMq\":[\"삭제 오류\"],\"3aIe4Y\":[\"새 조직 만들기\"],\"3b24mY\":[\"CPU \",[\"0\"]],\"3fG1e7\":[\"경과된 시간\"],\"3fMc43\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 년\"],\"other\":[\"#\",\" 년\"]}]],\"3hCQhK\":[\"인벤토리 플러그인\"],\"3hvUyZ\":[\"새로운 선택\"],\"3mTiHp\":[\"템플릿을 복사하지 못했습니다.\"],\"3pBNb0\":[\"출력 다시 로드\"],\"3sFvGC\":[\"인스턴스 활성화 또는 비활성화를 설정합니다. 비활성화된 경우 작업이 이 인스턴스에 할당되지 않습니다.\"],\"3sXZ-V\":[\"update Revision on Launch를 클릭합니다.\"],\"3uAM50\":[\"최종 사용자 라이센스 계약\"],\"3wPA9L\":[\"카테고리 설정\"],\"3y7qi5\":[\"인증 정보로 돌아가기\"],\"3yy_k-\":[\"모든 팀 보기.\"],\"4-RjdJ\":[[\"interval\"],\" year\"],\"40lLFI\":[\"다음 페이지로 이동\"],\"41KRqu\":[\"인증 정보 암호\"],\"45BzQy\":[\"상태 점검은 비동기 작업입니다. 다음을 참조하십시오.\"],\"45cx0B\":[\"서브스크립션 편집 취소\"],\"45gLaI\":[\"시작 시 자격 증명을 입력하라는 메시지를 표시합니다.\"],\"46SUtl\":[\"그룹 편집\"],\"479kuh\":[\"클립보드에 전체 버전을 복사합니다.\"],\"47e97a\":[\"최대 재시도 횟수\"],\"4BITzH\":[\"오류:\"],\"4LzLLz\":[\"모든 설정 보기\"],\"4Q4HZp\":[[\"pluralizedItemName\"],\" 을/를 찾을 수 없음\"],\"4QXpWJ\":[\"시간 초과\"],\"4QfhOe\":[\"not__ 및 __search와 같은 일부 검색 수정자는 스마트 인벤토리 호스트 필터에서 지원되지 않습니다. 이 필터를 사용하여 새 스마트 인벤토리를 생성하려면 제거합니다.\"],\"4S2cNE\":[\"로깅 설정 보기\"],\"4Wt2Ty\":[\"목록에서 항목 선택\"],\"4_ESDh\":[\"이 필드는 정규 표현식이어야 합니다\"],\"4_xiC_\":[\"아티팩트\"],\"4alXD6\":[\"이 그룹에서 동시에 실행할 최대 작업 수입니다.\\n 0은 제한이 적용되지 않음을 의미합니다.\"],\"4bhLaA\":[\"인증 정보 유형 선택\"],\"4cWhxn\":[\"이 인스턴스가 정책에 의해 관리되는지 여부를 제어합니다. 활성화된 경우, 인스턴스는 정책 규칙에 따라 인스턴스 그룹에 대한 자동 할당 및 할당 해제에 사용할 수 있습니다.\"],\"4dQFvz\":[\"완료\"],\"4g1rw0\":[\"이메일 알림이 호스트에 도달하려는 시도를 중지하고\\n 시간 초과되기까지의 시간(초)입니다. 범위는\\n 1초에서 120초입니다.\"],\"4hPyPF\":[\"저장 및 종료\"],\"4j2eOR\":[\"이 호스트가 속할 인벤토리를 선택합니다.\"],\"4jnim6\":[\"webhook 서비스를 선택합니다.\"],\"4km-Vu\":[\"규정 준수 외\"],\"4kw_um\":[[\"interval\"],\" minute\"],\"4lCMxZ\":[\"실패 설명:\"],\"4lgLew\":[\"2월\"],\"4mQyZf\":[\"webhook 서비스는 이를 공유 시크릿으로 사용할 수 있습니다.\"],\"4nLbTY\":[\"모든 관리 작업 보기\"],\"4o_cFL\":[\"애플리케이션 삭제\"],\"4s0pSB\":[\"playbook에 의해 관리되거나 영향을 받는 호스트 목록을 추가로 제한하는 호스트 패턴을 제공합니다. 여러 패턴이 허용됩니다. 패턴에 대한 자세한 정보와 예제는 Ansible 설명서를 참조하십시오.\"],\"4uVADI\":[\"클라이언트 시크릿\"],\"4vFDZV\":[\"새 작업 템플릿 만들기\"],\"4vkbaA\":[\"이 인벤토리 업데이트의 소스가 되는 프로젝트입니다.\"],\"4yGeRr\":[\"인벤토리 동기화\"],\"4zue79\":[\"저작권\"],\"5-qYGv\":[\"인스턴스 편집\"],\"54_SyV\":[[\"0\",\"plural\",{\"one\":[\"You do not have permission to cancel the following job:\"],\"other\":[\"You do not have permission to cancel the following jobs:\"]}]],\"56fd5u\":[\"이 워크플로우에서 모든 노드를 제거하시겠습니까?\"],\"5B77Dm\":[\"마지막 작업\"],\"5F5F4w\":[\"워크플로우 승인\"],\"5IhYoj\":[\"노드 유형\"],\"5K7kGO\":[\"문서\"],\"5KMGbn\":[\"이 작업을 취소하시겠습니까?\"],\"5RMgCw\":[\"호스트\"],\"5S4tZv\":[\"빈도가 예상 값과 일치하지 않음\"],\"5Sa1Ss\":[\"이메일\"],\"5TnQp6\":[\"작업 유형\"],\"5WFDw4\":[\"그룹 별로만\"],\"5X2wog\":[\"로그인하는 데 문제가 있었습니다. 다시 시도하십시오.\"],\"5_vHPm\":[\"TACACS + 설정 보기\"],\"5ajaW1\":[\"부모 노드의 아티팩트가 조건과 일치할 때 실행합니다.\"],\"5dJK4M\":[\"역할\"],\"5eHyY-\":[\"테스트 알림\"],\"5eL2KN\":[\"대상 URL\"],\"5lqXf5\":[\"팩토리 기본 설정으로 되돌립니다.\"],\"5n_soj\":[\"시작 시 작업 슬라이스 수를 입력하라는 메시지를 표시합니다.\"],\"5p6-Mk\":[\"실패한 작업으로 필터링\"],\"5pDe2G\":[\"Remove \",[\"0\"],\" Access\"],\"5pa4JT\":[\"플레이북 시작됨\"],\"5qauVA\":[\"이 워크플로우 작업 템플릿은 현재 다른 리소스에서 사용되고 있습니다. 삭제하시겠습니까?\"],\"5vA8H0\":[\"일치하는 호스트가 없음\"],\"5xzS8Q\":[\"이것이 「constructed」 플러그인의\\n 소스 파일임을 보장하는 토큰입니다.\"],\"5y9wkB\":[\"알림으로 돌아가기\"],\"6-OdGi\":[\"프로토콜\"],\"6-ptnU\":[\"옵션\"],\"623gDt\":[\"사용자를 삭제하지 못했습니다.\"],\"63C4Yo\":[\"컨테이너 그룹\"],\"66Zq7T\":[\"링크 변경 저장\"],\"66qTfS\":[\"지난 주\"],\"679-JR\":[\"id, 이름 또는 설명 필드에서 퍼지 검색\"],\"68OTAn\":[\"This intance is currently being used by other resources. Are you sure you want to delete it?\"],\"68h6WG\":[\"관리 작업 시작\"],\"69aXwM\":[\"기존 그룹 추가\"],\"69zuwn\":[\"Deprovisioning these instances could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"6ASSBg\":[\"LDAP 4\"],\"6BzDub\":[\"소프트 삭제\"],\"6GBt0m\":[\"메타데이터\"],\"6HLTEb\":[\"필터...\"],\"6J-cs1\":[\"시간 제한 (초)\"],\"6KhU4s\":[\"변경 사항을 저장하지 않고 Workflow Creator를 종료하시겠습니까?\"],\"6LTyxl\":[\"버전\"],\"6PmtyP\":[\"범례 전환\"],\"6RDwJM\":[\"토큰\"],\"6UYTy8\":[\"분\"],\"6V3Ea3\":[\"복사됨\"],\"6WwHL3\":[\"총 노드\"],\"6XOI1I\":[\"새 페더레이션 인벤토리 만들기\"],\"6XgEPi\":[\"시간\"],\"6YtxFj\":[\"이름\"],\"6Z5ACo\":[\"호스트 구성 키\"],\"6bpC9t\":[\"실패한 노드\"],\"6cylr_\":[\"Stdout\"],\"6f961q\":[\"누락된 경우에만\"],\"6hEnxG\":[\"권한 에스컬레이션 활성화\"],\"6j6_0F\":[\"관련 리소스\"],\"6kpN96\":[\"알림을 삭제하지 못했습니다.\"],\"6lGV3K\":[\"더 적은 수를 표시\"],\"6msU0q\":[\"하나 이상의 작업을 삭제하지 못했습니다.\"],\"6nsio_\":[\"명령 실행\"],\"6oNH0E\":[\"플러그인 구성 가이드.\"],\"6pMgh_\":[\"LDAP 설정 보기\"],\"6rSKy6\":[\"이 페더레이션 인벤토리의 소스 인벤토리를 선택합니다. 작업이 시작되면 호스트가 각 소스 인벤토리의 인스턴스 그룹으로 자동으로 라우팅됩니다.\"],\"6uvnKV\":[\"API 서비스/통합 키\"],\"6vrz8I\":[\"하나 이상의 작업을 취소하지 못했습니다.\"],\"6zGHNM\":[\"남아 있는 호스트\"],\"74MNbw\":[\"Ctrl IQ, Inc.\"],\"764xeZ\":[\"설문 조사를 업데이트하지 못했습니다.\"],\"7Bj3x9\":[\"실패\"],\"7ElOdS\":[\"대시보드 ID\"],\"7IUE9q\":[\"소스 변수\"],\"7JF9w9\":[\"질문 추가\"],\"7L01XJ\":[\"동작\"],\"7O5TcN\":[\"이벤트 요약을 사용할 수 없음\"],\"7PzzBU\":[\"User\"],\"7UZtKb\":[\"이 워크플로우 작업 템플릿을 소유한 조직입니다.\"],\"7VETeB\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"],\"7VpPHA\":[\"확인\"],\"7Xk3M1\":[\"이 작업이 실행할 playbook이 포함된 프로젝트를 선택합니다.\"],\"7ZhNzL\":[\"첫 페이지로 이동\"],\"7b8TOD\":[\"세부 정보\"],\"7bDeKc\":[\"서브스크립션 매니페스트\"],\"7fJwmW\":[\"선택된 항목 목록입니다.\"],\"7hS02I\":[[\"automatedInstancesSinceDateTime\"],\" 이후 \",[\"automatedInstancesCount\"]],\"7icMBj\":[\"사용 가능한 작업 데이터가 없습니다.\"],\"7kb4LU\":[\"승인됨\"],\"7p5kLi\":[\"대시보드\"],\"7q256R\":[\"분기 덮어쓰기 허용\"],\"7qFdk8\":[\"인증 정보 편집\"],\"7sMeHQ\":[\"키\"],\"7sNhEz\":[\"사용자 이름\"],\"7w3QvK\":[\"성공 메시지 본문\"],\"7wgt9A\":[\"플레이북 실행\"],\"7zmvk2\":[\"항목 실패\"],\"81eOdm\":[\"워크플로우 다시 시작\"],\"82O8kJ\":[\"이 프로젝트는 현재 동기화 중이며 동기화 프로세스가 완료될 때까지 클릭할 수 없습니다\"],\"82sWFi\":[\"관리\"],\"84Usx_\":[\"프로젝트를 삭제하지 못했습니다.\"],\"87a_t_\":[\"레이블\"],\"88ip8h\":[\"모두 되돌리기\"],\"8BkLPF\":[\"허용된 URI 목록, 공백으로 구분\"],\"8F8HYs\":[\"사용할 Ansible Automation Platform 서브스크립션을 선택합니다.\"],\"8H3Igx\":[[\"interval\"],\" month\"],\"8Oef5v\":[\"GIT 소스 제어의 URL 예제는 다음과 같습니다.\"],\"8XM8GW\":[\"역할을 적절하게 할당하지 못했습니다.\"],\"8Z236a\":[\"브랜드 로고\"],\"8ZsakT\":[\"암호\"],\"8_wZUD\":[\"팀 역할\"],\"8d57h8\":[\"기타 시스템 설정 보기\"],\"8gCRbU\":[\"기타 프롬프트\"],\"8gaTqG\":[\"유형 세부 정보\"],\"8kDNpI\":[\"조건이 평가되기 전에 부모 노드 결과가 필요합니다.\"],\"8l9yyw\":[\"작업 템플릿\"],\"8lEjQX\":[\"번들 설치\"],\"8lb4Do\":[\"서브스크립션 지우기\"],\"8oiwP_\":[\"입력 구성\"],\"8p_xVT\":[[\"0\",\"plural\",{\"one\":[[\"1\"]],\"other\":[[\"2\"]]}]],\"8u5g0S\":[\"스마트 인벤토리 삭제\"],\"8vETh9\":[\"표시\"],\"8wxHsh\":[\"이 워크플로우 작업 템플릿의 Webhook 키입니다.\"],\"8yd882\":[\"하나 이상의 팀을 연결 해제하지 못했습니다.\"],\"8zGO4o\":[\"필드는 지정된 정규식과 일치합니다.\"],\"8zoIOi\":[[\"0\",\"plural\",{\"one\":[\"This credential type is currently being used by some credentials and cannot be deleted.\"],\"other\":[\"Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?\"]}]],\"8zvzWO\":[\"이 워크플로우 작업 템플릿의 동시 실행을 허용합니다.\"],\"9-wVFp\":[\"페더레이션 인벤토리 세부 정보 보기\"],\"91UHfE\":[\"인벤토리 업데이트\"],\"91lyAf\":[\"동시 작업\"],\"933cZy\":[\"기타 시스템 설정\"],\"954HqS\":[\"호스트가 처음으로 자동화된 시점은 언제였나요?\"],\"95p1BK\":[\"새 사용자 만들기\"],\"98Qtlu\":[\"이 프로젝트를 사용하여 작업이 실행될 때마다 작업을 시작하기 전에 프로젝트의 리비전을 업데이트합니다.\"],\"991Df5\":[\"a new webhook key will be generated on save.\"],\"99qC6z\":[[\"interval\"],\" week\"],\"9Ah95g\":[[\"0\",\"plural\",{\"one\":[\"이 인벤토리는 현재 일부 템플릿에서 사용 중입니다. 정말 삭제하시겠습니까?\"],\"other\":[\"이 인벤토리를 삭제하면 이에 의존하는 일부 템플릿에 영향을 줄 수 있습니다. 그래도 삭제하시겠습니까?\"]}]],\"9BTNYL\":[\"Expected at least one of client_email, project_id or private_key to be present in the file.\"],\"9BpfLa\":[\"레이블 선택\"],\"9DOXq6\":[\"모든 템플릿 보기.\"],\"9DugxF\":[\"서브스크립션 유형\"],\"9HhFQ8\":[\"이 값 이외의 값을 가진 결과와 다른 필터를 만족하는 결과를 반환합니다.\"],\"9L1ngr\":[\"총 작업\"],\"9N-4tQ\":[\"인증 정보 유형\"],\"9NyAH9\":[\"건너뜀\"],\"9PB0sF\":[\"IRC\"],\"9Rsklx\":[\"모든 노드 제거\"],\"9Tmez1\":[\"인스턴스 세부 정보 보기\"],\"9UuGMQ\":[\"삭제 보류 중\"],\"9V-Un3\":[\"실제 스토리지 활성화\"],\"9VMv7k\":[\"건설된 인벤토리\"],\"9Wm-J4\":[\"암호 전환\"],\"9XA1Rs\":[\"현재 프로젝트가 동기화되고 있으며 동기화가 완료된 후 리버전을 사용할 수 있습니다.\"],\"9Y3BQE\":[\"조직 삭제\"],\"9YSB0Z\":[\"이 일정에는 인벤토리가 없습니다.\"],\"9ZnrIx\":[\"서브스크립션 정보 보기 및 편집\"],\"9fRa7M\":[\"삭제할 행 선택\"],\"9hmrEp\":[\"다시 시작\"],\"9iX1S0\":[\"이 작업을 수행하면 다음 인스턴스가 제거되며 이전에 연결되었던 모든 인스턴스에 대해 설치 번들을 다시 실행해야 할 수 있습니다.\"],\"9jfn-S\":[\"확장되지 않음\"],\"9l0RZY\":[\"사용 가능한 노드를 클릭하여 새 링크를 생성합니다. 취소하려면 그래프 외부를 클릭합니다.\"],\"9m7jms\":[\"이 페더레이션 인벤토리에 대해 작업이 시작될 때 호스트가 각각의 인스턴스 그룹으로 라우팅되는 소스 인벤토리입니다.\"],\"9mfJJf\":[\"작업 템플릿\"],\"9nhhVW\":[\"페이지\"],\"9nypdt\":[\"초기 값을 복원합니다.\"],\"9odS2n\":[\"실패한 호스트\"],\"9og-0c\":[\"현재 다른 리소스에서 이 실행 환경이 사용되고 있습니다. 삭제하시겠습니까?\"],\"9rFgm2\":[\"구독 용량\"],\"9rvzNA\":[\"연결 모달\"],\"9td1Wl\":[\"확인\"],\"9uI_rE\":[\"실행 취소\"],\"9u_dDE\":[\"연결할 수 없는 호스트 수\"],\"9uxVdR\":[\"소스 제어 인증 정보\"],\"9wvWk3\":[\"이 구성된 인벤토리 입력은 \\n 두 카테고리 모두에 대한 그룹을 생성하고 \\n 제한(호스트 패턴)을 사용하여 해당 두 그룹의 \\n 교집합에 있는 호스트만 반환합니다.\"],\"A1a8Ku\":[\"관리 작업 시작 오류\"],\"A1taO8\":[\"검색\"],\"A3o0Xd\":[\"이 조직에서 실행할 인스턴스 그룹입니다.\"],\"A6paZd\":[\"페더레이션 인벤토리 추가\"],\"A8lIi2\":[\"버전의 동기화\"],\"A9-PUr\":[\"상태 점검 요청이 제출되었습니다. 잠시 기다렸다가 페이지를 다시 로드하십시오.\"],\"AA2ASV\":[\"실행 환경이 성공적으로 복사되었습니다\"],\"ADVQ46\":[\"로그인\"],\"ARAUFe\":[\"인벤토리 삭제\"],\"AV22aU\":[\"문제가 발생했습니다..\"],\"AWOSPo\":[\"확대\"],\"Ab1y_G\":[\"구축된 재고 소스 동기화 취소\"],\"AgTBbk\":[[\"intervalValue\",\"plural\",{\"one\":[\"week\"],\"other\":[\"weeks\"]}]],\"AgTuXC\":[[\"pluralizedItemName\"],\": \",[\"itemsUnableToDelete\"],\"을 삭제할 수 있는 권한이 없습니다.\"],\"Ai2U7L\":[\"호스트\"],\"Aj3on1\":[\"외부 로깅 활성화\"],\"AoCBvp\":[\"작업 분할\"],\"Apl-Vf\":[\"Red Hat 서브스크립션 매니페스트\"],\"Apv-R1\":[\"업그레이드 또는 갱신할 준비가 되었으면 <0>에 문의하십시오.\"],\"AqdlyH\":[\"노드를 생성하거나 편집할 때 암호를 입력하라는 인증 정보가 있는 작업 템플릿을 선택할 수 없습니다.\"],\"ArtxnQ\":[\"소스 제어 참조\"],\"AsLVdj\":[\"한 줄에 하나의 IRC 채널 또는 사용자 이름을 사용합니다. 채널의\\n 파운드 기호(#)와 사용자의 골뱅이 기호(@)는\\n 필요하지 않습니다.\"],\"AwUsnG\":[\"인스턴스\"],\"AxC8wb\":[\"출력 복사\"],\"AxPAXW\":[\"결과를 찾을 수 없음\"],\"Axi4f8\":[\"Dragging item \",[\"id\"],\". Item with index \",[\"oldIndex\"],\" in now \",[\"newIndex\"],\".\"],\"Azw0EZ\":[\"새 스마트 인벤토리 만들기\"],\"B0HFJ8\":[\"하나 이상의 호스트를 연결 해제하지 못했습니다.\"],\"B0P3qo\":[\"작업 ID:\"],\"B0dbFG\":[\"일정 삭제\"],\"B2Zb_F\":[\"JSON\"],\"B3ZzHO\":[\"마지막 자동화\"],\"B4WcU9\":[[\"0\"],\" 님이 승인함 - \",[\"1\"]],\"B7FU4J\":[\"호스트 시작됨\"],\"B8bpYS\":[\"서브스크립션이 포함된 Red Hat 서브스크립션 매니페스트를 업로드합니다. 서브스크립션 매니페스트를 생성하려면 Red Hat 고객 포털에서 <0>서브스크립션 할당으로 이동하십시오.\"],\"BAmn8K\":[\"리소스 유형 선택\"],\"BERhj_\":[\"성공 메시지\"],\"BGNDgh\":[\"노드 별칭\"],\"BH7upP\":[\"POST\"],\"BIJ2_m\":[\"이 조직 내의 작업에 사용될 실행 환경입니다. 프로젝트, 작업 템플릿 또는 워크플로우 수준에서 실행 환경이 명시적으로 할당되지 않은 경우 대체로 사용됩니다.\"],\"BNDplB\":[\"템플릿이 성공적으로 복사됨\"],\"BWTzAb\":[\"수동\"],\"BaPk6N\":[\"playbook을 찾는 데 사용되는 기본 경로입니다. 이 경로 안에서 발견된 디렉터리가 playbook 디렉터리 드롭다운에 나열됩니다. 기본 경로와 선택한 playbook 디렉터리를 함께 사용하면 playbook을 찾는 데 사용되는 전체 경로가 제공됩니다.\"],\"BfYq0G\":[\"소스 제어 유형\"],\"Bg7M6U\":[\"결과를 찾을 수 없음\"],\"Bl2Djq\":[\"토큰 보기\"],\"Bl2eoO\":[\"암호화됨\"],\"BskWMl\":[\"연결할 수 없음\"],\"BsrdSv\":[\"JSON 또는 YAML 구문을 사용하여 인벤토리 변수를 입력합니다. 라디오 버튼을 사용하여 둘 사이를 전환합니다. 예제 구문은 Ansible Controller 설명서를 참조하십시오.\"],\"Bv8zdm\":[\"재고 입력\"],\"BwJKBw\":[\"/\"],\"Bz7WRU\":[[\"0\",\"plural\",{\"one\":[\"유효한 전화번호를 입력하십시오.\"],\"other\":[\"유효한 전화번호를 입력하십시오.\"]}]],\"BzEFor\":[\"또는\"],\"BzbzJb\":[\"팩트\"],\"BzfzPK\":[\"항목\"],\"C-gr_n\":[\"Azure AD 설정\"],\"C0sUgI\":[\"새 인벤토리 만들기\"],\"C2KEkR\":[\"SSH 암호\"],\"C3Q1LZ\":[\"OIDC 설정 보기\"],\"C4C-qQ\":[\"일정 세부 정보\"],\"C6GAUT\":[\"확장됨\"],\"C7dP40\":[[\"0\"],\" 을/를 거부하지 못했습니다.\"],\"C7s60U\":[\"Webhook 세부 정보\"],\"CAL6E9\":[\"팀\"],\"CDOlBM\":[\"인스턴스 ID\"],\"CE-M2e\":[\"정보\"],\"CGOseh\":[\"일정 세부 정보\"],\"CGZgZY\":[\"연결할 행을 선택\"],\"CG_9l6\":[\"LDAP 1\"],\"CGwKKr\":[[\"0\",\"plural\",{\"one\":[\"그룹을 삭제하시겠습니까?\"],\"other\":[\"그룹을 삭제하시겠습니까?\"]}]],\"CIEoqM\":[\"인스턴스 이름\"],\"CKc7jz\":[\"호스트 세부 정보 모달\"],\"CL7QiF\":[\"답을 입력한 다음 확인란 오른쪽을 클릭하여 답변을 기본값으로 선택합니다.\"],\"CLTHnk\":[\"설문 조사 질문 순서\"],\"CMmwQ-\":[\"알 수 없는 시작일\"],\"CNZ5h9\":[\"데이터 보존 기간\"],\"CS8u6E\":[\"Webhook 활성화\"],\"CSvk3a\":[\"Twilio의 「Messaging\\n Service」에 연결된 번호로 형식은 +18005550199입니다.\"],\"CW11B-\":[\"최소\"],\"CXJHPJ\":[\"(사용자 이름)에 의해 수정됨\"],\"CZDqWd\":[\"현재 프로젝트 버전이 최신 버전이 아닙니다. 최신 버전을 가져오려면 새로 고침하십시오.\"],\"CZg9aH\":[\"호스트 선택\"],\"C_Lu89\":[\"JSON 또는 YAML 구문을 사용하여 입력합니다. 구문 예제는 Ansible Controller 설명서를 참조하십시오.\"],\"C_NnqT\":[\"새 호스트 만들기\"],\"Cc8jO8\":[\"원격 호스트에 액세스하여 명령을 실행할 때 사용할 인증 정보를 선택합니다. Ansible에서 원격 호스트에 로그인해야 하는 사용자 이름 및 SSH 키 또는 암호가 포함된 인증 정보를 선택합니다.\"],\"CcKMRv\":[\"이 작업 템플릿은 현재 다른 리소스에서 사용하고 있습니다. 삭제하시겠습니까?\"],\"CczdmZ\":[\"모든 인증 정보 보기\"],\"CdGRti\":[\"모든 알림 템플릿 보기.\"],\"Ce28nP\":[\"< 0 > 참고: < 1 > 정책 규칙에 의해 관리되는 경우 인스턴스가 이 인스턴스 그룹과 다시 연결될 수 있습니다. \"],\"Cev3QF\":[\"시간 제한 (분)\"],\"ChTa9Z\":[[\"intervalValue\",\"plural\",{\"one\":[\"hour\"],\"other\":[\"hours\"]}]],\"CoPs3y\":[\"이 워크플로에는 노드가 구성되어 있지 않습니다.\"],\"CoTqdo\":[\"\\n Note that you may still see the group in the list after\\n disassociating if the host is also a member of that group’s\\n children. This list shows all groups the host is associated\\n with directly and indirectly.\\n \"],\"Coyxic\":[\"이 버튼을 클릭하여 선택한 인증 정보 및 지정된 입력을 사용하여 시크릿 관리 시스템에 대한 연결을 확인합니다.\"],\"Cs0oSA\":[\"설정 보기\"],\"Csvbqs\":[\"구성된 인벤토리 플러그인 문서를 여기에서 볼 수 있습니다.\"],\"Cx8SDk\":[\"토큰 만료 새로 고침\"],\"D-NlUC\":[\"시스템\"],\"D1JWCq\":[[\"interval\"],\" minutes\"],\"D4euEu\":[\"기타 인증 설정\"],\"D89zck\":[\"일요일\"],\"DBBU2q\":[\"이 필드에 대해 하나 이상의 값을 선택해야 합니다.\"],\"DBC3t5\":[\"이벤트\"],\"DBHTm_\":[\"8월\"],\"DFNPK8\":[\"실행 상태 점검\"],\"DGZ08x\":[\"모두 동기화\"],\"DHf0mx\":[\"새 인스턴스 만들기\"],\"DHrOgD\":[\"프로젝트 업데이트 상태\"],\"DIKUI7\":[\"최소 길이\"],\"DIX823\":[\"이 필드는 숫자여야 하며 \",[\"max\"],\"보다 작은 값이어야 합니다\"],\"DJIazz\":[\"성공적으로 승인됨\"],\"DNLiC8\":[\"설정 복원\"],\"DNqHaO\":[\"이 표는 구성된 인벤토리 플러그인의\\n 몇 가지 유용한 매개 변수를 제공합니다. 전체 매개 변수 목록은 \"],\"DPfwMq\":[\"완료\"],\"DV-Xbw\":[\"기본 언어\"],\"DVIUId\":[\"프롬프트 덮어쓰기\"],\"DZNGtI\":[\"프로젝트 체크아웃 결과\"],\"D_oBkC\":[\"GitHub 팀\"],\"DdlJTq\":[\"정확한 일치(지정되지 않은 경우 기본 조회).\"],\"De2WsK\":[\"이 작업은 선택한 팀에서 이 사용자의 모든 역할을 제거합니다.\"],\"DhSza7\":[\"컨트롤러 노드\"],\"DnkUe2\":[\"Webhook 서비스 선택\"],\"DqnAO4\":[\"첫 번째 자동화\"],\"Du6bPw\":[\"주소\"],\"Dug0C-\":[\"발생 횟수 이후\"],\"DyYigF\":[\"TACACS + 설정\"],\"Dz7fsq\":[\"확대\"],\"E6Z4zF\":[\"잘못된 파일 형식입니다. 유효한 Red Hat 서브스크립션 목록을 업로드하십시오.\"],\"E86aJB\":[\"역할 연결 해제!\"],\"E9wN_Q\":[\"마지막 상태 점검\"],\"EH6-2h\":[\"토폴로지 보기\"],\"EHu0x2\":[\"동기화\"],\"EIBcgD\":[\"프로젝트에서 소싱\"],\"EIkRy0\":[\"대상 채널\"],\"EJQLCT\":[\"워크플로 작업 템플릿을 삭제하지 못했습니다.\"],\"ENDbv1\":[\"모든 호스트 보기\"],\"ENRWp9\":[\"주석 태그\"],\"ENyw54\":[\"관련 그룹\"],\"EP-eCv\":[\"SAML 설정\"],\"EQ-qsg\":[\"워크플로우 작업 템플릿\"],\"ES0WE_\":[\"시간 초과 시\"],\"ETUQuF\":[\"하나 이상의 인벤토리를 삭제하지 못했습니다.\"],\"EWL-h4\":[\"host-description-\",[\"0\"]],\"E_QGRL\":[\"비활성화됨\"],\"E_tJey\":[\"기본 실행 환경\"],\"Eb5CN1\":[[\"0\",\"plural\",{\"one\":[\"This organization is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"EdQY6l\":[\"없음\"],\"Eff_76\":[\"현지 시간대\"],\"Eg4kGP\":[\"기본 답변\"],\"EmSrGB\":[\"이전\"],\"EmfKjn\":[\"문제 해결 설정 보기\"],\"Emna_v\":[\"소스 편집\"],\"EmzUsN\":[\"노드 세부 정보 보기\"],\"EnC3hS\":[\"사용자 정의 Pod 사양\"],\"EpH7Cd\":[\"인증 정보 삭제\"],\"Eq6_y5\":[\"this Tower documentation page\"],\"Eqp9wv\":[\"에서 JSON 예제 보기\"],\"EwxKbE\":[\"삭제됨\"],\"EzwCw7\":[\"질문 편집\"],\"F-0xxR\":[\"이 템플릿에서 리소스가 누락되어 있습니다.\"],\"F-LGli\":[[\"itemsUnableToDisassociate\"],\"과 같이 연결을 해제할 수 있는 권한이 없습니다.\"],\"F-_-es\":[\"인스턴스 선택\"],\"F0xJYs\":[\"크기 조정을 업데이트하지 못했습니다.\"],\"F2l57P\":[\"새 인스턴스가 온라인 상태가 될 때 이 그룹에 자동으로\\n 할당되는 모든 인스턴스의 최소 비율입니다.\"],\"FCnKmF\":[\"사용자 토큰 만들기\"],\"FD8Y9V\":[\"노드 아이콘을 클릭하여 세부 정보를 표시합니다.\"],\"FEr96N\":[\"테마\"],\"FFv0Vh\":[\"자동화\"],\"FG2mko\":[\"목록에서 항목 선택\"],\"FGnH0p\":[\"이 워크플로우의 모든 후속 노드가 취소됩니다.\"],\"FMpB-A\":[\"< 0 > 참고: 인스턴스가 < 1 > 정책 규칙에 의해 관리되는 경우 수동으로 연결된 인스턴스가 인스턴스 그룹에서 자동으로 연결 해제될 수 있습니다. \"],\"FO7Rwo\":[\"동료를 제거하시겠습니까?\"],\"FQto51\":[\"모든 줄 확장\"],\"FTuS3P\":[\"이 필드는 비워 둘 수 없습니다.\"],\"FV5MUV\":[\"사용자가 구성된 그룹의 정확성에 대한\\n 피드백이 필요한 경우, 플러그인 구성에서\\n strict: true를 사용하는 것이 좋습니다.\"],\"FXmp8Q\":[\"역할을 연결하지 못했습니다.\"],\"FYJRCY\":[\"하나 이상의 프로젝트를 삭제하지 못했습니다.\"],\"F_Nk65\":[\"출력 다운로드\"],\"F_c3Jb\":[\"사용자 정의 Kubernetes 또는 OpenShift Pod 사양\"],\"Failed\":[\"실패\"],\"Fanpmj\":[\"프롬프트 변수\"],\"FblMFO\":[\"메트릭 선택\"],\"FclH3w\":[\"성공적으로 저장했습니다!\"],\"FfGhiE\":[\"워크플로우를 저장하는 동안 오류가 발생했습니다!\"],\"FhTYgi\":[\"하나 이상의 작업 템플릿을 삭제하지 못했습니다.\"],\"FhhvWu\":[\"이 워크플로우의 모든 후속 노드가 취소됩니다.\"],\"FiyMaa\":[\".json 파일 선택\"],\"FjVFQ-\":[\"모듈 선택\"],\"FjkaiT\":[\"축소\"],\"FkQvI0\":[\"템플릿 편집\"],\"FlvpdU\":[\"If enabled, show the changes made\\n by Ansible tasks, where supported. This is equivalent to Ansible’s\\n --diff mode.\"],\"FnSb-y\":[\"작업 취소\"],\"FnZzou\":[\"인스턴스 상태\"],\"FncCci\":[\"RADIUS\"],\"Fo2bwm\":[\"작업자\"],\"Fo6qAq\":[\"Subversion 소스 제어의 URL 예제는 다음과 같습니다.\"],\"Fp0Rk4\":[\"'dev' 또는 'test'와 같이 이 인벤토리를 설명하는\\n 선택적 레이블입니다. 레이블을 사용하여 인벤토리와 완료된 작업을\\n 그룹화하고 필터링할 수 있습니다.\"],\"FqW8E0\":[\"사용된 용량\"],\"FsGJXJ\":[\"정리\"],\"Fx2-x_\":[\"사용자 역할 추가\"],\"G-jHgL\":[\"소스 경로 설정\"],\"G2KpGE\":[\"프로젝트 편집\"],\"G3myU-\":[\"화요일\"],\"G768_0\":[\"거부됨\"],\"G8jcl6\":[\"알림 템플릿\"],\"G9MOps\":[\"인벤토리 동기화 시 사용할 분기. 비어 있는 경우 프로젝트 기본값이 사용됩니다. 프로젝트 allow_override 필드가 true로 설정된 경우에만 허용됩니다.\"],\"GDvlUT\":[\"역할\"],\"GGWsTU\":[\"취소됨\"],\"GGuAXg\":[\"SAML 설정 보기\"],\"GHDQ7i\":[\"하나 이상의 조직을 삭제하지 못했습니다.\"],\"GJKwN0\":[\"일정\"],\"GLZDtF\":[\"시스템 경고\"],\"GLwo_j\":[\"0 (경고)\"],\"GMaU6_\":[\"시작 시 작업 유형을 입력하라는 메시지를 표시합니다.\"],\"GO6s6F\":[\"작업 설정\"],\"GRwtth\":[\"인스턴스에서 상태 점검을 실행합니다.\"],\"GSYBQc\":[\"API 서비스/통합 키\"],\"GTOcxw\":[\"사용자 편집\"],\"GU9vaV\":[\"연결할 수 없는 호스트\"],\"GXiLKo\":[\"텍스트 영역\"],\"GZIG7_\":[\"인벤토리가 성공적으로 복사됨\"],\"G_Dwo_\":[\"Choose an answer type or format you want as the prompt for the user.\\n Refer to the Ansible Controller Documentation for more additional\\n information about each option.\"],\"GaJLE6\":[\"초기자\"],\"Gd-B71\":[\"인증 정보 유형을 찾을 수 없습니다.\"],\"Ge5ecx\":[\"최대 호스트\"],\"GeIrWJ\":[[\"brandName\"],\" 로고\"],\"Gf3vm8\":[\"페이지당\"],\"GiXRTS\":[\"하나 이상의 사용자 토큰을 삭제하지 못했습니다.\"],\"Gix1h_\":[\"모든 작업 보기\"],\"GkbHM9\":[\"모든 프로젝트 보기.\"],\"Gn7TK5\":[\"툴 전환\"],\"GpNoVG\":[\"이 목록을 채울 일정을 추가하십시오.\"],\"GpWp6E\":[\"시스템 수준 기능 및 함수 정의\"],\"GtycJ_\":[\"작업\"],\"H0z3JJ\":[\"이 인수는 지정된 모듈과 함께 사용됩니다. 다음을 클릭하여 \",[\"moduleName\"],\"에 대한 정보를 찾을 수 있습니다 \"],\"H1M6a6\":[\"모든 인스턴스 보기.\"],\"H3kCln\":[\"호스트 이름\"],\"H6jbKn\":[\"사용자 인터페이스 설정\"],\"H7OUPr\":[\"일\"],\"H7e4dl\":[\"YAML 또는 JSON 중 하나를 사용하여\\n 키/값 쌍을 제공합니다.\"],\"H86f9p\":[\"접기\"],\"H9MIed\":[\"실행 노드\"],\"HAi1aX\":[\"Webhook 키 업데이트\"],\"HAzhV7\":[\"인증 정보\"],\"HDULRt\":[\"독특한 호스트\"],\"HGOtRu\":[\"알림 테스트에 실패했습니다.\"],\"HIfMSF\":[\"다중 선택 옵션\"],\"HLAK2g\":[\"This action will cancel the following jobs:\"],\"HODq3s\":[\"하나 이상의 워크플로우 승인을 거부하지 못했습니다.\"],\"HQ7e8y\":[\"대소문자를 구분하지 않는 동일한 버전입니다.\"],\"HQ7oEt\":[\"팀으로 돌아가기\"],\"HUx6pW\":[\"인젝터 구성\"],\"HajiZl\":[\"월\"],\"HbaQks\":[\"이 유형의 알림에 대한 수신자 목록을 만들려면 한 줄에 하나의 이메일 주소를 사용합니다.\"],\"HbnjOn\":[[\"interval\"],\" weeks\"],\"HcznyH\":[\"일부 또는 모든 인벤토리 소스를 동기화하지 못했습니다.\"],\"HdE1If\":[\"채널\"],\"HdErwL\":[\"승인할 행 선택\"],\"Hf0QDK\":[\"프로젝트가 성공적으로 복사됨\"],\"Hhnh8d\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 일\"],\"other\":[\"#\",\" 일\"]}]],\"HiTf1W\":[\"되돌리기 취소\"],\"HjxnnB\":[\"모듈 선택\"],\"HlhZ5D\":[\"TLS 사용\"],\"HoHveO\":[\"이 필터와 다른 필터를 모두 만족하는 결과를 반환합니다. 아무것도 선택하지 않으면 이것이 기본 세트 유형입니다.\"],\"HpK_8d\":[\"다시 로드\"],\"Ht1JWm\":[\"알림 색상\"],\"HwpTx4\":[\"playbook이 실행될 때 ansible이 생성하는 출력 수준을 제어합니다.\"],\"I0LRRn\":[\"번들 다운로드\"],\"I7Epp-\":[\"옵션 세부 정보\"],\"I9NouQ\":[\"서브스크립션을 찾을 수 없음\"],\"ICi4pv\":[\"자동화\"],\"ICt7Id\":[\"노드 유형\"],\"IEKPuq\":[\"다음 스크롤\"],\"IGQ11b\":[\"webhook 서비스와 공유되는 시크릿입니다. 서비스는 이를 사용하여 요청에 서명하므로 사용자의 리포지토리만 프로젝트 동기화를 트리거할 수 있습니다. 구성으로 관리하려면 자신의 시크릿을 입력하거나, 저장 시 하나가 생성되도록 필드를 비워 두십시오.\"],\"IJAVcb\":[\"애플리케이션으로 돌아가기\"],\"IKg_un\":[\"대상 채널 또는 사용자\"],\"IMJYui\":[\"SMS 메시지를 라우팅할 위치를 지정하려면 한 줄에 하나의\\n 전화번호를 사용합니다. 전화번호는 +11231231234 형식이어야 합니다. 자세한 내용은 Twilio 설명서를 참조하십시오.\"],\"IN6gbp\":[\"클릭하여 설문조사 질문의 순서를 다시 정렬합니다.\"],\"IPusY8\":[\"업데이트를 수행하기 전에 로컬 수정 사항을 모두 제거합니다.\"],\"ISuwrJ\":[\"실행 환경 편집\"],\"IV0EjT\":[\"테스트 알림\"],\"IVvM2B\":[\"활성화된 옵션\"],\"IWoF_f\":[\"설문 조사보기\"],\"IZfe0p\":[\"소스 제어 분기\"],\"Igz8MU\":[\"지난 2주\"],\"IiR1sT\":[\"노드 유형\"],\"IjDwKK\":[\"로그인 유형\"],\"Ikhk0q\":[\"이 워크플로우 작업 템플릿의 Webhook 서비스입니다.\"],\"Iqm2E5\":[\"이 목록을 채우려면 \",[\"pluralizedItemName\"],\" 을 추가하십시오.\"],\"IrC12v\":[\"애플리케이션\"],\"IrI9pg\":[\"종료일\"],\"IsJ8i6\":[\"워크플로의 브랜치를 선택합니다. 이 브랜치는 브랜치 입력을 요청하는 모든 작업 템플릿 노드에 적용됩니다.\"],\"IspLSK\":[\"관리 작업을 찾을 수 없습니다.\"],\"J0zi6q\":[\"태그 건너뛰기\"],\"J2HgCR\":[\"Red Hat, Inc.\"],\"J2d1y8\":[\"성공한 작업으로 필터링\"],\"J4y7Uk\":[\"워크플로우가 취소되었습니다 \"],\"J8VgfD\":[\"지정된 필드 또는 관련 개체가 null인지 여부를 확인합니다. 부울 값이 필요합니다.\"],\"JEGlfK\":[\"시작됨\"],\"JFnJqF\":[\"경과됨\"],\"JFphCp\":[\"3 (디버그)\"],\"JGvwnU\":[\"마지막으로 사용됨\"],\"JIX50w\":[\"인스턴스 그룹 폴백 방지: 활성화하면 작업 템플릿이 실행할 기본 설정 인스턴스 그룹 목록에 인벤토리 또는 조직 인스턴스 그룹을 추가하지 못하게 합니다.\"],\"JJwEMx\":[\"호스트 삭제됨\"],\"JKZTiL\":[\"이는 표준 실행 명령을 실행하기 위해 지원되는 상세 수준입니다.\"],\"JL3si7\":[\"업데이트 중\"],\"JLjfEs\":[\"하나 이상의 일정을 삭제하지 못했습니다.\"],\"JOmgRg\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 개월\"],\"other\":[\"#\",\" 개월\"]}]],\"JRa4kV\":[\"소스 제어 리포지토리에서 푸시가 발생할 때 프로젝트를 동기화하여 모든 작업 시작 시 폴링하거나 업데이트하지 않아도 로컬 복사본이 항상 최신 상태로 유지되도록 합니다.\"],\"JTHoCu\":[\"변경 사항 토글\"],\"JUwjsw\":[\"Select an activity type\"],\"JXgd33\":[\"대시보드로 돌아가기\"],\"J_2nGO\":[\"The execution environment that will be used for jobs\\n inside of this organization. This will be used a fallback when\\n an execution environment has not been explicitly assigned at the\\n project, job template or workflow level.\"],\"J_DUZt\":[\"인스턴스 그룹\"],\"Ja4VHl\":[[\"0\"],\" 기타 정보\"],\"JgP090\":[\"하위 모듈 추적\"],\"JjcTk5\":[\"소셜 로그인\"],\"JjfsZM\":[\"워크플로우 승인 삭제\"],\"JppQoT\":[\"마지막 재계산일:\"],\"JsY1p5\":[\"거부됨\"],\"Jvv6rS\":[\"다중 선택 옵션\"],\"JwqOfG\":[\"평가 대상\"],\"Jy9qCv\":[\"로그인 리디렉션 편집 취소\"],\"K5AykR\":[\"팀 삭제\"],\"K93j4j\":[\"레이블 이름\"],\"KC2nS5\":[\"삭제된 리소스\"],\"KDcLJ6\":[\"YAML:\"],\"KEY0qH\":[\"통과\"],\"KM6m8p\":[\"Team\"],\"KNOsJ0\":[\"이 작업 템플릿을 설명하는 선택적 레이블입니다(예: 'dev' 또는 'test'). 레이블을 사용하여 작업 템플릿과 완료된 작업을 그룹화하고 필터링할 수 있습니다.\"],\"KQ9EQm\":[\"구성된 인벤토리 플러그인 사용 방법\"],\"KR9Aiy\":[\"This inventory is currently being used by some templates. Are you sure you want to delete it?\"],\"KRf0wm\":[\"인증 정보 유형\"],\"KTvwHj\":[\"인증 정보 입력 소스\"],\"KVbzjm\":[\"시각화 도구\"],\"KXFYp9\":[\"서브스크립션 받기\"],\"KXnokb\":[\"전역적으로 사용 가능한 실행 환경을 특정 조직에 다시 할당할 수 없습니다.\"],\"KZp4lW\":[\"Lookup select\"],\"K_MYeX\":[\"사용자 세부 정보보기\"],\"KeRkFA\":[\"서브스크립션 선택 지우기\"],\"KeqCdz\":[\"제어 노드의 피어\"],\"Ki_j_-\":[\"저장 시 새 webhook 키를 생성하려면 비워 둡니다\"],\"KjBkMe\":[\"현재 이 컨테이너 그룹에 다른 리소스가 있습니다. 삭제하시겠습니까?\"],\"KjVvNP\":[\"패널 ID\"],\"KkMfgW\":[\"작업 템플릿\"],\"KkzJWF\":[\"첫 번째 자동화\"],\"KlQd8_\":[\"토큰 액세스 범위\"],\"KnN1Tu\":[\"만료\"],\"KoCnPE\":[\"작업 취소\"],\"KopV8H\":[\"root 그룹만 표시\"],\"KxIA0h\":[\"호스트 전환\"],\"Kz9DSl\":[\"기존 호스트 추가\"],\"KzQFvE\":[\"조직 편집\"],\"L1Ob4t\":[\"세부 정보 탭\"],\"L3ooU6\":[\"인증 정보\"],\"L7Nz3F\":[\"누락된 리소스\"],\"L8fEEm\":[\"그룹\"],\"L973Qq\":[\"서브스크립션 요청\"],\"LCl8Ck\":[\"날짜 검색 입력\"],\"LGl_pR\":[\"작업 설정 보기\"],\"LGryaQ\":[\"새 인증 정보 만들기\"],\"LQ29yc\":[\"재고 소스 동기화 시작\"],\"LQRys9\":[\"하위 모듈은 master 브랜치(또는 .gitmodules에 지정된 다른 브랜치)의 최신 커밋을 추적합니다. 아니요인 경우 하위 모듈은 기본 프로젝트에서 지정한 리비전으로 유지됩니다. 이는 git submodule update에 --remote 플래그를 지정하는 것과 동일합니다.\"],\"LQTgjH\":[\"프로젝트를 찾을 수 없음\"],\"LRePxk\":[\"새 인스턴스가 온라인 상태가 되면 이 그룹에 자동으로 할당되는 최소 인스턴스 수입니다.\"],\"LSUePQ\":[\"시작 | \",[\"0\"]],\"LULLsO\":[\"모든 조직 보기.\"],\"LV5a9V\":[\"피어\"],\"LVecP9\":[\"사용자 역할\"],\"LYAQ1X\":[\"동시 작업 활성화\"],\"LZr1lR\":[\"인스턴스 그룹을 찾을 수 없습니다.\"],\"Lc0RHh\":[\"일정 전환\"],\"LgD0Cy\":[\"애플리케이션 이름\"],\"LhMjLm\":[\"시간\"],\"Ll7Jei\":[\"LDAP3\"],\"LnYbGj\":[\"설문조사 편집\"],\"Lnnjmk\":[\"< 0 > < 1/> 새로운 \",[\"brandName\"],\" 사용자 인터페이스의 기술 미리보기는 < 2 > 여기 에서 찾을 수 있습니다. \"],\"Lqygiq\":[\"프로비저닝 콜백\"],\"LtBtED\":[\"알림 전환 성공\"],\"LuXP9q\":[\"액세스\"],\"LwHwt1\":[[\"brandName\"],\" 서브스크립션\"],\"Lwovp8\":[\"활성화하면 이 작업 템플릿의 동시 실행이 허용됩니다.\"],\"M0okDw\":[\"데이터 수집, 로고 및 로그인에 대한 기본 설정\"],\"M73whl\":[\"컨텍스트\"],\"MA-mp9\":[\"Webhook 참조 필터\"],\"MA7cMf\":[\"구성된 재고 매개 변수 테이블\"],\"MAI_nw\":[\"위의 필터를 사용하여 다른 검색을 시도하십시오.\"],\"MAV-SQ\":[\"인증 정보를 찾을 수 없습니다.\"],\"MApRef\":[\"로그인 리디렉션 재정의 URL을 편집하시겠습니까? 편집하는 경우 로컬 인증이 비활성화되어 있는 동안 사용자가 시스템에 로그인하는 데 영향을 미칠 수 있습니다.\"],\"MD0-Al\":[\"세션이 만료될 예정입니다.\"],\"MDQLec\":[\"Ansible이 인벤토리 소스 업데이트 작업에 대해 생성할 출력 수준을 제어합니다.\"],\"MGpavd\":[\"키 유형 헤드\"],\"MHM-bv\":[\"잘못된 링크 대상입니다. 자식 또는 상위 노드에 연결할 수 없습니다. 그래프 주기는 지원되지 않습니다.\"],\"MHbbol\":[\" 작업 분할\"],\"MKEPCY\":[\"팔로우\"],\"MP1v-1\":[\"범례\"],\"MP8dU9\":[\"컨테이너 레지스트리, 이미지 이름, 버전 태그를 포함한 전체 이미지 위치입니다.\"],\"MQPvAa\":[\"시작 시 레이블을 입력하라는 메시지를 표시합니다.\"],\"MQoyj6\":[\"워크플로우 작업 템플릿\"],\"MTLPCv\":[\"부모 노드가 실패 상태가 되면 실행합니다.\"],\"MVw5um\":[\"2 (자세한 내용)\"],\"MZU5bt\":[\"하나 이상의 그룹을 삭제하지 못했습니다.\"],\"M_gXds\":[\"Note: This instance may be re-associated with this instance group if it is managed by \"],\"MdhgLT\":[\"IRC 서버 암호\"],\"MfCEiB\":[\"Galaxy 인증 정보\"],\"MfQHgE\":[\"보관 일수\"],\"Mfk6hJ\":[\"하나 이상의 템플릿을 삭제하지 못했습니다.\"],\"Mhn5m4\":[\"레지스트리 인증 정보\"],\"Mn45Gz\":[\"인스턴스 그룹으로 돌아가기\"],\"MnbH31\":[\"페이지\"],\"MofjBu\":[\"이 프로젝트를 사용하는 작업에 사용될 실행 환경입니다. 작업 템플릿 또는 워크플로 수준에서 실행 환경이 명시적으로 할당되지 않은 경우 폴백으로 사용됩니다.\"],\"MpLngK\":[\"이 프로젝트의 webhook 끝점입니다. 푸시가 프로젝트 동기화를 트리거하도록 리포지토리의 webhook 구성에 추가합니다.\"],\"MpZRQy\":[\"Git\"],\"MuhG5I\":[[\"0\",\"plural\",{\"one\":[\"This approval cannot be deleted due to insufficient permissions or a pending job status\"],\"other\":[\"These approvals cannot be deleted due to insufficient permissions or a pending job status\"]}]],\"MwCc2O\":[\"이 워크플로우 작업 템플릿의 Webhook 자격 증명입니다.\"],\"Mwf3Mw\":[\"검색 필터를 사용하여 이 인벤토리의 호스트를\\n 채웁니다. 예: ansible_facts__ansible_distribution:\\\"RedHat\\\".\\n 추가 구문 및 예제는 설명서를\\n 참조하십시오. 추가 구문 및 예제는 Ansible Controller 설명서를\\n 참조하십시오.\"],\"MzcRa_\":[\"사용자 및 자동화 분석\"],\"Mzqo60\":[\"아티팩트와 비교할 값입니다. 가능한 경우 JSON으로 해석되며(예: true, 3), 그렇지 않으면 일반 문자열로 해석됩니다.\"],\"N1U4ZG\":[\"구독 규정 준수\"],\"N36GRB\":[\"이 필드는 숫자여야 하며 \",[\"min\"],\"보다 큰 값이어야 합니다\"],\"N40H-G\":[\"모두\"],\"N5vmCy\":[\"건설 인벤토리\"],\"N6GBcC\":[\"삭제 확인\"],\"N7wOty\":[\"이 작업에서 실행할 playbook을 선택합니다.\"],\"NAKA53\":[\"호스트 실패\"],\"NBONaK\":[\"팩트 수집\"],\"NCVKhy\":[\"최근 작업\"],\"NDQvUO\":[\"시작 시 태그를 입력하라는 메시지를 표시합니다.\"],\"NIuIk1\":[\"무제한\"],\"NLKsgx\":[[\"pluralizedItemName\"],\" 목록\"],\"NO1ZxL\":[\"애플리케이션 이름\"],\"NPfgIB\":[\"초\"],\"NQHZnb\":[\"정수\"],\"NRn4V6\":[[\"interval\"],\" months\"],\"NUNUrW\":[\"주석 태그(선택 사항)\"],\"NW-xDQ\":[\"이렇게 하면 이 페이지의 모든 구성 값이\\n 기본 출고 값으로 되돌아갑니다. 계속하시겠습니까?\"],\"NX18CF\":[\"해당일 또는 이후\"],\"NYxilo\":[\"최대 동시 작업 수\"],\"Na9fIV\":[\"항목을 찾을 수 없습니다.\"],\"NcVaYu\":[\"완료 시간\"],\"NeA1eI\":[\"Pan right\"],\"Never\":[\"없음\"],\"NgD4On\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"이 작업은 다음 작업을 취소합니다:\"],\"other\":[\"이 작업은 다음 작업을 취소합니다:\"]}]],\"NjnDuY\":[\"Dragging started for item id: \",[\"newId\"],\".\"],\"NjqMGF\":[\"리소스 유형\"],\"NnH3pK\":[\"테스트\"],\"No Jobs\":[\"작업 없음\"],\"NpJHAp\":[\"노드를 생성하거나 편집할 때 인벤토리 또는 프로젝트가 누락된 작업 템플릿을 선택할 수 없습니다. 다른 템플릿을 선택하거나 누락된 필드를 수정하여 계속 진행합니다.\"],\"NqIlWb\":[\"마지막 실행\"],\"NrGRF4\":[\"서브스크립션 선택 모달\"],\"NsXTPu\":[\"ansible 팩트를 사용하여 스마트 인벤토리를 생성하려면 스마트 인벤토리 화면으로 이동합니다.\"],\"NtD3hJ\":[\"관련 키\"],\"Nu4DdT\":[\"동기화\"],\"Nu4oKW\":[\"설명\"],\"Nu7VHX\":[\"선택한 리소스에 적용할 역할을 선택합니다. 선택한 모든 역할이 선택한 모든 리소스에 적용됩니다.\"],\"O-OYOe\":[\"팀 편집\"],\"O06Rp6\":[\"사용자 인터페이스\"],\"O1Aswy\":[\"만료되지 않음\"],\"O28qFz\":[\"작업 \",[\"0\"],\" 보기 \"],\"O2EuOK\":[\"SAML \",[\"samlIDP\"],\"으로 로그인\"],\"O2UpM1\":[\"검색\"],\"O3oNi5\":[\"이메일\"],\"O4ilec\":[\"대소문자를 구분하지 않는 정규식 버전입니다.\"],\"O5pAaX\":[\"차트를 표시할 인스턴스 및 메트릭을 선택합니다.\"],\"O78b13\":[\"이 토큰이 속한 애플리케이션이나 이 필드를 비워 개인 액세스 토큰을 만듭니다.\"],\"O8_96D\":[\"리스너 포트\"],\"O9VQlh\":[\"빈도 선택\"],\"OA8xiA\":[\"Panhiera\"],\"OA99Nq\":[\"호스트가 마지막으로 자동화한 시기는 언제인가요?\"],\"OC4Tzv\":[\"여기\"],\"OGoqLy\":[\"# sources with sync failures.\"],\"OHGMM6\":[\"시작일/시간\"],\"OIv5hN\":[\"서브스크립션 세부 정보로 리디렉션\"],\"OJ9bHy\":[\"하나 이상의 그룹을 연결 해제하지 못했습니다.\"],\"OOq_rD\":[\"플레이북 실행\"],\"OPTWH4\":[\"HTTPS 인증서 확인 활성화\"],\"ORxrw7\":[\"남은 일수\"],\"OSH8xi\":[\"홉\"],\"OcRJRt\":[\"작업 취소 확인\"],\"Oe_VOY\":[\"하나 이상의 인스턴스를 제거하지 못했습니다.\"],\"OgB1k4\":[\"인수\"],\"OiCz65\":[\"Grafana URL\"],\"Oiqdmc\":[\"GitHub 조직으로 로그인\"],\"Oj2Ix6\":[\"작업이 취소되기 전에 실행되는 시간(초)입니다. 작업 시간 초과가 없도록 기본값은 0입니다.\"],\"OjwX8k\":[\"토큰 정보\"],\"OlpaBt\":[\"동시 작업: 활성화하면 이 작업 템플릿의 동시 실행이 허용됩니다.\"],\"OmbooC\":[\"호스트 시작됨\"],\"OogRLI\":[\"페더레이션 인벤토리를 찾을 수 없습니다.\"],\"OqE3G-\":[\"id 필드에서 정확한 검색\"],\"Osn70z\":[\"디버그\"],\"OvBnOM\":[\"설정으로 돌아가기\"],\"OyGPiW\":[\"서브스크립션 설정\"],\"OzssJK\":[\"명령 실행\"],\"P3spiP\":[\"템플릿으로 돌아가기\"],\"P7d85D\":[\"팀 액세스 제거\"],\"P8fBlG\":[\"인증\"],\"PByO0X\":[\"투표\"],\"PCEmEr\":[\"사용자 토큰\"],\"PJ1B0S\":[[\"0\",\"plural\",{\"one\":[\"This project is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"PJf54Q\":[\"출처로 돌아가기\"],\"PKTjJ3\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"weekday\"],\" of \",[\"month\"]],\"4\":[\"The fourth \",[\"weekday\"],\" of \",[\"month\"]],\"5\":[\"The fifth \",[\"weekday\"],\" of \",[\"month\"]],\"one\":[\"The first \",[\"weekday\"],\" of \",[\"month\"]],\"two\":[\"The second \",[\"weekday\"],\" of \",[\"month\"]]}]],\"PLzYyl\":[\"빈도 예외 세부 정보\"],\"PMk2Wg\":[\"프로비저닝 해제 실패\"],\"POKy-m\":[\"실행 환경 복사\"],\"PPsHsC\":[\"모두 기본값으로 되돌립니다.\"],\"PQPOpT\":[\"인벤토리 파일\"],\"PRuZiQ\":[\"버전 새로 고침\"],\"PUnovD\":[\"Amazon EC2\"],\"PVCOQE\":[\"피어가 제거되었습니다. 변경 사항을 적용하려면 \",[\"0\"],\" 에 대한 설치 번들을 다시 실행하십시오.\"],\"PWwwY2\":[\"연결 해제\"],\"PYPqaM\":[\"패널 ID (선택 사항)\"],\"PZBWpL\":[\"Switch to light mode\"],\"P_s0vy\":[\"이 webhook 서비스의 인증 정보 유형을 조회할 수 없으므로 webhook 인증 정보 필드를 사용할 수 없습니다.\"],\"PaTL2O\":[\"수신자 목록\"],\"PhufXn\":[\"작업 분할 부모\"],\"Pi5vnX\":[\"구성된 인벤토리 소스를 동기화하지 못했습니다.\"],\"PiK6Ld\":[\"토요일\"],\"PiRb8z\":[\"최신 동기화\"],\"PjkoCm\":[\"아래 노드를 삭제하시겠습니까.\"],\"PkVlOm\":[\"HTTP 헤더를 JSON 형식으로 지정합니다. 예제 구문은\\n Ansible Controller 설명서를 참조하십시오.\"],\"Po1btV\":[\"전역 탐색\"],\"Po7y5X\":[\"실행 환경을 복사하지 못했습니다.\"],\"PvgcEq\":[\"Draggable list to reorder and remove selected items.\"],\"PwAMWD\":[\"모든 작업 이벤트 축소\"],\"PyV1wC\":[\"인스턴스 그룹 폴백 방지\"],\"Q3P_4s\":[\"작업\"],\"Q4hWRC\":[\"워크플로우 작업 (\",[\"total\"],\")\"],\"Q5ZW8j\":[\"서브스크립션 테이블\"],\"QF_MpS\":[\"\\n 이 그룹에 직접 있는 호스트만 연결을\\n 해제할 수 있습니다. 하위 그룹의 호스트는 해당 호스트가 속한\\n 하위 그룹 수준에서 직접 연결을 해제해야 합니다.\\n \"],\"QFdBqu\":[\"가장 중요\"],\"QGbLBK\":[\"작업 ID\"],\"QHF6CU\":[\"플레이\"],\"QIOH6p\":[\"초기자 (사용자 이름)\"],\"QIpNLR\":[\"인벤토리 동기화 실패 없음\"],\"QIq3_3\":[\"참고: 선택한 순서에 따라 실행 우선 순위가 설정됩니다. 드래그를 활성화하려면 둘 이상의 항목을 선택합니다.\"],\"QJbMvX\":[\"실행 시 암호가 필요한 인증 정보는 허용되지 않습니다. 계속하려면 다음 인증 정보를 제거하거나 동일한 유형의 인증 정보로 교체하십시오: \",[\"0\"]],\"QJowYS\":[\"삭제 확인\"],\"QKUQw1\":[\"새 호스트 만들기\"],\"QKbQTN\":[\"활동 스트림 유형 선택기\"],\"QOF7Jg\":[\"승인하지 못했습니다 \",[\"0\"],\".\"],\"QPRWww\":[\"실행 유형\"],\"QR908H\":[\"설정 이름\"],\"QT1rDU\":[\"GitHub Enterprise\"],\"QTwM6Y\":[\"이 작업이 실행할 playbook이 포함된 프로젝트입니다.\"],\"QYKS3D\":[\"최근 작업\"],\"QamIPZ\":[\"시작하려면 시작 버튼을 클릭하십시오.\"],\"Qay_5h\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"Qd2E32\":[\"주어진 호스트 변수 딕트에서 활성화된 상태를 검색합니다. 활성화된 변수는 점 표기법 (예: 'foo.bar') 을 사용하여 지정할 수 있습니다.\"],\"Qf36YE\":[\"상세 정보\"],\"QgnNyZ\":[\"동기화 오류\"],\"Qhb8lT\":[\"새 애플리케이션 만들기\"],\"QmvYrA\":[\"워크플로우 작업 템플릿에 대한 선택적 설명입니다.\"],\"QnJn75\":[\"마지막 실행\"],\"Qv59HG\":[\"인증 정보 유형 선택\"],\"Qv91_c\":[\"LDAP 2\"],\"QyjCeq\":[\"용량\"],\"R-uZ8Y\":[\"SAML으로 로그인\"],\"R633QG\":[\"워크플로우 승인으로 돌아가기\"],\"R6Gueb\":[\"알림 전환 변경\"],\"R7s3iG\":[\"다음으로 돌아가기\"],\"R9Khdg\":[\"자동\"],\"R9sZsA\":[\"모든 그룹 및 호스트 삭제\"],\"RBDHUE\":[\"시작 시 실행 환경을 입력하라는 메시지를 표시합니다.\"],\"RI8cIw\":[\"이 조직에서 관리할 수 있는 최대 호스트 수입니다.\\n 값은 기본적으로 0이며 이는 제한이 없음을 의미합니다.\\n 자세한 내용은 Ansible 설명서를 참조하십시오.\"],\"RIcSTA\":[\"만료일\"],\"RIeAlp\":[\"작업이 이 인벤토리를 사용하여 실행될 때마다 작업 작업을 실행하기 전에 선택한 소스에서 인벤토리를 새로 고칩니다.\"],\"RK1gDV\":[\"Azure AD로 로그인\"],\"RMdd1C\":[\"없음 (한 번 실행)\"],\"RO9G1f\":[\"이 필드는 0보다 커야 합니다\"],\"RPnV2o\":[\"검색 필터에서 결과를 생성하지 않았습니다.\"],\"RThfvh\":[\"관련 팀을 분리하시겠습니까?\"],\"R_mzhp\":[\"사용자 토큰에 실패했습니다.\"],\"RbIaa9\":[\"토큰을 찾을 수 없습니다.\"],\"RdLvW9\":[\"작업 다시 시작\"],\"Rguqao\":[\"삭제할 행 선택\"],\"RhOukN\":[[\"interval\"],\" hour\"],\"RiQMUh\":[\"실행 중\"],\"RjIKOw\":[\"호스트에서 인벤토리를 변경할 수 없음\"],\"RjkhdY\":[\"필드는 값으로 시작합니다.\"],\"RkXlPZ\":[\"GitHub\"],\"RlsPz7\":[\"이 링크를 삭제하시겠습니까?\"],\"Rm1iI_\":[\"시작 시 변수를 입력하라는 메시지를 표시합니다.\"],\"Roaswv\":[\"User Guide\"],\"RpKSl3\":[\"인증 정보가 성공적으로 복사됨\"],\"RsZ4BA\":[\"마지막 스크롤\"],\"RtKKbA\":[\"마지막\"],\"Ru59oZ\":[\"이 템플릿에 대한 webhook을 활성화합니다.\"],\"RuEWFx\":[\"날짜에\"],\"RuiOO0\":[\"하나 이상의 애플리케이션을 삭제하지 못했습니다.\"],\"Rw1xwN\":[\"콘텐츠 로딩 중\"],\"RxzN1M\":[\"활성화됨\"],\"RyPas1\":[\"Cancel selected jobs\"],\"S0kLOH\":[\"ID\"],\"S2nsEw\":[\"비교보다 큽니다.\"],\"S5gO6Y\":[\"워크플로우에 추가 명령줄 변수를 전달합니다.\"],\"S6zj7M\":[\"작업 템플릿의 경우 run을 선택하여 playbook을 실행합니다. check를 선택하면 playbook을 실행하지 않고 playbook 구문 확인, 환경 설정 테스트 및 문제 보고만 수행합니다.\"],\"S7kN8O\":[\"하나 이상의 사용자를 삭제하지 못했습니다.\"],\"S7tNdv\":[\"성공 시\"],\"S8FW2i\":[\"이 소스에 의해 동기화될 인벤토리 파일. 드롭다운에서 선택하거나 입력란에 파일을 입력할 수 있습니다.\"],\"SA-KXq\":[\"팬업\"],\"SAw-Ux\":[[\"username\"],\" 에서 \",[\"0\"],\" 액세스 권한을 삭제하시겠습니까?\"],\"SBfnbf\":[\"모든 실행 환경 보기\"],\"SC1Cur\":[\"알 수 없는 상태\"],\"SDND4q\":[\"구성되지 않음\"],\"SIJDi3\":[\"용량 조정\"],\"SJjggI\":[\"업데이트 옵션\"],\"SJmHMo\":[\"설명서.\"],\"SLm_0U\":[\"IRC 서버 포트\"],\"SODyJ3\":[\"호스트 동기화 확인\"],\"SRiPhD\":[\"노드 제거 취소\"],\"SV5nA1\":[\"이전 단계 중 일부에는 오류가 있습니다.\"],\"SVG6MY\":[\"이전에 저장된 값으로 필드를 되돌리기\"],\"SYbJcn\":[\"알림 템플릿 편집\"],\"SZvybZ\":[\"LDAP 기본값\"],\"SZw9tS\":[\"세부 정보 보기\"],\"SbRHme\":[\"텍스트 영역\"],\"Se_E0z\":[\"워크플로우 작업\"],\"Sgr5NW\":[\"상태 점검을 실행할 인스턴스를 선택합니다.\"],\"Sh2XTJ\":[\"알림 유형\"],\"SiexHs\":[\"대시보드(모든 활동)\"],\"Sja7f-\":[\"호스트가 몇 번이나 삭제되었나요?\"],\"Sjoj4f\":[\"인증 정보 이름\"],\"SlfejT\":[\"오류\"],\"SoREmD\":[\"애플리케이션 및 토큰\"],\"SqA8uD\":[\"작업 실행\"],\"SqLEdN\":[\"스마트 인벤토리를 삭제하지 못했습니다.\"],\"SqYo9m\":[\"인스턴스로 돌아가기\"],\"Ssdrw4\":[\"더 이상 사용되지 않음\"],\"Successful\":[\"성공\"],\"SvPvEX\":[\"워크플로우 승인 메시지 본문\"],\"Svkela\":[\"이전 페이지로 이동\"],\"SwJLlZ\":[\"워크플로우 거부 메시지 본문\"],\"SxGqey\":[\"일반 OIDC 설정\"],\"Sxm8rQ\":[\"사용자\"],\"SzFxHC\":[\"LDAP 설정\"],\"SzQMpA\":[\"포크\"],\"T2M20E\":[\"그만큼\"],\"T2mGOG\":[\"docs.ansible.com\"],\"T2x15z\":[\"알림을 전환하지 못했습니다.\"],\"T4a4A4\":[\"Webhook 키\"],\"T7yEGN\":[\"사용자가 이 애플리케이션의 토큰을 획득하기 위해 사용해야 하는 권한 부여 유형\"],\"T91vKp\":[\"플레이\"],\"T9hZ3D\":[\"GitHub Enterprise 팀\"],\"TAnffV\":[\"이 노드 편집\"],\"TBH48u\":[\"팀을 삭제하지 못했습니다.\"],\"TC32CH\":[\"데이터 유지 일수\"],\"TD1APv\":[\"서브스크립션 가져오기\"],\"TFr1UR\":[\"vCenter에서 동기화하는 데 사용되는 인벤토리 플러그인을 제공하는 Ansible 컬렉션을 선택합니다. community.vmware 컬렉션은 더 이상 사용되지 않으며 새로운 vmware.vmware 컬렉션으로 대체되었습니다. 선택 사항은 소스 변수의 \\\"plugin\\\" 키를 통해 적용됩니다. 키가 없으면 기본 컬렉션이 사용됩니다.\"],\"TJVvMD\":[\"관련 검색 유형\"],\"TLomdD\":[[\"sessionCountdown\",\"plural\",{\"one\":[\"You will be logged out in \",\"#\",\" second due to inactivity\"],\"other\":[\"You will be logged out in \",\"#\",\" seconds due to inactivity\"]}]],\"TMJ39S\":[\"역할 연결 해제\"],\"TMLAx2\":[\"필수 항목\"],\"TO3h59\":[\"외부 보안 관리 시스템에서 필드 채우기\"],\"TO4OtU\":[\"Insights 인증 정보\"],\"TOjYb_\":[\"구성된 인벤토리 호스트 세부 정보 보기\"],\"TP9_K5\":[\"토큰\"],\"TRDppN\":[\"Webhook\"],\"TTMvf7\":[\"그룹 유형\"],\"TU6IDa\":[\"사용자 유형\"],\"TXKmNM\":[\"인벤토리를 선택해야 함\"],\"TZEuIE\":[\"인증 정보 유형으로 돌아가기\"],\"T_87By\":[\"매개변수\"],\"Ta0ts5\":[\"변경 사항 표시\"],\"TcnG-2\":[\"새로운 실행 환경 만들기\"],\"TgSxH9\":[\"콜백 URL 프로비저닝\"],\"TkiN8D\":[\"사용자 세부 정보\"],\"Tmh24b\":[\"활성화하면 작업 템플릿이 실행할 기본 설정 인스턴스 그룹 목록에 인벤토리 또는 조직 인스턴스 그룹을 추가하지 못하게 합니다. 참고: 이 설정이 활성화되어 있고 빈 목록을 제공한 경우 전역 인스턴스 그룹이 적용됩니다.\"],\"Tmuvry\":[\"설정 유형 자동 완성\"],\"ToOoEw\":[\"인증 정보 복사\"],\"Tof7pX\":[\"작업\"],\"Tq71UT\":[\"평일\"],\"Tx3NMN\":[\"개인 키 암호\"],\"TxKKED\":[\"구축된 재고 세부 정보 보기\"],\"TyaPAx\":[\"시스템 관리자\"],\"Tz0i8g\":[\"설정\"],\"U-nEJl\":[\"GitHub 설정 보기\"],\"U011Uh\":[\"마지막 확인\"],\"U7rA2a\":[\"선택하지 않으면 병합이 수행되어 로컬 변수와 외부 소스에 있는 변수를 결합합니다.\"],\"UDf-wR\":[\"사용한 구독\"],\"UEaj7U\":[\"인벤토리 동기화 실패\"],\"UJpDop\":[\"Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"UJsNNk\":[\"소스 제어 버전\"],\"UPasE4\":[\"Azure AD 기본값\"],\"UPmrRI\":[\"마지막에 대소문자를 구분하지 않는 버전입니다.\"],\"URmyfc\":[\"세부 정보\"],\"UX2wV1\":[[\"0\",\"plural\",{\"one\":[\"This credential is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"UXBCwc\":[\"성\"],\"UY6iPZ\":[\"활성화되면 제어 노드가 이 인스턴스를 자동으로 피어링합니다. 비활성화된 경우, 인스턴스는 연결된 동료에게만 연결됩니다.\"],\"UYD5ld\":[\"실행 시 버전 업데이트를 클릭합니다\"],\"UYUgdb\":[\"순서\"],\"U_JUCL\":[\"Red Hat Insights\"],\"Ua-Kc6\":[\"www.json.org\"],\"UbOul8\":[\"삭제하시겠습니까\"],\"UbRKMZ\":[\"보류 중\"],\"UbqhuT\":[\"전체 노드 리소스 오브젝트를 검색하지 못했습니다.\"],\"Uc_tSU\":[\"툴 전환\"],\"UgFDh3\":[\"이 인벤토리는 현재 다른 리소스에서 사용하고 있습니다. 삭제하시겠습니까?\"],\"UirGxE\":[\"오류\"],\"UlykKR\":[\"세 번째\"],\"Uo1S9q\":[\"Azure AD Tenant로 로그인\"],\"UueF8b\":[\"실행 환경이 없거나 삭제되었습니다.\"],\"UvGjRK\":[\"활성화하면 이 playbook을 관리자로 실행합니다.\"],\"UwJJCk\":[\"실패한 호스트 다시 시작\"],\"UxKoFf\":[\"탐색\"],\"UyZ7HQ\":[\"변경 메시지 본문\"],\"V-7saq\":[[\"pluralizedItemName\"],\" 을/를 삭제하시겠습니까?\"],\"V-rJKF\":[\"Seconds\"],\"V0Xv3_\":[[\"intervalValue\",\"plural\",{\"one\":[\"day\"],\"other\":[\"days\"]}]],\"V0fM4k\":[\"사용자 분석\"],\"V1EGGU\":[\"이름\"],\"V2-omF\":[[\"0\",\"plural\",{\"one\":[\"최종 삭제가 처리될 때까지 인벤토리는 대기 상태가 됩니다.\"],\"other\":[\"최종 삭제가 처리될 때까지 인벤토리는 대기 상태가 됩니다.\"]}]],\"V2RwJr\":[\"청취자 주소\"],\"V2q9w9\":[\"If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode.\"],\"V3z83V\":[\"LDAP 3\"],\"V4WsyL\":[\"링크 추가\"],\"V5RUpn\":[\"수신자 목록\"],\"V7qsYh\":[\"참고: 이러한 인증 정보의 순서는 콘텐츠의 동기화 및 조회에 대한 우선 순위를 설정합니다. 끌어오기를 활성화하려면 하나 이상 선택합니다.\"],\"V9xR6T\":[\"섹션 확장\"],\"VAI2fh\":[\"새 컨테이너 그룹 만들기\"],\"VAcXNz\":[\"수요일\"],\"VEj6_Y\":[\"워크플로우 승인\"],\"VFvVc6\":[\"세부 정보 편집\"],\"VJUm9p\":[\"현재 페이지\"],\"VK2gzi\":[\"playbook을 실행하는 동안 사용할 병렬 또는 동시 프로세스 수입니다. 빈 값 또는 1보다 작은 값은 일반적으로 5인 Ansible 기본값을 사용합니다. 기본 포크 수는 다음을 변경하여 재정의할 수 있습니다\"],\"VL2WkJ\":[\"마지막 \",[\"dayOfWeek\"]],\"VLdRt2\":[\"동기화 소스 시작\"],\"VNUs2y\":[\"최대 포크\"],\"VSJ6r5\":[\"일정이 활성화됨\"],\"VSim_H\":[\"인벤토리 소스 삭제\"],\"VTDO7X\":[\"이벤트 세부 정보 모달\"],\"VU3Nrn\":[\"누락됨\"],\"VWL2DK\":[\"GitHub 조직\"],\"VXFjd8\":[\"메트릭\"],\"VZfXhQ\":[\"홉 노드\"],\"VdcFUD\":[\"최종 사용자 라이센스 계약\"],\"ViDr6F\":[\"새 그룹 추가\"],\"VmClsw\":[\"이 노드와 연결된 리소스가 삭제되었습니다.\"],\"VmvLj9\":[\"클라이언트 장치의 보안 수준에 따라 Public 또는 Confidential로 설정합니다.\"],\"Vqd-tq\":[\"모두 되돌리기 확인\"],\"Vqgeac\":[\"Press space or enter to begin dragging,\\n and use the arrow keys to navigate up or down.\\n Press enter to confirm the drag, or any other key to\\n cancel the drag operation.\"],\"Vvbbn2\":[\"역할을 삭제하지 못했습니다.\"],\"Vw8l6h\":[\"오류가 발생했습니다.\"],\"VzE_M-\":[\"알림 전환 실패\"],\"W-O1E9\":[\"프로젝트 복사\"],\"W1iIqa\":[\"인벤토리 그룹 보기\"],\"W3TNvn\":[\"사용자로 돌아가기\"],\"W3pOzF\":[\"이 프로젝트를 사용하는 작업 템플릿에서 소스 제어 브랜치 또는 리비전 변경을 허용합니다.\"],\"W6uTJi\":[\"인스턴스를 가져오지 못했습니다.\"],\"W7DGsV\":[\"(사용자 이름)에 의해 시작됨\"],\"W9XAF4\":[\"평일\"],\"W9uQXX\":[\"프롬프트\"],\"WAjFYI\":[\"시작일\"],\"WD8djW\":[\"링크 삭제 확인\"],\"WL91Ms\":[\"Delete Groups?\"],\"WPM2RV\":[\"응답 유형\"],\"WQJduu\":[\"키 선택\"],\"WTN9YX\":[\"계정 토큰\"],\"WTV15I\":[\"로그인 리디렉션 덮어쓰기 URL 편집\"],\"WVzGc2\":[\"서브스크립션\"],\"WX9-kf\":[\"IRC 닉네임\"],\"Wc6m4J\":[\"가져올 refspec입니다(Ansible git 모듈에 전달됨). 이 매개변수를 사용하면 브랜치 필드를 통해 다른 방법으로는 사용할 수 없는 참조에 액세스할 수 있습니다.\"],\"Wdl2f2\":[\"이 필드는 최소 \",[\"0\"],\"자 이상이어야 합니다\"],\"WgsBEi\":[\"새 스마트 인벤토리를 생성하려면 하나 이상의 검색 필터를 입력합니다.\"],\"WhSFGl\":[[\"name\"],\"으로 필터링\"],\"Wi1pUG\":[[\"numJobsToCancel\",\"plural\",{\"one\":[[\"0\"]],\"other\":[[\"1\"]]}]],\"Wk1rOS\":[\"그래프를 사용 가능한 화면 크기에 맞춥니다.\"],\"Wm7XbF\":[\"하나 이상의 인증 정보를 삭제하지 못했습니다.\"],\"WqaDMq\":[\"필드에 값이 있습니다.\"],\"Wy25yg\":[\"Twilio\"],\"X03-eC\":[\"값을 입력하십시오.\"],\"X5V9DW\":[\"노드를 재구성하려면 아래의 편집 버튼을 클릭합니다.\"],\"X6d3Zy\":[\"조직을 삭제하지 못했습니다.\"],\"X97mbf\":[\"작업 유형 선택\"],\"XA12d8\":[\"슬라이스 자체의 호스트 외에도 각 작업 슬라이스에 포함할 호스트 이름의 선택적 쉼표로 구분된 목록입니다. play가 모든 슬라이스가 의존하는 localhost와 같은 조정 호스트를 대상으로 할 때 유용합니다. 이름은 인벤토리 호스트와 정확히 일치합니다. 그룹과 패턴은 지원되지 않습니다. 고정된 호스트는 슬라이스당 한 번씩 play를 실행합니다.\"],\"XBROpk\":[\"워크플로우에서 관리하거나 영향을 받는 호스트 목록을 추가로 제한할 호스트 패턴을 제공합니다.\"],\"XCCkju\":[\"노드 편집\"],\"XFRygA\":[\"원격 아카이브 소스 제어의 URL 예제는 다음과 같습니다.\"],\"XHxwBV\":[\"선택한 날짜 범위는 하나 이상의 일정이 포함되어 있어야 합니다.\"],\"XILg0L\":[\"유효하지 않은 이메일 주소입니다\"],\"XJOV1Y\":[\"활동\"],\"XKp83s\":[\"소스와 함께 인벤토리를 복사할 수 없습니다.\"],\"XLMJ7O\":[\"클라우드\"],\"XLpxoj\":[\"이메일 옵션\"],\"XM-gTv\":[\"구성 파일에 대한 자세한 내용은 Ansible 설명서를 참조하십시오.\"],\"XOD7tz\":[\"변경 사항 표시\"],\"XOaZX3\":[\"페이지 번호\"],\"XP6TQ-\":[\"지정된 경우 이 필드는 워크플로우를 볼 때 리소스 이름 대신 노드에 표시됩니다.\"],\"XREJvl\":[\"인벤토리 소스를 구성하는 데 사용되는 변수입니다. 이 플러그인을 구성하는 방법에 대한 자세한 설명은 다음을 참조하십시오.\"],\"XViLWZ\":[\"실패 시\"],\"XWDz5f\":[\"간단한 키 선택\"],\"X_5TsL\":[\"설문조사 토글\"],\"XaxYwV\":[\"프롬프트 값\"],\"XbIM8f\":[\"총 재고 소스\"],\"XdyHT-\":[\"가져온 호스트\"],\"XfmfOA\":[\"모두 실행\"],\"Xg3aVa\":[\"SSL 사용\"],\"XgTa_2\":[\"The inventory will be in a pending status until the final delete is processed.\"],\"XilEsm\":[\"인스턴스 그룹\"],\"Xm7ruy\":[\"5 (WinRM 디버그)\"],\"XmJfZT\":[\"이름\"],\"XmVvzl\":[\"적용할 역할 선택\"],\"XnxCSh\":[\"표준 오류\"],\"XozZ38\":[\"하나 이상의 인벤토리 소스를 삭제하지 못했습니다.\"],\"Xq9A0U\":[\"알 수 없는 프로젝트\"],\"Xt4N6V\":[\"프롬프트 | \",[\"0\"]],\"XtpZSU\":[\"모든 작업 유형\"],\"Xx-ftH\":[\"서브스크립션에서 허용하는 것보다 더 많은 호스트에 대해 자동화되었습니다.\"],\"XyTWuQ\":[\"토폴로지 보기가 채워질 때까지 기다리십시오...\"],\"XyW2nH\":[[\"0\",\"plural\",{\"one\":[\"아래 그룹을 삭제하시겠습니까?\"],\"other\":[\"아래 그룹을 삭제하시겠습니까?\"]}]],\"XzD7xj\":[\"항목 선택\"],\"Y1YKad\":[\"세부 정보 편집\"],\"Y296GK\":[\"역할을 삭제하지 못했습니다\"],\"Y2ml-n\":[\"승인됨 - \",[\"0\"],\". 자세한 내용은 활동 스트림을 참조하십시오.\"],\"Y5VrmH\":[\"인벤토리 동기화에 대해 구성되지 않았습니다.\"],\"Y5vgVF\":[\"성공적으로 거부됨\"],\"Y5xJ7I\":[\"플레이북 이름\"],\"Y60pX3\":[\"구성된 인벤토리 추가\"],\"YA4I45\":[\"모듈 선택\"],\"YFmVSY\":[\"연결 해제하시겠습니까?\"],\"YJddb4\":[\"인스턴스 유형\"],\"YLMfol\":[\"새 역할을 받을 리소스 유형을 선택합니다. 예를 들어 사용자 집합에 새 역할을 추가하려면 사용자를 선택하고 다음을 클릭합니다. 다음 단계에서 특정 리소스를 선택할 수 있습니다.\"],\"YM06Nm\":[\"인증 정보 유형 편집\"],\"YMLB2b\":[\"시간 초과가 만료될 때 승인 노드가 자동으로 승인되거나 거부되는지 여부입니다.\"],\"YMpSlP\":[\"재고 동기화를 현재로 간주하는 데 걸리는 시간 (초) 입니다. 작업 실행 및 콜백 중에 작업 시스템은 최신 동기화의 타임스탬프를 평가합니다. 캐시 시간 초과보다 오래된 경우 현재로 간주되지 않으며 새 인벤토리 동기화가 수행됩니다.\"],\"YOOdGq\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 분\"],\"other\":[\"#\",\" 분\"]}]],\"YOh7Aw\":[\"워크플로우 작업 \",[\"currentPosition\"],\"/\",[\"total\"]],\"YP5KRj\":[\"저장 시 새 Webhook URL이 생성됩니다.\"],\"YPDLLX\":[\"실행 환경으로 돌아가기\"],\"YQqM-5\":[\"실행에 사용할 컨테이너 이미지입니다.\"],\"Yd45Xn\":[\"프로세서 유형별 호스트\"],\"Yfw7TK\":[\"알림 시간 초과\"],\"YgqgXs\":[[\"intervalValue\",\"plural\",{\"one\":[\"minute\"],\"other\":[\"minutes\"]}]],\"YiQ03p\":[\"일정을 삭제하지 못했습니다.\"],\"YiUAZm\":[\"<0>참고: 이 인스턴스가 <1>정책 규칙에 의해 관리되는 경우 이 인스턴스 그룹에 다시 연결될 수 있습니다.\"],\"YlGAPh\":[\"작업 분할 고정 호스트\"],\"Ym7-mu\":[\"한 줄에 하나의 Slack 채널입니다. 채널에는 파운드 기호(#)가\\n 필요합니다. 특정 메시지에 응답하거나 스레드를 시작하려면 부모 메시지 Id를 채널에 추가하십시오. 여기서 부모 메시지 Id는 16자리입니다. 10번째 자리 뒤에 점(.)을 수동으로 삽입해야 합니다. 예: #destination-channel, 1231257890.006423. Slack 참조\"],\"YmEWZH\":[\"템플릿 시작\"],\"YmjTf2\":[\"프로비저닝 실패\"],\"YoXjSs\":[\"시작 시 인벤토리를 입력하라는 메시지를 표시합니다.\"],\"Yq4Eaf\":[\"이 작업의 호스트 상태 정보를 사용할 수 없습니다.\"],\"YsN-3o\":[\"인벤토리 소스 세부 정보 보기\"],\"Yt-rBv\":[\"이 프로젝트는 현재 다른 리소스에서 사용되고 있습니다. 삭제하시겠습니까?\"],\"YuC9dj\":[\"연결\"],\"YxDLmM\":[\"Insights 시스템 ID\"],\"Z17FAa\":[\"알 수 없는 인벤토리\"],\"Z1Vtl5\":[\"프로젝트 동기화 취소 실패\"],\"Z25_RC\":[\"입력 선택\"],\"Z2hVSb\":[\"하이브리드\"],\"Z40J8D\":[\"프로비저닝 콜백 URL 생성을 활성화합니다. 이 URL을 사용하여 호스트는 \",[\"brandName\"],\"에 연결하고 이 작업 템플릿을 사용하여 구성 업데이트를 요청할 수 있습니다.\"],\"Z5HWHd\":[\"On\"],\"Z7ZXbT\":[\"승인\"],\"Z88yEl\":[\"비교보다 크거나 같습니다.\"],\"Z9EFpE\":[\"자동화 분석 대시보드\"],\"ZAWGCX\":[[\"0\"],\" 초\"],\"ZEP8tT\":[\"시작\"],\"ZGDCzb\":[\"인스턴스를 찾을 수 없습니다.\"],\"ZJjKDg\":[\"관리형 노드\"],\"ZKKnVf\":[\"새 워크플로 템플릿 만들기\"],\"ZL3d6Z\":[\"IRC 서버 주소\"],\"ZO4CYH\":[\"실행 중인 작업\"],\"ZOLfb2\":[\"이 필드는 비워 둘 수 없습니다.\"],\"ZWhZbs\":[\"노드 제거 확인\"],\"ZajTWA\":[\"소스 전화 번호\"],\"Zf6u-6\":[\"설명\"],\"ZfrRb0\":[\"인벤토리를 선택하거나 시작 시 프롬프트 옵션을 선택하십시오.\"],\"ZhUwVw\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 주\"],\"other\":[\"#\",\" 주\"]}]],\"ZhxwOq\":[\"오류 메시지 본문\"],\"Zikd-1\":[\"자동화된 호스트 수는 서브스크립션 수 보다 적습니다.\"],\"ZjC8QM\":[\"호스트를 삭제하지 못했습니다.\"],\"ZjvPb1\":[\"(사용자 이름)에 의해 생성됨\"],\"Zkh5np\":[\"동료들은 \",[\"0\"],\" 에 업데이트됩니다. 변경 사항을 적용하려면 \",[\"1\"],\" 에 대한 설치 번들을 다시 실행하십시오.\"],\"ZpdX6R\":[\"토큰 삭제 중 오류 발생\"],\"ZrsGjm\":[\"인벤토리\"],\"ZumtuZ\":[\"템플릿 복사\"],\"ZvVF4C\":[\"설문 조사 질문 삭제\"],\"ZwCTcT\":[\"최근 작업 목록 탭\"],\"ZwujDQ\":[\"지난 해\"],\"_-NKbo\":[\"일정을 전환하지 못했습니다.\"],\"_2LfCe\":[\"설문조사 질문을 재정렬하려면 원하는 위치에 끌어다 놓습니다.\"],\"_4gGIX\":[\"클립보드에 복사\"],\"_5REdR\":[\"구성된 인벤토리 플러그인에 대한 Input Inventories를 선택합니다.\"],\"_Fg1cM\":[\"워크플로우 시간 초과 메시지 본문\"],\"_ITcnz\":[\"일\"],\"_Ia62Q\":[\"구축된 인벤토리 예시\"],\"_JN1gB\":[\"작업 수\"],\"_K2CvV\":[\"템플릿\"],\"_LQZpR\":[[\"intervalValue\",\"plural\",{\"one\":[\"year\"],\"other\":[\"years\"]}]],\"_LVfwJ\":[\"구성된 인벤토리 소스 동기화 오류\"],\"_M4FeF\":[\"이 명령을 실행할 실행 환경을 선택합니다.\"],\"_MTBwI\":[\"변경 메시지\"],\"_MdgrM\":[\"두 노드 사이에 새 노드 추가\"],\"_PRaan\":[\"하나 이상의 알림 템플릿을 삭제하지 못했습니다.\"],\"_Pz_QH\":[\"정책에 의해 관리됨\"],\"_W3ZAw\":[[\"selectedItemsCount\",\"plural\",{\"one\":[\"Click to run a health check on the selected instance.\"],\"other\":[\"Click to run a health check on the selected instances.\"]}]],\"_WBq2_\":[\"거부됨 - \",[\"0\"],\". 자세한 내용은 활동 스트림을 참조하십시오.\"],\"_Yq4TU\":[\"이 그룹에서 동시에 실행되는 모든 작업에서 허용되는 최대 포크 수입니다.\\n 0은 제한이 적용되지 않음을 의미합니다.\"],\"_ZBhqw\":[\"인벤토리 소스 동기화를 취소하지 못했습니다.\"],\"_bAUGi\":[\"HTTP 방법 선택\"],\"_bE0AS\":[\"인스턴스 선택\"],\"_cV6Mf\":[\"검색 중...\"],\"_cq4Aa\":[\"워크플로우 승인을 찾을 수 없습니다.\"],\"_ereyb\":[\"TACACS+\"],\"_gCD76\":[\"인스턴스 그룹 편집\"],\"_ismew\":[\"아티팩트 키\"],\"_kYJq6\":[\"데이터 보관 일수\"],\"_khNCh\":[\"작업 템플릿의 기본 인증 정보는 동일한 유형의 인증 정보로 교체해야 합니다. 계속하려면 다음 유형에 대한 인증 정보를 선택하십시오: \",[\"0\"]],\"_oeZtS\":[\"호스트 폴링\"],\"_rCRcH\":[\"고급 검색 설명서\"],\"_vI8Rx\":[\"Delete Group?\"],\"a02Xjc\":[\"IRC 서버 주소\"],\"a3AD0M\":[\"로그인 리디렉션 편집 확인\"],\"a5zD9f\":[\"변경 사항\"],\"a6E-_p\":[\"대소문자를 구분하지 않는 버전을 포함합니다.\"],\"a8AgQY\":[\"호스트 세부 정보 보기\"],\"a8nooQ\":[\"네 번째\"],\"a9BTUD\":[\"주말\"],\"aBgwis\":[\"범위\"],\"aLlb3-\":[\"부울 방식\"],\"aNxqSL\":[\"실행 환경 삭제\"],\"aQ4XJX\":[\"로그 시스템 추적 사실을 개별적으로 활성화\"],\"aSuBiU\":[\"Microsoft Azure Resource Manager\"],\"aTK0Fh\":[\"요일에\"],\"aUNPq3\":[\"실행 노드\"],\"aVoVcG\":[\"다중 선택\"],\"aXBrSq\":[\"Red Hat Virtualization\"],\"a_vlog\":[[\"0\"],\" 칩 제거\"],\"adPhRK\":[\"이 호스트가 속할 인벤토리입니다.\"],\"adjqlB\":[[\"0\"],\" (삭제됨)\"],\"aht2s_\":[\"알림 색상\"],\"aiejXq\":[\"리소스 유형 추가\"],\"ajDpGH\":[\"상태:\"],\"anfIXl\":[\"사용자 세부 정보\"],\"aqqAbL\":[\"활성화하면 인벤토리에서 연결된 작업 템플릿을 실행하는 기본 인스턴스 그룹 목록에 조직 인스턴스 그룹을 추가하지 않습니다. 참고: 이 설정이 활성화되어 있고 빈 목록을 제공한 경우 글로벌 인스턴스 그룹이 적용됩니다.\"],\"ar5AA2\":[\"자세한 내용\"],\"ataY5Z\":[\"작업 삭제 오류\"],\"ax6e8j\":[\"호스트 필터를 편집하기 전에 조직을 선택하십시오.\"],\"az8lvo\":[\"Off\"],\"b1CAkh\":[\"관리 작업\"],\"b2Z0Zq\":[\"링크 변경 취소\"],\"b433OF\":[\"그룹 편집\"],\"b4SLah\":[\"왼쪽의 오류 보기\"],\"b9Y4up\":[\"클라이언트 ID\"],\"bDa_hW\":[\"이 인벤토리 소스 동기화를 실행할 인스턴스 그룹을 선택합니다. 설정하지 않으면 인벤토리 또는 해당 조직의 인스턴스 그룹에서 동기화가 실행됩니다.\"],\"bE4zYn\":[\"수신 연결에 대해 리셉터가 수신 대기할 포트를 선택하십시오 (예: 27199).\"],\"bHXYoC\":[\"HTTP 방법\"],\"bKR18T\":[\"서브스크립션 매니페스트는 Red Hat 서브스크립션의 내보내기입니다. 서브스크립션 매니페스트를 생성하려면 <0>access.redhat.com으로 이동하십시오. 자세한 내용은 <1>사용자 가이드를 참조하십시오.\"],\"bLt_0J\":[\"워크플로우\"],\"bPq357\":[\"활성화된 값\"],\"bQZByw\":[\"쉼표 없이 한 줄에 하나의 주석 태그를 사용합니다.\"],\"bTu5jX\":[\"사용자 이름 / 암호\"],\"bWr6j5\":[\"이 필드는 최소 \",[\"min\"],\"자 이상이어야 합니다\"],\"bY8C86\":[\"모든 사용자 보기.\"],\"bYXbel\":[\"워크플로 작업 템플릿 webhook 키\"],\"baP8gx\":[\"4 (연결 디버그)\"],\"baqrhc\":[\"HTTP 헤더\"],\"bbJ-VR\":[\"축소\"],\"bcyJXs\":[\"항목 확인\"],\"bd1Kuw\":[\"아이콘 URL\"],\"bf7UKi\":[\"캐시 시간 초과 업데이트\"],\"bfgr_e\":[\"질문\"],\"bgjTnp\":[\"0 (정상)\"],\"bgq1rW\":[\"검색 제출 버튼\"],\"bhxnLH\":[\"다음 그룹을 삭제할 권한이 없습니다. \",[\"itemsUnableToDelete\"]],\"bkPO0d\":[\"알림 유형\"],\"bpECfE\":[\"링크 삭제 취소\"],\"bpnj1H\":[\"이 콘텐츠를 로드하는 동안 오류가 발생했습니다. 페이지를 다시 로드하십시오.\"],\"bwRvnp\":[\"동작\"],\"bx2rrL\":[\"스마트 인벤토리\"],\"bxaVlf\":[\"새 인증 정보 유형 만들기\"],\"byXCTu\":[\"발생\"],\"bznJUg\":[\"이 워크플로우에서 관리할 호스트가 포함된 인벤토리를 선택합니다.\"],\"bzv8Dv\":[\"제거 오류\"],\"c-xCSz\":[\"True\"],\"c0n4p3\":[\"실제 스토리지\"],\"c1Rsz1\":[\"워크플로우 승인 세부 정보 보기\"],\"c3XJ18\":[\"도움말\"],\"c4kHK7\":[\"서브스크립션 모달 닫기\"],\"c6IFRs\":[\"서비스 계정 JSON 파일\"],\"c6u6gk\":[\"이 조직에서 실행할 인스턴스 그룹을 선택합니다.\"],\"c7-Adk\":[\"인벤토리 소스를 동기화하지 못했습니다.\"],\"c8HyJq\":[\"이 인벤토리의 인스턴스 그룹을 선택하여 실행할 인스턴스를 선택합니다.\"],\"c8sV0t\":[\"이 기능은 더 이상 사용되지 않으며 향후 릴리스에서 제거될 예정입니다.\"],\"c9V3Yo\":[\"호스트 실패\"],\"c9iw51\":[\"실행 중인 작업\"],\"c9pF61\":[\"클라이언트 식별자\"],\"cFC8w7\":[\"이 인벤토리 소스는 현재 이를 사용하는 다른 리소스에서 사용되고 있습니다. 삭제하시겠습니까?\"],\"cFCKYZ\":[\"거부\"],\"cFOXv9\":[\"일반 OIDC\"],\"cGRiaP\":[\"이벤트 세부 정보\"],\"cIdUma\":[\"\\n \",[\"project_base_dir\"],\"에 사용 가능한 playbook 디렉토리가 없습니다.\\n 해당 디렉토리가 비어 있거나 모든 내용이 이미\\n 다른 프로젝트에 할당되어 있습니다. 그곳에 새 디렉토리를 만들고\\n playbook 파일을 「awx」 시스템 사용자가 읽을 수 있는지 확인하거나,\\n 위의 소스 제어 유형 옵션을 사용하여 \",[\"brandName\"],\"이(가)\\n 소스 제어에서 직접 playbook을 검색하도록 하십시오.\"],\"cNsIJf\":[\"변경됨\"],\"cPTnDL\":[\"프로젝트 동기화\"],\"cQIQa2\":[\"그룹 선택\"],\"cQlPDN\":[\"읽기\"],\"cUKLzq\":[\"순서 편집\"],\"cYir0h\":[\"옵션 선택\"],\"c_PGsA\":[\"워크플로우 작업 세부 정보\"],\"cbSPfq\":[\"이 워크플로우는 이미 수행되었습니다.\"],\"ccA_Bz\":[\"변수 이름에 권장되는 형식은 소문자와\\n 밑줄로 구분된 형식입니다(예: foo_bar, user_id, host_name\\n 등). 공백이 있는 변수 이름은 허용되지 않습니다.\"],\"cdm6_X\":[\"사용된 용량\"],\"chbm2W\":[\"인스턴스 필터\"],\"ci3mwY\":[\"이 필드는 비워 둘 수 없습니다.\"],\"cit9TY\":[\"부모 노드가 set_stats를 통해 생성한 아티팩트의 이름입니다. 링크는 부모 작업이 선택한 결과와 일치하고 조건이 참일 때만 따릅니다. 누락된 키는 일치하지 않습니다.\"],\"cj1KTQ\":[\"모든 인벤토리 보기\"],\"cjJXKx\":[\"호스트 동기화 실패\"],\"ckH3fT\":[\"준비됨\"],\"ckdiAB\":[\"알림 삭제\"],\"cmWTxn\":[\"비교 값보다 적거나 같습니다.\"],\"cnGeoo\":[\"삭제\"],\"cnnWD0\":[\"By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>\",[\"0\"],\". Uncheck the following boxes to disable this feature.\"],\"ct_Puj\":[\"이 필드는 지정된 인증 정보를 사용하여 외부 시크릿 관리 시스템에서 검색됩니다.\"],\"cucDBz\":[\"컨텍스트 템플릿\"],\"cucG_7\":[\"사용할 수 있는 YAML 없음\"],\"cxjfgY\":[\"홉 노드에서 상태 점검을 실행할 수 없습니다.\"],\"cy3yJa\":[\"설립되었습니다\"],\"d-F6q9\":[\"생성됨\"],\"d-zGjA\":[\"이 작업은 다음을 삭제합니다.\"],\"d1BVnY\":[\"A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>\",[\"0\"],\".\"],\"d5zxa4\":[\"지역\"],\"d6in1T\":[\"이 작업이 관리할 호스트가 포함된 인벤토리를 선택합니다.\"],\"d73flf\":[\"경고 모달\"],\"d75lEw\":[\"설정 유형\"],\"d7VUIS\":[[\"nodeName\"],\" 노드 제거\"],\"d8B-tr\":[\"작업 상태 그래프 탭\"],\"dAZObA\":[\"리디렉션 URI\"],\"dBNZkl\":[\"스마트 인벤토리 호스트 세부 정보 보기\"],\"dCcO-F\":[\"구성을 검색하지 못했습니다.\"],\"dELxuP\":[\"인벤토리를 찾을 수 없음\"],\"dEgA5A\":[\"취소\"],\"dH6aQY\":[\"Azure AD Tenant\"],\"dIb9tv\":[\"모든 애플리케이션 보기.\"],\"dJcvVX\":[\"스마트 호스트 필터\"],\"dNAHKF\":[\"작업 분할\"],\"dOjocz\":[\"통합 선택\"],\"dPGRd8\":[\"활성화하면 지원되는 경우 Ansible 작업으로 변경된 사항을 표시합니다. 이는 Ansible의 --diff 모드와 동일합니다.\"],\"dPY1x1\":[\"자세한 내용\"],\"dQFAgv\":[\"이 프로젝트를 업데이트해야 합니다.\"],\"dQjRO3\":[\"동기화 프로세스 시작\"],\"dbWo0h\":[\"Google로 로그인\"],\"dcGoCm\":[\"인벤토리 파일\"],\"ddIcfH\":[\"마지막 페이지로 이동\"],\"dfWFox\":[\"호스트 수\"],\"dk7qNl\":[\"컨트롤 노드\"],\"dkGxGj\":[\"Subversion\"],\"dlHFy7\":[\"하나 이상의 실행 환경을 삭제하지 못했습니다.\"],\"dnCwNB\":[\"클립보드에 성공적으로 복사되었습니다!\"],\"dov9kY\":[\"이 필드는 숫자여야 하며 \",[\"0\"],\"과(와) \",[\"1\"],\" 사이의 값이어야 합니다\"],\"dqxQzB\":[\"사전\"],\"dzQfDY\":[\"10월\"],\"e0NrBM\":[\"프로젝트\"],\"e3pQqT\":[\"알림 유형 선택\"],\"e4GHWP\":[\"당기다\"],\"e5CMOi\":[\"인증 정보 유형에서 삽입할 수 있는 값을 지정하는 환경 변수 또는 추가 변수입니다.\"],\"e5VbKq\":[\"워크플로우 작업 템플릿\"],\"e6BtDv\":[\"<0>\",[\"0\"],\"<1>\",[\"1\"],\"\"],\"e70-_3\":[\"범례 전환\"],\"e8GyQg\":[\"메트릭\"],\"e8U63Z\":[\"푸시된 참조가 이 패턴과 일치하는 경우에만 프로젝트를 동기화합니다(예: refs/heads/main 또는 refs/heads/release-*). 모든 푸시 또는 태그 이벤트에서 동기화하려면 비워 둡니다.\"],\"e91aLH\":[\"모든 인증 정보 유형 보기\"],\"e9k5zp\":[\"이 목록을 채울 일정을 추가하십시오. 템플릿, 프로젝트 또는 인벤토리 소스에 일정을 추가할 수 있습니다.\"],\"eAR1n4\":[\"관련 검색 자동 완성\"],\"eD_0Fo\":[\"하나 이상의 팀을 삭제하지 못했습니다.\"],\"eDjsWq\":[\"새 알림 템플릿 만들기\"],\"eGkahQ\":[\"작업 템플릿 삭제\"],\"eHx-29\":[\"소스 세부 정보\"],\"ePK91l\":[\"편집\"],\"ePS9As\":[\"RADIUS 설정\"],\"eQkgKV\":[\"설치됨\"],\"eRV9Z3\":[\"시간 초과가 지정되지 않음\"],\"eRlz2Q\":[\"대상 SMS 번호\"],\"eSXF_i\":[\"애플리케이션을 삭제하지 못했습니다.\"],\"eTsJYJ\":[\"설명\"],\"eVJ2lo\":[\"부동 값\"],\"eXOp7I\":[\"인스턴스를 제거할 수 있는 권한이 없습니다. \",[\"itemsUnableToremove\"]],\"eXWuGz\":[\"최근 템플릿 목록 탭\"],\"eYJ4TK\":[\"건설된 인벤토리를 찾을 수 없습니다.\"],\"eeke40\":[\"자동화 분석\"],\"ekUnNJ\":[\"태그 선택\"],\"el9nUc\":[\"일정이 비활성 상태입니다\"],\"emqNXf\":[\"플레이북 확인\"],\"eqiT7d\":[\"이 인스턴스가 메시 토폴로지 내에서 수행할 역할을 설정합니다. 기본값은 \\\"실행\\\"입니다.\"],\"espHeZ\":[\"인스턴스 그룹 폴백 방지: 활성화된 경우, 인벤토리에서 연결된 작업 템플릿을 실행하도록 기본 인스턴스 그룹 목록에 조직 인스턴스 그룹을 추가할 수 없습니다.\"],\"etQEqZ\":[\"이 링크를 제거하면 나머지 분기가 분리되고 시작 시 즉시 실행됩니다.\"],\"ewSXyG\":[[\"pluralizedItemName\"],\" 을 (를) 소프트 삭제하시겠습니까?\"],\"f-fQK9\":[\"Grafana API 키\"],\"f2o-xB\":[\"취소 확인\"],\"f6Hub0\":[\"분류\"],\"f9yJNM\":[\"같음\"],\"fCZSgU\":[\"모든 인스턴스 그룹 보기\"],\"fDzxi_\":[\"저장하지 않고 종료\"],\"fE2kOY\":[\"날짜 연산자 선택\"],\"fGEOCn\":[\"작업 상태\"],\"fGLpQj\":[\"소스 제어 분기/태그/커밋\"],\"fGQ9Ug\":[\"이 작업이 실행될 노드에 액세스하기 위한 인증 정보를 선택합니다. 각 유형당 하나의 인증 정보만 선택할 수 있습니다. 머신 인증 정보(SSH)의 경우 인증 정보를 선택하지 않고 “시작 시 입력 요청”을 선택하면 런타임에 머신 인증 정보를 선택해야 합니다. 인증 정보를 선택하고 “시작 시 입력 요청”을 선택하면 선택한 인증 정보가 런타임에 업데이트할 수 있는 기본값이 됩니다.\"],\"fJ9xam\":[\"인스턴스 활성화\"],\"fKew5B\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"작업 취소\"],\"other\":[\"작업 취소\"]}]],\"fL7WXr\":[\"애플리케이션\"],\"fMUEsk\":[[\"0\"],\"일\"],\"fMulwN\":[\"프로젝트 버전 새로 고침\"],\"fOAyP5\":[\"검색 텍스트 입력\"],\"fODqV4\":[\"이 값을 찾을 수 없습니다. 유효한 값을 입력하거나 선택하십시오.\"],\"fQCM-p\":[\"조직 세부 정보 보기\"],\"fQGOXc\":[\"오류!\"],\"fR8DDt\":[\"모든 노드 제거 확인\"],\"fVjyJ4\":[\"연결 해제 확인\"],\"f_Xpp2\":[\"이 작업은 다음과 같이 연결을 해제합니다.\"],\"fcTDCh\":[\"아래에 Red Hat 또는 Red Hat Satellite 인증 정보를\\n 입력하면 사용 가능한 서브스크립션 목록에서 선택할 수 있습니다.\\n 사용하는 인증 정보는 갱신 또는 확장된 서브스크립션을\\n 검색하는 데 나중에 사용하기 위해 저장됩니다.\"],\"ff_JYN\":[\"중첩된 그룹 이름 필터링\"],\"fgrmWn\":[\"시작 시 diff 모드를 입력하라는 메시지를 표시합니다.\"],\"fhFmMp\":[\"클라이언트 식별자\"],\"fjX9i5\":[\"스마트 인벤토리를 찾을 수 없습니다.\"],\"fk1WEw\":[\"암호화\"],\"fld-O4\":[\"모든 작업\"],\"fnbZWe\":[\"선택적으로 상태 업데이트를 webhook 서비스로 다시 보내는 데 사용할 인증 정보를 선택합니다.\"],\"foItBN\":[\"주말\"],\"fp4RS1\":[\"content-loading-in-progress\"],\"fpMgHS\":[\"월요일\"],\"fqSfXY\":[\"교체\"],\"fqmP_m\":[\"호스트에 연결할 수 없음\"],\"fthJP1\":[\"webhook 서비스는 이 URL에 POST 요청을 하여 이 워크플로 작업 템플릿으로 작업을 시작할 수 있습니다.\"],\"fwX7gC\":[\"VMware vCenter\"],\"g4o5Lr\":[\"상세 정보\"],\"g6ekO4\":[\"호스트를 전환하지 못했습니다.\"],\"g7CZ-8\":[\"GitHub Enterprise 조직으로 로그인\"],\"g9d3sF\":[\"메시지 본문 시작\"],\"gALXcv\":[\"이 노드 삭제\"],\"gBnBJa\":[\"소스 워크플로 작업\"],\"gDx5MG\":[\"링크 편집\"],\"gIGcbR\":[\"이 그룹에서 동시에 실행할 최대 작업 수입니다. 0은 제한이 적용되지 않음을 의미합니다.\"],\"gJccsJ\":[\"워크플로우 승인 메시지\"],\"gK06zh\":[\"작업 템플릿 추가\"],\"gM3pS9\":[\"실행 환경\"],\"gN3aF4\":[\"LDAP5\"],\"gSVH9P\":[\"모든 소스 동기화\"],\"gUaMtt\":[\"시간 초과 시\"],\"gVYePj\":[\"새 팀 만들기\"],\"gWlcwd\":[\"마지막 작업 상태\"],\"gYWK-5\":[\"사용자 인터페이스 설정 보기\"],\"gZXc5U\":[\"워크플로우가 계속되기 전에 승인해야 하는 고유 사용자 수입니다. 단 한 번의 거부로 항상 노드가 거부됩니다.\"],\"gZaMqy\":[\"GitHub 팀으로 로그인\"],\"gZkstf\":[\"활성화하면 수집된 팩트를 저장하여 호스트 수준에서 볼 수 있습니다. 팩트는 유지되며 런타임에 팩트 캐시에 삽입됩니다.\"],\"gcFnpl\":[\"작업 상태\"],\"geTfDb\":[\"작업 세부 정보보기\"],\"ged_ZE\":[\"오라그니제이션\"],\"gezukD\":[\"취소할 작업 선택\"],\"gfyddN\":[\".zip 파일 업로드\"],\"gh06VD\":[\"출력\"],\"ghJsq8\":[\"먼저 스크롤\"],\"gmB6oO\":[\"스케줄\"],\"gmBQqV\":[\"프로젝트 업데이트\"],\"gnveFZ\":[\"표준 오류 탭\"],\"goVc-x\":[\"인증 정보 플러그인 설정 편집\"],\"go_DGX\":[\"팀 역할 추가\"],\"gpKdxJ\":[\"삭제할 질문을 선택\"],\"gpmbqk\":[\"변수\"],\"gpnvle\":[\"삭제 오류\"],\"gsj32g\":[\"프로젝트 동기화 취소\"],\"gtB4z-\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 시간\"],\"other\":[\"#\",\" 시간\"]}]],\"gwKtbI\":[\"설명서 및\"],\"h25sKn\":[\"서브스크립션 관리\"],\"h51QFW\":[\"YAML\"],\"h8DugX\":[\"레이블\"],\"hAjDQy\":[\"상태 선택\"],\"hBHRCF\":[\"새 인스턴스가 온라인 상태가 될 때 이 그룹에 자동으로\\n 할당되는 최소 인스턴스 수입니다.\"],\"hEBjSg\":[\"Red Hat Satellite 6\"],\"hEnNCI\":[\"이 키를 사용하여 다른 검색을 활성화하려면 ansible 팩트와 관련된 현재 검색을 제거합니다.\"],\"hG89Ed\":[\"이미지\"],\"hHKoQD\":[\"피어 주소 선택\"],\"hLDu5N\":[\"애플리케이션 편집\"],\"hNudM0\":[\"이 필드의 값을 설정합니다.\"],\"hPa_zN\":[\"조직(이름)\"],\"hQ0dMQ\":[\"새 호스트 추가\"],\"hQRttt\":[\"제출\"],\"hVPa4O\":[\"옵션 선택\"],\"hX8KyU\":[\"이 작업은 실패하여 출력이 없습니다.\"],\"hXDKWN\":[\"빈도 세부 정보\"],\"hXzOVo\":[\"다음\"],\"hYH0cE\":[\"이 작업을 취소하기 위한 요청을 제출하시겠습니까?\"],\"hYgDIe\":[\"만들기\"],\"hZ6znB\":[\"포트\"],\"hZke6f\":[\"로컬 인증을 비활성화하시겠습니까? 이렇게 하면 로그인할 수 있는 사용자와 시스템 관리자가 이러한 변경을 취소할 수 있습니다.\"],\"hc_ufD\":[\"작업 태그\"],\"hdyeZ0\":[\"작업 삭제\"],\"he3ygx\":[\"복사\"],\"heqHpI\":[\"프로젝트 기본 경로\"],\"hg6l4j\":[\"3월\"],\"hgJ0FN\":[\"호스트 필터를 정의하여 검색을 수행\"],\"hgr8eo\":[\"항목\"],\"hgvbYY\":[\"9월\"],\"hhzh14\":[\"이 계정과 연결된 라이선스를 찾을 수 없습니다.\"],\"hi1n6B\":[[\"brandName\"],\"의 작업 관련 설정 업데이트\"],\"hiDMCa\":[\"프로비저닝\"],\"hjsbgA\":[\"추가 변수\"],\"hjwN_s\":[\"리소스 이름\"],\"hlbQEq\":[\"콘텐츠 서명 확인 인증 정보\"],\"hmEecN\":[\"관리 작업\"],\"hmjNLv\":[\"기본 테마\"],\"hty0d5\":[\"월요일\"],\"hvs-Js\":[\"애플리케이션 정보\"],\"i0VMLn\":[\"워크플로우 거부 메시지\"],\"i2izXk\":[\"일정에 규칙이 누락되어 있습니다\"],\"i4_LY_\":[\"쓰기\"],\"i9sC0B\":[\"팀 권한 추가\"],\"iASwqf\":[\"This action will cancel the following job:\"],\"iCFhEl\":[\"소스 전화 번호\"],\"iDNBZe\":[\"알림\"],\"iDWfOR\":[\"하나 이상의 워크플로 승인을 승인하지 못했습니다.\"],\"iDjyID\":[\"인증 정보 세부 정보보기\"],\"iE1s1P\":[\"워크플로우 시작\"],\"iEUzMn\":[\"시스템\"],\"iH8pgl\":[\"뒤로\"],\"iI4bLJ\":[\"마지막 로그인\"],\"iIVceM\":[\"복사 오류\"],\"iJWOeZ\":[\"사용할 수 있는 JSON 없음\"],\"iJiCFw\":[\"그룹 세부 정보\"],\"iLO3nG\":[\"플레이 수\"],\"iMaC2H\":[\"인스턴스 그룹\"],\"iPp22p\":[\"이 일정은 UI에서 지원되지 않는 복잡한 규칙을\\n 사용합니다. 이 일정을 관리하려면 API를 사용하십시오.\"],\"iQdYL_\":[\"스마트 인벤토리 추가\"],\"iRWxmA\":[\"SSL 확인 비활성화\"],\"iTylMl\":[\"템플릿\"],\"iWKCzl\":[\"프로젝트 기본 경로에서 발견된 디렉터리 목록에서 선택합니다. 기본 경로와 playbook 디렉터리를 함께 사용하면 playbook을 찾는 데 사용되는 전체 경로가 제공됩니다.\"],\"iXmHtI\":[\"작업 유형 선택\"],\"iZBwau\":[\"이 단계에는 오류가 포함되어 있습니다.\"],\"i_CDGy\":[\"분기 덮어쓰기 허용\"],\"i_Kv21\":[\"새 소스 만들기\"],\"ifckL-\":[\"행 선택\"],\"ifdViT\":[\"인벤토리 세부 정보보기\"],\"ig0q8s\":[\"이 인벤토리는 이 워크플로우(\",[\"0\"],\") 내의 모든 워크플로 노드에 적용되며, 인벤토리를 요청하는 메시지를 표시합니다.\"],\"inP0J5\":[\"서브스크립션 세부 정보\"],\"isRobC\":[\"새로운\"],\"itlxml\":[\"관리 작업\"],\"ittbfT\":[\"ansible_facts로 검색하는 경우 특수 구문이 필요합니다.\"],\"itu2NQ\":[\"링크 상태 유형\"],\"j1a5f1\":[\"호스트 편집\"],\"j6gqC6\":[\"작업 실행에 사용할 브랜치입니다. 비어 있으면 프로젝트 기본값이 사용됩니다. 프로젝트의 allow_override 필드가 true로 설정된 경우에만 허용됩니다.\"],\"j7zAEo\":[\"워크플로우 상태\"],\"j8QfHv\":[\"호스트 편집\"],\"jAxdt7\":[\"삭제 취소\"],\"jBGh4u\":[\"중첩된 그룹 인벤토리 정의:\"],\"jCVu9g\":[\"Cancel selected job\"],\"jEJtMA\":[\"워크플로우 승인 보류 중\"],\"jEw0Mr\":[\"유효한 URL을 입력하십시오\"],\"jFaaUJ\":[\"캐노티컬\"],\"jGUu_G\":[\"필요한 승인\"],\"jIaeJK\":[\"설문 조사\"],\"jJdwCB\":[\"되돌리기\"],\"jKibyt\":[\"확대/축소 재설정\"],\"jMyq_x\":[\"Workflow Job 1/\",[\"0\"]],\"jaUa4e\":[\"이 데이터는 Tower 소프트웨어의 향후\\n 릴리스를 개선하고 고객 경험과 성공을\\n 간소화하는 데 사용됩니다.\"],\"jc86YO\":[\"시작 시 제한을 입력하라는 메시지를 표시합니다.\"],\"ji-8F7\":[\"현재 다른 리소스에서 이 인증 정보를 사용하고 있습니다. 삭제하시겠습니까?\"],\"jiE6Vn\":[\"조직\"],\"jifz9m\":[\"없음 (한 번 실행)\"],\"jkQOCm\":[\"예외 추가\"],\"jljuYN\":[\"webhook 요청을 수락할 서비스입니다.\"],\"jluR-N\":[\"경고: \",[\"selectedValue\"],\"은(는) \",[\"0\"],\"에 대한 링크이며 해당 링크로 저장됩니다.\"],\"joAQQS\":[\"The inventories will be in a pending status until the final delete is processed.\"],\"jqVo_k\":[\"여기.\"],\"jqzUyM\":[\"사용할 수 없음\"],\"jrkyDn\":[\"플레이 시작됨\"],\"jrsFB3\":[\"출력 탭\"],\"jsz-PY\":[\"알 수 없는 완료일\"],\"jwmkq1\":[\"시스템 인증 정보\"],\"jzD-D6\":[\"건너뛰기 태그는 대규모 playbook이 있고 play 또는 작업의 특정 부분을 건너뛰려는 경우에 유용합니다. 여러 태그를 구분하려면 쉼표를 사용합니다. 태그 사용에 대한 자세한 내용은 설명서를 참조하십시오.\"],\"k020kO\":[\"활동 스트림\"],\"k2dzu3\":[\"UTC에서 만료\"],\"k30JvV\":[\"선택한 카테고리\"],\"k5nHqi\":[\"이 작업 템플릿을 시작할 때 사용할 실행 환경입니다. 확인된 실행 환경은 이 작업 템플릿에 다른 실행 환경을 명시적으로 할당하여 재정의할 수 있습니다.\"],\"k6OGfu\":[\"Select the Ansible collection providing the inventory plugin used to sync from vCenter. The community.vmware collection is deprecated in favor of the newer vmware.vmware collection. The selection is saved as the \\\"plugin\\\" key in the source variables.\"],\"kALwhk\":[\"seconds\"],\"kDWprA\":[\"이러한 인수는 지정된 모듈과 함께 사용됩니다.\"],\"kEhyki\":[\"필드는 값으로 끝납니다.\"],\"kLja4m\":[\"초기자\"],\"kLk5bG\":[\"시작 메시지\"],\"kNUkGV\":[\"검색 유형\"],\"kNfXib\":[\"모듈 이름\"],\"kODvZJ\":[\"이름\"],\"kOVkPY\":[\"인스턴스 전환\"],\"kP-3Hw\":[\"인벤토리로 돌아가기\"],\"kQerRU\":[\"이 필드에는 공백을 포함할 수 없습니다\"],\"kX-GZH\":[\"작업 다시 시작\"],\"kXzl6Z\":[\"소스 변수\"],\"kYDvK4\":[\"파일 포함\"],\"kah1PX\":[\"에서 YAML 예제 보기\"],\"kaux7o\":[\"원격 인벤토리 소스에서 로컬 그룹 및 호스트 덮어쓰기\"],\"kgtWJ0\":[\"이 작업 템플릿이 실행될 인스턴스 그룹을 선택합니다.\"],\"kiMHN-\":[\"시스템 감사\"],\"kjrq_8\":[\"더 많은 정보\"],\"kkDQ8m\":[\"목요일\"],\"kkc8HD\":[[\"brandName\"],\" 애플리케이션에 대한 간편 로그인 활성화\"],\"kpRn7y\":[\"질문 삭제\"],\"kpnWnY\":[\"SCM 개정이 변경되는 프로젝트가 업데이트될 때마다 작업 작업을 실행하기 전에 선택한 소스에서 인벤토리를 새로 고칩니다. 이것은 Ansible 인벤토리 .ini 파일 형식과 같은 정적 콘텐츠를 위한 것입니다.\"],\"ks-HYT\":[\"사용자 권한 추가\"],\"ks71ra\":[\"예외\"],\"kt8V8M\":[\"워크플로우에 사용할 브랜치를 선택합니다.\"],\"ktPOqw\":[\"참조\"],\"kuIbuV\":[\"상태 검사는 실행 노드에서만 실행할 수 있습니다.\"],\"ku__5b\":[\"초\"],\"kyAi7k\":[\"인스턴스\"],\"kyHUFI\":[\"Vault 암호 | \",[\"credId\"]],\"kyfr2I\":[\"이 옵션을 선택하면 이전에 외부 소스에 있었지만 지금은 제거된 모든 호스트와 그룹이 인벤토리에서 제거됩니다. 인벤토리 소스에서 관리하지 않은 호스트와 그룹은 다음에 수동으로 생성된 그룹으로 승격되며, 승격할 수동으로 생성된 그룹이 없는 경우 인벤토리의 기본 「all」 그룹에 남습니다.\"],\"kz7G1W\":[[\"1\"],\"에서 \",[\"0\"],\" 액세스 권한을 삭제하시겠습니까? 이렇게 하면 팀의 모든 구성원에게 영향을 미칩니다.\"],\"l4MzBY\":[[\"update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" 초\"],\"other\":[\"#\",\" 초\"]}]],\"l4k9lc\":[\"첫 번째 노드\"],\"l5XUoS\":[\"Webhook 인증 정보\"],\"l75CjT\":[\"제공됨\"],\"l9ZmWD\":[[\"scm_update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" 초\"],\"other\":[\"#\",\" 초\"]}]],\"lCF0wC\":[\"새로고침\"],\"lJFsGr\":[\"새 인스턴스 그룹 만들기\"],\"lKxoCA\":[\"작업 이벤트 확장\"],\"lM9cbX\":[\"호스트도 해당 그룹의 자녀 중 하나인 경우, 연결 해제 후에도 목록에 그룹이 표시될 수 있습니다. 이 목록에는 호스트가 직간접적으로 연관된 모든 그룹이 표시됩니다.\"],\"lURfHJ\":[\"섹션 축소\"],\"lWkKSO\":[\"분\"],\"lWmv3p\":[\"인벤토리 소스\"],\"lYDyXS\":[\"스마트 인벤토리\"],\"l_jRvf\":[\"플레이북 완료\"],\"lfoFSg\":[\"호스트 삭제\"],\"lgm7y2\":[\"편집\"],\"lgphOX\":[\"예상 값\"],\"lhgU4l\":[\"템플릿을 찾을 수 없습니다.\"],\"lhkaAC\":[\"평가판\"],\"ljGeYw\":[\"일반 사용자\"],\"lk5WJ7\":[\"host-name-\",[\"0\"]],\"lkgIYt\":[\"PagerDuty\"],\"lo-rJO\":[\"팬다운\"],\"ltvmAF\":[\"애플리케이션을 찾을 수 없습니다.\"],\"lu2qW5\":[\"모든\"],\"lucaxq\":[\"로깅 집계기 호스트 및 로깅 집계기 유형을 제공하지 않으면 로그 집계기를 활성화할 수 없습니다.\"],\"luxcrf\":[[\"label\"],\"에 대한 추가 정보\"],\"lyjq5X\":[\"Slack\"],\"m-eV2_\":[\"컨테이너 그룹을 찾을 수 없습니다.\"],\"m16xKo\":[\"추가\"],\"m1tKEz\":[\"시스템 관리자는 모든 리소스에 무제한 액세스할 수 있습니다.\"],\"m2ErDa\":[\"실패\"],\"m3k6kn\":[\"구축된 인벤토리 소스 동기화를 취소하지 못했습니다.\"],\"m5MOUX\":[\"호스트로 돌아가기\"],\"mGJIOu\":[\"이 구성된 인벤토리 입력은\\n 두 카테고리 모두에 대한 그룹을 생성하고\\n 제한(호스트 패턴)을 사용하여 해당 두 그룹의\\n 교집합에 있는 호스트만 반환합니다.\"],\"mNBZ1R\":[\"참고: 이 필드는 원격 이름이 “origin”이라고 가정합니다.\"],\"mOFgdC\":[\"최대\"],\"mPiYpP\":[\"노드 상태 유형\"],\"mSv_7k\":[\"해당 대화로 복귀할 수 있습니다.\"],\"mXRKES\":[\"LDAP4\"],\"mXfNlE\":[\"이 일정에는 필수 설문 조사 값이 없습니다.\"],\"mYGY3B\":[\"날짜\"],\"mZiQNk\":[\"권한 상승: 활성화하면 이 playbook을 관리자로 실행합니다.\"],\"m_tELA\":[\"취소 삭제\"],\"ma7cO9\":[\"그룹 \",[\"0\"],\" 을/를 삭제하지 못했습니다.\"],\"mahPLs\":[\"권한 에스컬레이션 암호\"],\"mcGG2z\":[[\"minutes\"],\" 분 \",[\"seconds\"],\" 초\"],\"mdNruY\":[\"API 토큰\"],\"mgJ1oe\":[\"삭제 확인\"],\"mgjN5u\":[\"인스턴스를 인스턴스 그룹에서 분리하시겠습니까?\"],\"mhg7Av\":[\"애드혹 명령 실행\"],\"mi9ffh\":[\"호스트 세부 정보\"],\"mk4anB\":[\"브라우저 기본값\"],\"mlDUq3\":[\"(사용자 이름)에 의해 수정됨\"],\"mnm1rs\":[\"GitHub 기본값\"],\"moZ0VP\":[\"동기화 상태\"],\"momgZ_\":[\"워크플로우 작업 템플릿의 이름입니다.\"],\"mqAOoN\":[\"Playbook 디렉토리 선택\"],\"n-37ya\":[\"로컬 인증 비활성화 확인\"],\"n-LISx\":[\"워크플로를 저장하는 동안 오류가 발생했습니다.\"],\"n-ZioH\":[\"업데이트된 프로젝트를 가져오는 동안 오류 발생\"],\"n-qmM7\":[\"JSON 형식의 서비스 계정 키를 선택하여 다음 필드를 자동으로 채웁니다.\"],\"n12Go4\":[\"관련 그룹을 로드하지 못했습니다.\"],\"n60kiJ\":[\"*이 필드는 지정된 인증 정보를 사용하여 외부 보안 관리 시스템에서 검색됩니다.\"],\"n6mYYY\":[\"워크플로우 시간 초과 메시지\"],\"n9Idrk\":[\"(상위 10개로 제한)\"],\"n9lz4A\":[\"실패한 작업\"],\"nBAIS_\":[\"이벤트 세부 정보 보기\"],\"nC35Na\":[\"Are you sure you want delete the group below?\"],\"nCU-1E\":[\"프로비저닝 콜백 URL 생성을\\n 활성화합니다. URL을 사용하여 호스트가 \",[\"brandName\"],\"에\\n 연결하고 이 작업 템플릿을 사용하여\\n 구성 업데이트를 요청할 수 있습니다\"],\"nCY9IL\":[\"호스트 건너뜀\"],\"nDjIzD\":[\"프로젝트 세부 정보보기\"],\"nGbNEN\":[\"프로젝트를 최신으로 간주하는 시간(초)입니다. 작업 실행 및 콜백 중에 작업 시스템은 최신 프로젝트 업데이트의 타임스탬프를 평가합니다. 캐시 시간 초과보다 오래된 경우 최신으로 간주되지 않으며 새 프로젝트 업데이트가 수행됩니다.\"],\"nI54lc\":[\"동기화 전에 프로젝트 삭제\"],\"nJPBvA\":[\"파일, 디렉터리 또는 스크립트\"],\"nJTOTZ\":[\"이 조직 내의 작업에 사용할 실행 환경입니다. 실행 환경이 프로젝트, 작업 템플릿 또는 워크플로 수준에서 명시적으로 할당되지 않은 경우 폴백으로 사용됩니다.\"],\"nLGsp4\":[\"이 워크플로우 작업 템플릿에 대한 설문 조사를 활성화합니다.\"],\"nMiE53\":[\"활성화된 변수\"],\"nOhz3x\":[\"로그 아웃\"],\"nPH1Cr\":[\"이러한 실행 환경은 해당 환경에 의존하는 다른 리소스에서 사용할 수 있습니다. 그래도 삭제하시겠습니까?\"],\"nQOwDS\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"dayOfWeek\"]],\"4\":[\"The fourth \",[\"dayOfWeek\"]],\"5\":[\"The fifth \",[\"dayOfWeek\"]],\"one\":[\"The first \",[\"dayOfWeek\"]],\"two\":[\"The second \",[\"dayOfWeek\"]]}]],\"nRXCOn\":[\"실패한 호스트 수\"],\"nSTT11\":[\"다시 시작 위치:\"],\"nTENWI\":[\"서브스크립션 관리로 돌아가기\"],\"nU16mp\":[\"캐시 제한 시간\"],\"nZPX7r\":[\"경고: 저장하지 않은 변경 사항\"],\"nZW6P0\":[\"현지 시간대\"],\"nZYB4j\":[\"사용 가능한 상태 없음\"],\"nZYxse\":[\"그룹에서 호스트를 분리하시겠습니까?\"],\"n_qDNz\":[\"Switch to dark mode\"],\"naCW6Z\":[\"4월\"],\"ncxIQL\":[\"하나 이상의 인스턴스를 연결 해제하지 못했습니다.\"],\"neiOWk\":[\"여기에서 구축된 인벤토리 문서 보기\"],\"nfnm9D\":[\"조직 이름\"],\"ng00aZ\":[\"호스트 필터\"],\"nhxAdQ\":[\"키워드\"],\"nlsWzF\":[\"설문 조사를 추가하십시오.\"],\"nnY7VU\":[\"PagerDuty 하위 도메인\"],\"noGZlf\":[\"캐시 제한 시간 (초)\"],\"npGo-z\":[[\"label\"],\"(으)로 로그인\"],\"nuh_Wq\":[\"Webhook URL\"],\"nvUq8j\":[\"1 (상세 정보)\"],\"nzozOC\":[\"사용자 삭제\"],\"nzr1qE\":[\"파일 업로드가 거부되었습니다. 단일 .json 파일을 선택하십시오.\"],\"o-JPE2\":[\"설문 조사 질문을 찾을 수 없습니다.\"],\"o0RwAq\":[\"GitHub Enterprise로 로그인\"],\"o0x5-R\":[\"이 필드의 값을 선택\"],\"o4NRE0\":[\"고급 검색 값 입력\"],\"o5J6dR\":[\"이 노드를 실행해야 하는 조건을 지정합니다.\"],\"o9R2tO\":[\"SSL 연결\"],\"oABS9f\":[\"이 필드에 값을 제공하거나 시작 시 프롬프트 실행 옵션을 선택합니다.\"],\"oB5EwG\":[\"외부 시크릿 관리 시스템\"],\"oBmCtD\":[\"Are you sure you want delete the groups below?\"],\"oC5JSb\":[\"업데이트된 프로젝트 데이터를 가져오지 못했습니다.\"],\"oCKCYp\":[\"알림이 전송되었습니다.\"],\"oEijQ7\":[\"처음에 대소문자를 구분하지 않는 버전입니다.\"],\"oFtmtl\":[\"Select the inventory containing the hosts\\n you want this job to manage.\"],\"oGKq12\":[\"2개 그룹 구성, 교차로로 제한\"],\"oH1Qle\":[\"이 워크플로우 작업 템플릿의 Webhook URL입니다.\"],\"oHOOxn\":[\"기본적으로 서비스 사용에 대한 분석 데이터를 수집하여 Red Hat에 전송합니다. 서비스에서 수집하는 데이터에는 두 가지 범주가 있습니다. 자세한 내용은 <0>이 Tower 문서 페이지를 참조하십시오. 이 기능을 비활성화하려면 다음 확인란의 선택을 해제하십시오.\"],\"oII7vS\":[\"GitHub 설정\"],\"oKMFX4\":[\"업데이트되지 않음\"],\"oKbBFU\":[\"# source with sync failures.\"],\"oNOjE7\":[\"종료일/시간\"],\"oNZQUQ\":[\"Kubernetes 또는 OpenShift로 인증하는 인증 정보\"],\"oQqtoP\":[\"관리 작업으로 돌아가기\"],\"oRt7Uv\":[[\"interval\"],\" years\"],\"oTDA5P\":[[\"0\",\"plural\",{\"one\":[\"이 인스턴스는 현재 다른 리소스에서 사용 중입니다. 정말 삭제하시겠습니까?\"],\"other\":[\"이 인스턴스의 프로비저닝을 해제하면 이에 의존하는 다른 리소스에 영향을 줄 수 있습니다. 그래도 삭제하시겠습니까?\"]}]],\"oWvSIB\":[\"보낸 사람 이메일\"],\"oX_mCH\":[\"프로젝트 동기화 오류\"],\"oZvDsd\":[[\"interval\"],\" hours\"],\"ocUvR-\":[\"False\"],\"ofO19Q\":[\"GitHub Enterprise 팀으로 로그인\"],\"ofcQVG\":[\"저장되지 않은 변경 사항 모달\"],\"olEUh2\":[\"성공\"],\"opS--k\":[\"인스턴스 그룹으로 돌아가기\"],\"orh4t6\":[\"호스트 확인\"],\"osCeRO\":[\"Azure AD 설정 보기\"],\"ot7qsv\":[\"모든 필터 지우기\"],\"ovBPCi\":[\"기본값\"],\"owBGkJ\":[\"종료가 예상 값과 일치하지 않음 (\",[\"0\"],\")\"],\"owQ8JH\":[\"인스턴스 그룹 추가\"],\"ozbhWy\":[\"삭제 오류\"],\"p-nfFx\":[\"여기에 파일을 드래그하거나 업로드할 파일을 찾습니다.\"],\"p-ngUo\":[\"팔로우 취소\"],\"p-pp9U\":[\"string\"],\"p2LEhJ\":[\"개인 액세스 토큰\"],\"p2_GCq\":[\"암호 확인\"],\"p3PM8G\":[\"첫 번째 노드에서 다시 시작\"],\"p6-JME\":[\"첫 번째는 모든 참조를 가져옵니다. 두 번째는 Github 풀 요청 번호 62를 가져옵니다. 이 예제에서 브랜치는 “pull/62/head”여야 합니다.\"],\"pAtylB\":[\"찾을 수 없음\"],\"pCCQER\":[\"전역적으로 사용 가능\"],\"pH8j40\":[\"이전에 삭제된 활성 호스트\"],\"pHyx6k\":[\"다중 선택(단일 선택)\"],\"pKQcta\":[\"Pod 사양 사용자 정의\"],\"pOJNDA\":[\"커맨드\"],\"pOd3wA\":[\"'Enter'를 눌러 더 많은 답변 선택 사항을 추가합니다. 행당 하나의 응답 선택.\"],\"pOhwkU\":[\"이 작업은 \",[\"0\"],\" 에서 다음 역할의 연결을 해제합니다.\"],\"pRZ6hs\":[\"실행\"],\"pSypIG\":[\"설명 표시\"],\"pYENvg\":[\"인증 권한 부여 유형\"],\"pZJ0-s\":[\"이 그룹에서 동시에 실행되는 모든 작업에서 허용되는 최대 포크 수입니다. 0은 제한이 적용되지 않음을 의미합니다.\"],\"pa1SrG\":[[\"interval\"],\" days\"],\"peCAyQ\":[\"RADIUS 설정 보기\"],\"pfw0Wr\":[\"전체\"],\"pguZh2\":[\"jinja2 표현식에서 변수를 생성합니다. 정의한 구성된\\n 그룹에 예상 호스트가 포함되어 있지 않은 경우 유용할 수\\n 있습니다. 표현식에서 hostvars를 추가하여 해당 표현식의\\n 결과 값이 무엇인지 알 수 있도록 사용할 수 있습니다.\"],\"phTgAm\":[\"시스템 팩트를 채우려면 `gather_facts: true`가\\n 있는 인벤토리에 대해 playbook을 실행해야 하기 때문에\\n Ansible 팩트에 대한 인벤토리의 사양을 제공하기가\\n 어렵습니다. 실제 팩트는 시스템마다\\n 다릅니다.\"],\"pkY73W\":[\"Rocket.Chat\"],\"pn7Xy3\":[\"Django 참조\"],\"poMgBa\":[\"시작 시 SCM 브랜치를 입력하라는 메시지를 표시합니다.\"],\"ppcQy0\":[\"zoom을 100% 및 센터 그래프로 설정\"],\"prydaE\":[\"프로젝트 동기화 실패\"],\"pw2VDK\":[[\"month\"],\"의 마지막 \",[\"weekday\"]],\"q-Uk_P\":[\"하나 이상의 인증 정보 유형을 삭제하지 못했습니다.\"],\"q-hNag\":[\"컬렉션\"],\"q45OlW\":[\"리전\"],\"q5tQBE\":[\"관련 검색 필드 퍼지 검색에 대해 설정 유형 비활성화\"],\"q67y3T\":[\"알림 템플릿을 찾을 수 없습니다.\"],\"qAlZNb\":[\"다음 워크플로 승인에 대해 조치를 취할 수 없습니다: \",[\"itemsUnableToDeny\"]],\"qCUUnr\":[\"남아 있는 호스트가 없음\"],\"qChjCy\":[\"첫 번째 실행\"],\"qD-pvR\":[\"대시보드 ID (선택 사항)\"],\"qEMgTP\":[\"인벤토리 소스 동기화 오류\"],\"qJK-de\":[\"OIDC로 로그인\"],\"qS0GhO\":[\"실행 환경이 없습니다\"],\"qSSVmd\":[\"대상 채널 또는 사용자\"],\"qSSg1L\":[\"사용 가능한 노드에 대한 링크\"],\"qWD0iN\":[\"이 데이터는 소프트웨어의 향후 릴리스를 개선하고\\n Automation Analytics를 제공하는 데\\n 사용됩니다.\"],\"qXRYa2\":[\"분기에서 하위 모듈의 최신 커밋 추적\"],\"qYkrfg\":[\"프로비저닝 호출 세부 정보\"],\"qZ2MTC\":[\"다음은 \",[\"brandName\"],\"에서 명령 실행을 지원하는 모듈입니다.\"],\"qgjtIt\":[\"통합\"],\"qlhQw_\":[\"인벤토리 동기화\"],\"qliDbL\":[\"원격 아카이브\"],\"qlwLcm\":[\"문제 해결\"],\"qmBmJJ\":[\"이는 클라이언트 시크릿이 표시되는 유일한 시간입니다.\"],\"qmYgP7\":[\"승인됨\"],\"qqeAJM\":[\"없음\"],\"qtFFSS\":[\"시작 시 버전 업데이트\"],\"qtaMu8\":[\"인벤토리(이름)\"],\"qvCD_i\":[\"예제는 다음과 같습니다.\"],\"qwaCoN\":[\"소스 제어 업데이트\"],\"qxZ5RX\":[\"호스트\"],\"qznBkw\":[\"워크플로우 링크 모달\"],\"r6Aglb\":[\"JSON 또는 YAML 구문을 사용하여 인젝터를 입력합니다. 구문 예제는 Ansible Controller 설명서를 참조하십시오.\"],\"r6y-jM\":[\"경고\"],\"r6zgGo\":[\"12월\"],\"r8ojWq\":[\"제거 확인\"],\"r8oq0Y\":[\"지난 24 시간\"],\"rBdPPP\":[[\"name\"],\" 을/를 삭제하지 못했습니다.\"],\"rE95l8\":[\"클라이언트 유형\"],\"rG3WVm\":[\"선택\"],\"rHK_Sg\":[\"사용자 지정 가상 환경 \",[\"virtualEnvironment\"],\" 은 실행 환경으로 교체해야 합니다. 실행 환경으로 마이그레이션하는 방법에 대한 자세한 내용은 해당 <0>문서를 참조하십시오.\"],\"rK7UBZ\":[\"모든 호스트 다시 시작\"],\"rKS_55\":[\"팩트 스토리지: 활성화하면 수집된 팩트를 저장하여 호스트 수준에서 볼 수 있습니다. 팩트는 유지되며 런타임에 팩트 캐시에 삽입됩니다.\"],\"rKTFNB\":[\"인증 정보 유형 삭제\"],\"rLznGJ\":[\"승인이 생성될 때 업스트림 set_stats 아티팩트로 렌더링되는 Jinja2 템플릿입니다. 이를 사용하여 이전 작업 단계의 관련 컨텍스트를 승인자에게 표시합니다. 사용 가능한 변수는 부모 노드의 set_stats 데이터에서 가져옵니다.\"],\"rMrKOB\":[\"프로젝트를 동기화하지 못했습니다.\"],\"rOZRCa\":[\"워크플로우 링크\"],\"rSYkIY\":[\"이 필드는 숫자여야 합니다\"],\"rXhu41\":[\"2 (디버그)\"],\"rYHzDr\":[\"페이지당 항목\"],\"r_IfWZ\":[\"인벤토리 편집\"],\"rdUucN\":[\"미리보기\"],\"rfYaVc\":[\"응답 변수 이름\"],\"rfpIXM\":[\"시작 시 인스턴스 그룹을 입력하라는 메시지를 표시합니다.\"],\"rfx2oA\":[\"워크플로우 보류 메시지 본문\"],\"riBcU5\":[\"IRC 닉네임\"],\"rjVfy3\":[\"워크플로우 문서\"],\"rjyWPb\":[\"1월\"],\"rmb2GE\":[[\"0\"],\" 님이 거부함 - \",[\"1\"]],\"rmt9Tu\":[\"총 호스트\"],\"ruhGSG\":[\"인벤토리 소스 동기화 취소\"],\"rvia3m\":[\"기타 인증\"],\"rw1pRJ\":[\"번들 다운로드\"],\"rwWNpy\":[\"인벤토리\"],\"s-MGs7\":[\"리소스\"],\"s2xYUy\":[\"원격 인벤토리 소스에서 로컬 변수 덮어쓰기\"],\"s3KtlK\":[\"이 일정에는 선택한 예외로 인해 발생하지 않습니다.\"],\"s4Qnj2\":[\"실행 환경\"],\"s4fge-\":[\"지난 한 달\"],\"s5aIEB\":[\"워크플로우 작업 템플릿 삭제\"],\"s5mACA\":[\"인스턴스 세부 정보\"],\"s5r5nt\":[[\"0\",\"plural\",{\"one\":[\"이 인스턴스 그룹은 현재 다른 리소스에서 사용 중입니다. 삭제하시겠습니까?\"],\"other\":[\"이러한 인스턴스 그룹을 삭제하면 이에 의존하는 다른 리소스에 영향을 줄 수 있습니다. 그래도 삭제하시겠습니까?\"]}]],\"s6F6Ks\":[\"이 작업에 대한 출력을 찾을 수 없습니다.\"],\"s70SJY\":[\"로깅 설정\"],\"s8hQty\":[\"모든 작업 보기.\"],\"s9EKbs\":[\"SSL 확인 비활성화\"],\"sAz1tZ\":[\"연결 해제 확인\"],\"sBJ5MF\":[\"소스\"],\"sCEb_0\":[\"모든 인벤토리 호스트 보기\"],\"sGodAp\":[\"Pod 사양 덮어쓰기\"],\"sMDRa_\":[\"그룹으로 돌아가기\"],\"sOMf4x\":[\"최근 템플릿\"],\"sSFxX6\":[\"작업 시작 시 버전 업데이트\"],\"sTkKoT\":[\"거부할 행 선택\"],\"sUyFTB\":[\"대시보드로 리디렉션\"],\"sV3kNp\":[\"이 인스턴스 그룹은 현재 다른 리소스에 의해 있습니다. 삭제하시겠습니까?\"],\"sVh4-e\":[\"이 링크 삭제\"],\"sW5OjU\":[\"필수\"],\"sZif4m\":[\"관련 그룹을 분리하시겠습니까?\"],\"s_XkZs\":[\"시작\"],\"s_r4Az\":[\"이 필드는 정수여야 합니다\"],\"sesAIn\":[\"작업이 시작, 성공 또는 실패할 때 전송되는\\n 알림의 내용을 변경하려면 사용자 정의 메시지를 사용합니다. 작업에 대한\\n 정보에 액세스하려면 중괄호를 사용합니다:\"],\"sgRZMG\":[\"하이브리드 노드\"],\"siJgSI\":[\"사용자를 찾을 수 없음\"],\"sjMCOP\":[\"최종 업데이트\"],\"sjVfrA\":[\"명령\"],\"smFRaX\":[\"작업이 이미 시작되었습니다\"],\"sqMsvU\":[[\"0\",\"plural\",{\"one\":[\"#\",\" 개 소스에서 동기화 실패.\"],\"other\":[\"#\",\" 개 소스에서 동기화 실패.\"]}]],\"sr4LMa\":[\"인벤토리 소스\"],\"svR3aM\":[\"OpenStack\"],\"svy2x9\":[\"이 필터 또는 다른 필터를 만족하는 결과를 반환합니다.\"],\"sxkWRg\":[\"고급\"],\"syupn5\":[\"브랜드 이미지\"],\"syyeb9\":[\"첫 번째\"],\"t-R8-P\":[\"실행\"],\"t2q1xO\":[\"일정 편집\"],\"t4v_7X\":[\"노드 유형 선택\"],\"t9QlBd\":[\"11월\"],\"tRm9qR\":[\"태그는 대규모 playbook이 있고 play 또는 작업의 특정 부분을 실행하려는 경우에 유용합니다. 여러 태그를 구분하려면 쉼표를 사용합니다. 태그 사용에 대한 자세한 내용은 설명서를 참조하십시오.\"],\"tVEot_\":[[\"0\",\"plural\",{\"one\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"other\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"]}]],\"tXkhj_\":[\"시작\"],\"t_YqKh\":[\"제거\"],\"tbSVlt\":[\"사용자 액세스 제거\"],\"tfDRzk\":[\"저장\"],\"tfh2eq\":[\"이 노드에 대한 새 링크를 생성하려면 클릭합니다.\"],\"tgPwON\":[\"연산자\"],\"tgSBSE\":[\"링크 제거\"],\"tgWuMB\":[\"수정됨\"],\"thJljW\":[\"경고: \"],\"toJdZA\":[\"Reorder\"],\"tpCmSt\":[\"policy rules.\"],\"tqlcfo\":[\"프로비저닝 해제 중\"],\"trjiIV\":[\"동료를 연결하지 못했습니다.\"],\"tst44n\":[\"이벤트\"],\"twE5a9\":[\"인증 정보를 삭제하지 못했습니다.\"],\"txNbrI\":[\"소스 제어 분기\"],\"ty2DZX\":[\"이 조직은 현재 다른 리소스에서 사용 중입니다. 삭제하시겠습니까?\"],\"tzgOKK\":[\"이 작업은 이미 수행되었습니다.\"],\"u-sh8m\":[\"/ (프로젝트 root)\"],\"u4ex5r\":[\"7월\"],\"u4n8Fm\":[\"동료를 제거하지 못했습니다.\"],\"u4x6Jy\":[\"작업으로 돌아가기\"],\"u5AJST\":[\"플레이북을 실행하는 동안 사용할 병렬 또는 동시 프로세스 수입니다. 값을 입력하지 않으면 ansible 구성 파일에서 기본값을 사용합니다. 자세한 정보를 참조하십시오.\"],\"u7f6WK\":[\"모든 워크플로우 승인 보기.\"],\"u84wS1\":[\"작업 취소 오류\"],\"uAQUqI\":[\"상태\"],\"uAhZbx\":[\"실패가 있는 재고 소스\"],\"uCjD1h\":[\"세션이 만료되었습니다. 세션이 만료되기 전의 위치에서 계속하려면 로그인하십시오.\"],\"uImfEm\":[\"워크플로우 보류 메시지\"],\"uJz8NJ\":[\"작업이 실행되는 동안 검색이 비활성화됩니다.\"],\"uPRp5U\":[\"검색 취소\"],\"uTDtiS\":[\"다섯 번째\"],\"uUehLT\":[\"대기 중\"],\"uVu1Yt\":[\"설정 유형 선택\"],\"uYtvvN\":[\"실행 환경을 편집하기 전에 프로젝트를 선택합니다.\"],\"ucSTeu\":[\"(사용자 이름)에 의해 생성됨\"],\"ucgZ0o\":[\"조직\"],\"ugZpot\":[\"외부 자격 증명 테스트\"],\"ulRNXw\":[\"Dragging cancelled. List is unchanged.\"],\"upC07l\":[\"Survey Disabled\"],\"uuPCEU\":[\"If you want the Inventory Source to update on launch , click on Update on Launch, and also go to \"],\"uyJsf6\":[\"정보\"],\"uzTiFQ\":[\"일정으로 돌아가기\"],\"v-CZEv\":[\"시작 시 프롬프트\"],\"v-EbDj\":[\"문제 해결 설정\"],\"v-M-LP\":[\"템플릿 시작\"],\"v0urVb\":[\"서브스크립션이 없는 경우 Red Hat을\\n 방문하여 평가판 서브스크립션을 받을 수 있습니다.\"],\"v1kQyJ\":[\"Webhook\"],\"v2dMHj\":[\"호스트 매개변수를 사용하여 다시 시작\"],\"v2gmVS\":[\"이 작업은 다음을 부드럽게 삭제합니다.\"],\"v45yUL\":[\"연결 해제\"],\"v7vAuj\":[\"총 작업\"],\"vCS_TJ\":[\"인벤토리 소스 \",[\"name\"],\" 삭제에 실패했습니다.\"],\"vEr6TL\":[\"이러한 인수는 지정된 모듈과 함께 사용됩니다. \",[\"0\"],\"에 대한 정보는 다음을 클릭하여 찾을 수 있습니다: \"],\"vF82C6\":[\"부모 노드가 성공하면 실행됩니다.\"],\"vFKI2e\":[\"일정 규칙\"],\"vFVhzc\":[\"SOCIAL\"],\"vGVmd5\":[\"활성화된 변수가 설정되지 않은 경우 이 필드는 무시됩니다. 사용 가능한 변수가 이 값과 일치하면 호스트는 가져오기에서 활성화됩니다.\"],\"vGjmyl\":[\"삭제됨\"],\"vHAaZi\":[\"모두 건너뛰기\"],\"vIb3RK\":[\"새 일정 만들기\"],\"vKRQJB\":[\"사용자 정의 Kubernetes 또는 OpenShift Pod 사양을 전달하는 필드입니다.\"],\"vLyv1R\":[\"숨기기\"],\"vPrMqH\":[\"버전 #\"],\"vQHUI6\":[\"이 옵션을 선택하면 하위 그룹 및 호스트에 대한 모든 변수가 제거되고 외부 소스에 있는 변수로 대체됩니다.\"],\"vTL8gi\":[\"종료 시간\"],\"vUOn9d\":[\"돌아가기\"],\"vYFWsi\":[\"팀 선택\"],\"vYuE8q\":[\"작업이 실행되는 데 경과된 시간\"],\"vZbIkJ\":[\"GitLab\"],\"vcH-SH\":[\"Bitbucket 데이터 센터\"],\"ve_jRy\":[\"조건부\"],\"vgwVkd\":[\"UTC\"],\"vlHGDw\":[\"추가 명령줄 변수를 playbook에 전달합니다. 이것은 ansible-playbook의 -e 또는 --extra-vars 명령줄 매개변수입니다. YAML 또는 JSON을 사용하여 키/값 쌍을 제공합니다. 구문 예제는 설명서를 참조하십시오.\"],\"voRH7M\":[\"예:\"],\"vq1XXv\":[\"적용된 필터를 사용하여 새 스마트 인벤토리 만들기\"],\"vq2WxD\":[\"화요일\"],\"vq9gg6\":[\"다음 워크플로 승인에 대해 조치를 취할 수 없습니다: \",[\"itemsUnableToApprove\"]],\"vqAmQC\":[\"모듈\"],\"vvY8pz\":[\"시작 시 건너뛸 태그를 입력하라는 메시지를 표시합니다.\"],\"vye-ip\":[\"시작 시 시간 초과를 입력하라는 메시지를 표시합니다.\"],\"vzsN_5\":[[\"interval\"],\" day\"],\"w07pgp\":[\"시작 시 상세 정보 수준을 입력하라는 메시지를 표시합니다.\"],\"w0kTk8\":[\"실패한 노드에서 다시 시작\"],\"w14eW4\":[\"모든 토큰 보기\"],\"w1RiT6\":[[\"0\",\"plural\",{\"one\":[\"이 인벤토리 소스는 현재 이에 의존하는 다른 리소스에서 사용 중입니다. 삭제하시겠습니까?\"],\"other\":[\"이러한 인벤토리 소스를 삭제하면 이에 의존하는 다른 리소스에 영향을 줄 수 있습니다. 그래도 삭제하시겠습니까?\"]}]],\"w2VTLB\":[\"비교 값보다 적습니다.\"],\"w3EE8S\":[\"자동화된 호스트\"],\"w4j7js\":[\"팀 세부 정보 보기\"],\"w6zx64\":[\"브라우저 기본값 사용\"],\"wCnaTT\":[\"필드를 새 값으로 교체\"],\"wF-BAU\":[\"인벤토리 추가\"],\"wFnb77\":[\"인벤토리 ID\"],\"wKEfMu\":[\"이벤트 처리가 완료되었습니다.\"],\"wO29qX\":[\"조직을 찾을 수 없습니다.\"],\"wW08QA\":[\"같지 않음\"],\"wX6sAX\":[\"지난 2년\"],\"wXAVe-\":[\"모듈 인수\"],\"wXB7k5\":[\"알림 색상을 지정합니다. 사용 가능한 색상은 16진수\\n 색상 코드입니다(예: #3af 또는 #789abc).\"],\"waFx9W\":[\"관리됨\"],\"wdxz7K\":[\"소스\"],\"wgNoIs\":[\"모두 선택\"],\"wkgHlv\":[\"새 노드 추가\"],\"wlQNTg\":[\"멤버\"],\"wnizTi\":[\"서브스크립션 선택\"],\"wpT1VN\":[\"조건\"],\"wpt6vB\":[\"LDAP2\"],\"wqXiR2\":[\"추가 명령줄 변경 사항을 전달합니다. 두 개의 ansible 명령줄 매개 변수가 있습니다: \"],\"wsggVq\":[\"선택하지 않으면 외부 소스에서 찾을 수 없는 로컬 하위 호스트 및 그룹이 인벤토리 업데이트 프로세스에 의해 그대로 유지됩니다.\"],\"x-a4Mr\":[\"Webhook 인증 정보\"],\"x02hbg\":[\"프로비저닝 콜백: 프로비저닝 콜백 URL 생성을 활성화합니다. 이 URL을 사용하여 호스트는 Ansible AWX에 연결하고 이 작업 템플릿을 사용하여 구성 업데이트를 요청할 수 있습니다.\"],\"x4Xp3c\":[\"업데이트됨\"],\"x5DnMs\":[\"마지막으로 변경된 사항\"],\"x6_dAC\":[\"페더레이션 인벤토리\"],\"x6oT_o\":[\"사용 가능한 호스트\"],\"x7PDL5\":[\"로깅\"],\"x8uKc7\":[\"인스턴스 상태\"],\"x9WS62\":[\"취소 \",[\"0\"]],\"xAYSEs\":[\"시작 시간\"],\"xAqth4\":[\"Google OAuth 2 설정 보기\"],\"xC9EVu\":[\"취소된 노드\"],\"xCJdfg\":[\"지우기\"],\"xDr_ct\":[\"종료\"],\"xESTou\":[\"작업을 삭제하지 못했습니다.\"],\"xF5tnT\":[\"Vault 암호\"],\"xGQZwx\":[\"컨테이너 그룹 추가\"],\"xGVfLh\":[\"계속\"],\"xHZS6u\":[\"성공적인 작업\"],\"xHokxV\":[[\"0\",\"plural\",{\"one\":[\"The selected job cannot be deleted due to insufficient permission or a running job status\"],\"other\":[\"The selected jobs cannot be deleted due to insufficient permissions or a running job status\"]}]],\"xHt036\":[\"개인 액세스 토큰\"],\"xKQRBr\":[\"최대 길이\"],\"xM01Pk\":[\"기본 응답\"],\"xONDaO\":[\"Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?\"],\"xOl1yT\":[\"이름 필드에 대한 정확한 검색.\"],\"xPO5w7\":[\"GitHub로 로그인\"],\"xPpkbX\":[\"Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway\"],\"xPxMOJ\":[\"유효하지 않은 시간 형식입니다\"],\"xQioPk\":[\"여러 명의 부모가 있을 때 이 노드를 실행하기 위한 전제 조건\"],\"xSytdh\":[\"완료:\"],\"xUhTCP\":[\"소스 선택\"],\"xVhQZV\":[\"금요일\"],\"xY9DEq\":[\"인벤토리의 호스트를 대상으로 지정하는 데 사용되는 패턴입니다. 필드를 비워두면 all 및 *는 인벤토리의 모든 호스트를 대상으로 합니다. Ansible의 호스트 패턴에 대한 자세한 정보를 찾을 수 있습니다.\"],\"xY9s5E\":[\"시간 초과\"],\"x_Ej3K\":[\"사용자에게 표시할 프롬프트로 원하는 답변 유형 또는 형식을 선택하세요.\\n 각 옵션에 대한 추가 정보는 Ascender 설명서를 참조하세요.\"],\"x_ugm_\":[\"총 그룹\"],\"xa7N9Z\":[\"로그인 리디렉션 덮어쓰기 URL 편집\"],\"xcaG5l\":[\"워크플로우 편집\"],\"xd2LI3\":[[\"0\"],\"에 만료됨\"],\"xdA_-p\":[\"툴\"],\"xe5RvT\":[\"YAML 탭\"],\"xefC7k\":[\"IRC 서버 포트\"],\"xeiujy\":[\"텍스트\"],\"xg771-\":[\"LDAP1\"],\"xhj1Rt\":[\"요청하신 페이지를 찾을 수 없습니다.\"],\"xi4nE2\":[\"오류 메시지\"],\"xnSIXG\":[\"하나 이상의 호스트를 삭제하지 못했습니다.\"],\"xoCdYY\":[\"지정된 필드의 값이 제공된 목록에 있는지 확인합니다. 쉼표로 구분된 항목 목록이 있어야 합니다.\"],\"xoXoBo\":[\"오류 삭제\"],\"xrG8k4\":[\"Google Compute Engine\"],\"xtRU96\":[\"GitHub Enterprise 조직\"],\"xuYTJb\":[\"작업 템플릿을 삭제하지 못했습니다.\"],\"xw06rt\":[\"설정이 기본 설정과 일치합니다.\"],\"xxTtJH\":[\"호스트 이름과 일치하는 정규 표현식을 가져옵니다. 필터는 인벤토리 플러그인 필터를 적용한 후 사후 처리 단계로 적용됩니다.\"],\"y11WBZ\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"선택한 작업 취소\"],\"other\":[\"선택한 작업 취소\"]}]],\"y8ibKI\":[\"인스턴스 제거\"],\"yCCaoF\":[\"인스턴스를 업데이트하지 못했습니다.\"],\"yDeNnS\":[\"새 인벤토리 생성\"],\"yDifzB\":[\"선택 확인\"],\"yGS9cI\":[\"상태 양호\"],\"yGUKlf\":[\"관리 작업\"],\"yGfW7Y\":[\"이 위치를 변경하려면 \",[\"brandName\"],\"을(를) 배포할 때 PROJECTS_ROOT를 변경하십시오.\"],\"yMIahh\":[\"Red Hat Ansible Automation Platform에 오신 것을 환영합니다!\\n 서브스크립션을 활성화하려면 아래 단계를 완료하십시오.\"],\"yMYuDg\":[\"Automation Controller 버전\"],\"yMfU4O\":[\"보낸 사람 이메일\"],\"yNcGa2\":[\"액세스 토큰 만료\"],\"yOXgbH\":[\"참고: GitHub 또는 Bitbucket에 SSH 프로토콜을 사용하는 경우 SSH 키만 입력하고 (git 이외의) 사용자 이름은 입력하지 마십시오. 또한 GitHub와 Bitbucket은 SSH 사용 시 암호 인증을 지원하지 않습니다. 읽기 전용 GIT 프로토콜(git://)은 사용자 이름 또는 암호 정보를 사용하지 않습니다.\"],\"yQE2r9\":[\"로딩 중\"],\"yRiHPB\":[\"이 목록을 채우려면 작업을 실행하십시오.\"],\"yRkqG9\":[\"제한\"],\"yRsSBw\":[\"승인\"],\"yUlffE\":[\"다시 시작\"],\"yVgnJA\":[\"이 조직에서 관리할 수 있는 최대 호스트 수입니다.\\n 값은 기본적으로 0이며 이는 제한이 없음을 의미합니다. 자세한 내용은 Ansible\\n 설명서를 참조하십시오.\"],\"yX3qAQ\":[\"워크플로우 작업 템플릿 노드\"],\"yaG1CX\":[\"LDAP\"],\"yaX9sM\":[\"워크플로우 템플릿\"],\"yb_fjw\":[\"승인\"],\"ydoZpB\":[\"팀을 찾을 수 없음\"],\"ydw9CW\":[\"실패한 호스트\"],\"yfG3F2\":[\"직접 키\"],\"yjwMJ8\":[\"호스트가 자동화한 횟수\"],\"yjyGja\":[\"입력 확장\"],\"ylXj1N\":[\"선택됨\"],\"yq6OqI\":[\"토큰 값과 연결된 새로 고침 토큰 값이 표시되는 유일한 시간입니다.\"],\"yqiwAW\":[\"워크플로우 취소\"],\"yrUyDQ\":[\"이 인스턴스의 현재 라이프사이클 단계를 설정합니다. 기본값은 \\\"설치됨\\\"입니다.\"],\"yrwl2P\":[\"준수\"],\"yuXsFE\":[\"하나 이상의 워크플로우 승인을 삭제하지 못했습니다.\"],\"yuvDX_\":[[\"intervalValue\",\"plural\",{\"one\":[\"month\"],\"other\":[\"months\"]}]],\"ywSBEn\":[\"역할 연결 오류\"],\"yxDqcD\":[\"인증 코드 만료\"],\"yy1cWw\":[\"메시지 사용자 정의...\"],\"yz7wBu\":[\"닫기\"],\"yzQhLU\":[\"정책 인스턴스 최소\"],\"yzdDia\":[\"설문 조사 삭제\"],\"z-BNGk\":[\"사용자 토큰 삭제\"],\"z0DcIS\":[\"암호화\"],\"z3XA1I\":[\"호스트 재시도\"],\"z409y8\":[\"Webhook 서비스\"],\"z7NLxJ\":[\"이 특정 사용자에 대한 액세스 권한만 제거하려면 팀에서 제거하십시오.\"],\"z8mwbl\":[\"새 인스턴스가 온라인 상태가 되면 이 그룹에 자동으로 할당되는 모든 인스턴스의 최소 비율입니다.\"],\"zBO1TV\":[[\"numOccurrences\",\"plural\",{\"one\":[\"#\",\" 회 발생 후\"],\"other\":[\"#\",\" 회 발생 후\"]}]],\"zHcXAG\":[\"이 필드를 비워 두고 실행 환경을 전역적으로 사용할 수 있도록 합니다.\"],\"zICM7E\":[\"동기화 전에 로컬 변경 사항 삭제\"],\"zJY4Uj\":[\"Playbook\"],\"zKJMiH\":[\"플레이북 디렉토리\"],\"zK_63z\":[\"사용자 이름 또는 암호가 잘못되었습니다. 다시 시도하십시오.\"],\"zLsDix\":[\"LDAP 사용자\"],\"zMKkOk\":[\"조직으로 돌아가기\"],\"zN0nhk\":[\"Automation Analytics를 활성화하려면 Red Hat 또는 Red Hat Satellite 인증 정보를 제공합니다.\"],\"zQRgi-\":[\"알림 시작 전환\"],\"zTediT\":[\"이 필드는 숫자여야 하며 \",[\"min\"],\"과(와) \",[\"max\"],\" 사이의 값이어야 합니다\"],\"zUIPys\":[\"Jinja2 조건에 따라 호스트를 그룹에 추가하세요.\"],\"z_PZxu\":[\"워크플로우 승인을 삭제하지 못했습니다.\"],\"zbLCH1\":[\"인벤토리 유형\"],\"zcQj5X\":[\"먼저 키 선택\"],\"zdl7YZ\":[\"소스 경로 선택\"],\"zeEQd_\":[\"6월\"],\"zf7FzC\":[\"Kubernetes 또는 OpenShift로 인증하는 인증 정보입니다. \\\"Kubernetes/OpenShift API Bearer Token\\\" 유형이어야 합니다. 정보를 입력하지 않는 경우 기본 Pod의 서비스 계정이 사용됩니다.\"],\"zfZydd\":[\"설문 조사 프리뷰 모달\"],\"zfsBaJ\":[\"Automation Analytics에 대해 자세히 알아보기\"],\"zgInnV\":[\"워크플로우 노드 보기 모달\"],\"zga9sT\":[\"OK\"],\"zhPLvU\":[\"연결에 실패했습니다.\"],\"zhrjek\":[\"그룹\"],\"zi_YNm\":[[\"0\"],\" 취소 실패\"],\"zmu4-P\":[\"계정 SID\"],\"znG7ed\":[\"Playbook 선택\"],\"znTz5r\":[\"스케줄을 찾을 수 없습니다.\"],\"znuW_M\":[\"예인 경우 잘못된 항목을 치명적인 오류로 처리하고, 그렇지 않으면 건너뛰고\\n 계속합니다.\"],\"zq0gmb\":[\"기간 선택\"],\"ztOzCj\":[\"시작 시 업데이트\"],\"ztw2L3\":[\"하나 이상의 입력에 값이 있어야 합니다\"],\"zvfXp0\":[\"알림 승인 전환\"],\"zx4BuL\":[\"주\"],\"zzDlyQ\":[\"성공\"],\"{count, plural, one {# fork} other {# forks}}\":[[\"count\",\"plural\",{\"one\":[\"#\",\" fork\"],\"other\":[\"#\",\" forks\"]}]]}")}; \ No newline at end of file diff --git a/awx/ui/src/locales/ko/messages.po b/awx/ui/src/locales/ko/messages.po index 4fb39a34..298e5d4c 100644 --- a/awx/ui/src/locales/ko/messages.po +++ b/awx/ui/src/locales/ko/messages.po @@ -57,7 +57,7 @@ msgid "TACACS+" msgstr "TACACS+" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:637 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:232 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:251 msgid "Workflow timed out message body" msgstr "워크플로우 시간 초과 메시지 본문" @@ -115,6 +115,10 @@ msgstr "이 명령을 실행할 실행 환경을 선택합니다." msgid "Add a new node between these two nodes" msgstr "두 노드 사이에 새 노드 추가" +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:170 +msgid "Changed message" +msgstr "변경 메시지" + #: screens/Job/JobOutput/JobOutputSearch.js:120 msgid "Host Polling" msgstr "호스트 폴링" @@ -148,7 +152,7 @@ msgid "Maximum number of forks to allow across all jobs running concurrently on msgstr "이 그룹에서 동시에 실행되는 모든 작업에서 허용되는 최대 포크 수입니다.\n" " 0은 제한이 적용되지 않음을 의미합니다." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:341 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:349 #: screens/Inventory/InventorySources/InventorySourceListItem.js:89 msgid "Failed to cancel Inventory Source Sync" msgstr "인벤토리 소스 동기화를 취소하지 못했습니다." @@ -332,8 +336,8 @@ msgstr "체크아웃할 브랜치입니다. 브랜치 외에도 태그, 커밋 #: components/JobList/JobList.js:265 #: components/JobList/JobListItem.js:109 #: components/Lookup/ProjectLookup.js:134 -#: components/NotificationList/NotificationList.js:219 -#: components/NotificationList/NotificationListItem.js:34 +#: components/NotificationList/NotificationList.js:230 +#: components/NotificationList/NotificationListItem.js:36 #: components/PromptDetail/PromptDetail.js:125 #: components/RelatedTemplateList/RelatedTemplateList.js:200 #: components/TemplateList/TemplateList.js:219 @@ -433,7 +437,7 @@ msgstr "작업 세부 정보를 보려면 클릭합니다." msgid "Sync Project" msgstr "동기화 프로젝트" -#: components/NotificationList/NotificationList.js:194 +#: components/NotificationList/NotificationList.js:205 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:135 msgid "Grafana" msgstr "Grafana" @@ -513,7 +517,7 @@ msgstr "이벤트" msgid "Repeat Frequency" msgstr "반복 빈도" -#: screens/Inventory/shared/Inventory.helptext.js:171 +#: screens/Inventory/shared/Inventory.helptext.js:172 msgid "Variables used to configure the constructed inventory plugin. For a detailed description of how to configure this plugin, see" msgstr "구성된 인벤토리 플러그인을 구성하는 데 사용되는 변수입니다. 이 플러그인을 구성하는 방법에 대한 자세한 설명은 다음을 참조하십시오." @@ -575,8 +579,8 @@ msgstr "컨테이너 그룹" msgid "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" msgstr "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" -#: components/NotificationList/NotificationList.js:220 -#: components/NotificationList/NotificationListItem.js:35 +#: components/NotificationList/NotificationList.js:231 +#: components/NotificationList/NotificationListItem.js:38 #: screens/Credential/shared/TypeInputsSubForm.js:46 #: screens/InstanceGroup/shared/ContainerGroupForm.js:79 #: screens/Instances/Shared/InstanceForm.js:95 @@ -600,7 +604,7 @@ msgid "You cannot select multiple vault credentials with the same vault ID. Doin msgstr "동일한 vault ID로 여러 인증 정보를 선택할 수 없습니다. 이렇게 하면 동일한 vault ID를 가진 다른 인증 정보가 자동으로 선택 취소됩니다." #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:334 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:342 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:350 #: screens/Project/ProjectDetail/ProjectDetail.js:354 msgid "Cancel Sync" msgstr "동기화 취소" @@ -713,8 +717,8 @@ msgstr "호스트 통계" msgid "Create new credential Type" msgstr "새 인증 정보 유형 만들기" -#: screens/Inventory/shared/Inventory.helptext.js:103 -#: screens/Inventory/shared/Inventory.helptext.js:118 +#: screens/Inventory/shared/Inventory.helptext.js:104 +#: screens/Inventory/shared/Inventory.helptext.js:119 msgid "If you want the Inventory Source to update on launch, click on Update on Launch, and also go to " msgstr "인벤토리 소스를 시작 시 업데이트하려면 시작 시 업데이트를 클릭하고 다음 위치로도 이동하십시오: " @@ -732,7 +736,7 @@ msgid "Start Time" msgstr "시작 시간" #: screens/Inventory/shared/Inventory.helptext.js:48 -#: screens/Inventory/shared/Inventory.helptext.js:184 +#: screens/Inventory/shared/Inventory.helptext.js:185 msgid "Variables must be in JSON or YAML syntax. Use the radio button to toggle between the two." msgstr "변수는 JSON 또는 YAML 구문이어야 합니다. 라디오 버튼을 사용하여 둘 사이를 전환합니다." @@ -748,7 +752,7 @@ msgstr "파일 차이점" msgid "Relaunch from canceled node" msgstr "취소된 노드에서 다시 시작" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:271 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:279 msgid "Cache timeout" msgstr "캐시 제한 시간" @@ -828,7 +832,7 @@ msgstr "이벤트 발생 횟수를 입력해 주십시오." msgid "Fuzzy search on name field." msgstr "이름 필드에서 퍼지 검색" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:106 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:107 msgid "Ansible Controller Documentation." msgstr "Ansible 컨트롤러 설명서" @@ -836,7 +840,7 @@ msgstr "Ansible 컨트롤러 설명서" msgid "The Instance Groups to which this instance belongs." msgstr "이 인스턴스가 속하는 인스턴스 그룹입니다." -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:97 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:98 msgid "You may apply a number of possible variables in the\n" " message. For more information, refer to the" msgstr "메시지에 사용 가능한 여러 변수를 적용할 수 있습니다.\n" @@ -885,7 +889,7 @@ msgstr "워크플로 노드" msgid "Overwrite" msgstr "덮어쓰기" -#: components/NotificationList/NotificationList.js:195 +#: components/NotificationList/NotificationList.js:206 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:136 msgid "Hipchat" msgstr "Hipchat" @@ -920,7 +924,7 @@ msgstr "소스 제어 분기" msgid "Tabs" msgstr "탭" -#: screens/Template/Template.js:273 +#: screens/Template/Template.js:274 #: screens/Template/WorkflowJobTemplate.js:286 msgid "View Template Details" msgstr "템플릿 세부 정보 보기" @@ -966,7 +970,7 @@ msgstr "{interval, plural, one {# 년} other {# 년}}" msgid "Inventory Source Sync" msgstr "인벤토리 소스 동기화" -#: screens/Inventory/shared/Inventory.helptext.js:146 +#: screens/Inventory/shared/Inventory.helptext.js:147 msgid "Inventory Plugins" msgstr "인벤토리 플러그인" @@ -1036,7 +1040,7 @@ msgstr "1 (정보)" msgid "Set the instance enabled or disabled. If disabled, jobs will not be assigned to this instance." msgstr "인스턴스 활성화 또는 비활성화를 설정합니다. 비활성화된 경우 작업이 이 인스턴스에 할당되지 않습니다." -#: screens/Inventory/shared/Inventory.helptext.js:105 +#: screens/Inventory/shared/Inventory.helptext.js:106 msgid "and click on Update Revision on Launch." msgstr "update Revision on Launch를 클릭합니다." @@ -1525,8 +1529,8 @@ msgstr "하나 이상의 작업을 삭제하지 못했습니다." msgid "Run Command" msgstr "명령 실행" -#: screens/Inventory/shared/Inventory.helptext.js:156 -#: screens/Inventory/shared/Inventory.helptext.js:179 +#: screens/Inventory/shared/Inventory.helptext.js:157 +#: screens/Inventory/shared/Inventory.helptext.js:180 msgid "plugin configuration guide." msgstr "플러그인 구성 가이드." @@ -1637,9 +1641,9 @@ msgstr "새 페더레이션 인벤토리 만들기" #: components/Lookup/OrganizationLookup.js:141 #: components/Lookup/ProjectLookup.js:129 #: components/Lookup/ProjectLookup.js:159 -#: components/NotificationList/NotificationList.js:181 -#: components/NotificationList/NotificationList.js:218 -#: components/NotificationList/NotificationListItem.js:29 +#: components/NotificationList/NotificationList.js:192 +#: components/NotificationList/NotificationList.js:229 +#: components/NotificationList/NotificationListItem.js:31 #: components/OptionsList/OptionsList.js:48 #: components/PaginatedTable/PaginatedTable.js:76 #: components/PromptDetail/PromptDetail.js:115 @@ -1753,14 +1757,14 @@ msgstr "새 페더레이션 인벤토리 만들기" #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:182 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:197 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:238 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:204 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:205 #: screens/Inventory/InventorySources/InventorySourceList.js:212 #: screens/Inventory/InventorySources/InventorySourceListItem.js:60 #: screens/Inventory/shared/ConstructedInventoryForm.js:66 #: screens/Inventory/shared/FederatedInventoryForm.js:56 #: screens/Inventory/shared/InventoryForm.js:50 #: screens/Inventory/shared/InventoryGroupForm.js:33 -#: screens/Inventory/shared/InventorySourceForm.js:133 +#: screens/Inventory/shared/InventorySourceForm.js:139 #: screens/Inventory/shared/SmartInventoryForm.js:46 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:98 #: screens/ManagementJob/ManagementJobList/ManagementJobList.js:91 @@ -1883,7 +1887,7 @@ msgstr "{automatedInstancesSinceDateTime} 이후 {automatedInstancesCount}" msgid "No job data available" msgstr "사용 가능한 작업 데이터가 없습니다." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:309 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:317 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:22 msgid "Source variables" msgstr "소스 변수" @@ -2020,7 +2024,7 @@ msgid "Confirm" msgstr "확인" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:526 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:142 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:143 msgid "Success message body" msgstr "성공 메시지 본문" @@ -2295,7 +2299,7 @@ msgstr "실패한 호스트" msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?" msgstr "현재 다른 리소스에서 이 실행 환경이 사용되고 있습니다. 삭제하시겠습니까?" -#: components/NotificationList/NotificationList.js:196 +#: components/NotificationList/NotificationList.js:207 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:137 msgid "IRC" msgstr "IRC" @@ -2499,7 +2503,7 @@ msgstr "외부 로깅 활성화" #: components/Sparkline/Sparkline.js:30 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:51 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:181 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:182 #: screens/Inventory/InventorySources/InventorySourceListItem.js:31 #: screens/Project/ProjectDetail/ProjectDetail.js:134 #: screens/Project/ProjectList/ProjectListItem.js:56 @@ -2539,7 +2543,7 @@ msgstr "로그 시스템 추적 사실을 개별적으로 활성화" msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" msgstr "노드를 생성하거나 편집할 때 암호를 입력하라는 인증 정보가 있는 작업 템플릿을 선택할 수 없습니다." -#: screens/Inventory/shared/Inventory.helptext.js:193 +#: screens/Inventory/shared/Inventory.helptext.js:194 msgid "If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on. Note: If this setting is enabled and you provided an empty list, the global instance groups will be applied." msgstr "활성화하면 인벤토리에서 연결된 작업 템플릿을 실행하는 기본 인스턴스 그룹 목록에 조직 인스턴스 그룹을 추가하지 않습니다. 참고: 이 설정이 활성화되어 있고 빈 목록을 제공한 경우 글로벌 인스턴스 그룹이 적용됩니다." @@ -2676,7 +2680,7 @@ msgstr "하나 이상의 호스트를 연결 해제하지 못했습니다." #: components/Sparkline/Sparkline.js:27 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:48 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:178 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:179 #: screens/Inventory/InventorySources/InventorySourceListItem.js:28 #: screens/Project/ProjectDetail/ProjectDetail.js:131 #: screens/Project/ProjectList/ProjectListItem.js:53 @@ -2763,7 +2767,7 @@ msgstr "항목 확인" msgid "Icon URL" msgstr "아이콘 URL" -#: screens/Inventory/shared/InventorySourceForm.js:159 +#: screens/Inventory/shared/InventorySourceForm.js:165 msgid "Select the Instance Groups this inventory source sync should run on. If unset, the sync runs on the instance groups of the inventory or its organization." msgstr "이 인벤토리 소스 동기화를 실행할 인스턴스 그룹을 선택합니다. 설정하지 않으면 인벤토리 또는 해당 조직의 인스턴스 그룹에서 동기화가 실행됩니다." @@ -2772,7 +2776,7 @@ msgid "Select the port that Receptor will listen on for incoming connections, e. msgstr "수신 연결에 대해 리셉터가 수신 대기할 포트를 선택하십시오 (예: 27199)." #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:517 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:133 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:134 msgid "Success message" msgstr "성공 메시지" @@ -2829,7 +2833,7 @@ msgstr "HTTP 방법" msgid "The execution environment that will be used for jobs inside of this organization. This will be used as a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." msgstr "이 조직 내의 작업에 사용될 실행 환경입니다. 프로젝트, 작업 템플릿 또는 워크플로우 수준에서 실행 환경이 명시적으로 할당되지 않은 경우 대체로 사용됩니다." -#: components/NotificationList/NotificationList.js:190 +#: components/NotificationList/NotificationList.js:201 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:131 msgid "Notification type" msgstr "알림 유형" @@ -2863,7 +2867,7 @@ msgstr "링크 삭제 취소" msgid "There was an error loading this content. Please reload the page." msgstr "이 콘텐츠를 로드하는 동안 오류가 발생했습니다. 페이지를 다시 로드하십시오." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:292 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:300 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:135 msgid "Enabled Value" msgstr "활성화된 값" @@ -3176,7 +3180,7 @@ msgstr "< 0 > 참고: < 1 > 정책 규칙에 의해 관리되는 경우 인스 msgid "Timeout minutes" msgstr "시간 제한 (분)" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:353 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:361 msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" msgstr "이 인벤토리 소스는 현재 이를 사용하는 다른 리소스에서 사용되고 있습니다. 삭제하시겠습니까?" @@ -3331,7 +3335,7 @@ msgstr "비교 값보다 적거나 같습니다." #: screens/Inventory/FederatedInventoryDetail/FederatedInventoryDetail.js:187 #: screens/Inventory/InventoryDetail/InventoryDetail.js:185 #: screens/Inventory/InventoryGroups/InventoryGroupsList.js:102 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:356 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:364 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:67 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:71 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:76 @@ -3354,6 +3358,7 @@ msgstr "비교 값보다 적거나 같습니다." msgid "Delete" msgstr "삭제" +#: components/NotificationList/NotificationListItem.js:105 #: components/StatusLabel/StatusLabel.js:53 #: screens/Job/JobOutput/shared/HostStatusBar.js:43 msgid "Changed" @@ -3485,7 +3490,7 @@ msgstr "GitHub 팀" #: screens/Inventory/InventoryDetail/InventoryDetail.js:157 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:43 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:78 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:317 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:325 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:133 #: screens/Job/JobDetail/JobDetail.js:578 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:425 @@ -3859,7 +3864,7 @@ msgstr "기본 실행 환경" #: components/PromptDetail/PromptJobTemplateDetail.js:122 #: components/PromptDetail/PromptJobTemplateDetail.js:130 #: components/TemplateList/TemplateListItem.js:263 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:245 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:246 #: screens/Job/JobDetail/JobDetail.js:180 #: screens/Job/JobDetail/JobDetail.js:214 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:216 @@ -3980,7 +3985,7 @@ msgstr "토폴로지 보기" msgid "Syncing" msgstr "동기화" -#: screens/Inventory/shared/InventorySourceForm.js:192 +#: screens/Inventory/shared/InventorySourceForm.js:198 msgid "Source details" msgstr "소스 세부 정보" @@ -4072,7 +4077,7 @@ msgstr "인증 정보 삭제" #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:56 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:61 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:100 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:332 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:340 #: screens/Inventory/InventorySources/InventorySourceListItem.js:105 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:148 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:450 @@ -4154,7 +4159,7 @@ msgstr "시간 초과가 지정되지 않음" msgid "On Timeout" msgstr "시간 초과 시" -#: screens/Inventory/shared/Inventory.helptext.js:196 +#: screens/Inventory/shared/Inventory.helptext.js:197 msgid "Prevent Instance Group Fallback: If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on." msgstr "인스턴스 그룹 폴백 방지: 활성화된 경우, 인벤토리에서 연결된 작업 템플릿을 실행하도록 기본 인스턴스 그룹 목록에 조직 인스턴스 그룹을 추가할 수 없습니다." @@ -4496,7 +4501,7 @@ msgstr "content-loading-in-progress" msgid "Mon" msgstr "월요일" -#: screens/Organization/Organization.js:239 +#: screens/Organization/Organization.js:240 msgid "View Organization Details" msgstr "조직 세부 정보 보기" @@ -4509,7 +4514,7 @@ msgstr "조직 세부 정보 보기" #: components/JobList/JobList.js:345 #: components/LaunchButton/LaunchButton.js:248 #: components/LaunchPrompt/LaunchPrompt.js:99 -#: components/NotificationList/NotificationList.js:246 +#: components/NotificationList/NotificationList.js:259 #: components/PaginatedTable/ToolbarDeleteButton.js:148 #: components/RelatedTemplateList/RelatedTemplateList.js:254 #: components/ResourceAccessList/ResourceAccessList.js:249 @@ -4553,7 +4558,7 @@ msgstr "조직 세부 정보 보기" #: screens/Inventory/InventoryHosts/InventoryHostList.js:204 #: screens/Inventory/InventoryList/InventoryList.js:300 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:270 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:363 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:371 #: screens/Inventory/InventorySources/InventorySourceList.js:240 #: screens/Inventory/InventorySources/InventorySourceList.js:252 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:155 @@ -4705,11 +4710,11 @@ msgid "Notification Templates" msgstr "알림 템플릿" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:508 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:124 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:125 msgid "Start message body" msgstr "메시지 본문 시작" -#: screens/Inventory/shared/Inventory.helptext.js:128 +#: screens/Inventory/shared/Inventory.helptext.js:129 msgid "Branch to use on inventory sync. Project default used if blank. Only allowed if project allow_override field is set to true." msgstr "인벤토리 동기화 시 사용할 분기. 비어 있는 경우 프로젝트 기본값이 사용됩니다. 프로젝트 allow_override 필드가 true로 설정된 경우에만 허용됩니다." @@ -4818,7 +4823,7 @@ msgid "Failed to delete one or more user tokens." msgstr "하나 이상의 사용자 토큰을 삭제하지 못했습니다." #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:553 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:169 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:188 msgid "Workflow approved message" msgstr "워크플로우 승인 메시지" @@ -4999,12 +5004,12 @@ msgstr "시간 초과 시" msgid "Create New Team" msgstr "새 팀 만들기" -#: screens/Inventory/shared/Inventory.helptext.js:148 +#: screens/Inventory/shared/Inventory.helptext.js:149 msgid "in the documentation and the" msgstr "설명서 및" #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:152 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:206 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:207 #: screens/Project/ProjectDetail/ProjectDetail.js:160 msgid "Last Job Status" msgstr "마지막 작업 상태" @@ -5336,7 +5341,7 @@ msgid "Preferred Theme" msgstr "기본 테마" #: screens/Instances/Shared/InstanceForm.js:31 -#: screens/Inventory/shared/InventorySourceForm.js:92 +#: screens/Inventory/shared/InventorySourceForm.js:98 #: screens/Project/shared/ProjectForm.js:121 msgid "Set a value for this field" msgstr "이 필드의 값을 설정합니다." @@ -5469,7 +5474,7 @@ msgid "Download Bundle" msgstr "번들 다운로드" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:577 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:187 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:206 msgid "Workflow denied message" msgstr "워크플로우 거부 메시지" @@ -5522,7 +5527,7 @@ msgstr "노드 유형" msgid "View Credential Details" msgstr "인증 정보 세부 정보보기" -#: components/NotificationList/NotificationList.js:177 +#: components/NotificationList/NotificationList.js:188 #: routeConfig.js:140 #: screens/Inventory/Inventories.js:119 #: screens/Inventory/InventorySource/InventorySource.js:101 @@ -5742,7 +5747,7 @@ msgstr "테스트 알림" #: screens/Credential/CredentialDetail/CredentialDetail.js:262 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:234 #: screens/Inventory/InventoryDetail/InventoryDetail.js:122 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:305 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:313 #: screens/Project/ProjectDetail/ProjectDetail.js:333 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:357 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:193 @@ -5791,7 +5796,7 @@ msgstr "소스 제어 분기" #: screens/Instances/InstanceDetail/InstanceDetail.js:248 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:225 #: screens/Inventory/InventoryDetail/InventoryDetail.js:107 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:239 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:240 #: screens/Organization/OrganizationDetail/OrganizationDetail.js:116 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:418 #: util/getRelatedResourceDeleteDetails.js:282 @@ -6121,7 +6126,7 @@ msgid "View YAML examples at" msgstr "에서 YAML 예제 보기" #: components/PromptDetail/PromptInventorySourceDetail.js:35 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:142 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:143 msgid "Overwrite local groups and hosts from remote inventory source" msgstr "원격 인벤토리 소스에서 로컬 그룹 및 호스트 덮어쓰기" @@ -6130,7 +6135,7 @@ msgid "Resource deleted" msgstr "삭제된 리소스" #: screens/Inventory/shared/Inventory.helptext.js:54 -#: screens/Inventory/shared/Inventory.helptext.js:187 +#: screens/Inventory/shared/Inventory.helptext.js:188 msgid "YAML:" msgstr "YAML:" @@ -6217,7 +6222,7 @@ msgid "Initiated By" msgstr "초기자" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:499 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:115 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:116 msgid "Start message" msgstr "시작 메시지" @@ -6281,7 +6286,7 @@ msgstr "인스턴스 전환" msgid "Back to Inventories" msgstr "인벤토리로 돌아가기" -#: screens/Inventory/shared/Inventory.helptext.js:113 +#: screens/Inventory/shared/Inventory.helptext.js:114 msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format." msgstr "SCM 개정이 변경되는 프로젝트가 업데이트될 때마다 작업 작업을 실행하기 전에 선택한 소스에서 인벤토리를 새로 고칩니다. 이것은 Ansible 인벤토리 .ini 파일 형식과 같은 정적 콘텐츠를 위한 것입니다." @@ -6375,7 +6380,7 @@ msgstr "인스턴스" msgid "Including File" msgstr "파일 포함" -#: screens/Inventory/shared/Inventory.helptext.js:81 +#: screens/Inventory/shared/Inventory.helptext.js:82 msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." msgstr "이 옵션을 선택하면 이전에 외부 소스에 있었지만 지금은 제거된 모든 호스트와 그룹이 인벤토리에서 제거됩니다. 인벤토리 소스에서 관리하지 않은 호스트와 그룹은 다음에 수동으로 생성된 그룹으로 승격되며, 승격할 수동으로 생성된 그룹이 없는 경우 인벤토리의 기본 「all」 그룹에 남습니다." @@ -6412,7 +6417,7 @@ msgstr "세부 정보 탭" #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:100 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:72 #: screens/InstanceGroup/shared/ContainerGroupForm.js:50 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:298 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:306 #: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:39 #: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:38 #: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:38 @@ -6423,7 +6428,7 @@ msgstr "세부 정보 탭" #: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:117 #: screens/Inventory/shared/InventorySourceSubForms/TerraformSubForm.js:38 #: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:39 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:39 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:44 msgid "Credential" msgstr "인증 정보" @@ -6432,7 +6437,7 @@ msgid "First node" msgstr "첫 번째 노드" #: components/PromptDetail/PromptInventorySourceDetail.js:97 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:273 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:281 msgid "{update_cache_timeout, plural, one {# second} other {# seconds}}" msgstr "{update_cache_timeout, plural, one {# 초} other {# 초}}" @@ -6496,7 +6501,7 @@ msgstr "작업 설정 보기" #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:122 #: screens/Instances/InstanceDetail/InstanceDetail.js:349 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:96 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:329 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:337 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:145 #: screens/Project/ProjectDetail/ProjectDetail.js:340 #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:229 @@ -6550,7 +6555,7 @@ msgstr "일반 사용자" msgid "host-name-{0}" msgstr "host-name-{0}" -#: components/NotificationList/NotificationList.js:198 +#: components/NotificationList/NotificationList.js:209 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:139 msgid "Pagerduty" msgstr "PagerDuty" @@ -6609,7 +6614,7 @@ msgstr "새 인스턴스가 온라인 상태가 되면 이 그룹에 자동으 msgid "Launch | {0}" msgstr "시작 | {0}" -#: components/NotificationList/NotificationListItem.js:79 +#: components/NotificationList/NotificationListItem.js:84 msgid "Toggle notification success" msgstr "알림 전환 성공" @@ -6702,7 +6707,7 @@ msgstr "동시 작업 활성화" msgid "Smart Inventory" msgstr "스마트 인벤토리" -#: components/NotificationList/NotificationList.js:200 +#: components/NotificationList/NotificationList.js:211 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:141 msgid "Slack" msgstr "Slack" @@ -6738,7 +6743,7 @@ msgstr "추가" msgid "System administrators have unrestricted access to all resources." msgstr "시스템 관리자는 모든 리소스에 무제한 액세스할 수 있습니다." -#: components/NotificationList/NotificationListItem.js:86 +#: components/NotificationList/NotificationListItem.js:91 msgid "Failure" msgstr "실패" @@ -6883,7 +6888,7 @@ msgstr "팔로우" #: components/Lookup/MultiCredentialsLookup.js:205 #: components/Lookup/OrganizationLookup.js:135 #: components/Lookup/ProjectLookup.js:149 -#: components/NotificationList/NotificationList.js:210 +#: components/NotificationList/NotificationList.js:221 #: components/RelatedTemplateList/RelatedTemplateList.js:183 #: components/Schedule/ScheduleList/ScheduleList.js:205 #: components/TemplateList/TemplateList.js:235 @@ -7095,7 +7100,7 @@ msgstr "이 필드는 숫자여야 하며 {min}보다 큰 값이어야 합니다 msgid "All" msgstr "모두" -#: screens/Inventory/shared/Inventory.helptext.js:177 +#: screens/Inventory/shared/Inventory.helptext.js:178 msgid "constructed inventory" msgstr "건설 인벤토리" @@ -7109,7 +7114,7 @@ msgid "Confirm Delete" msgstr "삭제 확인" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:625 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:223 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:242 msgid "Workflow timed out message" msgstr "워크플로우 시간 초과 메시지" @@ -7205,7 +7210,7 @@ msgstr "없음" msgid "Organization Name" msgstr "조직 이름" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:282 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:290 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:149 msgid "Host Filter" msgstr "호스트 필터" @@ -7257,7 +7262,7 @@ msgstr "{pluralizedItemName} 목록" msgid "Please add survey questions." msgstr "설문 조사를 추가하십시오." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:287 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:295 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:121 msgid "Enabled Variable" msgstr "활성화된 변수" @@ -7369,7 +7374,7 @@ msgstr "동기화" #: components/Lookup/ApplicationLookup.js:128 #: components/Lookup/HostFilterLookup.js:439 #: components/Lookup/HostListItem.js:10 -#: components/NotificationList/NotificationList.js:186 +#: components/NotificationList/NotificationList.js:197 #: components/PromptDetail/PromptDetail.js:120 #: components/Schedule/ScheduleDetail/ScheduleDetail.js:337 #: components/Schedule/ScheduleList/ScheduleList.js:197 @@ -7404,13 +7409,13 @@ msgstr "동기화" #: screens/Inventory/InventoryHosts/InventoryHostList.js:125 #: screens/Inventory/InventoryHosts/InventoryHostList.js:141 #: screens/Inventory/InventoryList/InventoryList.js:215 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:221 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:222 #: screens/Inventory/shared/ConstructedInventoryForm.js:74 #: screens/Inventory/shared/ConstructedInventoryHint.js:63 #: screens/Inventory/shared/FederatedInventoryForm.js:64 #: screens/Inventory/shared/InventoryForm.js:58 #: screens/Inventory/shared/InventoryGroupForm.js:41 -#: screens/Inventory/shared/InventorySourceForm.js:141 +#: screens/Inventory/shared/InventorySourceForm.js:147 #: screens/Inventory/shared/SmartInventoryForm.js:54 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:104 #: screens/Job/JobOutput/HostEventModal.js:118 @@ -7555,7 +7560,7 @@ msgstr "GitHub Enterprise로 로그인" #: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130 #: screens/Inventory/shared/InventorySourceSubForms/TerraformSubForm.js:46 #: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:47 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:47 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:52 #: screens/Inventory/shared/SmartInventoryForm.js:66 #: screens/NotificationTemplate/shared/NotificationTemplateForm.js:29 #: screens/NotificationTemplate/shared/NotificationTemplateForm.js:66 @@ -7588,7 +7593,7 @@ msgstr "SAML {samlIDP}으로 로그인" msgid "Browse" msgstr "검색" -#: components/NotificationList/NotificationList.js:193 +#: components/NotificationList/NotificationList.js:204 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:134 #: screens/User/shared/UserForm.js:104 #: screens/User/UserDetail/UserDetail.js:71 @@ -8011,7 +8016,7 @@ msgid "Sat" msgstr "토요일" #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:46 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:176 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:177 #: screens/Inventory/InventorySources/InventorySourceListItem.js:26 #: screens/Project/ProjectDetail/ProjectDetail.js:129 #: screens/Project/ProjectList/ProjectListItem.js:51 @@ -8048,7 +8053,7 @@ msgid "Specify HTTP Headers in JSON format. Refer to\n" msgstr "HTTP 헤더를 JSON 형식으로 지정합니다. 예제 구문은\n" " Ansible Controller 설명서를 참조하십시오." -#: components/NotificationList/NotificationList.js:199 +#: components/NotificationList/NotificationList.js:210 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:140 msgid "Rocket.Chat" msgstr "Rocket.Chat" @@ -8106,7 +8111,7 @@ msgstr "zoom을 100% 및 센터 그래프로 설정" msgid "Revert all to default" msgstr "모두 기본값으로 되돌립니다." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:255 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:256 #: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:135 msgid "Inventory file" msgstr "인벤토리 파일" @@ -8183,6 +8188,11 @@ msgstr "인스턴스 그룹 폴백 방지" msgid "Maximum number of forks to allow across all jobs running concurrently on this group. Zero means no limit will be enforced." msgstr "이 그룹에서 동시에 실행되는 모든 작업에서 허용되는 최대 포크 수입니다. 0은 제한이 적용되지 않음을 의미합니다." +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:263 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:56 +msgid "Collection" +msgstr "컬렉션" + #: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:207 msgid "Failed to delete one or more credential types." msgstr "하나 이상의 인증 정보 유형을 삭제하지 못했습니다." @@ -8197,7 +8207,7 @@ msgstr "리전" #: components/WorkflowOutputNavigation/WorkflowOutputNavigation.js:148 msgid "Workflow Jobs ({total})" -msgstr "" +msgstr "워크플로우 작업 ({total})" #: components/Search/AdvancedSearch.js:315 msgid "Set type disabled for related search field fuzzy searches" @@ -8233,11 +8243,11 @@ msgstr "남아 있는 호스트가 없음" msgid "ID of the dashboard (optional)" msgstr "대시보드 ID (선택 사항)" -#: screens/Inventory/shared/Inventory.helptext.js:127 +#: screens/Inventory/shared/Inventory.helptext.js:128 msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'" msgstr "주어진 호스트 변수 딕트에서 활성화된 상태를 검색합니다. 활성화된 변수는 점 표기법 (예: 'foo.bar') 을 사용하여 지정할 수 있습니다." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:339 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:347 #: screens/Inventory/InventorySources/InventorySourceListItem.js:88 msgid "Inventory Source Sync Error" msgstr "인벤토리 소스 동기화 오류" @@ -8264,14 +8274,14 @@ msgstr "" #: components/VerbositySelectField/VerbositySelectField.js:35 #: components/VerbositySelectField/VerbositySelectField.js:45 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:217 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:261 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:269 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:47 #: screens/Job/JobDetail/JobDetail.js:369 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:257 msgid "Verbosity" msgstr "상세 정보" -#: components/NotificationList/NotificationList.js:197 +#: components/NotificationList/NotificationList.js:208 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:138 msgid "Mattermost" msgstr "가장 중요" @@ -8498,6 +8508,10 @@ msgstr "워크플로우 승인으로 돌아가기" msgid "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Controller documentation for example syntax." msgstr "JSON 또는 YAML 구문을 사용하여 인젝터를 입력합니다. 구문 예제는 Ansible Controller 설명서를 참조하십시오." +#: components/NotificationList/NotificationListItem.js:112 +msgid "Toggle notification changed" +msgstr "알림 전환 변경" + #: components/Workflow/WorkflowLegend.js:122 #: screens/Job/JobOutput/JobOutputSearch.js:140 msgid "Warning" @@ -8566,7 +8580,7 @@ msgid "Prompt for instance groups on launch." msgstr "시작 시 인스턴스 그룹을 입력하라는 메시지를 표시합니다." #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:613 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:214 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:233 msgid "Workflow pending message body" msgstr "워크플로우 보류 메시지 본문" @@ -8608,7 +8622,7 @@ msgstr "IRC 닉네임" msgid "Expires on" msgstr "만료일" -#: screens/Inventory/shared/Inventory.helptext.js:98 +#: screens/Inventory/shared/Inventory.helptext.js:99 msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." msgstr "작업이 이 인벤토리를 사용하여 실행될 때마다 작업 작업을 실행하기 전에 선택한 소스에서 인벤토리를 새로 고칩니다." @@ -8733,7 +8747,7 @@ msgstr "이 템플릿에 대한 webhook을 활성화합니다." msgid "On date" msgstr "날짜에" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:340 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:348 #: screens/Inventory/InventorySources/InventorySourceListItem.js:90 msgid "Cancel Inventory Source Sync" msgstr "인벤토리 소스 동기화 취소" @@ -8810,7 +8824,7 @@ msgid "Greater than comparison." msgstr "비교보다 큽니다." #: components/PromptDetail/PromptInventorySourceDetail.js:40 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:148 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:149 msgid "Overwrite local variables from remote inventory source" msgstr "원격 인벤토리 소스에서 로컬 변수 덮어쓰기" @@ -8882,7 +8896,7 @@ msgstr "하나 이상의 사용자를 삭제하지 못했습니다." msgid "On Success" msgstr "성공 시" -#: screens/Inventory/shared/Inventory.helptext.js:192 +#: screens/Inventory/shared/Inventory.helptext.js:193 msgid "The inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." msgstr "이 소스에 의해 동기화될 인벤토리 파일. 드롭다운에서 선택하거나 입력란에 파일을 입력할 수 있습니다." @@ -8947,7 +8961,7 @@ msgstr "구성되지 않음" msgid "Workflow Job" msgstr "워크플로우 작업" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:82 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:83 msgid "Use custom messages to change the content of\n" " notifications sent when a job starts, succeeds, or fails. Use\n" " curly braces to access information about the job:" @@ -9151,7 +9165,7 @@ msgid "Go to previous page" msgstr "이전 페이지로 이동" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:565 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:178 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:197 msgid "Workflow approved message body" msgstr "워크플로우 승인 메시지 본문" @@ -9168,7 +9182,7 @@ msgid "required" msgstr "필수" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:589 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:196 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:215 msgid "Workflow denied message body" msgstr "워크플로우 거부 메시지 본문" @@ -9270,7 +9284,7 @@ msgstr "docs.ansible.com" msgid "Edit Schedule" msgstr "일정 편집" -#: components/NotificationList/NotificationList.js:250 +#: components/NotificationList/NotificationList.js:263 msgid "Failed to toggle notification." msgstr "알림을 전환하지 못했습니다." @@ -9359,6 +9373,10 @@ msgstr "저장" msgid "Click to create a new link to this node." msgstr "이 노드에 대한 새 링크를 생성하려면 클릭합니다." +#: screens/Inventory/shared/Inventory.helptext.js:78 +msgid "Select the Ansible collection providing the inventory plugin used to sync from vCenter. The community.vmware collection is deprecated in favor of the newer vmware.vmware collection. The selection is applied via the \"plugin\" key in the source variables; when the key is absent, the default collection is used." +msgstr "vCenter에서 동기화하는 데 사용되는 인벤토리 플러그인을 제공하는 Ansible 컬렉션을 선택합니다. community.vmware 컬렉션은 더 이상 사용되지 않으며 새로운 vmware.vmware 컬렉션으로 대체되었습니다. 선택 사항은 소스 변수의 \"plugin\" 키를 통해 적용됩니다. 키가 없으면 기본 컬렉션이 사용됩니다." + #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:167 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:136 msgid "Operator" @@ -9476,7 +9494,7 @@ msgid "Deprovisioning" msgstr "프로비저닝 해제 중" #: components/DetailList/LaunchedByDetail.js:27 -#: components/NotificationList/NotificationList.js:202 +#: components/NotificationList/NotificationList.js:213 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:143 msgid "Webhook" msgstr "Webhook" @@ -9517,7 +9535,7 @@ msgstr "인증 정보를 삭제하지 못했습니다." msgid "Private key passphrase" msgstr "개인 키 암호" -#: components/NotificationList/NotificationListItem.js:58 +#: components/NotificationList/NotificationListItem.js:63 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:47 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:53 msgid "Start" @@ -9537,7 +9555,7 @@ msgstr "인벤토리를 선택해야 함" #: components/PromptDetail/PromptProjectDetail.js:100 #: components/PromptDetail/PromptWFJobTemplateDetail.js:81 #: components/Schedule/ScheduleDetail/ScheduleDetail.js:477 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:266 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:274 #: screens/Job/JobDetail/JobDetail.js:345 #: screens/Project/ProjectDetail/ProjectDetail.js:229 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 @@ -9591,7 +9609,7 @@ msgstr "Red Hat Insights" msgid "View GitHub Settings" msgstr "GitHub 설정 보기" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:257 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:258 msgid "/ (project root)" msgstr "/ (프로젝트 root)" @@ -9620,7 +9638,7 @@ msgstr "플레이북을 실행하는 동안 사용할 병렬 또는 동시 프 msgid "View all Workflow Approvals." msgstr "모든 워크플로우 승인 보기." -#: screens/Inventory/shared/Inventory.helptext.js:92 +#: screens/Inventory/shared/Inventory.helptext.js:93 msgid "When not checked, a merge will be performed, combining local variables with those found on the external source." msgstr "선택하지 않으면 병합이 수행되어 로컬 변수와 외부 소스에 있는 변수를 결합합니다." @@ -9714,7 +9732,7 @@ msgstr "툴 전환" #: screens/Inventory/InventoryList/InventoryList.js:211 #: screens/Inventory/InventoryList/InventoryList.js:241 #: screens/Inventory/InventoryList/InventoryListItem.js:121 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:225 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:226 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:107 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:153 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:163 @@ -9765,7 +9783,7 @@ msgid "Test External Credential" msgstr "외부 자격 증명 테스트" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:601 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:205 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:224 msgid "Workflow pending message" msgstr "워크플로우 보류 메시지" @@ -9948,7 +9966,7 @@ msgstr "탐색" msgid "If enabled, control nodes will peer to this instance automatically. If disabled, instance will be connected only to associated peers." msgstr "활성화되면 제어 노드가 이 인스턴스를 자동으로 피어링합니다. 비활성화된 경우, 인스턴스는 연결된 동료에게만 연결됩니다." -#: screens/Inventory/shared/Inventory.helptext.js:120 +#: screens/Inventory/shared/Inventory.helptext.js:121 msgid "and click on Update Revision on Launch" msgstr "실행 시 버전 업데이트를 클릭합니다" @@ -9967,6 +9985,10 @@ msgstr "실행 환경을 편집하기 전에 프로젝트를 선택합니다." msgid "Order" msgstr "순서" +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:179 +msgid "Changed message body" +msgstr "변경 메시지 본문" + #: components/Schedule/Schedule.js:65 msgid "Back to Schedules" msgstr "일정으로 돌아가기" @@ -10085,7 +10107,7 @@ msgstr "새 컨테이너 그룹 만들기" msgid "Bitbucket Data Center" msgstr "Bitbucket 데이터 센터" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:367 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:375 msgid "Failed to delete inventory source {name}." msgstr "인벤토리 소스 {name} 삭제에 실패했습니다." @@ -10151,7 +10173,7 @@ msgstr "세부 정보 편집" msgid "Deleted" msgstr "삭제됨" -#: screens/Inventory/shared/Inventory.helptext.js:129 +#: screens/Inventory/shared/Inventory.helptext.js:130 msgid "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import." msgstr "활성화된 변수가 설정되지 않은 경우 이 필드는 무시됩니다. 사용 가능한 변수가 이 값과 일치하면 호스트는 가져오기에서 활성화됩니다." @@ -10250,11 +10272,11 @@ msgstr "모듈" msgid "Confirm revert all" msgstr "모두 되돌리기 확인" -#: screens/Inventory/shared/Inventory.helptext.js:89 +#: screens/Inventory/shared/Inventory.helptext.js:90 msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source." msgstr "이 옵션을 선택하면 하위 그룹 및 호스트에 대한 모든 변수가 제거되고 외부 소스에 있는 변수로 대체됩니다." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:350 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:358 msgid "Delete inventory source" msgstr "인벤토리 소스 삭제" @@ -10325,7 +10347,7 @@ msgstr "작업이 실행되는 데 경과된 시간" msgid "GitLab" msgstr "GitLab" -#: components/NotificationList/NotificationListItem.js:93 +#: components/NotificationList/NotificationListItem.js:98 msgid "Toggle notification failure" msgstr "알림 전환 실패" @@ -10426,8 +10448,8 @@ msgstr "이 필드는 최소 {0}자 이상이어야 합니다" #: components/JobList/JobListItem.js:197 #: components/PromptDetail/PromptInventorySourceDetail.js:78 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:222 -#: screens/Inventory/shared/InventorySourceForm.js:162 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:223 +#: screens/Inventory/shared/InventorySourceForm.js:168 #: screens/Job/JobDetail/JobDetail.js:180 #: screens/Job/JobDetail/JobDetail.js:332 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:93 @@ -10511,7 +10533,7 @@ msgstr "키 선택" msgid "Pass extra command line changes. There are two ansible command line parameters: " msgstr "추가 명령줄 변경 사항을 전달합니다. 두 개의 ansible 명령줄 매개 변수가 있습니다: " -#: screens/Inventory/shared/Inventory.helptext.js:84 +#: screens/Inventory/shared/Inventory.helptext.js:85 msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process." msgstr "선택하지 않으면 외부 소스에서 찾을 수 없는 로컬 하위 호스트 및 그룹이 인벤토리 업데이트 프로세스에 의해 그대로 유지됩니다." @@ -10554,7 +10576,7 @@ msgid "Specify a notification color. Acceptable colors are hex\n" msgstr "알림 색상을 지정합니다. 사용 가능한 색상은 16진수\n" " 색상 코드입니다(예: #3af 또는 #789abc)." -#: components/NotificationList/NotificationList.js:201 +#: components/NotificationList/NotificationList.js:212 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:142 msgid "Twilio" msgstr "Twilio" @@ -10594,7 +10616,7 @@ msgid "updated" msgstr "업데이트됨" #: screens/Inventory/AdvancedInventoryHostDetail/AdvancedInventoryHostDetail.js:50 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:320 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:328 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:135 #: screens/Project/ProjectList/ProjectListItem.js:274 #: screens/TopologyView/Tooltip.js:347 @@ -10795,7 +10817,7 @@ msgid "Successful jobs" msgstr "성공적인 작업" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:535 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:151 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:152 msgid "Error message" msgstr "오류 메시지" @@ -10924,7 +10946,7 @@ msgstr "알 수 없는 프로젝트" msgid "Preconditions for running this node when there are multiple parents. Refer to the" msgstr "여러 명의 부모가 있을 때 이 노드를 실행하기 위한 전제 조건" -#: screens/Inventory/shared/Inventory.helptext.js:140 +#: screens/Inventory/shared/Inventory.helptext.js:141 msgid "Variables used to configure the inventory source. For a detailed description of how to configure this plugin, see" msgstr "인벤토리 소스를 구성하는 데 사용되는 변수입니다. 이 플러그인을 구성하는 방법에 대한 자세한 설명은 다음을 참조하십시오." @@ -10934,7 +10956,7 @@ msgstr "Google Compute Engine" #: components/Sparkline/Sparkline.js:34 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:55 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:185 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:186 #: screens/Inventory/InventorySources/InventorySourceListItem.js:35 #: screens/Project/ProjectDetail/ProjectDetail.js:138 #: screens/Project/ProjectList/ProjectListItem.js:60 @@ -10956,7 +10978,7 @@ msgstr "모든 작업 유형" msgid "GitHub Enterprise Organization" msgstr "GitHub Enterprise 조직" -#: screens/Inventory/shared/InventorySourceForm.js:170 +#: screens/Inventory/shared/InventorySourceForm.js:176 msgid "Choose a source" msgstr "소스 선택" @@ -10990,7 +11012,7 @@ msgstr "간단한 키 선택" msgid "You have automated against more hosts than your subscription allows." msgstr "서브스크립션에서 허용하는 것보다 더 많은 호스트에 대해 자동화되었습니다." -#: screens/Inventory/shared/Inventory.helptext.js:130 +#: screens/Inventory/shared/Inventory.helptext.js:131 msgid "Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied." msgstr "호스트 이름과 일치하는 정규 표현식을 가져옵니다. 필터는 인벤토리 플러그인 필터를 적용한 후 사후 처리 단계로 적용됩니다." @@ -11116,7 +11138,7 @@ msgstr "LDAP" msgid "Workflow Template" msgstr "워크플로우 템플릿" -#: components/NotificationList/NotificationListItem.js:40 +#: components/NotificationList/NotificationListItem.js:45 #: components/Workflow/WorkflowLegend.js:118 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:76 msgid "Approval" @@ -11278,7 +11300,7 @@ msgstr "프로비저닝 실패" msgid "Whether the approval node is automatically approved or denied when the timeout expires." msgstr "시간 초과가 만료될 때 승인 노드가 자동으로 승인되거나 거부되는지 여부입니다." -#: screens/Inventory/shared/Inventory.helptext.js:125 +#: screens/Inventory/shared/Inventory.helptext.js:126 msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed." msgstr "재고 동기화를 현재로 간주하는 데 걸리는 시간 (초) 입니다. 작업 실행 및 콜백 중에 작업 시스템은 최신 동기화의 타임스탬프를 평가합니다. 캐시 시간 초과보다 오래된 경우 현재로 간주되지 않으며 새 인벤토리 동기화가 수행됩니다." @@ -11292,7 +11314,7 @@ msgstr "액세스 토큰 만료" #: components/WorkflowOutputNavigation/WorkflowOutputNavigation.js:147 msgid "Workflow Job {currentPosition}/{total}" -msgstr "" +msgstr "워크플로우 작업 {currentPosition}/{total}" #: components/Schedule/ScheduleDetail/FrequencyDetails.js:69 msgid "{interval, plural, one {# minute} other {# minutes}}" @@ -11436,7 +11458,7 @@ msgstr "Insights 시스템 ID" msgid "Authorization Code Expiration" msgstr "인증 코드 만료" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:69 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:70 msgid "Customize messages…" msgstr "메시지 사용자 정의..." @@ -11662,7 +11684,7 @@ msgid "{interval, plural, one {# week} other {# weeks}}" msgstr "{interval, plural, one {# 주} other {# 주}}" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:544 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:160 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:161 msgid "Error message body" msgstr "오류 메시지 본문" @@ -11705,7 +11727,7 @@ msgstr "관리형 노드" #: components/Lookup/MultiCredentialsLookup.js:201 #: components/Lookup/OrganizationLookup.js:131 #: components/Lookup/ProjectLookup.js:153 -#: components/NotificationList/NotificationList.js:206 +#: components/NotificationList/NotificationList.js:217 #: components/RelatedTemplateList/RelatedTemplateList.js:179 #: components/Schedule/ScheduleList/ScheduleList.js:201 #: components/TemplateList/TemplateList.js:231 @@ -11821,7 +11843,7 @@ msgstr "토큰 삭제 중 오류 발생" msgid "Select period" msgstr "기간 선택" -#: components/NotificationList/NotificationListItem.js:65 +#: components/NotificationList/NotificationListItem.js:70 msgid "Toggle notification start" msgstr "알림 시작 전환" @@ -11869,7 +11891,7 @@ msgid "This field must be a number and have a value between {min} and {max}" msgstr "이 필드는 숫자여야 하며 {min}과(와) {max} 사이의 값이어야 합니다" #: components/PromptDetail/PromptInventorySourceDetail.js:45 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:154 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:155 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:93 msgid "Update on launch" msgstr "시작 시 업데이트" @@ -11886,7 +11908,7 @@ msgstr "Jinja2 조건에 따라 호스트를 그룹에 추가하세요." msgid "Copy Template" msgstr "템플릿 복사" -#: components/NotificationList/NotificationListItem.js:51 +#: components/NotificationList/NotificationListItem.js:56 msgid "Toggle notification approvals" msgstr "알림 승인 전환" @@ -11914,7 +11936,7 @@ msgstr "지난 해" msgid "Week" msgstr "주" -#: components/NotificationList/NotificationListItem.js:72 +#: components/NotificationList/NotificationListItem.js:77 #: components/StatusLabel/StatusLabel.js:39 msgid "Success" msgstr "성공" diff --git a/awx/ui/src/locales/nl/messages.js b/awx/ui/src/locales/nl/messages.js index 1f7c8568..17669eb0 100644 --- a/awx/ui/src/locales/nl/messages.js +++ b/awx/ui/src/locales/nl/messages.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"--iDlT\":[\"Project verwijderen\"],\"-0AkQd\":[[\"forks\",\"plural\",{\"one\":[\"#\",\" fork\"],\"other\":[\"#\",\" forks\"]}]],\"-0B-ue\":[\"Projecten\"],\"-5kO8P\":[\"Zaterdag\"],\"-6EcFR\":[\"Druk op Enter om te bewerken. Druk op ESC om het bewerken te stoppen.\"],\"-7M7WW\":[\"Klik om de standaardwaarde te wijzigen\"],\"-7VWRl\":[\"RAM \",[\"0\"]],\"-8WGoO\":[\"De plugin-parameter is vereist.\"],\"-9d7Ol\":[\"Subdomein Pagerduty\"],\"-9y9jy\":[\"Laatste gezondheidscontrole\"],\"-9yY_Q\":[\"Kan inventaris niet kopiëren.\"],\"-AZQnp\":[\"SAML\"],\"-FWz2-\":[\"Vorige scrollen\"],\"-FjWgX\":[\"Do\"],\"-GMFSa\":[\"Kan project niet kopiëren.\"],\"-GOG9X\":[\"Omschrijving verbergen\"],\"-NI2UI\":[\"Verdeel het werk dat door dit taaksjabloon wordt uitgevoerd in het opgegeven aantal taaksegmenten, die elk dezelfde taken uitvoeren op een deel van de inventaris.\"],\"-NezOR\":[\"Dit type toegangsgegevens wordt momenteel gebruikt door sommige toegangsgegevens en kan niet worden verwijderd\"],\"-OpL2l\":[\"Uitvoeren ongeacht de eindtoestand van het bovenliggende knooppunt.\"],\"-PyL32\":[\"Weet u zeker dat u dit knooppunt wilt verwijderen?\"],\"-RAMET\":[\"Deze link bewerken\"],\"-SAqJ3\":[\"Kan toegangsgegevens niet kopiëren.\"],\"-Uepfb\":[\"Controle\"],\"-b3ghh\":[\"Verhoging van rechten\"],\"-cWxFz\":[\"Schakel content-ondertekening in om te controleren of de content veilig is gebleven wanneer een project wordt gesynchroniseerd. Als er met de content is geknoeid, wordt de taak niet uitgevoerd.\"],\"-hh3vo\":[\"Kan laatste taakupdate niet laden\"],\"-li8PK\":[\"Abonnementsgebruik\"],\"-nb9qF\":[\"(Melding bij opstarten)\"],\"-ohrPc\":[\"Typeahead opzoeken\"],\"-rfqXD\":[\"Enquête ingeschakeld\"],\"-uOi7U\":[\"Klik om de bundel te downloaden\"],\"-vAlj5\":[\"Kan de taak niet starten.\"],\"-z0Ubz\":[\"Rollen selecteren om toe te passen\"],\"-zW4qj\":[\"Uit te checken branch. Naast branches kunt u tags, commit-hashes en willekeurige refs invoeren. Sommige commit-hashes en refs zijn mogelijk niet beschikbaar tenzij u ook een aangepaste refspec opgeeft.\"],\"-zy2Nq\":[\"Soort\"],\"0-31GV\":[\"Verwijderen van\"],\"0-yjzX\":[\"Het project moet zijn gesynchroniseerd voordat een revisie beschikbaar is.\"],\"00_HDq\":[\"Beleidstype\"],\"00cteM\":[\"Dit veld mag niet meer dan \",[\"0\"],\" tekens bevatten\"],\"01Zgfk\":[\"Er is een time-out opgetreden\"],\"02FGuS\":[\"Nieuwe groep maken\"],\"02ePaq\":[\"Selecteer \",[\"0\"]],\"02o5A-\":[\"Nieuw project maken\"],\"05TJDT\":[\"Klik om de taakdetails weer te geven\"],\"06Veq8\":[\"Project synchroniseren\"],\"08IuMU\":[\"Variabelen overschrijven\"],\"08dX0o\":[\"Grafana\"],\"0Ca6Bi\":[[\"dateStr\"],\" door<0>\",[\"username\"],\"\"],\"0DRyjU\":[\"Handlers die worden uitgevoerd\"],\"0JjrTf\":[\"Er is een fout opgetreden bij het parseren van het bestand. Controleer de opmaak van het bestand en probeer het opnieuw.\"],\"0K8MzY\":[\"Dit veld mag niet meer dan \",[\"max\"],\" tekens bevatten\"],\"0LUj25\":[\"Instantiegroep verwijderen\"],\"0MFMD5\":[\"Kan geen gezondheidscontrole uitvoeren op een of meer instanties.\"],\"0Ohn6b\":[\"Gestart door\"],\"0PUWHV\":[\"Frequentie herhalen\"],\"0Pz6gk\":[\"Variabelen die worden gebruikt om de geconstrueerde voorraadplug-in te configureren. Zie voor een gedetailleerde beschrijving van het configureren van deze plug-in\"],\"0QsHpG\":[\"Invoerschema dat een reeks geordende velden voor dat type definieert.\"],\"0Tddvz\":[\"De basis-URL van de Grafana-server - het\\n /api/annotations-eindpunt wordt automatisch toegevoegd aan de basis-\\n Grafana-URL.\"],\"0WL4_U\":[\"Alle knooppunten verwijderen\"],\"0WP27-\":[\"Wachten op output van taak…\"],\"0YAsXQ\":[\"Containergroep\"],\"0ZdD1M\":[[\"0\",\"plural\",{\"one\":[\"You cannot cancel the following job because it is not running:\"],\"other\":[\"You cannot cancel the following jobs because they are not running:\"]}]],\"0ZqUtV\":[\"Raadpleeg voor meer informatie de\"],\"0_ru-E\":[\"Inventaris kopiëren\"],\"0cqIWs\":[\"Wachtwoord basisauthenticatie\"],\"0d48JM\":[\"Meerkeuze-opties (meerdere keuzes mogelijk)\"],\"0eOoxo\":[\"Kies een einddatum/-tijd die na de begindatum/-tijd komt.\"],\"0f7U0k\":[\"Wo\"],\"0gPQCa\":[\"Altijd\"],\"0lvFRT\":[\"U kunt het type inloggegevens van een inloggegevens niet wijzigen, omdat dit de functionaliteit van de bronnen die het gebruiken kan verstoren.\"],\"0pC_y6\":[\"Gebeurtenis\"],\"0qOaMt\":[\"Er is iets misgegaan met het verzoek om deze inloggegevens en metagegevens te testen.\"],\"0rVzXl\":[\"Google OAuth 2-instellingen\"],\"0sNe72\":[\"Rollen toevoegen\"],\"0tNXE8\":[\"PUT\"],\"0tfvhT\":[\"Gebruikte capaciteit instantiegroep\"],\"0wlLcO\":[\"Stel in hoeveel dagen aan gegevens er moet worden bewaard.\"],\"0zpgxV\":[\"Opties\"],\"0zs8j5\":[\"Maximaal aantal keren dat de taak van dit knooppunt automatisch opnieuw wordt geprobeerd na een mislukking voordat de mislukkingspaden worden gevolgd. Geannuleerde taken worden nooit opnieuw geprobeerd.\"],\"1-4GhF\":[\"Synchronisatie annuleren\"],\"10B0do\":[\"Kan testbericht niet verzenden.\"],\"1280Tg\":[\"Hostnaam\"],\"12j25_\":[\"GPG openbare sleutel\"],\"12kemj\":[\"URL broncontrole\"],\"14KOyT\":[\"Source vars\"],\"15GcuU\":[\"Instellingen diversen authenticatie weergeven\"],\"17TKua\":[\"Instantiegroep\"],\"19zgn6\":[\"Instantietype\"],\"1A3EXy\":[\"Uitbreiden\"],\"1C5cFl\":[\"Volgende uitvoering\"],\"1Ey8My\":[\"IP-adres\"],\"1F0IaT\":[\"Schema's weergeven\"],\"1HMy92\":[\"JSON:\"],\"1I6UoR\":[\"Weergaven\"],\"1L3KBl\":[\"Nieuw type toegangsgegevens maken\"],\"1LRwvx\":[\"Als u wilt dat de inventarisbron bij het starten wordt bijgewerkt, klikt u op Bijwerken bij starten en gaat u ook naar \"],\"1Ltnvs\":[\"Knooppunt toevoegen\"],\"1PQRWr\":[\"Starttijd\"],\"1QRNEs\":[\"Frequentie herhalen\"],\"1RYzKu\":[\"Opnieuw starten vanaf geannuleerd knooppunt\"],\"1UJu6o\":[\"Selecteer een getal tussen 1 en 31.\"],\"1UjRxI\":[\"Cache time-out\"],\"1UzENP\":[\"Geen\"],\"1V4Yvg\":[\"Divers systeem\"],\"1WlWk7\":[\"Hostdetails van inventaris weergeven\"],\"1WsB5U\":[\"We waren niet in staat om de aan deze account gekoppelde abonnementen te lokaliseren.\"],\"1ZaQUH\":[\"Achternaam\"],\"1_gTC7\":[\"U kunt niet meerdere kluisreferenties met delfde kluis-ID selecteren. Als u dat wel doet, worden de andere met delfde kluis-ID automatisch gedeselecteerd.\"],\"1abtmx\":[\"Onderliggende groepen en hosts promoveren\"],\"1ahgeV\":[\"Google OAuth2\"],\"1cT4RU\":[\"SCM-update\"],\"1fO-kL\":[\"Kan niet van instantie wisselen.\"],\"1hCxP5\":[\"Een of meer instantiegroepen kunnen niet worden verwijderd.\"],\"1kwHxg\":[\"Metrics\"],\"1n50PN\":[\"JSON-tabblad\"],\"1qd4yi\":[\"Voer variabelen in met JSON- of YAML-syntaxis. Gebruik de radioknop om tussen de twee te wisselen.\"],\"1rDBnp\":[\"Bestandsverschil\"],\"1w2SCz\":[\"Kies een broncontroletype\"],\"1xdJD7\":[\"Aanpassen naar scherm\"],\"1yHVE-\":[\"Het toevoegen van\"],\"2-iKER\":[\"Activiteitenlogboek weergeven\"],\"2B_v7Y\":[\"Beleid instantiepercentage\"],\"2CTKOa\":[\"Terug naar projecten\"],\"2FB7vv\":[\"Selecteer een organisatie voordat u de standaard uitvoeringsomgeving bewerkt.\"],\"2FeJcd\":[\"Item overgeslagen\"],\"2H9REH\":[\"Fuzzy search op naamveld.\"],\"2JV4mx\":[\"De Instance Groups waartoe deze instantie behoort.\"],\"2KlsJC\":[\"U kunt een aantal mogelijke variabelen toepassen in het\\n bericht. Raadpleeg voor meer informatie de\"],\"2MSEkM\":[\"Kan inventaris niet verwijderen.\"],\"2a07Yj\":[\"Berichtsjabloon kopiëren\"],\"2ekvhy\":[\"Uitzonderingsfrequentie\"],\"2gDkH_\":[\"Voer een aantal voorvallen in.\"],\"2iyx-2\":[\"Ansible Controller Documentatie.\"],\"2n41Wr\":[\"Workflowsjabloon toevoegen\"],\"2nsB1O\":[\"Terug naar tokens\"],\"2ocqzE\":[\"Webhooks: Webhook inschakelen voor dit sjabloon.\"],\"2ooR7j\":[\"LDAP 5\"],\"2p6eVk\":[\"Opzoekmodus\"],\"2pNIxF\":[\"Werkstroomknooppunten\"],\"2pgi-L\":[\"Geeft aan of een host beschikbaar is en moet worden opgenomen in actieve\\n taken. Voor hosts die deel uitmaken van een externe inventaris, kan dit worden\\n gereset door het inventarissynchronisatieproces.\"],\"2qfwJn\":[\"Overschrijven\"],\"2r06bV\":[\"Hipchat\"],\"2rvMKg\":[\"Token verversen\"],\"2w-INk\":[\"Hostdetails\"],\"2zs1kI\":[\"Deze waarde komt niet overeen met het wachtwoord dat u eerder ingevoerd heeft. Bevestig dat wachtwoord.\"],\"3-SkJA\":[\"Groep van host loskoppelen?\"],\"3-sY1p\":[\"Sms-nummer(s) bestemming\"],\"328Yxp\":[\"Vertakking broncontrole\"],\"38Or-7\":[\"Tabbladen\"],\"38VIWI\":[\"Sjabloondetails weergeven\"],\"39y5bn\":[\"Vrijdag\"],\"3A9ATS\":[\"Uitvoeringsomgeving niet gevonden.\"],\"3AOZPn\":[\"Foutopsporingsopties bekijken en bewerken\"],\"3FUtN9\":[\"Synchronisatie inventarisbronnen\"],\"3IVQDN\":[\"Deze planning gebruikt complexe regels die niet worden ondersteund in de\\n UI. Gebruik de API om deze planning te beheren.\"],\"3JjdaA\":[\"Uitvoeren\"],\"3JnvxN\":[\"Kies de bronnen die nieuwe rollen gaan ontvangen. U kunt de rollen selecteren die u in de volgende stap wilt toepassen. Merk op dat de hier gekozen bronnen alle rollen ontvangen die in de volgende stap worden gekozen.\"],\"3JzsDb\":[\"Mei\"],\"3LoUor\":[\"Bestemmingskanalen\"],\"3LqMX2\":[\"CIQ Ascender Automation Platform\"],\"3PAU4M\":[\"Jaar\"],\"3PZalO\":[\"Host niet gevonden.\"],\"3Rke7L\":[\"1 (Info)\"],\"3WGwSW\":[\"Verwijder de lokale repository volledig voordat u een update uitvoert. Afhankelijk van de grootte van de repository kan dit de benodigde tijd om een update te voltooien aanzienlijk verlengen.\"],\"3YSVMq\":[\"Fout bij verwijderen\"],\"3aIe4Y\":[\"Nieuwe organisatie maken\"],\"3b24mY\":[\"CPU \",[\"0\"]],\"3fG1e7\":[\"Verstreken tijd\"],\"3fMc43\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" jaar\"],\"other\":[\"#\",\" jaar\"]}]],\"3hCQhK\":[\"Voorraadplugins\"],\"3hvUyZ\":[\"nieuwe keuze\"],\"3mTiHp\":[\"Kan sjabloon niet kopiëren.\"],\"3pBNb0\":[\"Download output\"],\"3sFvGC\":[\"Zet de instantie aan of uit. Indien uitgeschakeld, zullen er geen taken aan deze instantie worden toegewezen.\"],\"3sXZ-V\":[\"en klik op Update Revision on Launch.\"],\"3uAM50\":[\"Licentie-overeenkomst voor eindgebruikers\"],\"3wPA9L\":[\"Categorie instellen\"],\"3y7qi5\":[\"Terug naar toegangsgegevens\"],\"3yy_k-\":[\"Geef alle teams weer.\"],\"4-RjdJ\":[[\"interval\"],\" year\"],\"40lLFI\":[\"Ga naar de volgende pagina\"],\"41KRqu\":[\"Wachtwoorden toegangsgegevens\"],\"45BzQy\":[\"Gezondheidscontroles zijn asynchrone taken. Zie de\"],\"45cx0B\":[\"Abonnement bewerken annuleren\"],\"45gLaI\":[\"Vraag om referenties bij opstarten.\"],\"46SUtl\":[\"Groep bewerken\"],\"479kuh\":[\"Volledige herziening kopiëren naar klembord.\"],\"47e97a\":[\"Max. pogingen\"],\"4BITzH\":[\"Fout:\"],\"4LzLLz\":[\"Alle instellingen weergeven\"],\"4Q4HZp\":[[\"pluralizedItemName\"],\" niet gevonden\"],\"4QXpWJ\":[\"time-out\"],\"4QfhOe\":[\"Sommige zoekmodifiers zoals not__ en __search worden niet ondersteund in Smart Inventory hostfilters. Verwijder deze om een nieuwe Smart Inventory te maken met dit filter.\"],\"4S2cNE\":[\"Logboekregistratie-instellingen weergeven\"],\"4Wt2Ty\":[\"Items in lijst selecteren\"],\"4_ESDh\":[\"Dit veld moet een reguliere expressie zijn\"],\"4_xiC_\":[\"Artefacten\"],\"4alXD6\":[\"Maximaal aantal taken dat gelijktijdig op deze groep wordt uitgevoerd.\\n Nul betekent dat er geen limiet wordt afgedwongen.\"],\"4bhLaA\":[\"Type toegangsgegevens selecteren\"],\"4cWhxn\":[\"Bepaalt of deze instantie al dan niet door beleid wordt beheerd. Indien ingeschakeld, is het exemplaar beschikbaar voor automatische toewijzing aan en verwijdering uit exemplaargroepen op basis van beleidsregels.\"],\"4dQFvz\":[\"Voltooid\"],\"4g1rw0\":[\"De hoeveelheid tijd (in seconden) voordat de e-mail-\\n melding stopt met proberen de host te bereiken en er een time-out optreedt. Varieert\\n van 1 tot 120 seconden.\"],\"4hPyPF\":[\"Opslaan en afsluiten\"],\"4j2eOR\":[\"Selecteer de inventaris waartoe deze host zal behoren.\"],\"4jnim6\":[\"Selecteer een webhook-service.\"],\"4km-Vu\":[\"Niet compliant\"],\"4kw_um\":[[\"interval\"],\" minute\"],\"4lCMxZ\":[\"Storing Verklaring:\"],\"4lgLew\":[\"Februari\"],\"4mQyZf\":[\"Webhook-services kunnen dit gebruiken als een gedeeld geheim.\"],\"4nLbTY\":[\"Alle beheertaken weergeven\"],\"4o_cFL\":[\"Toepassing maken\"],\"4s0pSB\":[\"Geef een hostpatroon op om de lijst met hosts die door het playbook worden beheerd of beïnvloed verder te beperken. Meerdere patronen zijn toegestaan. Raadpleeg de Ansible-documentatie voor meer informatie en voorbeelden over patronen.\"],\"4uVADI\":[\"Clientgeheim\"],\"4vFDZV\":[\"Nieuwe taaksjabloon maken\"],\"4vkbaA\":[\"Het project waaruit deze inventarisupdate afkomstig is.\"],\"4yGeRr\":[\"Inventarissynchronisatie\"],\"4zue79\":[\"Copyright\"],\"5-qYGv\":[\"Instantie Bewerken\"],\"54_SyV\":[[\"0\",\"plural\",{\"one\":[\"You do not have permission to cancel the following job:\"],\"other\":[\"You do not have permission to cancel the following jobs:\"]}]],\"56fd5u\":[\"Weet u zeker dat u alle knooppunten in deze workflow wilt verwijderen?\"],\"5B77Dm\":[\"Laatste taak\"],\"5F5F4w\":[\"Workflowgoedkeuring\"],\"5IhYoj\":[\"Typen knooppunten\"],\"5K7kGO\":[\"documentatie\"],\"5KMGbn\":[\"Weet u zeker dat u deze taak wilt annuleren?\"],\"5RMgCw\":[\"Hosts\"],\"5S4tZv\":[\"Frequentie kwam niet overeen met een verwachte waarde\"],\"5Sa1Ss\":[\"E-mail\"],\"5TnQp6\":[\"Soort taak\"],\"5WFDw4\":[\"Alleen ordenen op\"],\"5X2wog\":[\"Er is een probleem met inloggen. Probeer het opnieuw.\"],\"5_vHPm\":[\"TACACS+ instellingen weergeven\"],\"5ajaW1\":[\"Uitvoeren wanneer een artefact van het bovenliggende knooppunt overeenkomt met de voorwaarde.\"],\"5dJK4M\":[\"Rollen\"],\"5eHyY-\":[\"Testbericht\"],\"5eL2KN\":[\"Doel-URL\"],\"5lqXf5\":[\"Terugzetten op fabrieksinstellingen.\"],\"5n_soj\":[\"Vraag om aantal taaksegmenten bij opstarten.\"],\"5p6-Mk\":[\"Filteren op mislukte opdrachten\"],\"5pDe2G\":[\"Remove \",[\"0\"],\" Access\"],\"5pa4JT\":[\"Draaiboek gestart\"],\"5qauVA\":[\"Deze sjabloon voor workflowtaken wordt momenteel gebruikt door andere bronnen. Weet u zeker dat u hem wilt verwijderen?\"],\"5vA8H0\":[\"Geen overeenkomende hosts\"],\"5xzS8Q\":[\"Token die garandeert dat dit een bronbestand is\\n voor de ‘constructed’-plugin.\"],\"5y9wkB\":[\"Terug naar berichten\"],\"6-OdGi\":[\"Protocol\"],\"6-ptnU\":[\"optie aan de\"],\"623gDt\":[\"Kan gebruiker niet verwijderen.\"],\"63C4Yo\":[\"Containergroep\"],\"66Zq7T\":[\"Linkwijzigingen opslaan\"],\"66qTfS\":[\"Afgelopen week\"],\"679-JR\":[\"Fuzzy search op id, naam of beschrijvingsvelden.\"],\"68OTAn\":[\"This intance is currently being used by other resources. Are you sure you want to delete it?\"],\"68h6WG\":[\"Beheertaak opstarten\"],\"69aXwM\":[\"Bestaande groep toevoegen\"],\"69zuwn\":[\"Deprovisioning these instances could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"6ASSBg\":[\"LDAP 4\"],\"6BzDub\":[\"Zacht verwijderen\"],\"6GBt0m\":[\"Metadata\"],\"6HLTEb\":[\"Filteren...\"],\"6J-cs1\":[\"Time-out seconden\"],\"6KhU4s\":[\"Weet u zeker dat u de workflowcreator wil verlaten zonder uw wijzigingen op te slaan?\"],\"6LTyxl\":[\"Herziening\"],\"6PmtyP\":[\"Legenda wisselen\"],\"6RDwJM\":[\"Tokens\"],\"6UYTy8\":[\"Minuut\"],\"6V3Ea3\":[\"Gekopieerd\"],\"6WwHL3\":[\"Totaalaantal knooppunten\"],\"6XOI1I\":[\"Nieuwe gefedereerde inventaris maken\"],\"6XgEPi\":[\"Uur\"],\"6YtxFj\":[\"Naam\"],\"6Z5ACo\":[\"Configuratiesleutel host\"],\"6bpC9t\":[\"Mislukt knooppunt\"],\"6cylr_\":[\"Stdout\"],\"6f961q\":[\"Alleen indien ontbrekend\"],\"6hEnxG\":[\"Verhoging van rechten inschakelen\"],\"6j6_0F\":[\"Verwante bron\"],\"6kpN96\":[\"Kan bericht niet verwijderen.\"],\"6lGV3K\":[\"Minder tonen\"],\"6msU0q\":[\"Een of meer taken kunnen niet worden verwijderd.\"],\"6nsio_\":[\"Opdracht uitvoeren\"],\"6oNH0E\":[\"plugin configuratiegids.\"],\"6pMgh_\":[\"LDAP-instellingen weergeven\"],\"6rSKy6\":[\"Selecteer de broninventarissen voor deze gefedereerde inventaris. Wanneer een taak wordt gestart, worden hosts automatisch gerouteerd naar de instantiegroep van elke broninventaris.\"],\"6uvnKV\":[\"Service-/integratiesleutel API\"],\"6vrz8I\":[\"Kan een of meer taken niet annuleren.\"],\"6zGHNM\":[\"Resterende hosts\"],\"74MNbw\":[\"Ctrl IQ, Inc.\"],\"764xeZ\":[\"Kan de vragenlijst niet bijwerken.\"],\"7Bj3x9\":[\"Mislukt\"],\"7ElOdS\":[\"ID van het dashboard\"],\"7IUE9q\":[\"Bronvariabelen\"],\"7JF9w9\":[\"Vraag toevoegen\"],\"7L01XJ\":[\"Acties\"],\"7O5TcN\":[\"Samenvatting van de gebeurtenis niet beschikbaar\"],\"7PzzBU\":[\"User\"],\"7UZtKb\":[\"De organisatie die eigenaar is van dit workflowtaaksjabloon.\"],\"7VETeB\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"],\"7VpPHA\":[\"Bevestigen\"],\"7Xk3M1\":[\"Selecteer het project met het playbook dat u door deze taak wilt laten uitvoeren.\"],\"7ZhNzL\":[\"Ga naar de eerste pagina\"],\"7b8TOD\":[\"Meer informatie\"],\"7bDeKc\":[\"Abonnementsmanifest\"],\"7fJwmW\":[\"Lijst met geselecteerde items.\"],\"7hS02I\":[[\"automatedInstancesCount\"],\" sinds \",[\"automatedInstancesSinceDateTime\"]],\"7icMBj\":[\"Geen taakgegevens beschikbaar\"],\"7kb4LU\":[\"Goedgekeurd\"],\"7p5kLi\":[\"Dashboard\"],\"7q256R\":[\"Overschrijven van vertakking toelaten\"],\"7qFdk8\":[\"Toegangsgegevens bewerken\"],\"7sMeHQ\":[\"Sleutel\"],\"7sNhEz\":[\"Gebruikersnaam\"],\"7w3QvK\":[\"Body succesbericht\"],\"7wgt9A\":[\"Uitvoering van draaiboek\"],\"7zmvk2\":[\"Item mislukt\"],\"81eOdm\":[\"werkstroom opnieuw starten\"],\"82O8kJ\":[\"Dit project wordt momenteel gesynchroniseerd en kan niet worden aangeklikt totdat het synchronisatieproces is voltooid\"],\"82sWFi\":[\"Beheer\"],\"84Usx_\":[\"Kan project niet verwijderen.\"],\"87a_t_\":[\"Label\"],\"88ip8h\":[\"Alles terugzetten\"],\"8BkLPF\":[\"Lijst met toegestane URI's, gescheiden door spaties\"],\"8F8HYs\":[\"Selecteer het Ansible Automation Platform-abonnement dat u wilt gebruiken.\"],\"8H3Igx\":[[\"interval\"],\" month\"],\"8Oef5v\":[\"Voorbeeld-URL's voor GIT-broncodebeheer zijn onder meer:\"],\"8XM8GW\":[\"Kan rollen niet goed toewijzen\"],\"8Z236a\":[\"merklogo\"],\"8ZsakT\":[\"Wachtwoord\"],\"8_wZUD\":[\"Teamrollen\"],\"8d57h8\":[\"Diverse systeeminstellingen weergeven\"],\"8gCRbU\":[\"Overige meldingen\"],\"8gaTqG\":[\"Soortdetails\"],\"8kDNpI\":[\"Uitkomst van bovenliggend knooppunt vereist voordat de voorwaarde wordt geëvalueerd.\"],\"8l9yyw\":[\"Taaksjabloon\"],\"8lEjQX\":[\"Bundel installeren\"],\"8lb4Do\":[\"Abonnement wissen\"],\"8oiwP_\":[\"Configuratie-input\"],\"8p_xVT\":[[\"0\",\"plural\",{\"one\":[[\"1\"]],\"other\":[[\"2\"]]}]],\"8u5g0S\":[\"Smart-inventaris maken\"],\"8vETh9\":[\"Tonen\"],\"8wxHsh\":[\"Webhooksleutel voor dit workflowtaaksjabloon.\"],\"8yd882\":[\"Een of meer teams kunnen niet worden losgekoppeld.\"],\"8zGO4o\":[\"Het veld komt overeen met de opgegeven reguliere expressie.\"],\"8zoIOi\":[[\"0\",\"plural\",{\"one\":[\"This credential type is currently being used by some credentials and cannot be deleted.\"],\"other\":[\"Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?\"]}]],\"8zvzWO\":[\"Sta gelijktijdige uitvoeringen van dit workflowtaaksjabloon toe.\"],\"9-wVFp\":[\"Details van gefedereerde inventaris weergeven\"],\"91UHfE\":[\"Inventarisupdate\"],\"91lyAf\":[\"Gelijktijdige taken\"],\"933cZy\":[\"Diverse systeeminstellingen\"],\"954HqS\":[\"Wanneer werd de host voor het eerst geautomatiseerd\"],\"95p1BK\":[\"Nieuwe gebruiker maken\"],\"98Qtlu\":[\"Telkens wanneer een taak dit project gebruikt, wordt de revisie van het project bijgewerkt voordat de taak wordt gestart.\"],\"991Df5\":[\"a new webhook key will be generated on save.\"],\"99qC6z\":[[\"interval\"],\" week\"],\"9Ah95g\":[[\"0\",\"plural\",{\"one\":[\"Deze inventaris wordt momenteel gebruikt door enkele sjablonen. Weet u zeker dat u deze wilt verwijderen?\"],\"other\":[\"Het verwijderen van deze inventarissen kan gevolgen hebben voor enkele sjablonen die ervan afhankelijk zijn. Weet u zeker dat u ze toch wilt verwijderen?\"]}]],\"9BTNYL\":[\"Expected at least one of client_email, project_id or private_key to be present in the file.\"],\"9BpfLa\":[\"Labels selecteren\"],\"9DOXq6\":[\"Geef alle sjablonen weer.\"],\"9DugxF\":[\"Type abonnement\"],\"9HhFQ8\":[\"Retourneert resultaten met andere waarden dan deze, evenals andere filters.\"],\"9L1ngr\":[\"Totale taken\"],\"9N-4tQ\":[\"Type toegangsgegevens\"],\"9NyAH9\":[\"Overgeslagen\"],\"9PB0sF\":[\"IRC\"],\"9Rsklx\":[\"Alle knooppunten verwijderen\"],\"9Tmez1\":[\"Instantiedetails weergeven\"],\"9UuGMQ\":[\"In afwachting om verwijderd te worden\"],\"9V-Un3\":[\"Feitenopslag inschakelen\"],\"9VMv7k\":[\"Geconstrueerde inventaris\"],\"9Wm-J4\":[\"Wachtwoord wisselen\"],\"9XA1Rs\":[\"Het project wordt momenteel gesynchroniseerd en de revisie zal beschikbaar zijn nadat de synchronisatie is voltooid.\"],\"9Y3BQE\":[\"Organisatie verwijderen\"],\"9YSB0Z\":[\"In dit schema ontbreekt een Inventaris\"],\"9ZnrIx\":[\"Uw abonnementsgegevens weergeven en bewerken\"],\"9fRa7M\":[\"Rij selecteren om deze te weigeren\"],\"9hmrEp\":[\"Opnieuw starten bij\"],\"9iX1S0\":[\"Deze actie verwijdert het volgende exemplaar en mogelijk moet u de installatiebundel opnieuw uitvoeren voor elk exemplaar waarmee eerder verbinding was gemaakt:\"],\"9jfn-S\":[\"Is niet uitgeklapt\"],\"9l0RZY\":[\"Klik op een beschikbaar knooppunt om een nieuwe link te maken. Klik buiten de grafiek om te annuleren.\"],\"9m7jms\":[\"Broninventarissen waarvan de hosts naar hun respectievelijke instantiegroepen worden gerouteerd wanneer een taak wordt gestart tegen deze gefedereerde inventaris.\"],\"9mfJJf\":[\"Taaksjablonen\"],\"9nhhVW\":[\"pagina's\"],\"9nypdt\":[\"Oorspronkelijke waarde herstellen.\"],\"9odS2n\":[\"Mislukte hosts\"],\"9og-0c\":[\"Deze uitvoeringsomgeving wordt momenteel gebruikt door andere bronnen. Weet u zeker dat u deze wilt verwijderen?\"],\"9rFgm2\":[\"Abonnementscapaciteit\"],\"9rvzNA\":[\"Associatiemodus\"],\"9td1Wl\":[\"Controleren\"],\"9uI_rE\":[\"Ongedaan maken\"],\"9u_dDE\":[\"Aantal onbereikbare hosts\"],\"9uxVdR\":[\"Toegangsgegevens bronbeheer\"],\"9wvWk3\":[\"Deze samengestelde inventarisinvoer \\n maakt een groep voor beide categorieën en gebruikt \\n de limiet (hostpatroon) om alleen hosts te retourneren die \\n zich in de doorsnede van die twee groepen bevinden.\"],\"A1a8Ku\":[\"Fout bij opstarten van beheertaak\"],\"A1taO8\":[\"Zoeken\"],\"A3o0Xd\":[\"Selecteer de instantiegroepen waar de organisatie op uitgevoerd wordt.\"],\"A6paZd\":[\"Gefedereerde inventaris toevoegen\"],\"A8lIi2\":[\"Synchroniseren voor revisie\"],\"A9-PUr\":[\"Gezondheidscontrole verzoek(en) ingediend. Wacht even en laad de pagina opnieuw.\"],\"AA2ASV\":[\"Uitvoeringsomgeving gekopieerd\"],\"ADVQ46\":[\"Inloggen\"],\"ARAUFe\":[\"Inventaris verwijderen\"],\"AV22aU\":[\"Er is iets misgegaan...\"],\"AWOSPo\":[\"Inzoomen\"],\"Ab1y_G\":[\"Geconstrueerde inventarisbronsynchronisatie annuleren\"],\"AgTBbk\":[[\"intervalValue\",\"plural\",{\"one\":[\"week\"],\"other\":[\"weeks\"]}]],\"AgTuXC\":[\"U hebt geen machtiging om \",[\"pluralizedItemName\"],\": \",[\"itemsUnableToDelete\"],\" te verwijderen\"],\"Ai2U7L\":[\"Host\"],\"Aj3on1\":[\"Externe logboekregistratie inschakelen\"],\"AoCBvp\":[\"Taken verdelen\"],\"Apl-Vf\":[\"Red Hat-abonnementsmanifest\"],\"Apv-R1\":[\"Neem zodra u klaar bent om te upgraden of te verlengen <0>contact met ons op.\"],\"AqdlyH\":[\"Taaksjablonen met toegangsgegevens die om een wachtwoord vragen, kunnen niet worden geselecteerd tijdens het maken of bewerken van knooppunten\"],\"ArtxnQ\":[\"Refspec broncontrole\"],\"AsLVdj\":[\"Gebruik één IRC-kanaal of gebruikersnaam per regel. Het hekje-\\n symbool (#) voor kanalen en het apenstaartje-symbool (@) voor gebruikers zijn niet\\n vereist.\"],\"AwUsnG\":[\"Instanties\"],\"AxC8wb\":[\"Uitvoer kopiëren\"],\"AxPAXW\":[\"Geen resultaten gevonden\"],\"Axi4f8\":[\"Dragging item \",[\"id\"],\". Item with index \",[\"oldIndex\"],\" in now \",[\"newIndex\"],\".\"],\"Azw0EZ\":[\"Nieuwe Smart-inventaris maken\"],\"B0HFJ8\":[\"Een of meer hosts kunnen niet worden losgekoppeld.\"],\"B0P3qo\":[\"TAAK-ID:\"],\"B0dbFG\":[\"Schema verwijderen\"],\"B2Zb_F\":[\"JSON\"],\"B3ZzHO\":[\"Laatste geautomatiseerd\"],\"B4WcU9\":[\"Goedgekeurd door \",[\"0\"],\" - \",[\"1\"]],\"B7FU4J\":[\"Host gestart\"],\"B8bpYS\":[\"Upload een Red Hat-abonnementsmanifest met uw abonnement. Ga naar <0>abonnementstoewijzingen op het Red Hat-klantenportaal om uw abonnementsmanifest te genereren.\"],\"BAmn8K\":[\"Selecteer een brontype\"],\"BERhj_\":[\"Succesbericht\"],\"BGNDgh\":[\"Knooppunt alias\"],\"BH7upP\":[\"BERICHT\"],\"BIJ2_m\":[\"De uitvoeringsomgeving die wordt gebruikt voor taken binnen deze organisatie. Deze wordt gebruikt als terugvaloptie wanneer er niet expliciet een uitvoeringsomgeving is toegewezen op project-, taaksjabloon- of workflowniveau.\"],\"BNDplB\":[\"Sjabloon gekopieerd\"],\"BWTzAb\":[\"Handmatig\"],\"BaPk6N\":[\"Basispad dat wordt gebruikt om playbooks te lokaliseren. Mappen die in dit pad worden gevonden, worden weergegeven in de vervolgkeuzelijst van de playbookmap. Samen bieden het basispad en de geselecteerde playbookmap het volledige pad dat wordt gebruikt om playbooks te lokaliseren.\"],\"BfYq0G\":[\"Type broncontrole\"],\"Bg7M6U\":[\"Geen resultaat gevonden\"],\"Bl2Djq\":[\"Tokens weergeven\"],\"Bl2eoO\":[\"VERSLEUTELD\"],\"BskWMl\":[\"Onbereikbaar\"],\"BsrdSv\":[\"Voer voorraadvariabelen in met behulp van JSON- of YAML-syntaxis. Gebruik het keuzerondje om tussen de twee te schakelen. Raadpleeg de documentatie van de Ansible Controller, bijvoorbeeld de syntaxis.\"],\"Bv8zdm\":[\"Invoervoorraden\"],\"BwJKBw\":[\"van\"],\"Bz7WRU\":[[\"0\",\"plural\",{\"one\":[\"Voer een geldig telefoonnummer in.\"],\"other\":[\"Voer geldige telefoonnummers in.\"]}]],\"BzEFor\":[\"of\"],\"BzbzJb\":[\"Feiten\"],\"BzfzPK\":[\"Items\"],\"C-gr_n\":[\"Azure AD-instellingen\"],\"C0sUgI\":[\"Nieuwe inventaris maken\"],\"C2KEkR\":[\"SSH-wachtwoord\"],\"C3Q1LZ\":[\"OIDC-instellingen bekijken\"],\"C4C-qQ\":[\"Details van schema\"],\"C6GAUT\":[\"Is uitgeklapt\"],\"C7dP40\":[\"Kan \",[\"0\"],\" niet verwijderen.\"],\"C7s60U\":[\"Webhookdetails\"],\"CAL6E9\":[\"Teams\"],\"CDOlBM\":[\"Instantie-id\"],\"CE-M2e\":[\"Info\"],\"CGOseh\":[\"Details van schema\"],\"CGZgZY\":[\"Rij selecteren om deze te ontkoppelen\"],\"CG_9l6\":[\"LDAP 1\"],\"CGwKKr\":[[\"0\",\"plural\",{\"one\":[\"Groep verwijderen?\"],\"other\":[\"Groepen verwijderen?\"]}]],\"CIEoqM\":[\"Exemplaarnaam\"],\"CKc7jz\":[\"Modus hostdetails\"],\"CL7QiF\":[\"Typ het antwoord en klik dan op het selectievakje rechts om het antwoord als standaard te selecteren.\"],\"CLTHnk\":[\"Volgorde vragen enquête\"],\"CMmwQ-\":[\"Onbekende startdatum\"],\"CNZ5h9\":[\"Bewaartermijn van gegevens\"],\"CS8u6E\":[\"Webhook inschakelen\"],\"CSvk3a\":[\"Het nummer dat is gekoppeld aan de \\\"Messaging\\n Service\\\" in Twilio met de indeling +18005550199.\"],\"CW11B-\":[\"Minimum\"],\"CXJHPJ\":[\"Gewijzigd door (gebruikersnaam)\"],\"CZDqWd\":[\"De revisie van het project is momenteel verouderd. Vernieuw om de meest recente revisie op te halen.\"],\"CZg9aH\":[\"Hosts selecteren\"],\"C_Lu89\":[\"Geef inputs op met JSON- of YAML-syntaxis. Raadpleeg de documentatie voor Ansible Tower voor voorbeeldsyntaxis.\"],\"C_NnqT\":[\"Nieuwe host maken\"],\"Cc8jO8\":[\"Selecteer de toegangsgegevens die u wilt gebruiken bij het aanspreken van externe hosts om de opdracht uit te voeren. Kies de toegangsgegevens die de gebruikersnaam en de SSH-sleutel of het wachtwoord bevatten die Ansible nodig heeft om aan te melden bij de hosts of afstand.\"],\"CcKMRv\":[\"Deze taaksjabloon wordt momenteel door andere bronnen gebruikt. Weet u zeker dat u hem wilt verwijderen?\"],\"CczdmZ\":[\"Geef alle toegangsgegevens weer.\"],\"CdGRti\":[\"Geef alle berichtsjablonen weer.\"],\"Ce28nP\":[\"<0>Opmerking: instanties kunnen opnieuw worden gekoppeld aan deze instantiegroep als ze worden beheerd door <1>beleidsregels.\"],\"Cev3QF\":[\"Time-out minuten\"],\"ChTa9Z\":[[\"intervalValue\",\"plural\",{\"one\":[\"hour\"],\"other\":[\"hours\"]}]],\"CoPs3y\":[\"Er zijn voor deze workflow geen knooppunten geconfigureerd.\"],\"CoTqdo\":[\"\\n Note that you may still see the group in the list after\\n disassociating if the host is also a member of that group’s\\n children. This list shows all groups the host is associated\\n with directly and indirectly.\\n \"],\"Coyxic\":[\"Klik op deze knop om de verbinding met het geheimbeheersysteem te verifiëren met behulp van de geselecteerde referenties en de opgegeven inputs.\"],\"Cs0oSA\":[\"Instellingen weergeven\"],\"Csvbqs\":[\"bekijk hier de documenten van de geconstrueerde inventarisplug-in.\"],\"Cx8SDk\":[\"Vernieuwingstoken vervallen\"],\"D-NlUC\":[\"Systeem\"],\"D1JWCq\":[[\"interval\"],\" minutes\"],\"D4euEu\":[\"Instellingen diversen authenticatie\"],\"D89zck\":[\"Zon\"],\"DBBU2q\":[\"Voor dit veld moet ten minste één waarde worden geselecteerd.\"],\"DBC3t5\":[\"Zondag\"],\"DBHTm_\":[\"Augustus\"],\"DFNPK8\":[\"Gezondheidscontrole\"],\"DGZ08x\":[\"Alles synchroniseren\"],\"DHf0mx\":[\"Nieuwe instantiegroep maken\"],\"DHrOgD\":[\"Projectupdate\"],\"DIKUI7\":[\"Minimumlengte\"],\"DIX823\":[\"Dit veld moet een getal zijn en een waarde kleiner dan \",[\"max\"],\" hebben\"],\"DJIazz\":[\"Succesvol goedgekeurd\"],\"DNLiC8\":[\"Instellingen terugzetten\"],\"DNqHaO\":[\"Deze tabel geeft enkele nuttige parameters van de samengestelde\\n inventarisplugin. Voor de volledige lijst met parameters \"],\"DPfwMq\":[\"Gereed\"],\"DV-Xbw\":[\"Voorkeurstaal\"],\"DVIUId\":[\"Meldingsoverschrijvingen\"],\"DZNGtI\":[\"Resultaten van projectuitchecken\"],\"D_oBkC\":[\"GitHub-team\"],\"DdlJTq\":[\"Exacte overeenkomst (standaard-opzoeken indien niet opgegeven).\"],\"De2WsK\":[\"Deze actie ontkoppelt alle rollen voor deze gebruiker van de geselecteerde teams.\"],\"DhSza7\":[\"Naam controller\"],\"DnkUe2\":[\"Kies een Webhookservice\"],\"DqnAO4\":[\"Eerste geautomatiseerd\"],\"Du6bPw\":[\"Adres\"],\"Dug0C-\":[\"Na aantal voorvallen\"],\"DyYigF\":[\"TACACS+ instellingen\"],\"Dz7fsq\":[\"Inzoomen\"],\"E6Z4zF\":[\"Ongeldige bestandsindeling. Upload een geldig Red Hat-abonnementsmanifest.\"],\"E86aJB\":[\"Koppel host los!\"],\"E9wN_Q\":[\"Laatste gezondheidscontrole\"],\"EH6-2h\":[\"Topologie-weergave\"],\"EHu0x2\":[\"Synchroniseren\"],\"EIBcgD\":[\"Afkomstig uit een project\"],\"EIkRy0\":[\"Bestemmingskanalen\"],\"EJQLCT\":[\"Kan workflow-taaksjabloon niet verwijderen.\"],\"ENDbv1\":[\"Geef alle hosts weer.\"],\"ENRWp9\":[\"Tags voor de melding\"],\"ENyw54\":[\"Gerelateerde groepen\"],\"EP-eCv\":[\"SAML-instellingen\"],\"EQ-qsg\":[\"Workflowtaaksjablonen\"],\"ES0WE_\":[\"Bij time-out\"],\"ETUQuF\":[\"Een of meer inventarissen kunnen niet worden verwijderd.\"],\"EWL-h4\":[\"host-description-\",[\"0\"]],\"E_QGRL\":[\"Uitgeschakeld\"],\"E_tJey\":[\"Standaarduitvoeringsomgeving\"],\"Eb5CN1\":[[\"0\",\"plural\",{\"one\":[\"This organization is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"EdQY6l\":[\"Geen\"],\"Eff_76\":[\"Lokale tijdzone\"],\"Eg4kGP\":[\"Standaardantwoord(en)\"],\"EmSrGB\":[\"Vóór\"],\"EmfKjn\":[\"Probleemoplossingsinstellingen bekijken\"],\"Emna_v\":[\"Bron bewerken\"],\"EmzUsN\":[\"Details knooppunt weergeven\"],\"EnC3hS\":[\"Aangepaste podspecificatie\"],\"EpH7Cd\":[\"Toegangsgegevens verwijderen\"],\"Eq6_y5\":[\"this Tower documentation page\"],\"Eqp9wv\":[\"Bekijk JSON voorbeelden op\"],\"EwxKbE\":[\"VERWIJDERD\"],\"EzwCw7\":[\"Vraag bewerken\"],\"F-0xxR\":[\"Er ontbreken hulpbronnen uit dit sjabloon.\"],\"F-LGli\":[\"U hebt geen machtiging om het volgende te ontkoppelen: \",[\"itemsUnableToDisassociate\"]],\"F-_-es\":[\"Instanties selecteren\"],\"F0xJYs\":[\"Kan de capaciteitsaanpassing niet bijwerken.\"],\"F2l57P\":[\"Minimumpercentage van alle instanties dat automatisch\\n aan deze groep wordt toegewezen wanneer nieuwe instanties online komen.\"],\"FCnKmF\":[\"Gebruikerstoken maken\"],\"FD8Y9V\":[\"Klik op een knooppuntpictogram om de details weer te geven.\"],\"FEr96N\":[\"Thema\"],\"FFv0Vh\":[\"Automatisering\"],\"FG2mko\":[\"Items in lijst selecteren\"],\"FGnH0p\":[\"Dit annuleert alle volgende knooppunten in deze werkstroom.\"],\"FMpB-A\":[\"<0>Opmerking: handmatig gekoppelde instanties kunnen automatisch worden losgekoppeld van een instantiegroep als de instantie wordt beheerd door <1>beleidsregels.\"],\"FO7Rwo\":[\"Collega's verwijderen?\"],\"FQto51\":[\"Alle rijen uitklappen\"],\"FTuS3P\":[\"Dit veld mag niet leeg zijn\"],\"FV5MUV\":[\"Als gebruikers feedback nodig hebben over de juistheid\\n van hun samengestelde groepen, wordt het ten zeerste aanbevolen\\n om strict: true te gebruiken in de plugin-configuratie.\"],\"FXmp8Q\":[\"Kan rol niet koppelen\"],\"FYJRCY\":[\"Een of meer projecten kunnen niet worden verwijderd.\"],\"F_Nk65\":[\"Download output\"],\"F_c3Jb\":[\"Veld voor het opgeven van een aangepaste Kubernetes of OpenShift Pod-specificatie.\"],\"Failed\":[\"Mislukt\"],\"Fanpmj\":[\"Variabelen gevraagd\"],\"FblMFO\":[\"Metriek selecteren\"],\"FclH3w\":[\"Opslaan gelukt!\"],\"FfGhiE\":[\"Fout bij het opslaan van de workflow!\"],\"FhTYgi\":[\"Een of meer taaksjablonen kunnen niet worden verwijderd.\"],\"FhhvWu\":[\"Hierdoor worden alle volgende knooppunten in deze werkstroom geannuleerd.\"],\"FiyMaa\":[\"Kies een .json-bestand\"],\"FjVFQ-\":[\"Kies een module\"],\"FjkaiT\":[\"Uitzoomen\"],\"FkQvI0\":[\"Sjabloon bewerken\"],\"FlvpdU\":[\"If enabled, show the changes made\\n by Ansible tasks, where supported. This is equivalent to Ansible’s\\n --diff mode.\"],\"FnSb-y\":[\"Taak annuleren\"],\"FnZzou\":[\"Instantiestaat\"],\"FncCci\":[\"RADIUS\"],\"Fo2bwm\":[\"Persoon\"],\"Fo6qAq\":[\"Voorbeeld-URL's voor Subversion-broncodebeheer zijn onder meer:\"],\"Fp0Rk4\":[\"Optionele labels die deze inventaris beschrijven,\\n zoals 'dev' of 'test'. Labels kunnen worden gebruikt om\\n inventarissen en voltooide taken te groeperen en te filteren.\"],\"FqW8E0\":[\"Gebruikte capaciteit\"],\"FsGJXJ\":[\"Opschonen\"],\"Fx2-x_\":[\"Gebruikersrollen toevoegen\"],\"G-jHgL\":[\"Stel bronpad in op\"],\"G2KpGE\":[\"Project bewerken\"],\"G3myU-\":[\"Dinsdag\"],\"G768_0\":[\"geweigerd\"],\"G8jcl6\":[\"Berichtsjablonen\"],\"G9MOps\":[\"Filiaal om te gebruiken bij voorraadsynchronisatie. Projectstandaard gebruikt indien leeg. Alleen toegestaan als het veld project allow_override is ingesteld op true.\"],\"GDvlUT\":[\"Rol\"],\"GGWsTU\":[\"Geannuleerd\"],\"GGuAXg\":[\"SAML-instellingen weergeven\"],\"GHDQ7i\":[\"Een of meer organisaties kunnen niet worden verwijderd.\"],\"GJKwN0\":[\"Schema's\"],\"GLZDtF\":[\"Systeemwaarschuwing\"],\"GLwo_j\":[\"0 (Waarschuwing)\"],\"GMaU6_\":[\"Vraag om taaktype bij opstarten.\"],\"GO6s6F\":[\"Taakinstellingen\"],\"GRwtth\":[\"Een gezondheidscontrole op de instantie uitvoeren\"],\"GSYBQc\":[\"Service-/integratiesleutel API\"],\"GTOcxw\":[\"Gebruiker bewerken\"],\"GU9vaV\":[\"Hosts onbereikbaar\"],\"GXiLKo\":[\"Tekstgebied\"],\"GZIG7_\":[\"Inventaris gekopieerd\"],\"G_Dwo_\":[\"Choose an answer type or format you want as the prompt for the user.\\n Refer to the Ansible Controller Documentation for more additional\\n information about each option.\"],\"GaJLE6\":[\"Gestart door\"],\"Gd-B71\":[\"Type toegangsgegevens niet gevonden.\"],\"Ge5ecx\":[\"Max. hosts\"],\"GeIrWJ\":[[\"brandName\"],\" logo\"],\"Gf3vm8\":[\"per pagina\"],\"GiXRTS\":[\"Een of meer gebruikerstokens kunnen niet worden verwijderd.\"],\"Gix1h_\":[\"Alle taken weergeven\"],\"GkbHM9\":[\"Geef alle projecten weer.\"],\"Gn7TK5\":[\"Gereedschap wisselen\"],\"GpNoVG\":[\"Voeg een schema toe om deze lijst te vullen.\"],\"GpWp6E\":[\"Kenmerken en functies op systeemniveau definiëren\"],\"GtycJ_\":[\"Taken\"],\"H0z3JJ\":[\"Deze argumenten worden gebruikt met de opgegeven module. U kunt informatie over \",[\"moduleName\"],\" vinden door te klikken \"],\"H1M6a6\":[\"Alle instanties weergeven.\"],\"H3kCln\":[\"Hostnaam\"],\"H6jbKn\":[\"Instellingen gebruikersinterface\"],\"H7OUPr\":[\"Dag\"],\"H7e4dl\":[\"Geef sleutel-/waardeparen op met behulp van\\n YAML of JSON.\"],\"H86f9p\":[\"Samenvouwen\"],\"H9MIed\":[\"Uitvoeringsknooppunt\"],\"HAi1aX\":[\"Webhooksleutel bijwerken\"],\"HAzhV7\":[\"Toegangsgegevens\"],\"HDULRt\":[\"Unieke hosts\"],\"HGOtRu\":[\"Berichttest mislukt.\"],\"HIfMSF\":[\"Meerkeuze-opties\"],\"HLAK2g\":[\"This action will cancel the following jobs:\"],\"HODq3s\":[\"Kan een of meer workflowgoedkeuringen niet weigeren.\"],\"HQ7e8y\":[\"Hoofdletterongevoelige versie van exact.\"],\"HQ7oEt\":[\"Terug naar teams\"],\"HUx6pW\":[\"Configuratie-injector\"],\"HajiZl\":[\"Maand\"],\"HbaQks\":[\"Voer één e-mailadres per regel in om een lijst met ontvangers te maken voor dit type bericht.\"],\"HbnjOn\":[[\"interval\"],\" weeks\"],\"HcznyH\":[\"Kan sommige of alle inventarisbronnen niet synchroniseren.\"],\"HdE1If\":[\"Kanaal\"],\"HdErwL\":[\"Selecteer een rij om goed te keuren\"],\"Hf0QDK\":[\"Project gekopieerd\"],\"Hhnh8d\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" dag\"],\"other\":[\"#\",\" dagen\"]}]],\"HiTf1W\":[\"Terugzetten annuleren\"],\"HjxnnB\":[\"module selecteren\"],\"HlhZ5D\":[\"TLS gebruiken\"],\"HoHveO\":[\"Retourneert resultaten die aan dit filter en aan andere filters voldoen. Dit is het standaardsettype als er niets is geselecteerd.\"],\"HpK_8d\":[\"Herladen\"],\"Ht1JWm\":[\"Berichtkleur\"],\"HwpTx4\":[\"Bepaal het uitvoerniveau dat ansible produceert terwijl het playbook wordt uitgevoerd.\"],\"I0LRRn\":[\"Download Bundel\"],\"I7Epp-\":[\"Optie Details\"],\"I9NouQ\":[\"Geen abonnementen gevonden\"],\"ICi4pv\":[\"Automatisering\"],\"ICt7Id\":[\"Type knooppunt\"],\"IEKPuq\":[\"Volgende scrollen\"],\"IGQ11b\":[\"Geheim dat wordt gedeeld met de webhook-service. De service gebruikt dit om zijn verzoeken te ondertekenen, zodat alleen uw repository een projectsynchronisatie kan activeren. Typ uw eigen geheim om het als configuratie te beheren, of laat het veld leeg om er een te laten genereren bij het opslaan.\"],\"IJAVcb\":[\"Terug naar toepassingen\"],\"IKg_un\":[\"Bestemmingskanalen of -gebruikers\"],\"IMJYui\":[\"Gebruik één telefoonnummer per regel om op te geven waar\\n sms-berichten naartoe moeten worden gerouteerd. Telefoonnummers moeten de indeling +11231231234 hebben. Zie voor meer informatie de Twilio-documentatie\"],\"IN6gbp\":[\"Klik op om de volgorde van de enquêtevragen te wijzigen\"],\"IPusY8\":[\"Verwijder eventuele lokale wijzigingen voordat u een update uitvoert.\"],\"ISuwrJ\":[\"Uitvoeringsomgeving bewerken\"],\"IV0EjT\":[\"Testbericht\"],\"IVvM2B\":[\"Ingeschakelde opties\"],\"IWoF_f\":[\"Vragenlijst weergeven\"],\"IZfe0p\":[\"Broncontrolevertakking\"],\"Igz8MU\":[\"Afgelopen twee weken\"],\"IiR1sT\":[\"Type knooppunt\"],\"IjDwKK\":[\"inlogtype\"],\"Ikhk0q\":[\"Webhookservice voor dit workflowtaaksjabloon.\"],\"Iqm2E5\":[\"Voeg \",[\"pluralizedItemName\"],\" toe om deze lijst te vullen\"],\"IrC12v\":[\"Toepassing\"],\"IrI9pg\":[\"Einddatum\"],\"IsJ8i6\":[\"Selecteer een branch voor de workflow. Deze branch wordt toegepast op alle taaksjabloonnodes die om een branch vragen.\"],\"IspLSK\":[\"Beheertaak niet gevonden.\"],\"J0zi6q\":[\"Tags overslaan\"],\"J2HgCR\":[\"Red Hat, Inc.\"],\"J2d1y8\":[\"Recente succesvolle taken\"],\"J4y7Uk\":[\"Werkstroom geannuleerd \"],\"J8VgfD\":[\"Controleert of het gegeven veld of verwante object null is; verwacht een booleaanse waarde.\"],\"JEGlfK\":[\"Gestart\"],\"JFnJqF\":[\"Verlopen\"],\"JFphCp\":[\"3 (Foutopsporing)\"],\"JGvwnU\":[\"Laatst gebruikt\"],\"JIX50w\":[\"Terugval instantiegroep voorkomen: indien ingeschakeld, voorkomt het taaksjabloon dat inventaris- of organisatie-instantiegroepen worden toegevoegd aan de lijst met voorkeursinstantiegroepen om op uit te voeren.\"],\"JJwEMx\":[\"Verhuurders verwijderd\"],\"JKZTiL\":[\"Dit zijn de verbositeitsniveaus voor standaardoutput van de commando-uitvoering die worden ondersteund.\"],\"JL3si7\":[\"Bijwerken\"],\"JLjfEs\":[\"Een of meer schema's kunnen niet worden verwijderd.\"],\"JOmgRg\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" maand\"],\"other\":[\"#\",\" maanden\"]}]],\"JRa4kV\":[\"Synchroniseer het project wanneer er een push plaatsvindt in de broncodebeheer-repository, zodat de lokale kopie altijd up-to-date is zonder polling of updates bij elke taakstart.\"],\"JTHoCu\":[\"wijzigingen wisselen\"],\"JUwjsw\":[\"Select an activity type\"],\"JXgd33\":[\"Terug naar dashboard.\"],\"J_2nGO\":[\"The execution environment that will be used for jobs\\n inside of this organization. This will be used a fallback when\\n an execution environment has not been explicitly assigned at the\\n project, job template or workflow level.\"],\"J_DUZt\":[\"Instantiegroepen\"],\"Ja4VHl\":[[\"0\"],\" meer\"],\"JgP090\":[\"Submodules tracken\"],\"JjcTk5\":[\"sociale aanmelding\"],\"JjfsZM\":[\"Workflowgoedkeuring verwijderen\"],\"JppQoT\":[\"Laatste herberekeningsdatum:\"],\"JsY1p5\":[\"Geweigerd\"],\"Jvv6rS\":[\"Meerkeuze\"],\"JwqOfG\":[\"Evalueren op\"],\"Jy9qCv\":[\"omleiden inloggen bewerken annuleren\"],\"K5AykR\":[\"Team verwijderen\"],\"K93j4j\":[\"Labelnaam\"],\"KC2nS5\":[\"Bron verwijderd\"],\"KDcLJ6\":[\"YAML:\"],\"KEY0qH\":[\"Test geslaagd\"],\"KM6m8p\":[\"Team\"],\"KNOsJ0\":[\"Optionele labels die dit taaksjabloon beschrijven, zoals 'dev' of 'test'. Labels kunnen worden gebruikt om taaksjablonen en voltooide taken te groeperen en te filteren.\"],\"KQ9EQm\":[\"Hoe geconstrueerde voorraadplug-in te gebruiken\"],\"KR9Aiy\":[\"This inventory is currently being used by some templates. Are you sure you want to delete it?\"],\"KRf0wm\":[\"Types toegangsgegevens\"],\"KTvwHj\":[\"Invoerbronnen voor toegangsgegevens\"],\"KVbzjm\":[\"Visualizer\"],\"KXFYp9\":[\"Abonnement ophalen\"],\"KXnokb\":[\"Wereldwijd beschikbare uitvoeringsomgeving kan niet opnieuw worden toegewezen aan een specifieke organisatie\"],\"KZp4lW\":[\"Lookup select\"],\"K_MYeX\":[\"Gebruikersdetails weergeven\"],\"KeRkFA\":[\"Abonnementskeuze wissen\"],\"KeqCdz\":[\"Peers van control nodes\"],\"Ki_j_-\":[\"Laat leeg om bij het opslaan een nieuwe webhook-sleutel te genereren\"],\"KjBkMe\":[\"Deze containergroep wordt momenteel door andere bronnen gebruikt. Weet u zeker dat u hem wilt verwijderen?\"],\"KjVvNP\":[\"ID van het paneel\"],\"KkMfgW\":[\"Taaksjablonen\"],\"KkzJWF\":[\"Eerste automatisering\"],\"KlQd8_\":[\"Geef een bereik op voor de toegang van de token\"],\"KnN1Tu\":[\"Verloopt\"],\"KoCnPE\":[\"Taak annuleren\"],\"KopV8H\":[\"Alleen wortelgroepen tonen\"],\"KxIA0h\":[\"Host wisselen\"],\"Kz9DSl\":[\"Bestaande host toevoegen\"],\"KzQFvE\":[\"Organisatie bewerken\"],\"L1Ob4t\":[\"Tabblad Details\"],\"L3ooU6\":[\"Toegangsgegeven\"],\"L7Nz3F\":[\"Ontbrekende bron\"],\"L8fEEm\":[\"Groep\"],\"L973Qq\":[\"Abonnement aanvragen\"],\"LCl8Ck\":[\"Datumzoekinvoer\"],\"LGl_pR\":[\"Taakinstellingen weergeven\"],\"LGryaQ\":[\"Nieuwe toegangsgegevens maken\"],\"LQ29yc\":[\"Voorraadbronsynchronisatie starten\"],\"LQRys9\":[\"Submodules volgen de laatste commit op hun master-branch (of een andere branch die is opgegeven in .gitmodules). Zo niet, dan worden submodules behouden op de revisie die is opgegeven door het hoofdproject. Dit komt overeen met het opgeven van de vlag --remote bij git submodule update.\"],\"LQTgjH\":[\"Feit niet gevonden.\"],\"LRePxk\":[\"Minimaal aantal instanties dat automatisch aan deze groep wordt toegewezen wanneer nieuwe instanties online komen.\"],\"LSUePQ\":[\"Starten | \",[\"0\"]],\"LULLsO\":[\"Geef alle organisaties weer.\"],\"LV5a9V\":[\"Collega's\"],\"LVecP9\":[\"Gebruikersrollen\"],\"LYAQ1X\":[\"Gelijktijdige taken inschakelen\"],\"LZr1lR\":[\"Kan instantiegroep niet vinden.\"],\"Lc0RHh\":[\"Schema wisselen\"],\"LgD0Cy\":[\"Toepassingsnaam\"],\"LhMjLm\":[\"Tijd\"],\"Ll7Jei\":[\"LDAP3\"],\"LnYbGj\":[\"Vragenlijst wijzigen\"],\"Lnnjmk\":[\"<0><1/> Een technisch voorbeeld van de nieuwe \",[\"brandName\"],\" gebruikersinterface is <2>hier te vinden.\"],\"Lqygiq\":[\"Provisioning terugkoppelingen\"],\"LtBtED\":[\"Berichtsucces wisselen\"],\"LuXP9q\":[\"Toegang\"],\"LwHwt1\":[[\"brandName\"],\"-abonnement\"],\"Lwovp8\":[\"Indien ingeschakeld, zijn gelijktijdige uitvoeringen van dit taaksjabloon toegestaan.\"],\"M0okDw\":[\"Stel voorkeuren in voor gegevensverzameling, logo's en aanmeldingen\"],\"M73whl\":[\"Context\"],\"MA-mp9\":[\"Webhook-reffilter\"],\"MA7cMf\":[\"Geconstrueerde inventarisparametertabel\"],\"MAI_nw\":[\"Probeer een andere zoekopdracht met de bovenstaande filter\"],\"MAV-SQ\":[\"Toegangsgegevens niet gevonden.\"],\"MApRef\":[\"Weet u zeker dat u de login redirect override URL wilt bewerken? Als u dat doet, kan dat invloed hebben op de mogelijkheid van gebruikers om in te loggen op het systeem als de lokale authenticatie ook is uitgeschakeld.\"],\"MD0-Al\":[\"Uw sessie is bijna afgelopen\"],\"MDQLec\":[\"Controleer het uitvoerniveau dat Ansible zal produceren voor voorraadbronupdatetaken.\"],\"MGpavd\":[\"Sleutel typeahead\"],\"MHM-bv\":[\"Ongeldig linkdoel. Kan niet linken aan onder- of bovenliggende knooppunten. Grafiekcycli worden niet ondersteund.\"],\"MHbbol\":[\" Taakverdeling\"],\"MKEPCY\":[\"Volgen\"],\"MP1v-1\":[\"Legenda\"],\"MP8dU9\":[\"De volledige imagelocatie, inclusief het containerregister, de imagenaam en de versietag.\"],\"MQPvAa\":[\"Vraag om labels bij opstarten.\"],\"MQoyj6\":[\"Workflowtaaksjabloon\"],\"MTLPCv\":[\"Uitvoeren wanneer het bovenliggende knooppunt in een storingstoestand komt.\"],\"MVw5um\":[\"2 (Meer verbaal)\"],\"MZU5bt\":[\"Een of meer groepen kunnen niet worden verwijderd.\"],\"M_gXds\":[\"Note: This instance may be re-associated with this instance group if it is managed by \"],\"MdhgLT\":[\"IRC-serverwachtwoord\"],\"MfCEiB\":[\"Galaxy-toegangsgegevens\"],\"MfQHgE\":[\"Te behouden dagen\"],\"Mfk6hJ\":[\"Een of meer sjablonen kunnen niet worden verwijderd.\"],\"Mhn5m4\":[\"Toegangsgegevens registreren\"],\"Mn45Gz\":[\"Terug naar instantiegroepen\"],\"MnbH31\":[\"pagina\"],\"MofjBu\":[\"De uitvoeringsomgeving die wordt gebruikt voor taken die dit project gebruiken. Dit wordt gebruikt als fallback wanneer er geen uitvoeringsomgeving expliciet is toegewezen op taaksjabloon- of workflowniveau.\"],\"MpLngK\":[\"Het webhook-eindpunt van dit project. Voeg het toe aan de webhook-configuratie van de repository zodat pushes een projectsynchronisatie activeren.\"],\"MpZRQy\":[\"Git\"],\"MuhG5I\":[[\"0\",\"plural\",{\"one\":[\"This approval cannot be deleted due to insufficient permissions or a pending job status\"],\"other\":[\"These approvals cannot be deleted due to insufficient permissions or a pending job status\"]}]],\"MwCc2O\":[\"Webhookreferentie voor dit workflowtaaksjabloon.\"],\"Mwf3Mw\":[\"Vul de hosts voor deze inventaris in met behulp van een zoek-\\n filter. Voorbeeld: ansible_facts__ansible_distribution:\\\"RedHat\\\".\\n Raadpleeg de documentatie voor verdere syntaxis en\\n voorbeelden. Raadpleeg de Ansible Controller-documentatie voor verdere syntaxis en\\n voorbeelden.\"],\"MzcRa_\":[\"Gebruikers- en Automatiseringsanalyses\"],\"Mzqo60\":[\"Waarde om het artefact mee te vergelijken. Wordt indien mogelijk als JSON geïnterpreteerd (bijv. true, 3), anders als een gewone tekenreeks.\"],\"N1U4ZG\":[\"Naleving van abonnementen\"],\"N36GRB\":[\"Dit veld moet een getal zijn en een waarde groter dan \",[\"min\"],\" hebben\"],\"N40H-G\":[\"Alle\"],\"N5vmCy\":[\"geconstrueerde inventaris\"],\"N6GBcC\":[\"Verwijderen bevestigen\"],\"N7wOty\":[\"Selecteer het playbook dat door deze taak moet worden uitgevoerd.\"],\"NAKA53\":[\"Hostmislukking\"],\"NBONaK\":[\"Feiten verzamelen\"],\"NCVKhy\":[\"Recente taken\"],\"NDQvUO\":[\"Vraag om tags bij opstarten.\"],\"NIuIk1\":[\"Onbeperkt\"],\"NLKsgx\":[[\"pluralizedItemName\"],\" Lijst\"],\"NO1ZxL\":[\"Toepassingsnaam\"],\"NPfgIB\":[\"sec\"],\"NQHZnb\":[\"Geheel getal\"],\"NRn4V6\":[[\"interval\"],\" months\"],\"NUNUrW\":[\"Tags voor de melding (optioneel)\"],\"NW-xDQ\":[\"Hiermee worden alle configuratiewaarden op deze pagina teruggezet naar\\n hun fabrieksinstellingen. Weet u zeker dat u wilt doorgaan?\"],\"NX18CF\":[\"Op of na\"],\"NYxilo\":[\"Max. aantal gelijktijdige opdrachten\"],\"Na9fIV\":[\"Geen items gevonden.\"],\"NcVaYu\":[\"Voltooiingstijd\"],\"NeA1eI\":[\"Naar rechts pannen\"],\"Never\":[\"Nooit\"],\"NgD4On\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"Deze actie annuleert de volgende taak:\"],\"other\":[\"Deze actie annuleert de volgende taken:\"]}]],\"NjnDuY\":[\"Dragging started for item id: \",[\"newId\"],\".\"],\"NjqMGF\":[\"Brontype toevoegen\"],\"NnH3pK\":[\"Test\"],\"No Jobs\":[\"Geen taken\"],\"NpJHAp\":[\"Taaksjablonen met een ontbrekende inventaris of een ontbrekend project kunnen niet worden geselecteerd tijdens het maken of bewerken van knooppunten. Selecteer een andere sjabloon of herstel de ontbrekende velden om verder te gaan.\"],\"NqIlWb\":[\"Laatst uitgevoerd\"],\"NrGRF4\":[\"Modus Abonnement selecteren\"],\"NsXTPu\":[\"Om een smart-inventaris aan te maken via ansible-feiten, gaat u naar het scherm smart-inventaris.\"],\"NtD3hJ\":[\"Verwante sleutels\"],\"Nu4DdT\":[\"Synchroniseren\"],\"Nu4oKW\":[\"Omschrijving\"],\"Nu7VHX\":[\"Kies de rollen die op de geselecteerde bronnen moeten worden toegepast. Alle geselecteerde rollen worden toegepast op alle geselecteerde bronnen.\"],\"O-OYOe\":[\"Team bewerken\"],\"O06Rp6\":[\"Gebruikersinterface\"],\"O1Aswy\":[\"Verloopt nooit\"],\"O28qFz\":[\"Taak \",[\"0\"],\" weergeven\"],\"O2EuOK\":[\"Aanmelden met SAML \",[\"samlIDP\"]],\"O2UpM1\":[\"Bladeren\"],\"O3oNi5\":[\"E-mail\"],\"O4ilec\":[\"Hoofdletterongevoelige versie van regex.\"],\"O5pAaX\":[\"Instantie en metriek selecteren om grafiek te tonen\"],\"O78b13\":[\"Selecteer de toepassing waartoe dit token zal behoren, of laat dit veld leeg om een persoonlijk toegangstoken aan te maken.\"],\"O8_96D\":[\"Luisterpoort\"],\"O9VQlh\":[\"Frequentie herhalen\"],\"OA8xiA\":[\"Naar links pannen\"],\"OA99Nq\":[\"Wanneer is de host voor het laatst geautomatiseerd\"],\"OC4Tzv\":[\"hier\"],\"OGoqLy\":[\"# sources with sync failures.\"],\"OHGMM6\":[\"Startdatum/-tijd\"],\"OIv5hN\":[\"Doorverwijzen naar abonnementsdetails\"],\"OJ9bHy\":[\"Een of meer groepen kunnen niet worden losgekoppeld.\"],\"OOq_rD\":[\"Draaiboek uitvoering\"],\"OPTWH4\":[\"HTTPS-certificaatcontrole inschakelen\"],\"ORxrw7\":[\"Resterende dagen\"],\"OSH8xi\":[\"Hop\"],\"OcRJRt\":[\"Taak annuleren bevestigen\"],\"Oe_VOY\":[\"Een of meer instanties kunnen niet worden losgekoppeld.\"],\"OgB1k4\":[\"Argumenten\"],\"OiCz65\":[\"Grafana URL\"],\"Oiqdmc\":[\"Aanmelden met GitHub-organisaties\"],\"Oj2Ix6\":[\"De hoeveelheid tijd (in seconden) die wordt uitgevoerd voordat de taak wordt geannuleerd. De standaardwaarde is 0 voor geen taaktime-out.\"],\"OjwX8k\":[\"Tokeninformatie\"],\"OlpaBt\":[\"Gelijktijdige taken: indien ingeschakeld, zijn gelijktijdige uitvoeringen van dit taaksjabloon toegestaan.\"],\"OmbooC\":[\"Taak gestart\"],\"OogRLI\":[\"Gefedereerde inventaris niet gevonden.\"],\"OqE3G-\":[\"Exact zoeken op id-veld.\"],\"Osn70z\":[\"Foutopsporing\"],\"OvBnOM\":[\"Terug naar instellingen\"],\"OyGPiW\":[\"Abonnementsinstellingen\"],\"OzssJK\":[\"Opdracht uitvoeren\"],\"P3spiP\":[\"Terug naar sjablonen\"],\"P7d85D\":[\"Teamtoegang verwijderen\"],\"P8fBlG\":[\"Authenticatie\"],\"PByO0X\":[\"Stemmen\"],\"PCEmEr\":[\"Gebruikerstokens\"],\"PJ1B0S\":[[\"0\",\"plural\",{\"one\":[\"This project is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"PJf54Q\":[\"Terug naar bronnen\"],\"PKTjJ3\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"weekday\"],\" van \",[\"month\"]],\"4\":[\"The fourth \",[\"weekday\"],\" van \",[\"month\"]],\"5\":[\"The fifth \",[\"weekday\"],\" van \",[\"month\"]],\"one\":[\"The first \",[\"weekday\"],\" van \",[\"month\"]],\"two\":[\"The second \",[\"weekday\"],\" van \",[\"month\"]]}]],\"PLzYyl\":[\"Frequentie Uitzondering Details\"],\"PMk2Wg\":[\"Deprovisionering mislukt\"],\"POKy-m\":[\"Uitvoeringsomgeving kopiëren\"],\"PPsHsC\":[\"Alles terugzetten naar standaardinstellingen\"],\"PQPOpT\":[\"Inventarisbestand\"],\"PRuZiQ\":[\"Synchroniseren voor herziening\"],\"PUnovD\":[\"Amazon EC2\"],\"PVCOQE\":[\"Peer verwijderd. Zorg ervoor dat u de installatiebundel voor \",[\"0\"],\" opnieuw uitvoert om de wijzigingen van kracht te zien worden.\"],\"PWwwY2\":[\"Loskoppelen\"],\"PYPqaM\":[\"ID van het paneel (optioneel)\"],\"PZBWpL\":[\"Switch to light mode\"],\"P_s0vy\":[\"Kan het inloggegevenstype voor deze webhook-service niet opzoeken, dus het veld voor webhook-inloggegevens is niet beschikbaar.\"],\"PaTL2O\":[\"Lijst met ontvangers\"],\"PhufXn\":[\"Ouder taken verdelen\"],\"Pi5vnX\":[\"Synchroniseren van geconstrueerde voorraadbron mislukt\"],\"PiK6Ld\":[\"Zat\"],\"PiRb8z\":[\"MEEST RECENTE SYNCHRONISATIE\"],\"PjkoCm\":[\"Weet u zeker dat u het onderstaande knooppunt wilt verwijderen:\"],\"PkVlOm\":[\"Geef HTTP-headers op in JSON-indeling. Raadpleeg\\n de Ansible Controller-documentatie voor voorbeeldsyntaxis.\"],\"Po1btV\":[\"Globale navigatie\"],\"Po7y5X\":[\"Kan uitvoeringsomgeving niet kopiëren\"],\"PvgcEq\":[\"Draggable list to reorder and remove selected items.\"],\"PwAMWD\":[\"Alle taakgebeurtenissen samenvouwen\"],\"PyV1wC\":[\"Instance Group Fallback voorkomen\"],\"Q3P_4s\":[\"Taak\"],\"Q4hWRC\":[\"Workflow Jobs (\",[\"total\"],\")\"],\"Q5ZW8j\":[\"Tabel Abonnementen\"],\"QF_MpS\":[\"\\n Houd er rekening mee dat alleen hosts die zich rechtstreeks in deze groep bevinden,\\n kunnen worden losgekoppeld. Hosts in subgroepen moeten rechtstreeks worden losgekoppeld\\n op het subgroepniveau waartoe ze behoren.\\n \"],\"QFdBqu\":[\"Mattermost\"],\"QGbLBK\":[\"Taak-id\"],\"QHF6CU\":[\"Uitvoeringen van het draaiboek\"],\"QIOH6p\":[\"Gestart door (gebruikersnaam)\"],\"QIpNLR\":[\"Geen fouten bij inventarissynchronisatie.\"],\"QIq3_3\":[\"Opmerking: de volgorde waarin deze worden geselecteerd bepaalt de voorrang bij de uitvoering. Selecteer er meer dan één om slepen mogelijk te maken.\"],\"QJbMvX\":[\"Toegangsgegevens waarvoor wachtwoorden nodig zijn bij het starten, zijn niet toegestaan. Verwijder of vervang de volgende toegangsgegevens door één van hetzelfde type om door te gaan: \",[\"0\"]],\"QJowYS\":[\"verwijderen bevestigen\"],\"QKUQw1\":[\"Nieuwe host maken\"],\"QKbQTN\":[\"Keuzeschakelaar type activiteitenlogboek\"],\"QOF7Jg\":[\"Niet goedgekeurd \",[\"0\"],\".\"],\"QPRWww\":[\"Uitvoertype\"],\"QR908H\":[\"Naam instellen\"],\"QT1rDU\":[\"GitHub Enterprise\"],\"QTwM6Y\":[\"Het project dat het playbook bevat dat deze taak zal uitvoeren.\"],\"QYKS3D\":[\"Recente taken\"],\"QamIPZ\":[\"Klik op de startknop om te beginnen.\"],\"Qay_5h\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"Qd2E32\":[\"Haal de ingeschakelde status op uit het gegeven dictaat van hostvariabelen. De ingeschakelde variabele kan worden opgegeven met behulp van puntnotatie, bijvoorbeeld: 'foo.bar'\"],\"Qf36YE\":[\"Verbositeit\"],\"QgnNyZ\":[\"Synchronisatiefout\"],\"Qhb8lT\":[\"Nieuwe toepassing maken\"],\"QmvYrA\":[\"Optionele beschrijving voor het workflowtaaksjabloon.\"],\"QnJn75\":[\"Laatste uitvoering\"],\"Qv59HG\":[\"Type toegangsgegevens selecteren\"],\"Qv91_c\":[\"LDAP 2\"],\"QyjCeq\":[\"Capaciteit\"],\"R-uZ8Y\":[\"Aanmelden met SAML\"],\"R633QG\":[\"Terug naar workflowgoedkeuringen\"],\"R7s3iG\":[\"Teruggeven\"],\"R9Khdg\":[\"Auto\"],\"R9sZsA\":[\"Alle groepen en hosts verwijderen\"],\"RBDHUE\":[\"Vraag om uitvoeringsomgeving bij opstarten.\"],\"RI8cIw\":[\"Het maximale aantal hosts dat door\\n deze organisatie mag worden beheerd. De waarde is standaard 0, wat betekent dat er geen limiet is.\\n Raadpleeg de Ansible-documentatie voor meer details.\"],\"RIcSTA\":[\"Verloopt op\"],\"RIeAlp\":[\"Elke keer dat een taak wordt uitgevoerd met behulp van deze inventaris, vernieuwt u de inventaris van de geselecteerde bron voordat u projecttaken uitvoert.\"],\"RK1gDV\":[\"Aanmelden met Azure AD\"],\"RMdd1C\":[\"Geen (eenmaal uitgevoerd)\"],\"RO9G1f\":[\"Dit veld moet groter zijn dan 0\"],\"RPnV2o\":[\"De zoekfilter leverde geen resultaten op…\"],\"RThfvh\":[\"Verwant(e) team(s) loskoppelen?\"],\"R_mzhp\":[\"Kan gebruikerstoken niet bijwerken.\"],\"RbIaa9\":[\"Token niet gevonden.\"],\"RdLvW9\":[\"taken opnieuw starten\"],\"Rguqao\":[\"Rij selecteren om deze te verwijderen\"],\"RhOukN\":[[\"interval\"],\" hour\"],\"RiQMUh\":[\"In uitvoering\"],\"RjIKOw\":[\"Kan inventaris op een host niet wijzigen\"],\"RjkhdY\":[\"Veld begint met waarde.\"],\"RkXlPZ\":[\"GitHub\"],\"RlsPz7\":[\"Weet u zeker dat u deze link wilt verwijderen?\"],\"Rm1iI_\":[\"Vraag om variabelen bij opstarten.\"],\"Roaswv\":[\"User Guide\"],\"RpKSl3\":[\"Toegangsgegeven gekopieerd\"],\"RsZ4BA\":[\"Laatste scrollen\"],\"RtKKbA\":[\"Laatste\"],\"Ru59oZ\":[\"Webhook inschakelen voor dit sjabloon.\"],\"RuEWFx\":[\"Aan-datum\"],\"RuiOO0\":[\"Een of meer toepassingen kunnen niet worden verwijderd.\"],\"Rw1xwN\":[\"Inhoud laden\"],\"RxzN1M\":[\"Ingeschakeld\"],\"RyPas1\":[\"Cancel selected jobs\"],\"S0kLOH\":[\"ID\"],\"S2nsEw\":[\"Groter dan vergelijking.\"],\"S5gO6Y\":[\"Geef extra opdrachtregelvariabelen door aan de workflow.\"],\"S6zj7M\":[\"Voor taaksjablonen selecteert u run om het playbook uit te voeren. Selecteer check om alleen de playbook-syntaxis te controleren, de omgevingsconfiguratie te testen en problemen te melden zonder het playbook uit te voeren.\"],\"S7kN8O\":[\"Een of meer gebruikers kunnen niet worden verwijderd.\"],\"S7tNdv\":[\"Bij slagen\"],\"S8FW2i\":[\"Het inventarisbestand dat door deze bron moet worden gesynchroniseerd. U kunt kiezen uit de vervolgkeuzelijst of een bestand invoeren binnen de invoer.\"],\"SA-KXq\":[\"Omhoog pannen\"],\"SAw-Ux\":[\"Weet u zeker dat u de \",[\"0\"],\" toegang vanuit \",[\"username\"],\" wilt verwijderen?\"],\"SBfnbf\":[\"Alle uitvoeringsomgevingen weergeven\"],\"SC1Cur\":[\"Onbekende status\"],\"SDND4q\":[\"Niet geconfigureerd\"],\"SIJDi3\":[\"Capaciteitsaanpassing\"],\"SJjggI\":[\"Update-opties\"],\"SJmHMo\":[\"Documentatie.\"],\"SLm_0U\":[\"IRC-serverpoort\"],\"SODyJ3\":[\"Host Async OK\"],\"SRiPhD\":[\"Verwijdering van knooppunt annuleren\"],\"SV5nA1\":[\"Sommige van de vorige stappen bevatten fouten\"],\"SVG6MY\":[\"Veld terugzetten op eerder opgeslagen waarde\"],\"SYbJcn\":[\"Berichtsjabloon bewerken\"],\"SZvybZ\":[\"LDAP-standaard\"],\"SZw9tS\":[\"Details weergeven\"],\"SbRHme\":[\"Tekstgebied\"],\"Se_E0z\":[\"Workflowtaak\"],\"Sgr5NW\":[\"Selecteer een instantie om een gezondheidscontrole uit te voeren.\"],\"Sh2XTJ\":[\"Berichttype\"],\"SiexHs\":[\"Dashboard (alle activiteit)\"],\"Sja7f-\":[\"Hoe vaak is de host verwijderd\"],\"Sjoj4f\":[\"Naam toegangsgegevens\"],\"SlfejT\":[\"Fout\"],\"SoREmD\":[\"Toepassingen en tokens\"],\"SqA8uD\":[\"Taakuitvoeringen\"],\"SqLEdN\":[\"Kan Smart-inventaris niet verwijderen.\"],\"SqYo9m\":[\"Terug naar instanties\"],\"Ssdrw4\":[\"Afgeschaft\"],\"Successful\":[\"Geslaagd\"],\"SvPvEX\":[\"Workflow goedgekeurde berichtbody\"],\"Svkela\":[\"Ga naar de vorige pagina\"],\"SwJLlZ\":[\"Workflow geweigerde berichtbody\"],\"SxGqey\":[\"Algemene OIDC-instellingen\"],\"Sxm8rQ\":[\"Gebruikers\"],\"SzFxHC\":[\"LDAP-instellingen\"],\"SzQMpA\":[\"Vorken\"],\"T2M20E\":[\"De\"],\"T2mGOG\":[\"docs.ansible.com\"],\"T2x15z\":[\"Kan niet van bericht wisselen.\"],\"T4a4A4\":[\"Webhooksleutel\"],\"T7yEGN\":[\"Het toekenningstype dat de gebruiker moet gebruiken om tokens voor deze applicatie te verkrijgen\"],\"T91vKp\":[\"Afspelen\"],\"T9hZ3D\":[\"GitHub Enterprise-team\"],\"TAnffV\":[\"Dit knooppunt bewerken\"],\"TBH48u\":[\"Kan team niet verwijderen.\"],\"TC32CH\":[\"Aantal dagen dat gegevens moeten worden bewaard\"],\"TD1APv\":[\"Abonnementen ophalen\"],\"TJVvMD\":[\"Verwant zoektype\"],\"TLomdD\":[[\"sessionCountdown\",\"plural\",{\"one\":[\"You will be logged out in \",\"#\",\" second due to inactivity\"],\"other\":[\"You will be logged out in \",\"#\",\" seconds due to inactivity\"]}]],\"TMJ39S\":[\"Rol loskoppelen\"],\"TMLAx2\":[\"Vereist\"],\"TO3h59\":[\"Vul veld vanuit een extern geheimbeheersysteem\"],\"TO4OtU\":[\"Toegangsgegevens voor Insights\"],\"TOjYb_\":[\"Geconstrueerde inventarisgegevens van host bekijken\"],\"TP9_K5\":[\"Token\"],\"TRDppN\":[\"Webhook\"],\"TTMvf7\":[\"Type groep\"],\"TU6IDa\":[\"Soort gebruiker\"],\"TXKmNM\":[\"Er moet een inventaris worden gekozen\"],\"TZEuIE\":[\"Terug naar typen toegangsgegevens\"],\"T_87By\":[\"Parameter\"],\"Ta0ts5\":[\"Wijzigingen tonen\"],\"TcnG-2\":[\"Nieuwe uitvoeringsomgeving maken\"],\"TgSxH9\":[\"Provisioning terugkoppelings-URL\"],\"TkiN8D\":[\"Gebruikersdetails\"],\"Tmh24b\":[\"Indien ingeschakeld, voorkomt het taaksjabloon dat inventaris- of organisatie-instantiegroepen worden toegevoegd aan de lijst met voorkeursinstantiegroepen om op uit te voeren. Opmerking: als deze instelling is ingeschakeld en u een lege lijst hebt opgegeven, worden de globale instantiegroepen toegepast.\"],\"Tmuvry\":[\"Typeahead type instellen\"],\"ToOoEw\":[\"Toegangsgegevens kopiëren\"],\"Tof7pX\":[\"Taken\"],\"Tq71UT\":[\"weekdag\"],\"Tx3NMN\":[\"Privésleutel wachtwoordzin\"],\"TxKKED\":[\"Details van geconstrueerde inventaris bekijken\"],\"TyaPAx\":[\"Systeembeheerder\"],\"Tz0i8g\":[\"Instellingen\"],\"U-nEJl\":[\"GitHub-instellingen weergeven\"],\"U011Uh\":[\"Laatste synchronisatie\"],\"U7rA2a\":[\"Indien niet aangevinkt, wordt een samenvoeging uitgevoerd, waarbij lokale variabelen worden gecombineerd met die op de externe bron.\"],\"UDf-wR\":[\"Verbruikte abonnementen\"],\"UEaj7U\":[\"Fout tijdens inventarissynchronisatie\"],\"UJpDop\":[\"Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"UJsNNk\":[\"Broncodebeheerrevisie\"],\"UPasE4\":[\"Azure AD-standaard\"],\"UPmrRI\":[\"Hoofdletterongevoelige versie van endswith.\"],\"URmyfc\":[\"Meer informatie\"],\"UX2wV1\":[[\"0\",\"plural\",{\"one\":[\"This credential is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"UXBCwc\":[\"Achternaam\"],\"UY6iPZ\":[\"Indien ingeschakeld, zullen besturingsknooppunten automatisch naar dit exemplaar turen. Indien uitgeschakeld, wordt het exemplaar alleen verbonden met geassocieerde collega's.\"],\"UYD5ld\":[\"en klik op Herziening updaten bij opstarten\"],\"UYUgdb\":[\"Bestellen\"],\"U_JUCL\":[\"Red Hat Insights\"],\"Ua-Kc6\":[\"www.json.org\"],\"UbOul8\":[\"Weet u zeker dat u dit wilt verwijderen:\"],\"UbRKMZ\":[\"In afwachting\"],\"UbqhuT\":[\"Kan geen volledig bronobject van knooppunt ophalen.\"],\"Uc_tSU\":[\"Gereedschap wisselen\"],\"UgFDh3\":[\"Deze inventaris wordt momenteel door andere bronnen gebruikt. Weet u zeker dat u hem wilt verwijderen?\"],\"UirGxE\":[\"Fouten\"],\"UlykKR\":[\"Derde\"],\"Uo1S9q\":[\"Aanmelden met Azure AD Tenant\"],\"UueF8b\":[\"Uitvoeringsomgeving ontbreekt of is verwijderd.\"],\"UvGjRK\":[\"Indien ingeschakeld, voer dit playbook uit als beheerder.\"],\"UwJJCk\":[\"Mislukte hosts opnieuw starten\"],\"UxKoFf\":[\"Navigatie\"],\"V-7saq\":[[\"pluralizedItemName\"],\" verwijderen?\"],\"V-rJKF\":[\"Seconds\"],\"V0Xv3_\":[[\"intervalValue\",\"plural\",{\"one\":[\"day\"],\"other\":[\"days\"]}]],\"V0fM4k\":[\"Gebruikersanalyses\"],\"V1EGGU\":[\"Voornaam\"],\"V2-omF\":[[\"0\",\"plural\",{\"one\":[\"De inventaris blijft in de status in behandeling totdat de definitieve verwijdering is verwerkt.\"],\"other\":[\"De inventarissen blijven in de status in behandeling totdat de definitieve verwijdering is verwerkt.\"]}]],\"V2RwJr\":[\"Adressen van luisteraars\"],\"V2q9w9\":[\"If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode.\"],\"V3z83V\":[\"LDAP 3\"],\"V4WsyL\":[\"Link toevoegen\"],\"V5RUpn\":[\"Lijst met ontvangers\"],\"V7qsYh\":[\"Opmerking: de volgorde van deze toegangsgegevens bepaalt de voorrang voor de synchronisatie en het opzoeken van de inhoud. Selecteer er meer dan één om slepen mogelijk te maken.\"],\"V9xR6T\":[\"Sectie uitklappen\"],\"VAI2fh\":[\"Nieuwe containergroep maken\"],\"VAcXNz\":[\"Woensdag\"],\"VEj6_Y\":[\"Workflowgoedkeuringen\"],\"VFvVc6\":[\"Details bewerken\"],\"VJUm9p\":[\"Huidige pagina\"],\"VK2gzi\":[\"Het aantal parallelle of gelijktijdige processen dat wordt gebruikt tijdens het uitvoeren van het playbook. Een lege waarde, of een waarde kleiner dan 1, gebruikt de Ansible-standaard, die meestal 5 is. Het standaardaantal forks kan worden overschreven met een wijziging in\"],\"VL2WkJ\":[\"De laatste \",[\"dayOfWeek\"]],\"VLdRt2\":[\"Start synchronisatie bron\"],\"VNUs2y\":[\"Forks\"],\"VSJ6r5\":[\"Schema is actief\"],\"VSim_H\":[\"Inventarisbron maken\"],\"VTDO7X\":[\"Modus gebeurtenisdetails\"],\"VU3Nrn\":[\"Ontbrekend\"],\"VWL2DK\":[\"GitHub-organisatie\"],\"VXFjd8\":[\"Meetwaarden\"],\"VZfXhQ\":[\"Hop-knooppunt\"],\"VdcFUD\":[\"Licentie-overeenkomst voor eindgebruikers\"],\"ViDr6F\":[\"Nieuwe groep toevoegen\"],\"VmClsw\":[\"De aan dit knooppunt gekoppelde bron is verwijderd.\"],\"VmvLj9\":[\"Stel in op Openbaar of Vertrouwelijk, afhankelijk van hoe veilig het clientapparaat is.\"],\"Vqd-tq\":[\"Alles terugzetten bevestigen\"],\"Vqgeac\":[\"Press space or enter to begin dragging,\\n and use the arrow keys to navigate up or down.\\n Press enter to confirm the drag, or any other key to\\n cancel the drag operation.\"],\"Vvbbn2\":[\"Kan rol niet verwijderen.\"],\"Vw8l6h\":[\"Er is een fout opgetreden\"],\"VzE_M-\":[\"Berichtstoring wisselen\"],\"W-O1E9\":[\"Project kopiëren\"],\"W1iIqa\":[\"Inventarisgroepen weergeven\"],\"W3TNvn\":[\"Terug naar gebruikers\"],\"W3pOzF\":[\"Sta toe dat de broncodebeheer-branch of -revisie wordt gewijzigd in een taaksjabloon dat dit project gebruikt.\"],\"W6uTJi\":[\"Kon dashboard niet weergeven:\"],\"W7DGsV\":[\"Opgestart door (gebruikersnaam)\"],\"W9XAF4\":[\"Doordeweeks\"],\"W9uQXX\":[\"Melding\"],\"WAjFYI\":[\"Startdatum\"],\"WD8djW\":[\"Link verwijderen bevestigen\"],\"WL91Ms\":[\"Delete Groups?\"],\"WPM2RV\":[\"Antwoordtype\"],\"WQJduu\":[\"Sleutel selecteren\"],\"WTN9YX\":[\"Accounttoken\"],\"WTV15I\":[\"Login doorverwijzen URL overschrijven bewerken\"],\"WVzGc2\":[\"Abonnement\"],\"WX9-kf\":[\"IRC-bijnaam\"],\"Wc6m4J\":[\"Een op te halen refspec (doorgegeven aan de Ansible git-module). Met deze parameter is toegang mogelijk tot referenties via het branchveld die anders niet beschikbaar zijn.\"],\"Wdl2f2\":[\"Dit veld moet minimaal \",[\"0\"],\" tekens bevatten\"],\"WgsBEi\":[\"Voer ten minste één zoekfilter in om een nieuwe Smart-inventaris te maken\"],\"WhSFGl\":[\"Filteren op \",[\"name\"]],\"Wi1pUG\":[[\"numJobsToCancel\",\"plural\",{\"one\":[[\"0\"]],\"other\":[[\"1\"]]}]],\"Wk1rOS\":[\"Pas de grafiek aan de beschikbare schermgrootte aan\"],\"Wm7XbF\":[\"Een of meer toegangsgegevens kunnen niet worden verwijderd.\"],\"WqaDMq\":[\"Veld bevat waarde.\"],\"Wy25yg\":[\"Twilio\"],\"X03-eC\":[\"Voer een waarde in.\"],\"X5V9DW\":[\"Klik op de knop Bewerken hieronder om het knooppunt opnieuw te configureren.\"],\"X6d3Zy\":[\"Kan organisatie niet verwijderen.\"],\"X97mbf\":[\"Kies een soort taak\"],\"XA12d8\":[\"Optionele door komma's gescheiden lijst met hostnamen die in elk taaksegment moeten worden opgenomen, naast de hosts van het segment zelf. Handig wanneer een play gericht is op een coördinerende host, zoals localhost, waarvan alle segmenten afhankelijk zijn. Namen worden exact vergeleken met inventarishosts; groepen en patronen worden niet ondersteund. Vastgezette hosts voeren hun plays één keer per segment uit.\"],\"XBROpk\":[\"Geef een hostpatroon op om de lijst met hosts die door de workflow worden beheerd of beïnvloed verder te beperken.\"],\"XCCkju\":[\"Knooppunt bewerken\"],\"XFRygA\":[\"Voorbeeld-URL's voor broncodebeheer van extern archief zijn onder meer:\"],\"XHxwBV\":[\"Het geselecteerde datumbereik moet ten minste 1 geplande gebeurtenis hebben.\"],\"XILg0L\":[\"Ongeldig e-mailadres\"],\"XJOV1Y\":[\"Activiteit\"],\"XKp83s\":[\"Inventarissen met bronnen kunnen niet gekopieerd worden\"],\"XLMJ7O\":[\"Cloud\"],\"XLpxoj\":[\"E-mailopties\"],\"XM-gTv\":[\"Raadpleeg de Ansible-documentatie voor details over het configuratiebestand.\"],\"XOD7tz\":[\"Wijzigingen tonen\"],\"XOaZX3\":[\"Paginering\"],\"XP6TQ-\":[\"Indien gespecificeerd, zal dit veld worden getoond op het knooppunt in plaats van de resourcenaam bij het bekijken van de workflow\"],\"XREJvl\":[\"Variabelen die worden gebruikt om de voorraadbron te configureren. Zie voor een gedetailleerde beschrijving van het configureren van deze plug-in\"],\"XViLWZ\":[\"Bij mislukken\"],\"XWDz5f\":[\"Eenvoudige sleutel selecteren\"],\"X_5TsL\":[\"Vragenlijst schakelen\"],\"XaxYwV\":[\"Invoerwaarden\"],\"XbIM8f\":[\"Totale inventarisbronnen\"],\"XdyHT-\":[\"Geïmporteerde hosts\"],\"XfmfOA\":[\"Uitvoeren om de\"],\"Xg3aVa\":[\"SSL gebruiken\"],\"XgTa_2\":[\"The inventory will be in a pending status until the final delete is processed.\"],\"XilEsm\":[\"Instantiegroep\"],\"Xm7ruy\":[\"5 (WinRM-foutopsporing)\"],\"XmJfZT\":[\"naam\"],\"XmVvzl\":[\"Rollen selecteren om toe te passen\"],\"XnxCSh\":[\"Standaardfout\"],\"XozZ38\":[\"Een of meer inventarisbronnen kunnen niet worden verwijderd.\"],\"Xq9A0U\":[\"Onbekend project\"],\"Xt4N6V\":[\"Melding | \",[\"0\"]],\"XtpZSU\":[\"Alle taaktypen\"],\"Xx-ftH\":[\"Je hebt tegen meer hosts geautomatiseerd dan je abonnement toelaat.\"],\"XyTWuQ\":[\"Wacht totdat de topologie-weergave is ingevuld...\"],\"XyW2nH\":[[\"0\",\"plural\",{\"one\":[\"Weet u zeker dat u de onderstaande groep wilt verwijderen?\"],\"other\":[\"Weet u zeker dat u de onderstaande groepen wilt verwijderen?\"]}]],\"XzD7xj\":[\"Items selecteren\"],\"Y1YKad\":[\"Details bewerken\"],\"Y296GK\":[\"Kan rol niet verwijderen\"],\"Y2ml-n\":[\"Goedgekeurd - \",[\"0\"],\". Raadpleeg het Activiteitenlogboek voor meer informatie.\"],\"Y5VrmH\":[\"Niet geconfigureerd voor inventarissynchronisatie.\"],\"Y5vgVF\":[\"Succesvol geweigerd\"],\"Y5xJ7I\":[\"Naam van draaiboek\"],\"Y60pX3\":[\"Geconstrueerde inventaris toevoegen\"],\"YA4I45\":[\"Module selecteren\"],\"YFmVSY\":[\"Loskoppelen?\"],\"YJddb4\":[\"instantietype\"],\"YLMfol\":[\"Kies het type bron dat de nieuwe rollen gaat ontvangen. Als u bijvoorbeeld nieuwe rollen wilt toevoegen aan een groep gebruikers, kies dan Gebruikers en klik op Volgende. In de volgende stap kunt u de specifieke bronnen selecteren.\"],\"YM06Nm\":[\"Type toegangsgegevens bewerken\"],\"YMLB2b\":[\"Of het goedkeuringsknooppunt automatisch wordt goedgekeurd of geweigerd wanneer de time-out verloopt.\"],\"YMpSlP\":[\"Tijd in seconden om een voorraadsynchronisatie als actueel te beschouwen. Tijdens taakruns en callbacks evalueert het taaksysteem de tijdstempel van de nieuwste synchronisatie. Als het ouder is dan Cache Timeout, wordt het niet als actueel beschouwd en wordt een nieuwe voorraadsynchronisatie uitgevoerd.\"],\"YOOdGq\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" minuut\"],\"other\":[\"#\",\" minuten\"]}]],\"YOh7Aw\":[\"Workflow Job \",[\"currentPosition\"],\"/\",[\"total\"]],\"YP5KRj\":[\"Er wordt een nieuwe webhook-URL gegenereerd bij het opslaan.\"],\"YPDLLX\":[\"Terug naar uitvoeringsomgevingen\"],\"YQqM-5\":[\"De containerimage die voor uitvoering moet worden gebruikt.\"],\"Yd45Xn\":[\"Hosts op processortype\"],\"Yfw7TK\":[\"Time-out voor bericht\"],\"YgqgXs\":[[\"intervalValue\",\"plural\",{\"one\":[\"minute\"],\"other\":[\"minutes\"]}]],\"YiQ03p\":[\"Kan schema niet verwijderen.\"],\"YiUAZm\":[\"<0>Opmerking: Deze instantie kan opnieuw worden gekoppeld aan deze instantiegroep als deze wordt beheerd door <1>beleidsregels.\"],\"YlGAPh\":[\"Vastgezette hosts voor taakverdeling\"],\"Ym7-mu\":[\"Eén Slack-kanaal per regel. Het hekje-symbool (#)\\n is vereist voor kanalen. Om te reageren op een specifiek bericht of een thread te starten, voegt u de bovenliggende bericht-Id toe aan het kanaal, waarbij de bovenliggende bericht-Id 16 cijfers bevat. Er moet handmatig een punt (.) worden ingevoegd na het 10e cijfer. bijv.:#destination-channel, 1231257890.006423. Zie Slack\"],\"YmEWZH\":[\"Sjabloon opstarten\"],\"YmjTf2\":[\"Bevoorrading mislukt\"],\"YoXjSs\":[\"Vraag om inventaris bij opstarten.\"],\"Yq4Eaf\":[\"Statusinformatie van de host is niet beschikbaar voor deze taak.\"],\"YsN-3o\":[\"Details inventarisbron weergeven\"],\"Yt-rBv\":[\"Dit project wordt momenteel gebruikt door andere resources. Weet u zeker dat u het wilt verwijderen?\"],\"YuC9dj\":[\"Associëren\"],\"YxDLmM\":[\"Systeem-ID Insights\"],\"Z17FAa\":[\"Onbekende inventaris\"],\"Z1Vtl5\":[\"Kan projectsynchronisatie niet annuleren\"],\"Z25_RC\":[\"Input selecteren\"],\"Z2hVSb\":[\"Hybride\"],\"Z40J8D\":[\"Schakelt het maken van een provisioning-callback-URL in. Via de URL kan een host contact opnemen met \",[\"brandName\"],\" en een configuratie-update aanvragen met dit taaksjabloon.\"],\"Z5HWHd\":[\"Aan\"],\"Z7ZXbT\":[\"Goedkeuring\"],\"Z88yEl\":[\"Groter dan of gelijk aan vergelijking.\"],\"Z9EFpE\":[\"Dashboard automatiseringsanalyse\"],\"ZAWGCX\":[[\"0\"],\" seconden\"],\"ZEP8tT\":[\"Starten\"],\"ZGDCzb\":[\"Instantie niet gevonden.\"],\"ZJjKDg\":[\"Beheerde knooppunten\"],\"ZKKnVf\":[\"Nieuwe workflowsjabloon maken\"],\"ZL3d6Z\":[\"IRC-serveradres\"],\"ZO4CYH\":[\"Taken in uitvoering\"],\"ZOLfb2\":[\"Dit veld mag niet leeg zijn\"],\"ZWhZbs\":[\"Knooppunt verwijderen bevestigen\"],\"ZajTWA\":[\"Brontelefoonnummer\"],\"Zf6u-6\":[\"Uitleg\"],\"ZfrRb0\":[\"Selecteer een inventaris of schakel de optie Melding bij opstarten in\"],\"ZhUwVw\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" week\"],\"other\":[\"#\",\" weken\"]}]],\"ZhxwOq\":[\"Foutbericht body\"],\"Zikd-1\":[\"Het aantal hosts waartegen u geautomatiseerd heeft is lager dan uw abonnement.\"],\"ZjC8QM\":[\"Kan host niet verwijderen.\"],\"ZjvPb1\":[\"Gemaakt door (Gebruikersnaam)\"],\"Zkh5np\":[\"Peers-update op \",[\"0\"],\". Zorg ervoor dat u de installatiebundel voor \",[\"1\"],\" opnieuw uitvoert om de wijzigingen van kracht te zien worden.\"],\"ZpdX6R\":[\"Fout bij het verwijderen van tokens\"],\"ZrsGjm\":[\"Inventaris\"],\"ZumtuZ\":[\"Sjabloon kopiëren\"],\"ZvVF4C\":[\"Vragenlijstvraag verwijderen\"],\"ZwCTcT\":[\"Tabblad Lijst met recente takenlijst\"],\"ZwujDQ\":[\"L'année passée\"],\"_-NKbo\":[\"Kan niet van schema wisselen.\"],\"_2LfCe\":[\"Om de enquêtevragen te herordenen, sleept u ze naar de gewenste locatie.\"],\"_4gGIX\":[\"Gekopieerd naar klembord\"],\"_5REdR\":[\"Selecteer Input Inventories voor de geconstrueerde voorraadplug-in.\"],\"_Fg1cM\":[\"Workflow Berichtbody voor time-out\"],\"_ITcnz\":[\"dag\"],\"_Ia62Q\":[\"Geconstrueerde inventarisvoorbeelden\"],\"_JN1gB\":[\"Aantal taken\"],\"_K2CvV\":[\"Sjabloon\"],\"_LQZpR\":[[\"intervalValue\",\"plural\",{\"one\":[\"year\"],\"other\":[\"years\"]}]],\"_LVfwJ\":[\"Fout bij synchronisatie van geconstrueerde voorraadbron\"],\"_M4FeF\":[\"Selecteer de uitvoeromgeving waarbinnen u deze opdracht wilt uitvoeren.\"],\"_MdgrM\":[\"Nieuw knooppunt toevoegen tussen deze twee knooppunten\"],\"_PRaan\":[\"Een of meer berichtsjablonen kunnen niet worden verwijderd.\"],\"_Pz_QH\":[\"Beheerd door beleid\"],\"_W3ZAw\":[[\"selectedItemsCount\",\"plural\",{\"one\":[\"Click to run a health check on the selected instance.\"],\"other\":[\"Click to run a health check on the selected instances.\"]}]],\"_WBq2_\":[\"Geweigerd - \",[\"0\"],\". Raadpleeg het Activiteitenlogboek voor meer informatie.\"],\"_Yq4TU\":[\"Maximaal aantal forks dat is toegestaan voor alle taken die gelijktijdig op deze groep worden uitgevoerd.\\n Nul betekent dat er geen limiet wordt afgedwongen.\"],\"_ZBhqw\":[\"Kan de synchronisatie van de inventarisbron niet annuleren\"],\"_bAUGi\":[\"Kies een HTTP-methode\"],\"_bE0AS\":[\"Selecteer een instantie\"],\"_cV6Mf\":[\"Bladeren...\"],\"_cq4Aa\":[\"Workflowgoedkeuring niet gevonden.\"],\"_ereyb\":[\"TACACS+\"],\"_gCD76\":[\"Instantiegroep bewerken\"],\"_ismew\":[\"Artefactsleutel\"],\"_kYJq6\":[\"Dagen om gegevens te bewaren\"],\"_khNCh\":[\"De standaard toegangsgegevens van de taaksjabloon moeten worden vervangen door één van hetzelfde type. Selecteer toegangsgegevens voor de volgende typen om door te gaan: \",[\"0\"]],\"_oeZtS\":[\"Hostpolling\"],\"_rCRcH\":[\"Documentatie over geavanceerd zoeken\"],\"_vI8Rx\":[\"Delete Group?\"],\"a02Xjc\":[\"IRC-serveradres\"],\"a3AD0M\":[\"omleiden inloggen bewerken bevestigen\"],\"a5zD9f\":[\"Wijzigingen\"],\"a6E-_p\":[\"Hoofdletterongevoelige versie van bevat\"],\"a8AgQY\":[\"Hostdetails weergeven\"],\"a8nooQ\":[\"Vierde\"],\"a9BTUD\":[\"weekenddag\"],\"aBgwis\":[\"Bereik\"],\"aLlb3-\":[\"boolean\"],\"aNxqSL\":[\"Uitvoeringsomgeving verwijderen\"],\"aQ4XJX\":[\"Logboeksysteem dat feiten individueel bijhoudt inschakelen\"],\"aSuBiU\":[\"Microsoft Azure Resource Manager\"],\"aTK0Fh\":[\"Aan-dagen\"],\"aUNPq3\":[\"Uitvoeringsknooppunt\"],\"aVoVcG\":[\"Meerdere selectie\"],\"aXBrSq\":[\"Red Hat-virtualizering\"],\"a_vlog\":[\"Chip \",[\"0\"],\" verwijderen\"],\"adPhRK\":[\"Selecteer de inventaris waartoe deze host zal behoren.\"],\"adjqlB\":[[\"0\"],\" (verwijderd)\"],\"aht2s_\":[\"Berichtkleur\"],\"aiejXq\":[\"Brontype toevoegen\"],\"ajDpGH\":[\"STATUS:\"],\"anfIXl\":[\"Gebruikersdetails\"],\"aqqAbL\":[\"Indien ingeschakeld, voorkomt deze inventaris dat instantiegroepen voor een organisatie worden toegevoegd aan de lijst met voorkeursinstantiegroepen om gekoppelde taaksjablonen op uit te voeren. Opmerking: als deze instelling is ingeschakeld en u een lege lijst hebt opgegeven, worden de globale instantiegroepen toegepast.\"],\"ar5AA2\":[\"voor meer informatie.\"],\"ataY5Z\":[\"Fout bij verwijderen taak\"],\"ax6e8j\":[\"Selecteer een organisatie voordat u het hostfilter bewerkt\"],\"az8lvo\":[\"Uit\"],\"b1CAkh\":[\"Beheerderstaken\"],\"b2Z0Zq\":[\"Linkwijzigingen annuleren\"],\"b433OF\":[\"Groep bewerken\"],\"b4SLah\":[\"Zie fouten links\"],\"b9Y4up\":[\"Client-id\"],\"bDa_hW\":[\"Selecteer de instantiegroepen waarop de synchronisatie van deze inventarisbron moet worden uitgevoerd. Indien niet ingesteld, wordt de synchronisatie uitgevoerd op de instantiegroepen van de inventaris of de bijbehorende organisatie.\"],\"bE4zYn\":[\"Selecteer de poort waarop Receptor zal luisteren voor inkomende verbindingen, bijv. 27199.\"],\"bHXYoC\":[\"HTTP-methode\"],\"bKR18T\":[\"Een abonnementsmanifest is een export van een Red Hat-abonnement. Ga naar <0>access.redhat.com om een abonnementsmanifest te genereren. Zie de <1>Gebruikershandleiding voor meer informatie.\"],\"bLt_0J\":[\"Workflow\"],\"bPq357\":[\"Ingeschakelde waarde\"],\"bQZByw\":[\"Voer een opmerkingstas in per regel, zonder komma's.\"],\"bTu5jX\":[\"Gebruikersnaam/wachtwoord\"],\"bWr6j5\":[\"Dit veld moet minimaal \",[\"min\"],\" tekens bevatten\"],\"bY8C86\":[\"Geef alle gebruikers weer.\"],\"bYXbel\":[\"webhooksleutel taaksjabloon voor workflows\"],\"baP8gx\":[\"4 (Foutopsporing verbinding)\"],\"baqrhc\":[\"HTTP-koppen\"],\"bbJ-VR\":[\"Uitzoomen\"],\"bcyJXs\":[\"Item OK\"],\"bd1Kuw\":[\"Icoon-URL\"],\"bf7UKi\":[\"Time-out van updatecache\"],\"bfgr_e\":[\"Vraag\"],\"bgjTnp\":[\"0 (Normaal)\"],\"bgq1rW\":[\"Knop Zoekopdracht verzenden\"],\"bhxnLH\":[\"U hebt geen machtiging om de volgende groepen te verwijderen: \",[\"itemsUnableToDelete\"]],\"bkPO0d\":[\"Berichttype\"],\"bpECfE\":[\"Verwijdering van link annuleren\"],\"bpnj1H\":[\"Er is een fout opgetreden bij het laden van deze inhoud. Laad de pagina opnieuw.\"],\"bwRvnp\":[\"Actie\"],\"bx2rrL\":[\"Smart-inventaris\"],\"bxaVlf\":[\"Nieuw type toegangsgegevens maken\"],\"byXCTu\":[\"Voorvallen\"],\"bznJUg\":[\"Selecteer de inventaris met de hosts die u door deze workflow wilt laten beheren.\"],\"bzv8Dv\":[\"Verwijderingsfout\"],\"c-xCSz\":[\"True\"],\"c0n4p3\":[\"Feitenopslag\"],\"c1Rsz1\":[\"Details workflowgoedkeuring weergeven\"],\"c3XJ18\":[\"Help\"],\"c4kHK7\":[\"Inschrijvingsmodus sluiten\"],\"c6IFRs\":[\"JSON-bestand service-account\"],\"c6u6gk\":[\"Selecteer de instantiegroepen waar de organisatie op uitgevoerd wordt.\"],\"c7-Adk\":[\"Kan inventarisbron niet synchroniseren.\"],\"c8HyJq\":[\"Selecteer de instantiegroepen waar deze inventaris op uitgevoerd wordt.\"],\"c8sV0t\":[\"Deze functie is afgeschaft en zal worden verwijderd in een toekomstige versie.\"],\"c9V3Yo\":[\"Host is mislukt\"],\"c9iw51\":[\"Taken in uitvoering\"],\"c9pF61\":[\"Clientidentificatie\"],\"cFC8w7\":[\"Deze inventarisbron wordt momenteel door andere bronnen gebruikt die erop vertrouwen. Weet u zeker dat u hem wilt verwijderen?\"],\"cFCKYZ\":[\"Weigeren\"],\"cFOXv9\":[\"Generieke OIDC\"],\"cGRiaP\":[\"Gebeurtenisinformatie weergeven\"],\"cIdUma\":[\"\\n Er zijn geen beschikbare playbook-mappen in \",[\"project_base_dir\"],\".\\n Ofwel is die map leeg, ofwel is alle inhoud al\\n toegewezen aan andere projecten. Maak daar een nieuwe map aan en zorg\\n ervoor dat de playbook-bestanden kunnen worden gelezen door de \\\"awx\\\"-systeemgebruiker,\\n of laat \",[\"brandName\"],\" uw playbooks rechtstreeks ophalen uit\\n broncodebeheer met behulp van de optie Type broncodebeheer hierboven.\"],\"cNsIJf\":[\"Gewijzigd\"],\"cPTnDL\":[\"Projectsynchronisatie\"],\"cQIQa2\":[\"Groepen selecteren\"],\"cQlPDN\":[\"Lezen\"],\"cUKLzq\":[\"Volgorde bewerken\"],\"cYir0h\":[\"Optie(s) selecteren\"],\"c_PGsA\":[\"Taakdetails weergeven\"],\"cbSPfq\":[\"Deze workflow is reeds in gang gezet\"],\"ccA_Bz\":[\"De aanbevolen indeling voor variabelenamen is kleine letters en\\n gescheiden door onderstrepingstekens (bijvoorbeeld foo_bar, user_id, host_name,\\n enz.). Variabelenamen met spaties zijn niet toegestaan.\"],\"cdm6_X\":[\"Gebruikte capaciteit\"],\"chbm2W\":[\"Instantiefilters\"],\"ci3mwY\":[\"Dit veld mag niet leeg zijn\"],\"cit9TY\":[\"Naam van een artefact dat door het bovenliggende knooppunt via set_stats wordt geproduceerd. De link wordt alleen gevolgd wanneer de bovenliggende taak overeenkomt met de gekozen uitkomst en de voorwaarde waar is. Een ontbrekende sleutel komt nooit overeen.\"],\"cj1KTQ\":[\"Geef alle inventarissen weer.\"],\"cjJXKx\":[\"Host Async mislukking\"],\"ckH3fT\":[\"Klaar\"],\"ckdiAB\":[\"Bericht verwijderen\"],\"cmWTxn\":[\"Minder dan of gelijk aan vergelijking.\"],\"cnGeoo\":[\"Verwijderen\"],\"cnnWD0\":[\"By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>\",[\"0\"],\". Uncheck the following boxes to disable this feature.\"],\"ct_Puj\":[\"Dit veld wordt met behulp van de opgegeven referentie opgehaald uit een extern geheimbeheersysteem.\"],\"cucDBz\":[\"Contextsjabloon\"],\"cucG_7\":[\"Geen yaml beschikbaar\"],\"cxjfgY\":[\"Kan geen gezondheidscontrole uitvoeren voor hop-knooppunten.\"],\"cy3yJa\":[\"Gevestigd\"],\"d-F6q9\":[\"Gemaakt\"],\"d-zGjA\":[\"Met deze actie wordt het volgende verwijderd:\"],\"d1BVnY\":[\"A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>\",[\"0\"],\".\"],\"d5zxa4\":[\"Lokaal\"],\"d6in1T\":[\"Selecteer de inventaris met de hosts die u door deze taak wilt laten beheren.\"],\"d73flf\":[\"Waarschuwingsmodus\"],\"d75lEw\":[\"Type instellen\"],\"d7VUIS\":[\"Knooppunt \",[\"nodeName\"],\" verwijderen\"],\"d8B-tr\":[\"Grafiektabblad Taakstatus\"],\"dAZObA\":[\"URI's doorverwijzen\"],\"dBNZkl\":[\"Hostdetails Smart-inventaris weergeven\"],\"dCcO-F\":[\"Kan de configuratie niet ophalen.\"],\"dELxuP\":[\"Inventaris niet gevonden.\"],\"dEgA5A\":[\"Annuleren\"],\"dH6aQY\":[\"Azure AD Tenant\"],\"dIb9tv\":[\"Geef alle toepassingen weer.\"],\"dJcvVX\":[\"Smart-hostfilter\"],\"dNAHKF\":[\"Taken verdelen\"],\"dOjocz\":[\"Convergentie selecteren\"],\"dPGRd8\":[\"Indien ingeschakeld, toont dit de wijzigingen die door Ansible-taken zijn aangebracht, waar ondersteund. Dit komt overeen met de --diff-modus van Ansible.\"],\"dPY1x1\":[\"voor meer info.\"],\"dQFAgv\":[\"Dit project moet worden bijgewerkt\"],\"dQjRO3\":[\"Start het synchronisatieproces\"],\"dbWo0h\":[\"Aanmelden met Google\"],\"dcGoCm\":[\"Inventarisbestand\"],\"ddIcfH\":[\"Ga naar de laatste pagina\"],\"dfWFox\":[\"Aantal hosts\"],\"dk7qNl\":[\"Controleknooppunt\"],\"dkGxGj\":[\"Subversie\"],\"dlHFy7\":[\"Een of meer uitvoeringsomgevingen kunnen niet worden verwijderd\"],\"dnCwNB\":[\"Succesvol gekopieerd naar klembord!\"],\"dov9kY\":[\"Dit veld moet een getal zijn en een waarde tussen \",[\"0\"],\" en \",[\"1\"],\" hebben\"],\"dqxQzB\":[\"woordenboek\"],\"dzQfDY\":[\"Oktober\"],\"e0NrBM\":[\"Project\"],\"e3pQqT\":[\"Kies een type bericht\"],\"e4GHWP\":[\"Pullen\"],\"e5CMOi\":[\"Omgevingsvariabelen of extra variabelen die aangeven welke waarden een credentialtype kan injecteren.\"],\"e5VbKq\":[\"Workflowtaaksjablonen\"],\"e6BtDv\":[\"<0>\",[\"0\"],\"<1>\",[\"1\"],\"\"],\"e70-_3\":[\"Legenda wisselen\"],\"e8GyQg\":[\"Metrisch\"],\"e8U63Z\":[\"Synchroniseer het project alleen wanneer de gepushte ref overeenkomt met dit patroon, bijvoorbeeld refs/heads/main of refs/heads/release-*. Laat leeg om te synchroniseren bij elke push- of taggebeurtenis.\"],\"e91aLH\":[\"Alle typen toegangsgegevens weergeven\"],\"e9k5zp\":[\"Voeg een schema toe om deze lijst te vullen. Schema's kunnen worden toegevoegd aan een sjabloon, project of inventarisatiebron.\"],\"eAR1n4\":[\"Verwante zoekopdracht typeahead\"],\"eD_0Fo\":[\"Een of meer teams kunnen niet worden verwijderd.\"],\"eDjsWq\":[\"Nieuwe berichtsjabloon maken\"],\"eGkahQ\":[\"Taaksjabloon verwijderen\"],\"eHx-29\":[\"Broninformatie\"],\"ePK91l\":[\"Bewerken\"],\"ePS9As\":[\"RADIUS-instellingen\"],\"eQkgKV\":[\"Geïnstalleerd\"],\"eRV9Z3\":[\"Geen time-out gespecificeerd\"],\"eRlz2Q\":[\"Sms-nummer(s) bestemming\"],\"eSXF_i\":[\"Kan toepassing niet verwijderen.\"],\"eTsJYJ\":[\"omschrijving\"],\"eVJ2lo\":[\"Drijven\"],\"eXOp7I\":[\"U hebt geen machtiging voor gerelateerde bronnen: \",[\"itemsUnableToremove\"]],\"eXWuGz\":[\"Tabblad Lijst met recente sjablonen\"],\"eYJ4TK\":[\"Opgebouwde inventaris niet gevonden.\"],\"eeke40\":[\"Automatiseringsanalyse\"],\"ekUnNJ\":[\"Tags selecteren\"],\"el9nUc\":[\"Schema is actief\"],\"emqNXf\":[\"Draaiboek controleren\"],\"eqiT7d\":[\"Stelt de rol in die deze instantie zal spelen binnen de netwerktopologie. Standaard is \\\"uitvoering\\\".\"],\"espHeZ\":[\"Instance Group Fallback voorkomen: Indien ingeschakeld, zal de inventaris voorkomen dat instantiegroepen van organisaties worden toegevoegd aan de lijst van voorkeursinstantiegroepen om geassocieerde taaksjablonen op uit te voeren.\"],\"etQEqZ\":[\"Als u deze link verwijdert, wordt de rest van de vertakking zwevend en wordt deze onmiddellijk bij lancering uitgevoerd.\"],\"ewSXyG\":[\"Zacht verwijderen\"],\"f-fQK9\":[\"Grafana API-sleutel\"],\"f2o-xB\":[\"Annuleren bevestigen\"],\"f6Hub0\":[\"Sorteren\"],\"f9yJNM\":[\"Gelijk aan\"],\"fCZSgU\":[\"Alle instantiegroepen weergeven\"],\"fDzxi_\":[\"Afsluiten zonder op te slaan\"],\"fE2kOY\":[\"Datumoperator selecteren\"],\"fGEOCn\":[\"Taakstatus\"],\"fGLpQj\":[\"Vertakking/tag/binding broncontrole\"],\"fGQ9Ug\":[\"Selecteer toegangsgegevens voor toegang tot de nodes waarop deze taak wordt uitgevoerd. U kunt slechts één toegangsgegeven van elk type selecteren. Voor machinetoegangsgegevens (SSH) betekent het aanvinken van «Vragen bij starten» zonder toegangsgegevens te selecteren dat u tijdens de uitvoering een machinetoegangsgegeven moet selecteren. Als u toegangsgegevens selecteert en «Vragen bij starten» aanvinkt, worden de geselecteerde toegangsgegevens de standaardwaarden die tijdens de uitvoering kunnen worden bijgewerkt.\"],\"fJ9xam\":[\"Instantie wisselen\"],\"fKew5B\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"Taak annuleren\"],\"other\":[\"Banen annuleren\"]}]],\"fL7WXr\":[\"Toepassingen\"],\"fMUEsk\":[\"Dag \",[\"0\"]],\"fMulwN\":[\"Herziening vernieuwing project\"],\"fOAyP5\":[\"Input voor tekst zoeken\"],\"fODqV4\":[\"De waarde is niet gevonden. Voer een geldige waarde in of selecteer er een.\"],\"fQCM-p\":[\"Organisatiedetails weergeven\"],\"fQGOXc\":[\"Fout!\"],\"fR8DDt\":[\"Verwijderen van alle knooppunten bevestigen\"],\"fVjyJ4\":[\"Loskoppelen bevestigen\"],\"f_Xpp2\":[\"Deze actie ontkoppelt het volgende:\"],\"fcTDCh\":[\"Geef hieronder uw Red Hat- of Red Hat Satellite-inloggegevens op\\n en u kunt kiezen uit een lijst met uw beschikbare abonnementen.\\n De inloggegevens die u gebruikt, worden opgeslagen voor toekomstig gebruik bij het\\n ophalen van verlengde of uitgebreide abonnementen.\"],\"ff_JYN\":[\"Filter op geneste groepsnaam\"],\"fgrmWn\":[\"Vraag om diff-modus bij opstarten.\"],\"fhFmMp\":[\"Clientidentificatie\"],\"fjX9i5\":[\"Smart-inventaris niet gevonden.\"],\"fk1WEw\":[\"Versleuteld\"],\"fld-O4\":[\"Alle taken\"],\"fnbZWe\":[\"Selecteer optioneel de toegangsgegevens die moeten worden gebruikt om statusupdates terug te sturen naar de webhook-service.\"],\"foItBN\":[\"Weekenddag\"],\"fp4RS1\":[\"bezig-met-content-laden\"],\"fpMgHS\":[\"Ma\"],\"fqSfXY\":[\"Vervangen\"],\"fqmP_m\":[\"Host onbereikbaar\"],\"fthJP1\":[\"Webhook-services kunnen taken starten met dit workflow-taaksjabloon door een POST-verzoek naar deze URL te sturen.\"],\"fwX7gC\":[\"VMware vCenter\"],\"g4o5Lr\":[\"Uitgebreid\"],\"g6ekO4\":[\"Kan niet van host wisselen.\"],\"g7CZ-8\":[\"Aanmelden met GitHub Enterprise-organisaties\"],\"g9d3sF\":[\"Body startbericht\"],\"gALXcv\":[\"Dit knooppunt verwijderen\"],\"gBnBJa\":[\"Taak bronworkflow\"],\"gDx5MG\":[\"Link bewerken\"],\"gIGcbR\":[\"Maximaal aantal taken dat tegelijkertijd op deze groep kan worden uitgevoerd. Nul betekent dat er geen limiet wordt afgedwongen.\"],\"gJccsJ\":[\"Workflow goedgekeurd bericht\"],\"gK06zh\":[\"Taaksjabloon toevoegen\"],\"gM3pS9\":[\"Uitvoeringsomgevingen\"],\"gN3aF4\":[\"LDAP5\"],\"gSVH9P\":[\"Alle bronnen synchroniseren\"],\"gUaMtt\":[\"Bij time-out\"],\"gVYePj\":[\"Nieuw team maken\"],\"gWlcwd\":[\"Laatste taakstatus\"],\"gYWK-5\":[\"Instellingen gebruikersinterface weergeven\"],\"gZXc5U\":[\"Het aantal afzonderlijke gebruikers dat moet goedkeuren voordat de werkstroom wordt voortgezet. Eén enkele weigering weigert altijd het knooppunt.\"],\"gZaMqy\":[\"Aanmelden met GitHub-teams\"],\"gZkstf\":[\"Indien ingeschakeld, worden de verzamelde feiten opgeslagen zodat ze op hostniveau kunnen worden bekeken. Feiten worden bewaard en tijdens runtime in de feitencache geïnjecteerd.\"],\"gcFnpl\":[\"Taakstatus\"],\"geTfDb\":[\"Taakdetails weergeven\"],\"ged_ZE\":[\"Oragnisatie\"],\"gezukD\":[\"Taak selecteren om deze te annuleren\"],\"gfyddN\":[\".zip-bestand uploaden\"],\"gh06VD\":[\"Output\"],\"ghJsq8\":[\"Eerste scrollen\"],\"gmB6oO\":[\"Schema\"],\"gmBQqV\":[\"Projectupdate\"],\"gnveFZ\":[\"Tabblad Standaardfout\"],\"goVc-x\":[\"Toegangsgegevens plug-inconfiguratie bewerken\"],\"go_DGX\":[\"Teamrollen toevoegen\"],\"gpKdxJ\":[\"Selecteer een vraag om te verwijderen\"],\"gpmbqk\":[\"Variabelen\"],\"gpnvle\":[\"verwijderingsfout\"],\"gsj32g\":[\"Projectsynchronisatie annuleren\"],\"gtB4z-\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" uur\"],\"other\":[\"#\",\" uur\"]}]],\"gwKtbI\":[\"in de documentatie en de\"],\"h25sKn\":[\"Abonnementenbeheer\"],\"h51QFW\":[\"YAML\"],\"h8DugX\":[\"Labels\"],\"hAjDQy\":[\"Status selecteren\"],\"hBHRCF\":[\"Minimumaantal instanties dat automatisch\\n aan deze groep wordt toegewezen wanneer nieuwe instanties online komen.\"],\"hEBjSg\":[\"Red Hat Satellite 6\"],\"hEnNCI\":[\"Verwijder de huidige zoekopdracht die gerelateerd is aan ansible-feiten om een andere zoekopdracht met deze sleutel mogelijk te maken.\"],\"hG89Ed\":[\"Image\"],\"hHKoQD\":[\"Peer-adressen selecteren\"],\"hLDu5N\":[\"Toepassing bewerken\"],\"hNudM0\":[\"Waarde instellen voor dit veld\"],\"hPa_zN\":[\"Organisatie (naam)\"],\"hQ0dMQ\":[\"Nieuwe host toevoegen\"],\"hQRttt\":[\"Indienen\"],\"hVPa4O\":[\"Kies een optie\"],\"hX8KyU\":[\"Deze opdracht is mislukt en heeft geen uitvoer.\"],\"hXDKWN\":[\"Frequentie-informatie\"],\"hXzOVo\":[\"Volgende\"],\"hYH0cE\":[\"Weet u zeker dat u het verzoek om deze taak te annuleren in wilt dienen?\"],\"hYgDIe\":[\"Maken\"],\"hZ6znB\":[\"Poort\"],\"hZke6f\":[\"Weet u zeker dat u lokale authenticatie wilt uitschakelen? Als u dat doet, kan dat gevolgen hebben voor de mogelijkheid van gebruikers om in te loggen en voor de mogelijkheid van de systeembeheerder om deze wijziging terug te draaien.\"],\"hc_ufD\":[\"Taaktags\"],\"hdyeZ0\":[\"Taak verwijderen\"],\"he3ygx\":[\"Kopiëren\"],\"heqHpI\":[\"Basispad project\"],\"hg6l4j\":[\"Maart\"],\"hgJ0FN\":[\"Voer een zoekopdracht uit om een hostfilter te definiëren\"],\"hgr8eo\":[\"items\"],\"hgvbYY\":[\"September\"],\"hhzh14\":[\"We waren niet in staat om de aan deze account gekoppelde licenties te lokaliseren.\"],\"hi1n6B\":[\"Instellingen bijwerken die betrekking hebben op taken binnen \",[\"brandName\"]],\"hiDMCa\":[\"Voorziening\"],\"hjsbgA\":[\"Extra variabelen\"],\"hjwN_s\":[\"Bronnaam\"],\"hlbQEq\":[\"Content Signature Validation Credential\"],\"hmEecN\":[\"Beheertaak\"],\"hmjNLv\":[\"Voorkeursthema\"],\"hty0d5\":[\"Maandag\"],\"hvs-Js\":[\"Toepassingsinformatie\"],\"i0VMLn\":[\"Workflow geweigerd bericht\"],\"i2izXk\":[\"Er ontbreekt een regel in het schema\"],\"i4_LY_\":[\"Schrijven\"],\"i9sC0B\":[\"Teammachtigingen toevoegen\"],\"iASwqf\":[\"This action will cancel the following job:\"],\"iCFhEl\":[\"Brontelefoonnummer\"],\"iDNBZe\":[\"Berichten\"],\"iDWfOR\":[\"Kan een of meer workflowgoedkeuringen niet goedkeuren.\"],\"iDjyID\":[\"Details toegangsgegevens weergeven\"],\"iE1s1P\":[\"Workflow opstarten\"],\"iEUzMn\":[\"systeem\"],\"iH8pgl\":[\"Terug\"],\"iI4bLJ\":[\"Laatste login\"],\"iIVceM\":[\"Kopieerfout\"],\"iJWOeZ\":[\"Geen JSON beschikbaar\"],\"iJiCFw\":[\"Groepsdetails\"],\"iLO3nG\":[\"Aantal afspelen\"],\"iMaC2H\":[\"Instantiegroepen\"],\"iPp22p\":[\"Deze planning gebruikt complexe regels die niet worden ondersteund in de\\n UI. Gebruik de API om deze planning te beheren.\"],\"iQdYL_\":[\"Smart-inventaris toevoegen\"],\"iRWxmA\":[\"SSL-verificatie uitschakelen\"],\"iTylMl\":[\"Sjablonen\"],\"iWKCzl\":[\"Selecteer uit de lijst met mappen die in het projectbasispad zijn gevonden. Samen bieden het basispad en de playbookmap het volledige pad dat wordt gebruikt om playbooks te lokaliseren.\"],\"iXmHtI\":[\"Type taak selecteren\"],\"iZBwau\":[\"Deze stap bevat fouten\"],\"i_CDGy\":[\"Overschrijven van vertakking toelaten\"],\"i_Kv21\":[\"Nieuwe bron maken\"],\"ifckL-\":[\"Rij selecteren\"],\"ifdViT\":[\"Inventarisdetails weergeven\"],\"ig0q8s\":[\"Deze inventaris wordt toegepast op alle workflowknooppunten binnen deze workflow (\",[\"0\"],\") die vragen naar een inventaris.\"],\"inP0J5\":[\"Details abonnement\"],\"isRobC\":[\"Nieuw\"],\"itlxml\":[\"Beheertaak\"],\"ittbfT\":[\"Zoeken op ansible_facts vereist speciale syntax. Raadpleeg de\"],\"itu2NQ\":[\"Typen verbindingstoestanden\"],\"j1a5f1\":[\"Host bewerken\"],\"j6gqC6\":[\"Branch die in de taakuitvoering moet worden gebruikt. De projectstandaard wordt gebruikt indien leeg. Alleen toegestaan als het veld allow_override van het project is ingesteld op true.\"],\"j7zAEo\":[\"Werkstroomstatussen\"],\"j8QfHv\":[\"Host bewerken\"],\"jAxdt7\":[\"verwijderen annuleren\"],\"jBGh4u\":[\"Voorraaddefinitie geneste groepen:\"],\"jCVu9g\":[\"Cancel selected job\"],\"jEJtMA\":[\"In afwachting van workflowgoedkeuringen\"],\"jEw0Mr\":[\"Voer een geldige URL in\"],\"jFaaUJ\":[\"Canonical\"],\"jGUu_G\":[\"Vereiste goedkeuringen\"],\"jIaeJK\":[\"Vragenlijst\"],\"jJdwCB\":[\"Terugzetten\"],\"jKibyt\":[\"Zoom resetten\"],\"jMyq_x\":[\"Workflow Job 1/\",[\"0\"]],\"jaUa4e\":[\"Deze gegevens worden gebruikt om\\n toekomstige releases van de Tower-software te verbeteren en te helpen\\n de klantervaring en het succes te stroomlijnen.\"],\"jc86YO\":[\"Vraag om limiet bij opstarten.\"],\"ji-8F7\":[\"Deze toegangsgegevens worden momenteel door andere bronnen gebruikt. Weet u zeker dat u ze wilt verwijderen?\"],\"jiE6Vn\":[\"Organisaties\"],\"jifz9m\":[\"Geen (eenmaal uitgevoerd)\"],\"jkQOCm\":[\"Uitzonderingen toevoegen\"],\"jljuYN\":[\"Service waarvan webhook-verzoeken worden geaccepteerd.\"],\"jluR-N\":[\"Waarschuwing: \",[\"selectedValue\"],\" is een link naar \",[\"0\"],\" en wordt als zodanig opgeslagen.\"],\"joAQQS\":[\"The inventories will be in a pending status until the final delete is processed.\"],\"jqVo_k\":[\"hier.\"],\"jqzUyM\":[\"Niet beschikbaar\"],\"jrkyDn\":[\"Afspelen gestart\"],\"jrsFB3\":[\"Output\"],\"jsz-PY\":[\"Onbekende einddatum\"],\"jwmkq1\":[\"Toegangsgegevens machine\"],\"jzD-D6\":[\"Over te slaan tags zijn handig wanneer u een groot playbook heeft en specifieke delen van een play of taak wilt overslaan. Gebruik komma's om meerdere tags te scheiden. Raadpleeg de documentatie voor details over het gebruik van tags.\"],\"k020kO\":[\"Activiteitenlogboek\"],\"k2dzu3\":[\"Verloopt op UTC\"],\"k30JvV\":[\"Geselecteerde categorie\"],\"k5nHqi\":[\"De uitvoeringsomgeving die wordt gebruikt bij het starten van dit taaksjabloon. De opgeloste uitvoeringsomgeving kan worden overschreven door er expliciet een andere toe te wijzen aan dit taaksjabloon.\"],\"kALwhk\":[\"seconds\"],\"kDWprA\":[\"Deze argumenten worden gebruikt met de gespecificeerde module.\"],\"kEhyki\":[\"Veld eindigt op waarde.\"],\"kLja4m\":[\"Gestart door\"],\"kLk5bG\":[\"Startbericht\"],\"kNUkGV\":[\"Type opzoeken\"],\"kNfXib\":[\"Naam van de module\"],\"kODvZJ\":[\"Voornaam\"],\"kOVkPY\":[\"Instantie wisselen\"],\"kP-3Hw\":[\"Terug naar inventarissen\"],\"kQerRU\":[\"Dit veld mag geen spaties bevatten\"],\"kX-GZH\":[\"Taak opnieuw starten\"],\"kXzl6Z\":[\"Bronvariabelen\"],\"kYDvK4\":[\"Inclusief bestand\"],\"kah1PX\":[\"Bekijk YAML-voorbeelden op\"],\"kaux7o\":[\"Lokale groepen en hosts overschrijven op grond van externe inventarisbron\"],\"kgtWJ0\":[\"Selecteer de instantiegroepen waarop dit taaksjabloon moet worden uitgevoerd.\"],\"kiMHN-\":[\"Systeemcontroleur\"],\"kjrq_8\":[\"Meer informatie\"],\"kkDQ8m\":[\"Donderdag\"],\"kkc8HD\":[\"Eenvoudig inloggen inschakelen voor uw \",[\"brandName\"],\" toepassingen\"],\"kpRn7y\":[\"Vragen verwijderen\"],\"kpnWnY\":[\"Na elke projectupdate waarbij de SCM-revisie verandert, vernieuwt u de inventaris van de geselecteerde bron voordat u projecttaken uitvoert. Dit is bedoeld voor statische content, zoals het Ansible inventory .ini bestandsformaat.\"],\"ks-HYT\":[\"Gebruikersmachtigingen toevoegen\"],\"ks71ra\":[\"Uitzonderingen\"],\"kt8V8M\":[\"Selecteer een branch voor de workflow.\"],\"ktPOqw\":[\"Raadpleeg de\"],\"kuIbuV\":[\"Gezondheidscontroles kunnen alleen worden uitgevoerd op uitvoeringsknooppunten.\"],\"ku__5b\":[\"Seconde\"],\"kyAi7k\":[\"Instantie\"],\"kyHUFI\":[\"Wachtwoord kluis | \",[\"credId\"]],\"kyfr2I\":[\"Indien aangevinkt, worden alle hosts en groepen die eerder aanwezig waren op de externe bron maar nu zijn verwijderd, uit de inventaris verwijderd. Hosts en groepen die niet door de inventarisbron werden beheerd, worden gepromoveerd naar de volgende handmatig gemaakte groep, of als er geen handmatig gemaakte groep is om ze naartoe te promoveren, blijven ze in de standaardgroep \\\"all\\\" voor de inventaris.\"],\"kz7G1W\":[\"Weet u zeker dat u de \",[\"0\"],\" toegang vanuit \",[\"1\"],\" wilt verwijderen? Als u dat doet, heeft dat gevolgen voor alle leden van het team.\"],\"l4MzBY\":[[\"update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" seconde\"],\"other\":[\"#\",\" seconden\"]}]],\"l4k9lc\":[\"Eerste knooppunt\"],\"l5XUoS\":[\"Toegangsgegevens Webhook\"],\"l75CjT\":[\"Ja\"],\"l9ZmWD\":[[\"scm_update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" seconde\"],\"other\":[\"#\",\" seconden\"]}]],\"lCF0wC\":[\"Vernieuwen\"],\"lJFsGr\":[\"Nieuwe instantiegroep maken\"],\"lKxoCA\":[\"Taakgebeurtenissen uitklappen\"],\"lM9cbX\":[\"Houd er rekening mee dat je de groep na het loskoppelen nog steeds in de lijst kunt zien als de host ook lid is van de kinderen van die groep. Deze lijst toont alle groepen waaraan de verhuurder direct en indirect is gekoppeld.\"],\"lURfHJ\":[\"Sectie samenvouwen\"],\"lWkKSO\":[\"min\"],\"lWmv3p\":[\"Inventarisbronnen\"],\"lYDyXS\":[\"Smart-inventaris\"],\"l_jRvf\":[\"Draaiboek voltooid\"],\"lfoFSg\":[\"Host verwijderen\"],\"lgm7y2\":[\"bewerken\"],\"lgphOX\":[\"Verwachte waarde\"],\"lhgU4l\":[\"Sjabloon niet gevonden.\"],\"lhkaAC\":[\"Proefperiode\"],\"ljGeYw\":[\"Normale gebruiker\"],\"lk5WJ7\":[\"Hostnaam-\",[\"0\"]],\"lkgIYt\":[\"Pagerduty\"],\"lo-rJO\":[\"Omlaag pannen\"],\"ltvmAF\":[\"Toepassing niet gevonden.\"],\"lu2qW5\":[\"Iedere\"],\"lucaxq\":[\"Kan logboek aggregator niet inschakelen zonder logboek aggregator host en logboek aggregator type op te geven.\"],\"luxcrf\":[\"Meer informatie voor \",[\"label\"]],\"lyjq5X\":[\"Slack\"],\"m-eV2_\":[\"Containergroep niet gevonden.\"],\"m16xKo\":[\"Toevoegen\"],\"m1tKEz\":[\"Systeembeheerders hebben onbeperkte toegang tot alle bronnen.\"],\"m2ErDa\":[\"Mislukking\"],\"m3k6kn\":[\"Kan de synchronisatie van de geconstrueerde voorraadbron niet annuleren\"],\"m5MOUX\":[\"Terug naar hosts\"],\"mGJIOu\":[\"Deze samengestelde inventarisinvoer\\n maakt een groep voor beide categorieën en gebruikt\\n de limiet (hostpatroon) om alleen hosts te retourneren die\\n zich in de doorsnede van die twee groepen bevinden.\"],\"mNBZ1R\":[\"Opmerking: dit veld gaat ervan uit dat de naam van de remote «origin» is.\"],\"mOFgdC\":[\"Maximum\"],\"mPiYpP\":[\"Typen knooppuntstatus\"],\"mSv_7k\":[\"Afgelopen drie jaar\"],\"mXRKES\":[\"LDAP4\"],\"mXfNlE\":[\"In dit schema ontbreken de vereiste vragenlijstwaarden\"],\"mYGY3B\":[\"Datum\"],\"mZiQNk\":[\"Escalatie van bevoegdheden: indien ingeschakeld, voer dit playbook uit als beheerder.\"],\"m_tELA\":[\"Terugzetten annuleren\"],\"ma7cO9\":[\"Kan groep \",[\"0\"],\" niet verwijderen.\"],\"mahPLs\":[\"Wachtwoord verhoging van rechten\"],\"mcGG2z\":[[\"minutes\"],\" min \",[\"seconds\"],\" sec\"],\"mdNruY\":[\"API-token\"],\"mgJ1oe\":[\"Verwijderen bevestigen\"],\"mgjN5u\":[\"Instantie van instantiegroep loskoppelen?\"],\"mhg7Av\":[\"Ad-hoc-opdracht uitvoeren\"],\"mi9ffh\":[\"Hostdetails\"],\"mk4anB\":[\"Browserstandaard\"],\"mlDUq3\":[\"Gewijzigd door (gebruikersnaam)\"],\"mnm1rs\":[\"GitHub-standaard\"],\"moZ0VP\":[\"Synchronisatiestatus\"],\"momgZ_\":[\"Naam van het workflowtaaksjabloon.\"],\"mqAOoN\":[\"Kies een draaiboekmap\"],\"n-37ya\":[\"Lokale autorisatie uitschakelen bevestigen\"],\"n-LISx\":[\"Er is een fout opgetreden bij het opslaan van de workflow.\"],\"n-ZioH\":[\"Fout bij ophalen bijgewerkt project\"],\"n-qmM7\":[\"Selecteer een JSON-geformatteerde serviceaccountsleutel om de volgende velden automatisch in te vullen.\"],\"n12Go4\":[\"Kan gerelateerde groepen niet laden.\"],\"n60kiJ\":[\"* Dit veld wordt met behulp van de opgegeven referentie opgehaald uit een extern geheimbeheersysteem.\"],\"n6mYYY\":[\"Workflow Time-outbericht\"],\"n9Idrk\":[\"(Beperkt tot de eerste 10)\"],\"n9lz4A\":[\"Mislukte taken\"],\"nBAIS_\":[\"Evenementinformatie weergeven\"],\"nC35Na\":[\"Are you sure you want delete the group below?\"],\"nCU-1E\":[\"Maakt het maken van een provisioning-\\n callback-URL mogelijk. Met de URL kan een host contact opnemen met \",[\"brandName\"],\"\\n en een configuratie-update aanvragen met behulp van deze taak-\\n sjabloon\"],\"nCY9IL\":[\"Host overgeslagen\"],\"nDjIzD\":[\"Projectdetails weergeven\"],\"nGbNEN\":[\"Tijd in seconden om een project als actueel te beschouwen. Tijdens taakuitvoeringen en callbacks evalueert het taaksysteem de tijdstempel van de laatste projectupdate. Als deze ouder is dan de cachetime-out, wordt deze niet als actueel beschouwd en wordt er een nieuwe projectupdate uitgevoerd.\"],\"nI54lc\":[\"Verwijder het project alvorens te synchroniseren\"],\"nJPBvA\":[\"Bestand, map of script\"],\"nJTOTZ\":[\"De uitvoeringsomgeving die zal worden gebruikt voor taken binnen deze organisatie. Dit wordt gebruikt als terugvalpunt wanneer er geen uitvoeringsomgeving expliciet is toegewezen op project-, taaksjabloon- of workflowniveau.\"],\"nLGsp4\":[\"Schakel een enquête in voor dit workflowtaaksjabloon.\"],\"nMiE53\":[\"Ingeschakelde variabele\"],\"nOhz3x\":[\"Afmelden\"],\"nPH1Cr\":[\"Deze uitvoeringsomgevingen kunnen worden gebruikt door andere bronnen die erop vertrouwen. Weet u zeker dat u ze toch wilt verwijderen?\"],\"nQOwDS\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"dayOfWeek\"]],\"4\":[\"The fourth \",[\"dayOfWeek\"]],\"5\":[\"The fifth \",[\"dayOfWeek\"]],\"one\":[\"The first \",[\"dayOfWeek\"]],\"two\":[\"The second \",[\"dayOfWeek\"]]}]],\"nRXCOn\":[\"Aantal mislukte hosts\"],\"nSTT11\":[\"Opnieuw starten vanaf:\"],\"nTENWI\":[\"Terug naar abonnementenbeheer.\"],\"nU16mp\":[\"Cache time-out\"],\"nZPX7r\":[\"Waarschuwing: niet-opgeslagen wijzigingen\"],\"nZW6P0\":[\"Lokale tijdzone\"],\"nZYB4j\":[\"Geen schijfstatus beschikbaar\"],\"nZYxse\":[\"Host van groep loskoppelen?\"],\"n_qDNz\":[\"Switch to dark mode\"],\"naCW6Z\":[\"April\"],\"ncxIQL\":[\"Een of meer instanties kunnen niet worden losgekoppeld.\"],\"neiOWk\":[\"Bekijk hier de opgebouwde inventarisdocumentatie\"],\"nfnm9D\":[\"Naam van organisatie\"],\"ng00aZ\":[\"Hostfilter\"],\"nhxAdQ\":[\"Trefwoord\"],\"nlsWzF\":[\"Voeg vragenlijstvragen toe.\"],\"nnY7VU\":[\"Subdomein Pagerduty\"],\"noGZlf\":[\"Cache time-out (seconden)\"],\"npGo-z\":[\"Aanmelden met \",[\"label\"]],\"nuh_Wq\":[\"Webhook-URL\"],\"nvUq8j\":[\"1 (Uitgebreid)\"],\"nzozOC\":[\"Gebruiker verwijderen\"],\"nzr1qE\":[\"Bestand uploaden geweigerd. Selecteer één .json-bestand.\"],\"o-JPE2\":[\"Geen vragenlijstvragen gevonden.\"],\"o0RwAq\":[\"Aanmelden met GitHub Enterprise\"],\"o0x5-R\":[\"Waarde voor dit veld selecteren\"],\"o4NRE0\":[\"Geavanceerde invoer zoekwaarden\"],\"o5J6dR\":[\"Specificeer de voorwaarden waaronder dit knooppunt moet worden uitgevoerd\"],\"o9R2tO\":[\"SSL-verbinding\"],\"oABS9f\":[\"Geef een waarde op voor dit veld of selecteer de optie Melding bij opstarten.\"],\"oB5EwG\":[\"Extern geheimbeheersysteem\"],\"oBmCtD\":[\"Are you sure you want delete the groups below?\"],\"oC5JSb\":[\"Kan de bijgewerkte projectgegevens niet ophalen.\"],\"oCKCYp\":[\"Bericht is verzonden\"],\"oEijQ7\":[\"Hoofdletterongevoelige versie van startswith.\"],\"oFtmtl\":[\"Select the inventory containing the hosts\\n you want this job to manage.\"],\"oGKq12\":[\"Construeer 2 groepen, beperk tot snijpunt\"],\"oH1Qle\":[\"Webhook-URL voor dit workflowtaaksjabloon.\"],\"oHOOxn\":[\"Standaard verzamelen we analysegegevens over het servicegebruik en verzenden deze naar Red Hat. Er zijn twee categorieën gegevens die door de service worden verzameld. Zie <0>deze Tower-documentatiepagina voor meer informatie. Schakel de volgende selectievakjes uit om deze functie uit te schakelen.\"],\"oII7vS\":[\"GitHub-instellingen\"],\"oKMFX4\":[\"Nooit bijgewerkt\"],\"oKbBFU\":[\"# source with sync failures.\"],\"oNOjE7\":[\"Einddatum/-tijd\"],\"oNZQUQ\":[\"Credential om te authenticeren met Kubernetes of OpenShift\"],\"oQqtoP\":[\"Terug naar beheerderstaken\"],\"oRt7Uv\":[[\"interval\"],\" years\"],\"oTDA5P\":[[\"0\",\"plural\",{\"one\":[\"Deze instantie wordt momenteel gebruikt door andere resources. Weet u zeker dat u deze wilt verwijderen?\"],\"other\":[\"Het deprovisioneren van deze instanties kan gevolgen hebben voor andere resources die ervan afhankelijk zijn. Weet u zeker dat u ze toch wilt verwijderen?\"]}]],\"oWvSIB\":[\"Afzender e-mail\"],\"oX_mCH\":[\"Fout tijdens projectsynchronisatie\"],\"oZvDsd\":[[\"interval\"],\" hours\"],\"ocUvR-\":[\"False\"],\"ofO19Q\":[\"Aanmelden met GitHub Enterprise-teams\"],\"ofcQVG\":[\"Modus Niet-opgeslagen wijzigingen\"],\"olEUh2\":[\"Geslaagd\"],\"opS--k\":[\"Terug naar instantiegroepen\"],\"orh4t6\":[\"Host OK\"],\"osCeRO\":[\"Azure AD-instellingen weergeven\"],\"ot7qsv\":[\"Alle filters wissen\"],\"ovBPCi\":[\"Standaard\"],\"owBGkJ\":[\"Einde kwam niet overeen met een verwachte waarde (\",[\"0\"],\")\"],\"owQ8JH\":[\"Instantiegroep toevoegen\"],\"ozbhWy\":[\"Fout bij verwijderen\"],\"p-nfFx\":[\"Sleep een bestand hierheen of blader om te uploaden\"],\"p-ngUo\":[\"Volgen ongedaan maken\"],\"p-pp9U\":[\"string\"],\"p2LEhJ\":[\"Persoonlijke toegangstoken\"],\"p2_GCq\":[\"Wachtwoord bevestigen\"],\"p3PM8G\":[\"Opnieuw starten vanaf eerste knooppunt\"],\"p6-JME\":[\"De eerste haalt alle referenties op. De tweede haalt de Github pull request nummer 62 op; in dit voorbeeld moet de branch «pull/62/head» zijn.\"],\"pAtylB\":[\"Niet gevonden\"],\"pCCQER\":[\"Wereldwijd beschikbaar\"],\"pH8j40\":[\"Actieve hosts die eerder zijn verwijderd\"],\"pHyx6k\":[\"Meerkeuze-opties (één keuze mogelijk)\"],\"pKQcta\":[\"Podspecificatie aanpassen\"],\"pOJNDA\":[\"opdracht\"],\"pOd3wA\":[\"Druk op 'Enter' om meer antwoordkeuzen toe te voegen. Eén antwoordkeuze per regel.\"],\"pOhwkU\":[\"Deze actie ontkoppelt de volgende rol van \",[\"0\"],\":\"],\"pRZ6hs\":[\"Uitvoeren op\"],\"pSypIG\":[\"Beschrijving tonen\"],\"pYENvg\":[\"Type authenticatieverlening\"],\"pZJ0-s\":[\"Maximaal aantal vorken om toe te staan voor alle taken die tegelijkertijd op deze groep worden uitgevoerd. Nul betekent dat er geen limiet wordt afgedwongen.\"],\"pa1SrG\":[[\"interval\"],\" days\"],\"peCAyQ\":[\"RADIUS-instellingen weergeven\"],\"pfw0Wr\":[\"ALLE\"],\"pguZh2\":[\"Maak variabelen van jinja2-expressies. Dit kan nuttig zijn\\n als de samengestelde groepen die u definieert niet de verwachte\\n hosts bevatten. Dit kan worden gebruikt om hostvars toe te voegen vanuit expressies zodat\\n u weet wat de resulterende waarden van die expressies zijn.\"],\"phTgAm\":[\"Het is moeilijk om een specificatie te geven voor\\n de inventaris voor Ansible-facts, omdat u om\\n de systeemfacts te vullen een playbook moet uitvoeren tegen\\n de inventaris met `gather_facts: true`. De\\n werkelijke facts verschillen van systeem tot systeem.\"],\"pkY73W\":[\"Rocket.Chat\"],\"pn7Xy3\":[\"Zie Django\"],\"poMgBa\":[\"Vraag om SCM-branch bij opstarten.\"],\"ppcQy0\":[\"Zoom instellen op 100% en grafiek centreren\"],\"prydaE\":[\"Mislukte projectsynchronisaties\"],\"pw2VDK\":[\"De laatste \",[\"weekday\"],\" van \",[\"month\"]],\"q-Uk_P\":[\"Een of meer typen toegangsgegevens kunnen niet worden verwijderd.\"],\"q45OlW\":[\"Regio's\"],\"q5tQBE\":[\"Zet type op uitgeschakeld voor verwant zoekveld fuzzy zoekopdrachten\"],\"q67y3T\":[\"Berichtsjabloon niet gevonden.\"],\"qAlZNb\":[\"U kunt niet reageren op de volgende workflowgoedkeuringen: \",[\"itemsUnableToDeny\"]],\"qCUUnr\":[\"Geen resterende hosts\"],\"qChjCy\":[\"Eerste uitvoering\"],\"qD-pvR\":[\"ID van het dashboard (optioneel)\"],\"qEMgTP\":[\"Fout tijdens synchronisatie inventarisbronnen\"],\"qJK-de\":[\"Aanmelden met SAML \"],\"qS0GhO\":[\"Uitvoeringsomgeving ontbreekt\"],\"qSSVmd\":[\"Bestemmingskanalen of -gebruikers\"],\"qSSg1L\":[\"Link naar een beschikbaar knooppunt\"],\"qWD0iN\":[\"Deze gegevens worden gebruikt om\\n toekomstige releases van de software te verbeteren en om\\n Automation Analytics te leveren.\"],\"qXRYa2\":[\"Submodules laatste binding op vertakking tracken\"],\"qYkrfg\":[\"Provisioning terugkoppelingsdetails\"],\"qZ2MTC\":[\"Dit zijn de modules waar \",[\"brandName\"],\" commando's tegen kan uitvoeren.\"],\"qgjtIt\":[\"Convergentie\"],\"qlhQw_\":[\"Inventarissynchronisatie\"],\"qliDbL\":[\"Extern archief\"],\"qlwLcm\":[\"Probleemoplossen\"],\"qmBmJJ\":[\"Dit is de enige keer dat het cliëntgeheim wordt getoond.\"],\"qmYgP7\":[\"goedgekeurd\"],\"qqeAJM\":[\"Nooit\"],\"qtFFSS\":[\"Herziening updaten bij opstarten\"],\"qtaMu8\":[\"Inventaris (naam)\"],\"qvCD_i\":[\"Voorbeelden zijn onder meer:\"],\"qwaCoN\":[\"Update broncontrole\"],\"qxZ5RX\":[\"hosts\"],\"qznBkw\":[\"Modus Workflowlink\"],\"r6Aglb\":[\"Geef injectoren op met JSON- of YAML-syntaxis. Raadpleeg de documentatie voor Ansible Tower voor voorbeeldsyntaxis.\"],\"r6y-jM\":[\"Waarschuwing\"],\"r6zgGo\":[\"December\"],\"r8ojWq\":[\"Reset bevestigen\"],\"r8oq0Y\":[\"Afgelopen 24 uur\"],\"rBdPPP\":[\"Kan \",[\"name\"],\" niet verwijderen.\"],\"rE95l8\":[\"Type client\"],\"rG3WVm\":[\"Selecteren\"],\"rHK_Sg\":[\"Aangepaste virtuele omgeving \",[\"virtualEnvironment\"],\" moet worden vervangen door een uitvoeringsomgeving. Raadpleeg voor meer informatie over het migreren van uitvoeringsomgevingen <0>de documentatie.\"],\"rK7UBZ\":[\"Alle hosts opnieuw starten\"],\"rKS_55\":[\"Feitenopslag: indien ingeschakeld, worden de verzamelde feiten opgeslagen zodat ze op hostniveau kunnen worden bekeken. Feiten worden bewaard en tijdens runtime in de feitencache geïnjecteerd.\"],\"rKTFNB\":[\"Soort toegangsgegevens verwijderen\"],\"rLznGJ\":[\"Een Jinja2-sjabloon dat wordt gerenderd met upstream set_stats-artefacten wanneer de goedkeuring wordt gemaakt. Gebruik dit om de goedkeurder relevante context uit eerdere taakstappen te tonen. Beschikbare variabelen komen uit de set_stats-gegevens van bovenliggende knooppunten.\"],\"rMrKOB\":[\"Kan project niet synchroniseren.\"],\"rOZRCa\":[\"Workflowlink\"],\"rSYkIY\":[\"Dit veld moet een getal zijn\"],\"rXhu41\":[\"2 (Foutopsporing)\"],\"rYHzDr\":[\"Items per pagina\"],\"r_IfWZ\":[\"Inventaris bewerken\"],\"rdUucN\":[\"Voorvertoning\"],\"rfYaVc\":[\"Antwoord naam variabele\"],\"rfpIXM\":[\"Vraag om instantiegroepen bij opstarten.\"],\"rfx2oA\":[\"Workflow Berichtenbody in behandeling\"],\"riBcU5\":[\"IRC-bijnaam\"],\"rjVfy3\":[\"Workflowdocumentatie\"],\"rjyWPb\":[\"Januari\"],\"rmb2GE\":[\"Geweigerd door \",[\"0\"],\" - \",[\"1\"]],\"rmt9Tu\":[\"Totaal gastheren\"],\"ruhGSG\":[\"Synchronisatie van inventarisbron annuleren\"],\"rvia3m\":[\"Diversen authenticatie\"],\"rw1pRJ\":[\"Bundel downloaden\"],\"rwWNpy\":[\"Inventarissen\"],\"s-MGs7\":[\"Hulpbronnen\"],\"s2xYUy\":[\"Lokale variabelen overschrijven op grond van externe inventarisbron\"],\"s3KtlK\":[\"Dit schema heeft geen voorvallen vanwege de geselecteerde uitzonderingen.\"],\"s4Qnj2\":[\"Uitvoeringsomgeving\"],\"s4fge-\":[\"Afgelopen maand\"],\"s5aIEB\":[\"Workflow-taaksjabloon verwijderen\"],\"s5mACA\":[\"Instantiedetails\"],\"s5r5nt\":[[\"0\",\"plural\",{\"one\":[\"Deze instantiegroep wordt momenteel gebruikt door andere resources. Weet u zeker dat u deze wilt verwijderen?\"],\"other\":[\"Het verwijderen van deze instantiegroepen kan invloed hebben op andere resources die ervan afhankelijk zijn. Weet u zeker dat u ze toch wilt verwijderen?\"]}]],\"s6F6Ks\":[\"Geen output gevonden voor deze taak.\"],\"s70SJY\":[\"Instellingen voor logboekregistratie\"],\"s8hQty\":[\"Geef alle taken weer.\"],\"s9EKbs\":[\"SSL-verificatie uitschakelen\"],\"sAz1tZ\":[\"loskoppelen bevestigen\"],\"sBJ5MF\":[\"Bronnen\"],\"sCEb_0\":[\"Geef alle inventarishosts weer.\"],\"sGodAp\":[\"Overschrijven Podspec\"],\"sMDRa_\":[\"Terug naar groepen\"],\"sOMf4x\":[\"Recente sjablonen\"],\"sSFxX6\":[\"Herziening bijwerken bij starten taak\"],\"sTkKoT\":[\"Selecteer een rij om te weigeren\"],\"sUyFTB\":[\"Doorverwijzen naar dashboard\"],\"sV3kNp\":[\"Deze instantiegroep wordt momenteel door andere bronnen gebruikt. Weet u zeker dat u hem wilt verwijderen?\"],\"sVh4-e\":[\"Deze link verwijderen\"],\"sW5OjU\":[\"verplicht\"],\"sZif4m\":[\"Verwante groep(en) loskoppelen?\"],\"s_XkZs\":[\"BEGINNEN\"],\"s_r4Az\":[\"Dit veld moet een geheel getal zijn\"],\"sesAIn\":[\"Gebruik aangepaste berichten om de inhoud van\\n meldingen te wijzigen die worden verzonden wanneer een taak start, slaagt of mislukt. Gebruik\\n accolades om toegang te krijgen tot informatie over de taak:\"],\"sgRZMG\":[\"Hybride knooppunt\"],\"siJgSI\":[\"Gebruiker niet gevonden.\"],\"sjMCOP\":[\"Laatst aangepast\"],\"sjVfrA\":[\"Opdracht\"],\"smFRaX\":[\"Er is al een opdracht gestart\"],\"sqMsvU\":[[\"0\",\"plural\",{\"one\":[\"#\",\" bron met synchronisatiefouten.\"],\"other\":[\"#\",\" bronnen met synchronisatiefouten.\"]}]],\"sr4LMa\":[\"Inventarisbron\"],\"svR3aM\":[\"OpenStack\"],\"svy2x9\":[\"Retourneert resultaten die aan dit filter of aan andere filters voldoen.\"],\"sxkWRg\":[\"Geavanceerd\"],\"syupn5\":[\"Merkimago\"],\"syyeb9\":[\"Eerste\"],\"t-R8-P\":[\"Uitvoering\"],\"t2q1xO\":[\"Schema bewerken\"],\"t4v_7X\":[\"Selecteer een knooppunttype\"],\"t9QlBd\":[\"November\"],\"tRm9qR\":[\"Tags zijn handig wanneer u een groot playbook heeft en een specifiek deel van een play of taak wilt uitvoeren. Gebruik komma's om meerdere tags te scheiden. Raadpleeg de documentatie voor details over het gebruik van tags.\"],\"tVEot_\":[[\"0\",\"plural\",{\"one\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"other\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"]}]],\"tXkhj_\":[\"Starten\"],\"t_YqKh\":[\"Verwijderen\"],\"tbSVlt\":[\"Gebruikerstoegang verwijderen\"],\"tfDRzk\":[\"Opslaan\"],\"tfh2eq\":[\"Klik om een nieuwe link naar dit knooppunt te maken.\"],\"tgPwON\":[\"Operator\"],\"tgSBSE\":[\"Link verwijderen\"],\"tgWuMB\":[\"Gewijzigd\"],\"thJljW\":[\"WAARSCHUWING: \"],\"toJdZA\":[\"Reorder\"],\"tpCmSt\":[\"policy rules.\"],\"tqlcfo\":[\"Deprovisionering\"],\"trjiIV\":[\"Koppelen peer mislukt.\"],\"tst44n\":[\"Gebeurtenissen\"],\"twE5a9\":[\"Kan toegangsgegevens niet verwijderen.\"],\"txNbrI\":[\"Vertakking broncontrole\"],\"ty2DZX\":[\"Deze organisatie wordt momenteel door andere bronnen gebruikt. Weet u zeker dat u haar wilt verwijderen?\"],\"tzgOKK\":[\"Hieraan is reeds gevolg gegeven\"],\"u-sh8m\":[\"/ (projectroot)\"],\"u4ex5r\":[\"Juli\"],\"u4n8Fm\":[\"Kan peers niet verwijderen.\"],\"u4x6Jy\":[\"Terug naar taken\"],\"u5AJST\":[\"Het aantal parallelle of gelijktijdige processen dat gebruikt wordt bij het uitvoeren van het draaiboek. Als u geen waarde invoert, wordt de standaardwaarde van het Ansible-configuratiebestand gebruikt. U vindt meer informatie\"],\"u7f6WK\":[\"Geef alle workflowgoedkeuringen weer.\"],\"u84wS1\":[\"Fout bij annuleren taak\"],\"uAQUqI\":[\"Status\"],\"uAhZbx\":[\"Inventarisbronnen met fouten\"],\"uCjD1h\":[\"Uw sessie is verlopen. Log in om verder te gaan waar u gebleven was.\"],\"uImfEm\":[\"Bericht Workflow in behandeling\"],\"uJz8NJ\":[\"Zoeken is uitgeschakeld terwijl de taak wordt uitgevoerd\"],\"uPRp5U\":[\"Opzoeken annuleren\"],\"uTDtiS\":[\"Vijfde\"],\"uUehLT\":[\"Wachten\"],\"uVu1Yt\":[\"Type instellen selecteren\"],\"uYtvvN\":[\"Selecteer een project voordat u de uitvoeringsomgeving bewerkt.\"],\"ucSTeu\":[\"Gemaakt door (gebruikersnaam)\"],\"ucgZ0o\":[\"Organisatie\"],\"ugZpot\":[\"Externe inloggegevens testen\"],\"ulRNXw\":[\"Dragging cancelled. List is unchanged.\"],\"upC07l\":[\"Survey Disabled\"],\"uuPCEU\":[\"If you want the Inventory Source to update on launch , click on Update on Launch, and also go to \"],\"uyJsf6\":[\"Over\"],\"uzTiFQ\":[\"Terug naar schema's\"],\"v-CZEv\":[\"Melding bij opstarten\"],\"v-EbDj\":[\"Probleemoplossingsinstellingen\"],\"v-M-LP\":[\"Sjabloon opstarten\"],\"v0urVb\":[\"Als u geen abonnement hebt, kunt u\\n Red Hat bezoeken om een proefabonnement te verkrijgen.\"],\"v1kQyJ\":[\"Webhooks\"],\"v2dMHj\":[\"Opnieuw opstarten met hostparameters\"],\"v2gmVS\":[\"Met deze actie wordt het volgende zacht verwijderd:\"],\"v45yUL\":[\"loskoppelen\"],\"v7vAuj\":[\"Totale taken\"],\"vCS_TJ\":[\"Kan inventarisbron \",[\"name\"],\" niet verwijderen.\"],\"vEr6TL\":[\"Deze argumenten worden gebruikt met de opgegeven module. U kunt informatie over \",[\"0\"],\" vinden door te klikken op \"],\"vF82C6\":[\"Uitvoeren wanneer het bovenliggende knooppunt in een succesvolle status resulteert.\"],\"vFKI2e\":[\"Schema Regels\"],\"vFVhzc\":[\"SOCIAAL\"],\"vGVmd5\":[\"Dit veld wordt genegeerd, tenzij er een Ingeschakelde variabele is ingesteld. Als de ingeschakelde variabele overeenkomt met deze waarde, wordt de host bij het importeren ingeschakeld.\"],\"vGjmyl\":[\"Verwijderd\"],\"vHAaZi\":[\"Sla elke\"],\"vIb3RK\":[\"Nieuw schema toevoegen\"],\"vKRQJB\":[\"Veld voor het opgeven van een aangepaste Kubernetes of OpenShift Pod-specificatie.\"],\"vLyv1R\":[\"Verbergen\"],\"vPrMqH\":[\"Herziening #\"],\"vQHUI6\":[\"Indien aangevinkt, worden alle variabelen voor onderliggende groepen en hosts verwijderd en vervangen door die in de externe bron.\"],\"vTL8gi\":[\"Eindtijd\"],\"vUOn9d\":[\"Teruggeven\"],\"vYFWsi\":[\"Teams selecteren\"],\"vYuE8q\":[\"Verstreken tijd in seconden dat de taak is uitgevoerd\"],\"vZbIkJ\":[\"GitLab\"],\"vcH-SH\":[\"Bitbucket-datacenter\"],\"ve_jRy\":[\"Op voorwaarde\"],\"vgwVkd\":[\"UTC\"],\"vlHGDw\":[\"Geef extra opdrachtregelvariabelen door aan het playbook. Dit is de opdrachtregelparameter -e of --extra-vars voor ansible-playbook. Geef sleutel/waarde-paren op met YAML of JSON. Raadpleeg de documentatie voor een voorbeeldsyntaxis.\"],\"voRH7M\":[\"Voorbeelden:\"],\"vq1XXv\":[\"Nieuwe Smart-inventaris met het toegepaste filter maken\"],\"vq2WxD\":[\"Di\"],\"vq9gg6\":[\"U kunt niet reageren op de volgende workflowgoedkeuringen: \",[\"itemsUnableToApprove\"]],\"vqAmQC\":[\"Module\"],\"vvY8pz\":[\"Vraag om skip-tags bij opstarten.\"],\"vye-ip\":[\"Vraag om time-out bij opstarten.\"],\"vzsN_5\":[[\"interval\"],\" day\"],\"w07pgp\":[\"Vraag om uitgebreidheid bij opstarten.\"],\"w0kTk8\":[\"Opnieuw starten vanaf mislukt knooppunt\"],\"w14eW4\":[\"Geef alle tokens weer.\"],\"w1RiT6\":[[\"0\",\"plural\",{\"one\":[\"Deze inventarisbron wordt momenteel gebruikt door andere resources die ervan afhankelijk zijn. Weet u zeker dat u deze wilt verwijderen?\"],\"other\":[\"Het verwijderen van deze inventarisbronnen kan invloed hebben op andere resources die ervan afhankelijk zijn. Weet u zeker dat u ze toch wilt verwijderen?\"]}]],\"w2VTLB\":[\"Minder dan vergelijking.\"],\"w3EE8S\":[\"Geautomatiseerde hosts\"],\"w4j7js\":[\"Teamdetails weergeven\"],\"w6zx64\":[\"Browserstandaard gebruiken\"],\"wCnaTT\":[\"Veld vervangen door nieuwe waarde\"],\"wF-BAU\":[\"Inventaris toevoegen\"],\"wFnb77\":[\"Inventaris-id\"],\"wKEfMu\":[\"Verwerking van gebeurtenissen voltooid.\"],\"wO29qX\":[\"Organisatie niet gevonden.\"],\"wW08QA\":[\"Niet gelijk aan\"],\"wX6sAX\":[\"Afgelopen twee jaar\"],\"wXAVe-\":[\"Module-argumenten\"],\"wXB7k5\":[\"Geef een meldingskleur op. Aanvaardbare kleuren zijn hexadecimale\\n kleurcodes (voorbeeld: #3af of #789abc).\"],\"waFx9W\":[\"Beheerd\"],\"wdxz7K\":[\"Bron\"],\"wgNoIs\":[\"Alles selecteren\"],\"wkgHlv\":[\"Een nieuw knooppunt toevoegen\"],\"wlQNTg\":[\"Leden\"],\"wnizTi\":[\"Abonnement selecteren\"],\"wpT1VN\":[\"Voorwaarde\"],\"wpt6vB\":[\"LDAP2\"],\"wqXiR2\":[\"Geef extra opdrachtregelwijzigingen door. Er zijn twee ansible-opdrachtregelparameters: \"],\"wsggVq\":[\"Als dit niet is aangevinkt, blijven lokale kinderhosts en groepen die niet op de externe bron worden gevonden, onaangetast door het proces voor het bijwerken van de inventaris.\"],\"x-a4Mr\":[\"Webhook toegangsgegevens\"],\"x02hbg\":[\"Provisioning-callbacks: schakelt het maken van een provisioning-callback-URL in. Via de URL kan een host contact opnemen met Ansible AWX en een configuratie-update aanvragen met dit taaksjabloon.\"],\"x4Xp3c\":[\"bijgewerkt\"],\"x5DnMs\":[\"Laatste wijziging\"],\"x6_dAC\":[\"Gefedereerde inventaris\"],\"x6oT_o\":[\"Beschikbare hosts\"],\"x7PDL5\":[\"Logboekregistratie\"],\"x8uKc7\":[\"Instantiestaat\"],\"x9WS62\":[\"Annuleren \",[\"0\"]],\"xAYSEs\":[\"Starttijd\"],\"xAqth4\":[\"Instellingen Google OAuth 2.0 weergeven\"],\"xC9EVu\":[\"Geannuleerd knooppunt\"],\"xCJdfg\":[\"Wissen\"],\"xDr_ct\":[\"Einde\"],\"xESTou\":[\"Kan taak niet verwijderen.\"],\"xF5tnT\":[\"Wachtwoord kluis\"],\"xGQZwx\":[\"Containergroep toevoegen\"],\"xGVfLh\":[\"Doorgaan\"],\"xHZS6u\":[\"Succesvolle taken\"],\"xHokxV\":[[\"0\",\"plural\",{\"one\":[\"The selected job cannot be deleted due to insufficient permission or a running job status\"],\"other\":[\"The selected jobs cannot be deleted due to insufficient permissions or a running job status\"]}]],\"xHt036\":[\"Persoonlijke toegangstoken\"],\"xKQRBr\":[\"Maximumlengte\"],\"xM01Pk\":[\"Standaardantwoord\"],\"xONDaO\":[\"Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?\"],\"xOl1yT\":[\"Exact zoeken op naamveld.\"],\"xPO5w7\":[\"Aanmelden met GitHub\"],\"xPpkbX\":[\"Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway\"],\"xPxMOJ\":[\"Ongeldige tijdnotatie\"],\"xQioPk\":[\"Voorwaarden voor het uitvoeren van dit knooppunt wanneer er meerdere bovenliggende elementen zijn. Raadpleeg de\"],\"xSytdh\":[\"VOLTOOID:\"],\"xUhTCP\":[\"Kies een bron\"],\"xVhQZV\":[\"Vrij\"],\"xY9DEq\":[\"Het patroon dat gebruikt wordt om hosts in de inventaris te targeten. Door het veld leeg te laten, worden met alle en * alle hosts in de inventaris getarget. U kunt meer informatie vinden over hostpatronen van Ansible\"],\"xY9s5E\":[\"Time-out\"],\"x_Ej3K\":[\"Kies een antwoordtype of -indeling dat u als prompt voor de gebruiker wilt.\\n Raadpleeg de Ascender-documentatie voor aanvullende informatie over elke optie.\"],\"x_ugm_\":[\"Totaal aantal groepen\"],\"xa7N9Z\":[\"Login doorverwijzen URL overschrijven bewerken\"],\"xcaG5l\":[\"Workflow bewerken\"],\"xd2LI3\":[\"Verloopt op \",[\"0\"]],\"xdA_-p\":[\"Gereedschap\"],\"xe5RvT\":[\"Tabblad yaml\"],\"xefC7k\":[\"IRC-serverpoort\"],\"xeiujy\":[\"Tekst\"],\"xg771-\":[\"LDAP1\"],\"xhj1Rt\":[\"De door u opgevraagde pagina kan niet worden gevonden.\"],\"xi4nE2\":[\"Foutbericht\"],\"xnSIXG\":[\"Een of meer hosts kunnen niet worden verwijderd.\"],\"xoCdYY\":[\"Controleert of de waarde van het opgegeven veld voorkomt in de opgegeven lijst; verwacht een door komma's gescheiden lijst met items.\"],\"xoXoBo\":[\"Fout verwijderen\"],\"xrG8k4\":[\"Google Compute Engine\"],\"xtRU96\":[\"GitHub Enterprise-organisatie\"],\"xuYTJb\":[\"Kan taaksjabloon niet verwijderen.\"],\"xw06rt\":[\"De instelling komt overeen met de fabrieksinstelling.\"],\"xxTtJH\":[\"Reguliere expressie waarbij alleen overeenkomende hostnamen worden geïmporteerd. Het filter wordt toegepast als een nabewerkingsstap nadat eventuele filters voor inventarisplugins zijn toegepast.\"],\"y11WBZ\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"Geselecteerde taak annuleren\"],\"other\":[\"Geselecteerde taken annuleren\"]}]],\"y8ibKI\":[\"Instanties verwijderen\"],\"yCCaoF\":[\"Kan de vragenlijst niet bijwerken.\"],\"yDeNnS\":[\"Nieuw geconstrueerde inventaris aanmaken\"],\"yDifzB\":[\"Selectie bevestigen\"],\"yGS9cI\":[\"Gezond\"],\"yGUKlf\":[\"Beheertaken\"],\"yGfW7Y\":[\"Wijzig PROJECTS_ROOT bij het implementeren van \",[\"brandName\"],\" om deze locatie te wijzigen.\"],\"yMIahh\":[\"Welkom bij Red Hat Ansible Automation Platform!\\n Voltooi de onderstaande stappen om uw abonnement te activeren.\"],\"yMYuDg\":[\"Versie automatiseringscontroller\"],\"yMfU4O\":[\"Afzender e-mailbericht\"],\"yNcGa2\":[\"Toegangstoken vervallen\"],\"yOXgbH\":[\"Opmerking: Wanneer u het SSH-protocol voor GitHub of Bitbucket gebruikt, voert u alleen een SSH-sleutel in, geen gebruikersnaam (anders dan git). Bovendien ondersteunen GitHub en Bitbucket geen wachtwoordverificatie bij gebruik van SSH. Het alleen-lezen GIT-protocol (git://) gebruikt geen gebruikersnaam- of wachtwoordinformatie.\"],\"yQE2r9\":[\"Laden\"],\"yRiHPB\":[\"Voer een taak uit om deze lijst te vullen.\"],\"yRkqG9\":[\"Limiet\"],\"yRsSBw\":[\"Goedkeuringen\"],\"yUlffE\":[\"Opnieuw starten\"],\"yVgnJA\":[\"Het maximale aantal hosts dat door deze organisatie mag worden beheerd.\\n De waarde is standaard 0, wat betekent dat er geen limiet is. Raadpleeg de Ansible-\\n documentatie voor meer details.\"],\"yX3qAQ\":[\"Workflowtaaksjabloonnodes\"],\"yaG1CX\":[\"LDAP\"],\"yaX9sM\":[\"Workflowsjabloon\"],\"yb_fjw\":[\"Goedkeuring\"],\"ydoZpB\":[\"Taak niet gevonden.\"],\"ydw9CW\":[\"Mislukte hosts\"],\"yfG3F2\":[\"Directe sleutels\"],\"yjwMJ8\":[\"Hoe vaak is de host geautomatiseerd\"],\"yjyGja\":[\"Input uitbreiden\"],\"ylXj1N\":[\"Geselecteerd\"],\"yq6OqI\":[\"Dit is de enige keer dat de tokenwaarde en de bijbehorende ververste tokenwaarde worden getoond.\"],\"yqiwAW\":[\"Workflow annuleren\"],\"yrUyDQ\":[\"Stelt het huidige levenscyclusstadium van deze instantie in. Standaard is \\\"geïnstalleerd\\\".\"],\"yrwl2P\":[\"Conform\"],\"yuXsFE\":[\"Een of meer workflowgoedkeuringen kunnen niet worden verwijderd.\"],\"yuvDX_\":[[\"intervalValue\",\"plural\",{\"one\":[\"month\"],\"other\":[\"months\"]}]],\"ywSBEn\":[\"Fout in geassocieerde rol\"],\"yxDqcD\":[\"Machtigingscode vervallen\"],\"yy1cWw\":[\"Berichten aanpassen...\"],\"yz7wBu\":[\"Sluiten\"],\"yzQhLU\":[\"Beleid instantieminimum\"],\"yzdDia\":[\"Vragenlijst verwijderen\"],\"z-BNGk\":[\"Gebruikerstoken verwijderen\"],\"z0DcIS\":[\"versleuteld\"],\"z3XA1I\":[\"Host opnieuw proberen\"],\"z409y8\":[\"Webhookservice\"],\"z7NLxJ\":[\"Als u alleen de toegang voor deze specifieke gebruiker wilt verwijderen, verwijder deze dan uit het team.\"],\"z8mwbl\":[\"Minimaal percentage van alle instanties dat automatisch aan deze groep wordt toegewezen wanneer nieuwe instanties online komen.\"],\"zBO1TV\":[[\"numOccurrences\",\"plural\",{\"one\":[\"Na \",\"#\",\" keer\"],\"other\":[\"Na \",\"#\",\" keer\"]}]],\"zHcXAG\":[\"Laat dit veld leeg om de uitvoeringsomgeving globaal beschikbaar te maken.\"],\"zICM7E\":[\"Alle lokale wijzigingen vernietigen alvorens te synchroniseren\"],\"zJY4Uj\":[\"Draaiboek\"],\"zKJMiH\":[\"Draaiboekmap\"],\"zK_63z\":[\"Ongeldige gebruikersnaam of wachtwoord. Probeer het opnieuw.\"],\"zLsDix\":[\"ldap-gebruiker\"],\"zMKkOk\":[\"Terug naar organisaties\"],\"zN0nhk\":[\"Geef uw Red Hat- of Red Hat Satellite-toegangsgegevens op om Automatiseringsanalyse in te schakelen.\"],\"zQRgi-\":[\"Berichtstart wisselen\"],\"zTediT\":[\"Dit veld moet een getal zijn en een waarde tussen \",[\"min\"],\" en \",[\"max\"],\" hebben\"],\"zUIPys\":[\"Hosts toevoegen aan groep op basis van Jinja2-voorwaarden.\"],\"z_PZxu\":[\"Kan workflowgoedkeuring niet verwijderen.\"],\"zbLCH1\":[\"Type inventaris\"],\"zcQj5X\":[\"Selecteer eerst een sleutel\"],\"zdl7YZ\":[\"Bronpad selecteren\"],\"zeEQd_\":[\"Juni\"],\"zf7FzC\":[\"Toegangsgegevens voor authenticatie met Kubernetes of OpenShift. Moet van het type 'Kubernetes/OpenShift API Bearer Token' zijn. Indien leeg gelaten, wordt de serviceaccount van de onderliggende Pod gebruikt.\"],\"zfZydd\":[\"Modus Voorbeeld van vragenlijst\"],\"zfsBaJ\":[\"Meer informatie over Automatiseringsanalyse\"],\"zgInnV\":[\"Modis Weergave workflowknooppunt\"],\"zga9sT\":[\"OK\"],\"zhPLvU\":[\"Kan niet koppelen.\"],\"zhrjek\":[\"Groepen\"],\"zi_YNm\":[\"Kan \",[\"0\"],\" niet annuleren\"],\"zmu4-P\":[\"SID account\"],\"znG7ed\":[\"Draaiboek selecteren\"],\"znTz5r\":[\"Schema niet gevonden.\"],\"znuW_M\":[\"Zo ja, maak ongeldige vermeldingen een fatale fout, anders overslaan en\\n doorgaan.\"],\"zq0gmb\":[\"Periode selecteren\"],\"ztOzCj\":[\"Update bij opstarten\"],\"ztw2L3\":[\"Er moet een waarde in ten minste één invoerveld staan\"],\"zvfXp0\":[\"Berichtgoedkeuringen wisselen\"],\"zx4BuL\":[\"Week\"],\"zzDlyQ\":[\"Geslaagd\"],\"{count, plural, one {# fork} other {# forks}}\":[[\"count\",\"plural\",{\"one\":[\"#\",\" fork\"],\"other\":[\"#\",\" forks\"]}]]}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"--iDlT\":[\"Project verwijderen\"],\"-0AkQd\":[[\"forks\",\"plural\",{\"one\":[\"#\",\" fork\"],\"other\":[\"#\",\" forks\"]}]],\"-0B-ue\":[\"Projecten\"],\"-5kO8P\":[\"Zaterdag\"],\"-6EcFR\":[\"Druk op Enter om te bewerken. Druk op ESC om het bewerken te stoppen.\"],\"-7M7WW\":[\"Klik om de standaardwaarde te wijzigen\"],\"-7VWRl\":[\"RAM \",[\"0\"]],\"-8WGoO\":[\"De plugin-parameter is vereist.\"],\"-9d7Ol\":[\"Subdomein Pagerduty\"],\"-9y9jy\":[\"Laatste gezondheidscontrole\"],\"-9yY_Q\":[\"Kan inventaris niet kopiëren.\"],\"-AZQnp\":[\"SAML\"],\"-FWz2-\":[\"Vorige scrollen\"],\"-FjWgX\":[\"Do\"],\"-GMFSa\":[\"Kan project niet kopiëren.\"],\"-GOG9X\":[\"Omschrijving verbergen\"],\"-NI2UI\":[\"Verdeel het werk dat door dit taaksjabloon wordt uitgevoerd in het opgegeven aantal taaksegmenten, die elk dezelfde taken uitvoeren op een deel van de inventaris.\"],\"-NezOR\":[\"Dit type toegangsgegevens wordt momenteel gebruikt door sommige toegangsgegevens en kan niet worden verwijderd\"],\"-OpL2l\":[\"Uitvoeren ongeacht de eindtoestand van het bovenliggende knooppunt.\"],\"-PyL32\":[\"Weet u zeker dat u dit knooppunt wilt verwijderen?\"],\"-RAMET\":[\"Deze link bewerken\"],\"-SAqJ3\":[\"Kan toegangsgegevens niet kopiëren.\"],\"-Uepfb\":[\"Controle\"],\"-b3ghh\":[\"Verhoging van rechten\"],\"-cWxFz\":[\"Schakel content-ondertekening in om te controleren of de content veilig is gebleven wanneer een project wordt gesynchroniseerd. Als er met de content is geknoeid, wordt de taak niet uitgevoerd.\"],\"-hh3vo\":[\"Kan laatste taakupdate niet laden\"],\"-li8PK\":[\"Abonnementsgebruik\"],\"-nb9qF\":[\"(Melding bij opstarten)\"],\"-ohrPc\":[\"Typeahead opzoeken\"],\"-rfqXD\":[\"Enquête ingeschakeld\"],\"-uOi7U\":[\"Klik om de bundel te downloaden\"],\"-vAlj5\":[\"Kan de taak niet starten.\"],\"-z0Ubz\":[\"Rollen selecteren om toe te passen\"],\"-zW4qj\":[\"Uit te checken branch. Naast branches kunt u tags, commit-hashes en willekeurige refs invoeren. Sommige commit-hashes en refs zijn mogelijk niet beschikbaar tenzij u ook een aangepaste refspec opgeeft.\"],\"-zy2Nq\":[\"Soort\"],\"0-31GV\":[\"Verwijderen van\"],\"0-yjzX\":[\"Het project moet zijn gesynchroniseerd voordat een revisie beschikbaar is.\"],\"00_HDq\":[\"Beleidstype\"],\"00cteM\":[\"Dit veld mag niet meer dan \",[\"0\"],\" tekens bevatten\"],\"01Zgfk\":[\"Er is een time-out opgetreden\"],\"02FGuS\":[\"Nieuwe groep maken\"],\"02ePaq\":[\"Selecteer \",[\"0\"]],\"02o5A-\":[\"Nieuw project maken\"],\"05TJDT\":[\"Klik om de taakdetails weer te geven\"],\"06Veq8\":[\"Project synchroniseren\"],\"08IuMU\":[\"Variabelen overschrijven\"],\"08dX0o\":[\"Grafana\"],\"0Ca6Bi\":[[\"dateStr\"],\" door<0>\",[\"username\"],\"\"],\"0DRyjU\":[\"Handlers die worden uitgevoerd\"],\"0JjrTf\":[\"Er is een fout opgetreden bij het parseren van het bestand. Controleer de opmaak van het bestand en probeer het opnieuw.\"],\"0K8MzY\":[\"Dit veld mag niet meer dan \",[\"max\"],\" tekens bevatten\"],\"0LUj25\":[\"Instantiegroep verwijderen\"],\"0MFMD5\":[\"Kan geen gezondheidscontrole uitvoeren op een of meer instanties.\"],\"0Ohn6b\":[\"Gestart door\"],\"0PUWHV\":[\"Frequentie herhalen\"],\"0Pz6gk\":[\"Variabelen die worden gebruikt om de geconstrueerde voorraadplug-in te configureren. Zie voor een gedetailleerde beschrijving van het configureren van deze plug-in\"],\"0QsHpG\":[\"Invoerschema dat een reeks geordende velden voor dat type definieert.\"],\"0Tddvz\":[\"De basis-URL van de Grafana-server - het\\n /api/annotations-eindpunt wordt automatisch toegevoegd aan de basis-\\n Grafana-URL.\"],\"0WL4_U\":[\"Alle knooppunten verwijderen\"],\"0WP27-\":[\"Wachten op output van taak…\"],\"0YAsXQ\":[\"Containergroep\"],\"0ZdD1M\":[[\"0\",\"plural\",{\"one\":[\"You cannot cancel the following job because it is not running:\"],\"other\":[\"You cannot cancel the following jobs because they are not running:\"]}]],\"0ZqUtV\":[\"Raadpleeg voor meer informatie de\"],\"0_ru-E\":[\"Inventaris kopiëren\"],\"0cqIWs\":[\"Wachtwoord basisauthenticatie\"],\"0d48JM\":[\"Meerkeuze-opties (meerdere keuzes mogelijk)\"],\"0eOoxo\":[\"Kies een einddatum/-tijd die na de begindatum/-tijd komt.\"],\"0f7U0k\":[\"Wo\"],\"0gPQCa\":[\"Altijd\"],\"0lvFRT\":[\"U kunt het type inloggegevens van een inloggegevens niet wijzigen, omdat dit de functionaliteit van de bronnen die het gebruiken kan verstoren.\"],\"0pC_y6\":[\"Gebeurtenis\"],\"0qOaMt\":[\"Er is iets misgegaan met het verzoek om deze inloggegevens en metagegevens te testen.\"],\"0rVzXl\":[\"Google OAuth 2-instellingen\"],\"0sNe72\":[\"Rollen toevoegen\"],\"0tNXE8\":[\"PUT\"],\"0tfvhT\":[\"Gebruikte capaciteit instantiegroep\"],\"0wlLcO\":[\"Stel in hoeveel dagen aan gegevens er moet worden bewaard.\"],\"0zpgxV\":[\"Opties\"],\"0zs8j5\":[\"Maximaal aantal keren dat de taak van dit knooppunt automatisch opnieuw wordt geprobeerd na een mislukking voordat de mislukkingspaden worden gevolgd. Geannuleerde taken worden nooit opnieuw geprobeerd.\"],\"1-4GhF\":[\"Synchronisatie annuleren\"],\"10B0do\":[\"Kan testbericht niet verzenden.\"],\"1280Tg\":[\"Hostnaam\"],\"12j25_\":[\"GPG openbare sleutel\"],\"12kemj\":[\"URL broncontrole\"],\"14KOyT\":[\"Source vars\"],\"15GcuU\":[\"Instellingen diversen authenticatie weergeven\"],\"17TKua\":[\"Instantiegroep\"],\"19zgn6\":[\"Instantietype\"],\"1A3EXy\":[\"Uitbreiden\"],\"1C5cFl\":[\"Volgende uitvoering\"],\"1Ey8My\":[\"IP-adres\"],\"1F0IaT\":[\"Schema's weergeven\"],\"1HMy92\":[\"JSON:\"],\"1I6UoR\":[\"Weergaven\"],\"1L3KBl\":[\"Nieuw type toegangsgegevens maken\"],\"1LRwvx\":[\"Als u wilt dat de inventarisbron bij het starten wordt bijgewerkt, klikt u op Bijwerken bij starten en gaat u ook naar \"],\"1Ltnvs\":[\"Knooppunt toevoegen\"],\"1PQRWr\":[\"Starttijd\"],\"1QRNEs\":[\"Frequentie herhalen\"],\"1RYzKu\":[\"Opnieuw starten vanaf geannuleerd knooppunt\"],\"1UJu6o\":[\"Selecteer een getal tussen 1 en 31.\"],\"1UjRxI\":[\"Cache time-out\"],\"1UzENP\":[\"Geen\"],\"1V4Yvg\":[\"Divers systeem\"],\"1WlWk7\":[\"Hostdetails van inventaris weergeven\"],\"1WsB5U\":[\"We waren niet in staat om de aan deze account gekoppelde abonnementen te lokaliseren.\"],\"1ZaQUH\":[\"Achternaam\"],\"1_gTC7\":[\"U kunt niet meerdere kluisreferenties met delfde kluis-ID selecteren. Als u dat wel doet, worden de andere met delfde kluis-ID automatisch gedeselecteerd.\"],\"1abtmx\":[\"Onderliggende groepen en hosts promoveren\"],\"1ahgeV\":[\"Google OAuth2\"],\"1cT4RU\":[\"SCM-update\"],\"1fO-kL\":[\"Kan niet van instantie wisselen.\"],\"1hCxP5\":[\"Een of meer instantiegroepen kunnen niet worden verwijderd.\"],\"1kwHxg\":[\"Metrics\"],\"1n50PN\":[\"JSON-tabblad\"],\"1qd4yi\":[\"Voer variabelen in met JSON- of YAML-syntaxis. Gebruik de radioknop om tussen de twee te wisselen.\"],\"1rDBnp\":[\"Bestandsverschil\"],\"1w2SCz\":[\"Kies een broncontroletype\"],\"1xdJD7\":[\"Aanpassen naar scherm\"],\"1yHVE-\":[\"Het toevoegen van\"],\"2-iKER\":[\"Activiteitenlogboek weergeven\"],\"2B_v7Y\":[\"Beleid instantiepercentage\"],\"2CTKOa\":[\"Terug naar projecten\"],\"2FB7vv\":[\"Selecteer een organisatie voordat u de standaard uitvoeringsomgeving bewerkt.\"],\"2FeJcd\":[\"Item overgeslagen\"],\"2H9REH\":[\"Fuzzy search op naamveld.\"],\"2JV4mx\":[\"De Instance Groups waartoe deze instantie behoort.\"],\"2KlsJC\":[\"U kunt een aantal mogelijke variabelen toepassen in het\\n bericht. Raadpleeg voor meer informatie de\"],\"2MSEkM\":[\"Kan inventaris niet verwijderen.\"],\"2a07Yj\":[\"Berichtsjabloon kopiëren\"],\"2ekvhy\":[\"Uitzonderingsfrequentie\"],\"2gDkH_\":[\"Voer een aantal voorvallen in.\"],\"2iyx-2\":[\"Ansible Controller Documentatie.\"],\"2n41Wr\":[\"Workflowsjabloon toevoegen\"],\"2nsB1O\":[\"Terug naar tokens\"],\"2ocqzE\":[\"Webhooks: Webhook inschakelen voor dit sjabloon.\"],\"2ooR7j\":[\"LDAP 5\"],\"2p6eVk\":[\"Opzoekmodus\"],\"2pNIxF\":[\"Werkstroomknooppunten\"],\"2pgi-L\":[\"Geeft aan of een host beschikbaar is en moet worden opgenomen in actieve\\n taken. Voor hosts die deel uitmaken van een externe inventaris, kan dit worden\\n gereset door het inventarissynchronisatieproces.\"],\"2qfwJn\":[\"Overschrijven\"],\"2r06bV\":[\"Hipchat\"],\"2rvMKg\":[\"Token verversen\"],\"2w-INk\":[\"Hostdetails\"],\"2zs1kI\":[\"Deze waarde komt niet overeen met het wachtwoord dat u eerder ingevoerd heeft. Bevestig dat wachtwoord.\"],\"3-SkJA\":[\"Groep van host loskoppelen?\"],\"3-sY1p\":[\"Sms-nummer(s) bestemming\"],\"328Yxp\":[\"Vertakking broncontrole\"],\"38Or-7\":[\"Tabbladen\"],\"38VIWI\":[\"Sjabloondetails weergeven\"],\"39y5bn\":[\"Vrijdag\"],\"3A9ATS\":[\"Uitvoeringsomgeving niet gevonden.\"],\"3AOZPn\":[\"Foutopsporingsopties bekijken en bewerken\"],\"3FUtN9\":[\"Synchronisatie inventarisbronnen\"],\"3IVQDN\":[\"Deze planning gebruikt complexe regels die niet worden ondersteund in de\\n UI. Gebruik de API om deze planning te beheren.\"],\"3JjdaA\":[\"Uitvoeren\"],\"3JnvxN\":[\"Kies de bronnen die nieuwe rollen gaan ontvangen. U kunt de rollen selecteren die u in de volgende stap wilt toepassen. Merk op dat de hier gekozen bronnen alle rollen ontvangen die in de volgende stap worden gekozen.\"],\"3JzsDb\":[\"Mei\"],\"3LoUor\":[\"Bestemmingskanalen\"],\"3LqMX2\":[\"CIQ Ascender Automation Platform\"],\"3PAU4M\":[\"Jaar\"],\"3PZalO\":[\"Host niet gevonden.\"],\"3Rke7L\":[\"1 (Info)\"],\"3WGwSW\":[\"Verwijder de lokale repository volledig voordat u een update uitvoert. Afhankelijk van de grootte van de repository kan dit de benodigde tijd om een update te voltooien aanzienlijk verlengen.\"],\"3YSVMq\":[\"Fout bij verwijderen\"],\"3aIe4Y\":[\"Nieuwe organisatie maken\"],\"3b24mY\":[\"CPU \",[\"0\"]],\"3fG1e7\":[\"Verstreken tijd\"],\"3fMc43\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" jaar\"],\"other\":[\"#\",\" jaar\"]}]],\"3hCQhK\":[\"Voorraadplugins\"],\"3hvUyZ\":[\"nieuwe keuze\"],\"3mTiHp\":[\"Kan sjabloon niet kopiëren.\"],\"3pBNb0\":[\"Download output\"],\"3sFvGC\":[\"Zet de instantie aan of uit. Indien uitgeschakeld, zullen er geen taken aan deze instantie worden toegewezen.\"],\"3sXZ-V\":[\"en klik op Update Revision on Launch.\"],\"3uAM50\":[\"Licentie-overeenkomst voor eindgebruikers\"],\"3wPA9L\":[\"Categorie instellen\"],\"3y7qi5\":[\"Terug naar toegangsgegevens\"],\"3yy_k-\":[\"Geef alle teams weer.\"],\"4-RjdJ\":[[\"interval\"],\" year\"],\"40lLFI\":[\"Ga naar de volgende pagina\"],\"41KRqu\":[\"Wachtwoorden toegangsgegevens\"],\"45BzQy\":[\"Gezondheidscontroles zijn asynchrone taken. Zie de\"],\"45cx0B\":[\"Abonnement bewerken annuleren\"],\"45gLaI\":[\"Vraag om referenties bij opstarten.\"],\"46SUtl\":[\"Groep bewerken\"],\"479kuh\":[\"Volledige herziening kopiëren naar klembord.\"],\"47e97a\":[\"Max. pogingen\"],\"4BITzH\":[\"Fout:\"],\"4LzLLz\":[\"Alle instellingen weergeven\"],\"4Q4HZp\":[[\"pluralizedItemName\"],\" niet gevonden\"],\"4QXpWJ\":[\"time-out\"],\"4QfhOe\":[\"Sommige zoekmodifiers zoals not__ en __search worden niet ondersteund in Smart Inventory hostfilters. Verwijder deze om een nieuwe Smart Inventory te maken met dit filter.\"],\"4S2cNE\":[\"Logboekregistratie-instellingen weergeven\"],\"4Wt2Ty\":[\"Items in lijst selecteren\"],\"4_ESDh\":[\"Dit veld moet een reguliere expressie zijn\"],\"4_xiC_\":[\"Artefacten\"],\"4alXD6\":[\"Maximaal aantal taken dat gelijktijdig op deze groep wordt uitgevoerd.\\n Nul betekent dat er geen limiet wordt afgedwongen.\"],\"4bhLaA\":[\"Type toegangsgegevens selecteren\"],\"4cWhxn\":[\"Bepaalt of deze instantie al dan niet door beleid wordt beheerd. Indien ingeschakeld, is het exemplaar beschikbaar voor automatische toewijzing aan en verwijdering uit exemplaargroepen op basis van beleidsregels.\"],\"4dQFvz\":[\"Voltooid\"],\"4g1rw0\":[\"De hoeveelheid tijd (in seconden) voordat de e-mail-\\n melding stopt met proberen de host te bereiken en er een time-out optreedt. Varieert\\n van 1 tot 120 seconden.\"],\"4hPyPF\":[\"Opslaan en afsluiten\"],\"4j2eOR\":[\"Selecteer de inventaris waartoe deze host zal behoren.\"],\"4jnim6\":[\"Selecteer een webhook-service.\"],\"4km-Vu\":[\"Niet compliant\"],\"4kw_um\":[[\"interval\"],\" minute\"],\"4lCMxZ\":[\"Storing Verklaring:\"],\"4lgLew\":[\"Februari\"],\"4mQyZf\":[\"Webhook-services kunnen dit gebruiken als een gedeeld geheim.\"],\"4nLbTY\":[\"Alle beheertaken weergeven\"],\"4o_cFL\":[\"Toepassing maken\"],\"4s0pSB\":[\"Geef een hostpatroon op om de lijst met hosts die door het playbook worden beheerd of beïnvloed verder te beperken. Meerdere patronen zijn toegestaan. Raadpleeg de Ansible-documentatie voor meer informatie en voorbeelden over patronen.\"],\"4uVADI\":[\"Clientgeheim\"],\"4vFDZV\":[\"Nieuwe taaksjabloon maken\"],\"4vkbaA\":[\"Het project waaruit deze inventarisupdate afkomstig is.\"],\"4yGeRr\":[\"Inventarissynchronisatie\"],\"4zue79\":[\"Copyright\"],\"5-qYGv\":[\"Instantie Bewerken\"],\"54_SyV\":[[\"0\",\"plural\",{\"one\":[\"You do not have permission to cancel the following job:\"],\"other\":[\"You do not have permission to cancel the following jobs:\"]}]],\"56fd5u\":[\"Weet u zeker dat u alle knooppunten in deze workflow wilt verwijderen?\"],\"5B77Dm\":[\"Laatste taak\"],\"5F5F4w\":[\"Workflowgoedkeuring\"],\"5IhYoj\":[\"Typen knooppunten\"],\"5K7kGO\":[\"documentatie\"],\"5KMGbn\":[\"Weet u zeker dat u deze taak wilt annuleren?\"],\"5RMgCw\":[\"Hosts\"],\"5S4tZv\":[\"Frequentie kwam niet overeen met een verwachte waarde\"],\"5Sa1Ss\":[\"E-mail\"],\"5TnQp6\":[\"Soort taak\"],\"5WFDw4\":[\"Alleen ordenen op\"],\"5X2wog\":[\"Er is een probleem met inloggen. Probeer het opnieuw.\"],\"5_vHPm\":[\"TACACS+ instellingen weergeven\"],\"5ajaW1\":[\"Uitvoeren wanneer een artefact van het bovenliggende knooppunt overeenkomt met de voorwaarde.\"],\"5dJK4M\":[\"Rollen\"],\"5eHyY-\":[\"Testbericht\"],\"5eL2KN\":[\"Doel-URL\"],\"5lqXf5\":[\"Terugzetten op fabrieksinstellingen.\"],\"5n_soj\":[\"Vraag om aantal taaksegmenten bij opstarten.\"],\"5p6-Mk\":[\"Filteren op mislukte opdrachten\"],\"5pDe2G\":[\"Remove \",[\"0\"],\" Access\"],\"5pa4JT\":[\"Draaiboek gestart\"],\"5qauVA\":[\"Deze sjabloon voor workflowtaken wordt momenteel gebruikt door andere bronnen. Weet u zeker dat u hem wilt verwijderen?\"],\"5vA8H0\":[\"Geen overeenkomende hosts\"],\"5xzS8Q\":[\"Token die garandeert dat dit een bronbestand is\\n voor de ‘constructed’-plugin.\"],\"5y9wkB\":[\"Terug naar berichten\"],\"6-OdGi\":[\"Protocol\"],\"6-ptnU\":[\"optie aan de\"],\"623gDt\":[\"Kan gebruiker niet verwijderen.\"],\"63C4Yo\":[\"Containergroep\"],\"66Zq7T\":[\"Linkwijzigingen opslaan\"],\"66qTfS\":[\"Afgelopen week\"],\"679-JR\":[\"Fuzzy search op id, naam of beschrijvingsvelden.\"],\"68OTAn\":[\"This intance is currently being used by other resources. Are you sure you want to delete it?\"],\"68h6WG\":[\"Beheertaak opstarten\"],\"69aXwM\":[\"Bestaande groep toevoegen\"],\"69zuwn\":[\"Deprovisioning these instances could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"6ASSBg\":[\"LDAP 4\"],\"6BzDub\":[\"Zacht verwijderen\"],\"6GBt0m\":[\"Metadata\"],\"6HLTEb\":[\"Filteren...\"],\"6J-cs1\":[\"Time-out seconden\"],\"6KhU4s\":[\"Weet u zeker dat u de workflowcreator wil verlaten zonder uw wijzigingen op te slaan?\"],\"6LTyxl\":[\"Herziening\"],\"6PmtyP\":[\"Legenda wisselen\"],\"6RDwJM\":[\"Tokens\"],\"6UYTy8\":[\"Minuut\"],\"6V3Ea3\":[\"Gekopieerd\"],\"6WwHL3\":[\"Totaalaantal knooppunten\"],\"6XOI1I\":[\"Nieuwe gefedereerde inventaris maken\"],\"6XgEPi\":[\"Uur\"],\"6YtxFj\":[\"Naam\"],\"6Z5ACo\":[\"Configuratiesleutel host\"],\"6bpC9t\":[\"Mislukt knooppunt\"],\"6cylr_\":[\"Stdout\"],\"6f961q\":[\"Alleen indien ontbrekend\"],\"6hEnxG\":[\"Verhoging van rechten inschakelen\"],\"6j6_0F\":[\"Verwante bron\"],\"6kpN96\":[\"Kan bericht niet verwijderen.\"],\"6lGV3K\":[\"Minder tonen\"],\"6msU0q\":[\"Een of meer taken kunnen niet worden verwijderd.\"],\"6nsio_\":[\"Opdracht uitvoeren\"],\"6oNH0E\":[\"plugin configuratiegids.\"],\"6pMgh_\":[\"LDAP-instellingen weergeven\"],\"6rSKy6\":[\"Selecteer de broninventarissen voor deze gefedereerde inventaris. Wanneer een taak wordt gestart, worden hosts automatisch gerouteerd naar de instantiegroep van elke broninventaris.\"],\"6uvnKV\":[\"Service-/integratiesleutel API\"],\"6vrz8I\":[\"Kan een of meer taken niet annuleren.\"],\"6zGHNM\":[\"Resterende hosts\"],\"74MNbw\":[\"Ctrl IQ, Inc.\"],\"764xeZ\":[\"Kan de vragenlijst niet bijwerken.\"],\"7Bj3x9\":[\"Mislukt\"],\"7ElOdS\":[\"ID van het dashboard\"],\"7IUE9q\":[\"Bronvariabelen\"],\"7JF9w9\":[\"Vraag toevoegen\"],\"7L01XJ\":[\"Acties\"],\"7O5TcN\":[\"Samenvatting van de gebeurtenis niet beschikbaar\"],\"7PzzBU\":[\"User\"],\"7UZtKb\":[\"De organisatie die eigenaar is van dit workflowtaaksjabloon.\"],\"7VETeB\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"],\"7VpPHA\":[\"Bevestigen\"],\"7Xk3M1\":[\"Selecteer het project met het playbook dat u door deze taak wilt laten uitvoeren.\"],\"7ZhNzL\":[\"Ga naar de eerste pagina\"],\"7b8TOD\":[\"Meer informatie\"],\"7bDeKc\":[\"Abonnementsmanifest\"],\"7fJwmW\":[\"Lijst met geselecteerde items.\"],\"7hS02I\":[[\"automatedInstancesCount\"],\" sinds \",[\"automatedInstancesSinceDateTime\"]],\"7icMBj\":[\"Geen taakgegevens beschikbaar\"],\"7kb4LU\":[\"Goedgekeurd\"],\"7p5kLi\":[\"Dashboard\"],\"7q256R\":[\"Overschrijven van vertakking toelaten\"],\"7qFdk8\":[\"Toegangsgegevens bewerken\"],\"7sMeHQ\":[\"Sleutel\"],\"7sNhEz\":[\"Gebruikersnaam\"],\"7w3QvK\":[\"Body succesbericht\"],\"7wgt9A\":[\"Uitvoering van draaiboek\"],\"7zmvk2\":[\"Item mislukt\"],\"81eOdm\":[\"werkstroom opnieuw starten\"],\"82O8kJ\":[\"Dit project wordt momenteel gesynchroniseerd en kan niet worden aangeklikt totdat het synchronisatieproces is voltooid\"],\"82sWFi\":[\"Beheer\"],\"84Usx_\":[\"Kan project niet verwijderen.\"],\"87a_t_\":[\"Label\"],\"88ip8h\":[\"Alles terugzetten\"],\"8BkLPF\":[\"Lijst met toegestane URI's, gescheiden door spaties\"],\"8F8HYs\":[\"Selecteer het Ansible Automation Platform-abonnement dat u wilt gebruiken.\"],\"8H3Igx\":[[\"interval\"],\" month\"],\"8Oef5v\":[\"Voorbeeld-URL's voor GIT-broncodebeheer zijn onder meer:\"],\"8XM8GW\":[\"Kan rollen niet goed toewijzen\"],\"8Z236a\":[\"merklogo\"],\"8ZsakT\":[\"Wachtwoord\"],\"8_wZUD\":[\"Teamrollen\"],\"8d57h8\":[\"Diverse systeeminstellingen weergeven\"],\"8gCRbU\":[\"Overige meldingen\"],\"8gaTqG\":[\"Soortdetails\"],\"8kDNpI\":[\"Uitkomst van bovenliggend knooppunt vereist voordat de voorwaarde wordt geëvalueerd.\"],\"8l9yyw\":[\"Taaksjabloon\"],\"8lEjQX\":[\"Bundel installeren\"],\"8lb4Do\":[\"Abonnement wissen\"],\"8oiwP_\":[\"Configuratie-input\"],\"8p_xVT\":[[\"0\",\"plural\",{\"one\":[[\"1\"]],\"other\":[[\"2\"]]}]],\"8u5g0S\":[\"Smart-inventaris maken\"],\"8vETh9\":[\"Tonen\"],\"8wxHsh\":[\"Webhooksleutel voor dit workflowtaaksjabloon.\"],\"8yd882\":[\"Een of meer teams kunnen niet worden losgekoppeld.\"],\"8zGO4o\":[\"Het veld komt overeen met de opgegeven reguliere expressie.\"],\"8zoIOi\":[[\"0\",\"plural\",{\"one\":[\"This credential type is currently being used by some credentials and cannot be deleted.\"],\"other\":[\"Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?\"]}]],\"8zvzWO\":[\"Sta gelijktijdige uitvoeringen van dit workflowtaaksjabloon toe.\"],\"9-wVFp\":[\"Details van gefedereerde inventaris weergeven\"],\"91UHfE\":[\"Inventarisupdate\"],\"91lyAf\":[\"Gelijktijdige taken\"],\"933cZy\":[\"Diverse systeeminstellingen\"],\"954HqS\":[\"Wanneer werd de host voor het eerst geautomatiseerd\"],\"95p1BK\":[\"Nieuwe gebruiker maken\"],\"98Qtlu\":[\"Telkens wanneer een taak dit project gebruikt, wordt de revisie van het project bijgewerkt voordat de taak wordt gestart.\"],\"991Df5\":[\"a new webhook key will be generated on save.\"],\"99qC6z\":[[\"interval\"],\" week\"],\"9Ah95g\":[[\"0\",\"plural\",{\"one\":[\"Deze inventaris wordt momenteel gebruikt door enkele sjablonen. Weet u zeker dat u deze wilt verwijderen?\"],\"other\":[\"Het verwijderen van deze inventarissen kan gevolgen hebben voor enkele sjablonen die ervan afhankelijk zijn. Weet u zeker dat u ze toch wilt verwijderen?\"]}]],\"9BTNYL\":[\"Expected at least one of client_email, project_id or private_key to be present in the file.\"],\"9BpfLa\":[\"Labels selecteren\"],\"9DOXq6\":[\"Geef alle sjablonen weer.\"],\"9DugxF\":[\"Type abonnement\"],\"9HhFQ8\":[\"Retourneert resultaten met andere waarden dan deze, evenals andere filters.\"],\"9L1ngr\":[\"Totale taken\"],\"9N-4tQ\":[\"Type toegangsgegevens\"],\"9NyAH9\":[\"Overgeslagen\"],\"9PB0sF\":[\"IRC\"],\"9Rsklx\":[\"Alle knooppunten verwijderen\"],\"9Tmez1\":[\"Instantiedetails weergeven\"],\"9UuGMQ\":[\"In afwachting om verwijderd te worden\"],\"9V-Un3\":[\"Feitenopslag inschakelen\"],\"9VMv7k\":[\"Geconstrueerde inventaris\"],\"9Wm-J4\":[\"Wachtwoord wisselen\"],\"9XA1Rs\":[\"Het project wordt momenteel gesynchroniseerd en de revisie zal beschikbaar zijn nadat de synchronisatie is voltooid.\"],\"9Y3BQE\":[\"Organisatie verwijderen\"],\"9YSB0Z\":[\"In dit schema ontbreekt een Inventaris\"],\"9ZnrIx\":[\"Uw abonnementsgegevens weergeven en bewerken\"],\"9fRa7M\":[\"Rij selecteren om deze te weigeren\"],\"9hmrEp\":[\"Opnieuw starten bij\"],\"9iX1S0\":[\"Deze actie verwijdert het volgende exemplaar en mogelijk moet u de installatiebundel opnieuw uitvoeren voor elk exemplaar waarmee eerder verbinding was gemaakt:\"],\"9jfn-S\":[\"Is niet uitgeklapt\"],\"9l0RZY\":[\"Klik op een beschikbaar knooppunt om een nieuwe link te maken. Klik buiten de grafiek om te annuleren.\"],\"9m7jms\":[\"Broninventarissen waarvan de hosts naar hun respectievelijke instantiegroepen worden gerouteerd wanneer een taak wordt gestart tegen deze gefedereerde inventaris.\"],\"9mfJJf\":[\"Taaksjablonen\"],\"9nhhVW\":[\"pagina's\"],\"9nypdt\":[\"Oorspronkelijke waarde herstellen.\"],\"9odS2n\":[\"Mislukte hosts\"],\"9og-0c\":[\"Deze uitvoeringsomgeving wordt momenteel gebruikt door andere bronnen. Weet u zeker dat u deze wilt verwijderen?\"],\"9rFgm2\":[\"Abonnementscapaciteit\"],\"9rvzNA\":[\"Associatiemodus\"],\"9td1Wl\":[\"Controleren\"],\"9uI_rE\":[\"Ongedaan maken\"],\"9u_dDE\":[\"Aantal onbereikbare hosts\"],\"9uxVdR\":[\"Toegangsgegevens bronbeheer\"],\"9wvWk3\":[\"Deze samengestelde inventarisinvoer \\n maakt een groep voor beide categorieën en gebruikt \\n de limiet (hostpatroon) om alleen hosts te retourneren die \\n zich in de doorsnede van die twee groepen bevinden.\"],\"A1a8Ku\":[\"Fout bij opstarten van beheertaak\"],\"A1taO8\":[\"Zoeken\"],\"A3o0Xd\":[\"Selecteer de instantiegroepen waar de organisatie op uitgevoerd wordt.\"],\"A6paZd\":[\"Gefedereerde inventaris toevoegen\"],\"A8lIi2\":[\"Synchroniseren voor revisie\"],\"A9-PUr\":[\"Gezondheidscontrole verzoek(en) ingediend. Wacht even en laad de pagina opnieuw.\"],\"AA2ASV\":[\"Uitvoeringsomgeving gekopieerd\"],\"ADVQ46\":[\"Inloggen\"],\"ARAUFe\":[\"Inventaris verwijderen\"],\"AV22aU\":[\"Er is iets misgegaan...\"],\"AWOSPo\":[\"Inzoomen\"],\"Ab1y_G\":[\"Geconstrueerde inventarisbronsynchronisatie annuleren\"],\"AgTBbk\":[[\"intervalValue\",\"plural\",{\"one\":[\"week\"],\"other\":[\"weeks\"]}]],\"AgTuXC\":[\"U hebt geen machtiging om \",[\"pluralizedItemName\"],\": \",[\"itemsUnableToDelete\"],\" te verwijderen\"],\"Ai2U7L\":[\"Host\"],\"Aj3on1\":[\"Externe logboekregistratie inschakelen\"],\"AoCBvp\":[\"Taken verdelen\"],\"Apl-Vf\":[\"Red Hat-abonnementsmanifest\"],\"Apv-R1\":[\"Neem zodra u klaar bent om te upgraden of te verlengen <0>contact met ons op.\"],\"AqdlyH\":[\"Taaksjablonen met toegangsgegevens die om een wachtwoord vragen, kunnen niet worden geselecteerd tijdens het maken of bewerken van knooppunten\"],\"ArtxnQ\":[\"Refspec broncontrole\"],\"AsLVdj\":[\"Gebruik één IRC-kanaal of gebruikersnaam per regel. Het hekje-\\n symbool (#) voor kanalen en het apenstaartje-symbool (@) voor gebruikers zijn niet\\n vereist.\"],\"AwUsnG\":[\"Instanties\"],\"AxC8wb\":[\"Uitvoer kopiëren\"],\"AxPAXW\":[\"Geen resultaten gevonden\"],\"Axi4f8\":[\"Dragging item \",[\"id\"],\". Item with index \",[\"oldIndex\"],\" in now \",[\"newIndex\"],\".\"],\"Azw0EZ\":[\"Nieuwe Smart-inventaris maken\"],\"B0HFJ8\":[\"Een of meer hosts kunnen niet worden losgekoppeld.\"],\"B0P3qo\":[\"TAAK-ID:\"],\"B0dbFG\":[\"Schema verwijderen\"],\"B2Zb_F\":[\"JSON\"],\"B3ZzHO\":[\"Laatste geautomatiseerd\"],\"B4WcU9\":[\"Goedgekeurd door \",[\"0\"],\" - \",[\"1\"]],\"B7FU4J\":[\"Host gestart\"],\"B8bpYS\":[\"Upload een Red Hat-abonnementsmanifest met uw abonnement. Ga naar <0>abonnementstoewijzingen op het Red Hat-klantenportaal om uw abonnementsmanifest te genereren.\"],\"BAmn8K\":[\"Selecteer een brontype\"],\"BERhj_\":[\"Succesbericht\"],\"BGNDgh\":[\"Knooppunt alias\"],\"BH7upP\":[\"BERICHT\"],\"BIJ2_m\":[\"De uitvoeringsomgeving die wordt gebruikt voor taken binnen deze organisatie. Deze wordt gebruikt als terugvaloptie wanneer er niet expliciet een uitvoeringsomgeving is toegewezen op project-, taaksjabloon- of workflowniveau.\"],\"BNDplB\":[\"Sjabloon gekopieerd\"],\"BWTzAb\":[\"Handmatig\"],\"BaPk6N\":[\"Basispad dat wordt gebruikt om playbooks te lokaliseren. Mappen die in dit pad worden gevonden, worden weergegeven in de vervolgkeuzelijst van de playbookmap. Samen bieden het basispad en de geselecteerde playbookmap het volledige pad dat wordt gebruikt om playbooks te lokaliseren.\"],\"BfYq0G\":[\"Type broncontrole\"],\"Bg7M6U\":[\"Geen resultaat gevonden\"],\"Bl2Djq\":[\"Tokens weergeven\"],\"Bl2eoO\":[\"VERSLEUTELD\"],\"BskWMl\":[\"Onbereikbaar\"],\"BsrdSv\":[\"Voer voorraadvariabelen in met behulp van JSON- of YAML-syntaxis. Gebruik het keuzerondje om tussen de twee te schakelen. Raadpleeg de documentatie van de Ansible Controller, bijvoorbeeld de syntaxis.\"],\"Bv8zdm\":[\"Invoervoorraden\"],\"BwJKBw\":[\"van\"],\"Bz7WRU\":[[\"0\",\"plural\",{\"one\":[\"Voer een geldig telefoonnummer in.\"],\"other\":[\"Voer geldige telefoonnummers in.\"]}]],\"BzEFor\":[\"of\"],\"BzbzJb\":[\"Feiten\"],\"BzfzPK\":[\"Items\"],\"C-gr_n\":[\"Azure AD-instellingen\"],\"C0sUgI\":[\"Nieuwe inventaris maken\"],\"C2KEkR\":[\"SSH-wachtwoord\"],\"C3Q1LZ\":[\"OIDC-instellingen bekijken\"],\"C4C-qQ\":[\"Details van schema\"],\"C6GAUT\":[\"Is uitgeklapt\"],\"C7dP40\":[\"Kan \",[\"0\"],\" niet verwijderen.\"],\"C7s60U\":[\"Webhookdetails\"],\"CAL6E9\":[\"Teams\"],\"CDOlBM\":[\"Instantie-id\"],\"CE-M2e\":[\"Info\"],\"CGOseh\":[\"Details van schema\"],\"CGZgZY\":[\"Rij selecteren om deze te ontkoppelen\"],\"CG_9l6\":[\"LDAP 1\"],\"CGwKKr\":[[\"0\",\"plural\",{\"one\":[\"Groep verwijderen?\"],\"other\":[\"Groepen verwijderen?\"]}]],\"CIEoqM\":[\"Exemplaarnaam\"],\"CKc7jz\":[\"Modus hostdetails\"],\"CL7QiF\":[\"Typ het antwoord en klik dan op het selectievakje rechts om het antwoord als standaard te selecteren.\"],\"CLTHnk\":[\"Volgorde vragen enquête\"],\"CMmwQ-\":[\"Onbekende startdatum\"],\"CNZ5h9\":[\"Bewaartermijn van gegevens\"],\"CS8u6E\":[\"Webhook inschakelen\"],\"CSvk3a\":[\"Het nummer dat is gekoppeld aan de \\\"Messaging\\n Service\\\" in Twilio met de indeling +18005550199.\"],\"CW11B-\":[\"Minimum\"],\"CXJHPJ\":[\"Gewijzigd door (gebruikersnaam)\"],\"CZDqWd\":[\"De revisie van het project is momenteel verouderd. Vernieuw om de meest recente revisie op te halen.\"],\"CZg9aH\":[\"Hosts selecteren\"],\"C_Lu89\":[\"Geef inputs op met JSON- of YAML-syntaxis. Raadpleeg de documentatie voor Ansible Tower voor voorbeeldsyntaxis.\"],\"C_NnqT\":[\"Nieuwe host maken\"],\"Cc8jO8\":[\"Selecteer de toegangsgegevens die u wilt gebruiken bij het aanspreken van externe hosts om de opdracht uit te voeren. Kies de toegangsgegevens die de gebruikersnaam en de SSH-sleutel of het wachtwoord bevatten die Ansible nodig heeft om aan te melden bij de hosts of afstand.\"],\"CcKMRv\":[\"Deze taaksjabloon wordt momenteel door andere bronnen gebruikt. Weet u zeker dat u hem wilt verwijderen?\"],\"CczdmZ\":[\"Geef alle toegangsgegevens weer.\"],\"CdGRti\":[\"Geef alle berichtsjablonen weer.\"],\"Ce28nP\":[\"<0>Opmerking: instanties kunnen opnieuw worden gekoppeld aan deze instantiegroep als ze worden beheerd door <1>beleidsregels.\"],\"Cev3QF\":[\"Time-out minuten\"],\"ChTa9Z\":[[\"intervalValue\",\"plural\",{\"one\":[\"hour\"],\"other\":[\"hours\"]}]],\"CoPs3y\":[\"Er zijn voor deze workflow geen knooppunten geconfigureerd.\"],\"CoTqdo\":[\"\\n Note that you may still see the group in the list after\\n disassociating if the host is also a member of that group’s\\n children. This list shows all groups the host is associated\\n with directly and indirectly.\\n \"],\"Coyxic\":[\"Klik op deze knop om de verbinding met het geheimbeheersysteem te verifiëren met behulp van de geselecteerde referenties en de opgegeven inputs.\"],\"Cs0oSA\":[\"Instellingen weergeven\"],\"Csvbqs\":[\"bekijk hier de documenten van de geconstrueerde inventarisplug-in.\"],\"Cx8SDk\":[\"Vernieuwingstoken vervallen\"],\"D-NlUC\":[\"Systeem\"],\"D1JWCq\":[[\"interval\"],\" minutes\"],\"D4euEu\":[\"Instellingen diversen authenticatie\"],\"D89zck\":[\"Zon\"],\"DBBU2q\":[\"Voor dit veld moet ten minste één waarde worden geselecteerd.\"],\"DBC3t5\":[\"Zondag\"],\"DBHTm_\":[\"Augustus\"],\"DFNPK8\":[\"Gezondheidscontrole\"],\"DGZ08x\":[\"Alles synchroniseren\"],\"DHf0mx\":[\"Nieuwe instantiegroep maken\"],\"DHrOgD\":[\"Projectupdate\"],\"DIKUI7\":[\"Minimumlengte\"],\"DIX823\":[\"Dit veld moet een getal zijn en een waarde kleiner dan \",[\"max\"],\" hebben\"],\"DJIazz\":[\"Succesvol goedgekeurd\"],\"DNLiC8\":[\"Instellingen terugzetten\"],\"DNqHaO\":[\"Deze tabel geeft enkele nuttige parameters van de samengestelde\\n inventarisplugin. Voor de volledige lijst met parameters \"],\"DPfwMq\":[\"Gereed\"],\"DV-Xbw\":[\"Voorkeurstaal\"],\"DVIUId\":[\"Meldingsoverschrijvingen\"],\"DZNGtI\":[\"Resultaten van projectuitchecken\"],\"D_oBkC\":[\"GitHub-team\"],\"DdlJTq\":[\"Exacte overeenkomst (standaard-opzoeken indien niet opgegeven).\"],\"De2WsK\":[\"Deze actie ontkoppelt alle rollen voor deze gebruiker van de geselecteerde teams.\"],\"DhSza7\":[\"Naam controller\"],\"DnkUe2\":[\"Kies een Webhookservice\"],\"DqnAO4\":[\"Eerste geautomatiseerd\"],\"Du6bPw\":[\"Adres\"],\"Dug0C-\":[\"Na aantal voorvallen\"],\"DyYigF\":[\"TACACS+ instellingen\"],\"Dz7fsq\":[\"Inzoomen\"],\"E6Z4zF\":[\"Ongeldige bestandsindeling. Upload een geldig Red Hat-abonnementsmanifest.\"],\"E86aJB\":[\"Koppel host los!\"],\"E9wN_Q\":[\"Laatste gezondheidscontrole\"],\"EH6-2h\":[\"Topologie-weergave\"],\"EHu0x2\":[\"Synchroniseren\"],\"EIBcgD\":[\"Afkomstig uit een project\"],\"EIkRy0\":[\"Bestemmingskanalen\"],\"EJQLCT\":[\"Kan workflow-taaksjabloon niet verwijderen.\"],\"ENDbv1\":[\"Geef alle hosts weer.\"],\"ENRWp9\":[\"Tags voor de melding\"],\"ENyw54\":[\"Gerelateerde groepen\"],\"EP-eCv\":[\"SAML-instellingen\"],\"EQ-qsg\":[\"Workflowtaaksjablonen\"],\"ES0WE_\":[\"Bij time-out\"],\"ETUQuF\":[\"Een of meer inventarissen kunnen niet worden verwijderd.\"],\"EWL-h4\":[\"host-description-\",[\"0\"]],\"E_QGRL\":[\"Uitgeschakeld\"],\"E_tJey\":[\"Standaarduitvoeringsomgeving\"],\"Eb5CN1\":[[\"0\",\"plural\",{\"one\":[\"This organization is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"EdQY6l\":[\"Geen\"],\"Eff_76\":[\"Lokale tijdzone\"],\"Eg4kGP\":[\"Standaardantwoord(en)\"],\"EmSrGB\":[\"Vóór\"],\"EmfKjn\":[\"Probleemoplossingsinstellingen bekijken\"],\"Emna_v\":[\"Bron bewerken\"],\"EmzUsN\":[\"Details knooppunt weergeven\"],\"EnC3hS\":[\"Aangepaste podspecificatie\"],\"EpH7Cd\":[\"Toegangsgegevens verwijderen\"],\"Eq6_y5\":[\"this Tower documentation page\"],\"Eqp9wv\":[\"Bekijk JSON voorbeelden op\"],\"EwxKbE\":[\"VERWIJDERD\"],\"EzwCw7\":[\"Vraag bewerken\"],\"F-0xxR\":[\"Er ontbreken hulpbronnen uit dit sjabloon.\"],\"F-LGli\":[\"U hebt geen machtiging om het volgende te ontkoppelen: \",[\"itemsUnableToDisassociate\"]],\"F-_-es\":[\"Instanties selecteren\"],\"F0xJYs\":[\"Kan de capaciteitsaanpassing niet bijwerken.\"],\"F2l57P\":[\"Minimumpercentage van alle instanties dat automatisch\\n aan deze groep wordt toegewezen wanneer nieuwe instanties online komen.\"],\"FCnKmF\":[\"Gebruikerstoken maken\"],\"FD8Y9V\":[\"Klik op een knooppuntpictogram om de details weer te geven.\"],\"FEr96N\":[\"Thema\"],\"FFv0Vh\":[\"Automatisering\"],\"FG2mko\":[\"Items in lijst selecteren\"],\"FGnH0p\":[\"Dit annuleert alle volgende knooppunten in deze werkstroom.\"],\"FMpB-A\":[\"<0>Opmerking: handmatig gekoppelde instanties kunnen automatisch worden losgekoppeld van een instantiegroep als de instantie wordt beheerd door <1>beleidsregels.\"],\"FO7Rwo\":[\"Collega's verwijderen?\"],\"FQto51\":[\"Alle rijen uitklappen\"],\"FTuS3P\":[\"Dit veld mag niet leeg zijn\"],\"FV5MUV\":[\"Als gebruikers feedback nodig hebben over de juistheid\\n van hun samengestelde groepen, wordt het ten zeerste aanbevolen\\n om strict: true te gebruiken in de plugin-configuratie.\"],\"FXmp8Q\":[\"Kan rol niet koppelen\"],\"FYJRCY\":[\"Een of meer projecten kunnen niet worden verwijderd.\"],\"F_Nk65\":[\"Download output\"],\"F_c3Jb\":[\"Veld voor het opgeven van een aangepaste Kubernetes of OpenShift Pod-specificatie.\"],\"Failed\":[\"Mislukt\"],\"Fanpmj\":[\"Variabelen gevraagd\"],\"FblMFO\":[\"Metriek selecteren\"],\"FclH3w\":[\"Opslaan gelukt!\"],\"FfGhiE\":[\"Fout bij het opslaan van de workflow!\"],\"FhTYgi\":[\"Een of meer taaksjablonen kunnen niet worden verwijderd.\"],\"FhhvWu\":[\"Hierdoor worden alle volgende knooppunten in deze werkstroom geannuleerd.\"],\"FiyMaa\":[\"Kies een .json-bestand\"],\"FjVFQ-\":[\"Kies een module\"],\"FjkaiT\":[\"Uitzoomen\"],\"FkQvI0\":[\"Sjabloon bewerken\"],\"FlvpdU\":[\"If enabled, show the changes made\\n by Ansible tasks, where supported. This is equivalent to Ansible’s\\n --diff mode.\"],\"FnSb-y\":[\"Taak annuleren\"],\"FnZzou\":[\"Instantiestaat\"],\"FncCci\":[\"RADIUS\"],\"Fo2bwm\":[\"Persoon\"],\"Fo6qAq\":[\"Voorbeeld-URL's voor Subversion-broncodebeheer zijn onder meer:\"],\"Fp0Rk4\":[\"Optionele labels die deze inventaris beschrijven,\\n zoals 'dev' of 'test'. Labels kunnen worden gebruikt om\\n inventarissen en voltooide taken te groeperen en te filteren.\"],\"FqW8E0\":[\"Gebruikte capaciteit\"],\"FsGJXJ\":[\"Opschonen\"],\"Fx2-x_\":[\"Gebruikersrollen toevoegen\"],\"G-jHgL\":[\"Stel bronpad in op\"],\"G2KpGE\":[\"Project bewerken\"],\"G3myU-\":[\"Dinsdag\"],\"G768_0\":[\"geweigerd\"],\"G8jcl6\":[\"Berichtsjablonen\"],\"G9MOps\":[\"Filiaal om te gebruiken bij voorraadsynchronisatie. Projectstandaard gebruikt indien leeg. Alleen toegestaan als het veld project allow_override is ingesteld op true.\"],\"GDvlUT\":[\"Rol\"],\"GGWsTU\":[\"Geannuleerd\"],\"GGuAXg\":[\"SAML-instellingen weergeven\"],\"GHDQ7i\":[\"Een of meer organisaties kunnen niet worden verwijderd.\"],\"GJKwN0\":[\"Schema's\"],\"GLZDtF\":[\"Systeemwaarschuwing\"],\"GLwo_j\":[\"0 (Waarschuwing)\"],\"GMaU6_\":[\"Vraag om taaktype bij opstarten.\"],\"GO6s6F\":[\"Taakinstellingen\"],\"GRwtth\":[\"Een gezondheidscontrole op de instantie uitvoeren\"],\"GSYBQc\":[\"Service-/integratiesleutel API\"],\"GTOcxw\":[\"Gebruiker bewerken\"],\"GU9vaV\":[\"Hosts onbereikbaar\"],\"GXiLKo\":[\"Tekstgebied\"],\"GZIG7_\":[\"Inventaris gekopieerd\"],\"G_Dwo_\":[\"Choose an answer type or format you want as the prompt for the user.\\n Refer to the Ansible Controller Documentation for more additional\\n information about each option.\"],\"GaJLE6\":[\"Gestart door\"],\"Gd-B71\":[\"Type toegangsgegevens niet gevonden.\"],\"Ge5ecx\":[\"Max. hosts\"],\"GeIrWJ\":[[\"brandName\"],\" logo\"],\"Gf3vm8\":[\"per pagina\"],\"GiXRTS\":[\"Een of meer gebruikerstokens kunnen niet worden verwijderd.\"],\"Gix1h_\":[\"Alle taken weergeven\"],\"GkbHM9\":[\"Geef alle projecten weer.\"],\"Gn7TK5\":[\"Gereedschap wisselen\"],\"GpNoVG\":[\"Voeg een schema toe om deze lijst te vullen.\"],\"GpWp6E\":[\"Kenmerken en functies op systeemniveau definiëren\"],\"GtycJ_\":[\"Taken\"],\"H0z3JJ\":[\"Deze argumenten worden gebruikt met de opgegeven module. U kunt informatie over \",[\"moduleName\"],\" vinden door te klikken \"],\"H1M6a6\":[\"Alle instanties weergeven.\"],\"H3kCln\":[\"Hostnaam\"],\"H6jbKn\":[\"Instellingen gebruikersinterface\"],\"H7OUPr\":[\"Dag\"],\"H7e4dl\":[\"Geef sleutel-/waardeparen op met behulp van\\n YAML of JSON.\"],\"H86f9p\":[\"Samenvouwen\"],\"H9MIed\":[\"Uitvoeringsknooppunt\"],\"HAi1aX\":[\"Webhooksleutel bijwerken\"],\"HAzhV7\":[\"Toegangsgegevens\"],\"HDULRt\":[\"Unieke hosts\"],\"HGOtRu\":[\"Berichttest mislukt.\"],\"HIfMSF\":[\"Meerkeuze-opties\"],\"HLAK2g\":[\"This action will cancel the following jobs:\"],\"HODq3s\":[\"Kan een of meer workflowgoedkeuringen niet weigeren.\"],\"HQ7e8y\":[\"Hoofdletterongevoelige versie van exact.\"],\"HQ7oEt\":[\"Terug naar teams\"],\"HUx6pW\":[\"Configuratie-injector\"],\"HajiZl\":[\"Maand\"],\"HbaQks\":[\"Voer één e-mailadres per regel in om een lijst met ontvangers te maken voor dit type bericht.\"],\"HbnjOn\":[[\"interval\"],\" weeks\"],\"HcznyH\":[\"Kan sommige of alle inventarisbronnen niet synchroniseren.\"],\"HdE1If\":[\"Kanaal\"],\"HdErwL\":[\"Selecteer een rij om goed te keuren\"],\"Hf0QDK\":[\"Project gekopieerd\"],\"Hhnh8d\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" dag\"],\"other\":[\"#\",\" dagen\"]}]],\"HiTf1W\":[\"Terugzetten annuleren\"],\"HjxnnB\":[\"module selecteren\"],\"HlhZ5D\":[\"TLS gebruiken\"],\"HoHveO\":[\"Retourneert resultaten die aan dit filter en aan andere filters voldoen. Dit is het standaardsettype als er niets is geselecteerd.\"],\"HpK_8d\":[\"Herladen\"],\"Ht1JWm\":[\"Berichtkleur\"],\"HwpTx4\":[\"Bepaal het uitvoerniveau dat ansible produceert terwijl het playbook wordt uitgevoerd.\"],\"I0LRRn\":[\"Download Bundel\"],\"I7Epp-\":[\"Optie Details\"],\"I9NouQ\":[\"Geen abonnementen gevonden\"],\"ICi4pv\":[\"Automatisering\"],\"ICt7Id\":[\"Type knooppunt\"],\"IEKPuq\":[\"Volgende scrollen\"],\"IGQ11b\":[\"Geheim dat wordt gedeeld met de webhook-service. De service gebruikt dit om zijn verzoeken te ondertekenen, zodat alleen uw repository een projectsynchronisatie kan activeren. Typ uw eigen geheim om het als configuratie te beheren, of laat het veld leeg om er een te laten genereren bij het opslaan.\"],\"IJAVcb\":[\"Terug naar toepassingen\"],\"IKg_un\":[\"Bestemmingskanalen of -gebruikers\"],\"IMJYui\":[\"Gebruik één telefoonnummer per regel om op te geven waar\\n sms-berichten naartoe moeten worden gerouteerd. Telefoonnummers moeten de indeling +11231231234 hebben. Zie voor meer informatie de Twilio-documentatie\"],\"IN6gbp\":[\"Klik op om de volgorde van de enquêtevragen te wijzigen\"],\"IPusY8\":[\"Verwijder eventuele lokale wijzigingen voordat u een update uitvoert.\"],\"ISuwrJ\":[\"Uitvoeringsomgeving bewerken\"],\"IV0EjT\":[\"Testbericht\"],\"IVvM2B\":[\"Ingeschakelde opties\"],\"IWoF_f\":[\"Vragenlijst weergeven\"],\"IZfe0p\":[\"Broncontrolevertakking\"],\"Igz8MU\":[\"Afgelopen twee weken\"],\"IiR1sT\":[\"Type knooppunt\"],\"IjDwKK\":[\"inlogtype\"],\"Ikhk0q\":[\"Webhookservice voor dit workflowtaaksjabloon.\"],\"Iqm2E5\":[\"Voeg \",[\"pluralizedItemName\"],\" toe om deze lijst te vullen\"],\"IrC12v\":[\"Toepassing\"],\"IrI9pg\":[\"Einddatum\"],\"IsJ8i6\":[\"Selecteer een branch voor de workflow. Deze branch wordt toegepast op alle taaksjabloonnodes die om een branch vragen.\"],\"IspLSK\":[\"Beheertaak niet gevonden.\"],\"J0zi6q\":[\"Tags overslaan\"],\"J2HgCR\":[\"Red Hat, Inc.\"],\"J2d1y8\":[\"Recente succesvolle taken\"],\"J4y7Uk\":[\"Werkstroom geannuleerd \"],\"J8VgfD\":[\"Controleert of het gegeven veld of verwante object null is; verwacht een booleaanse waarde.\"],\"JEGlfK\":[\"Gestart\"],\"JFnJqF\":[\"Verlopen\"],\"JFphCp\":[\"3 (Foutopsporing)\"],\"JGvwnU\":[\"Laatst gebruikt\"],\"JIX50w\":[\"Terugval instantiegroep voorkomen: indien ingeschakeld, voorkomt het taaksjabloon dat inventaris- of organisatie-instantiegroepen worden toegevoegd aan de lijst met voorkeursinstantiegroepen om op uit te voeren.\"],\"JJwEMx\":[\"Verhuurders verwijderd\"],\"JKZTiL\":[\"Dit zijn de verbositeitsniveaus voor standaardoutput van de commando-uitvoering die worden ondersteund.\"],\"JL3si7\":[\"Bijwerken\"],\"JLjfEs\":[\"Een of meer schema's kunnen niet worden verwijderd.\"],\"JOmgRg\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" maand\"],\"other\":[\"#\",\" maanden\"]}]],\"JRa4kV\":[\"Synchroniseer het project wanneer er een push plaatsvindt in de broncodebeheer-repository, zodat de lokale kopie altijd up-to-date is zonder polling of updates bij elke taakstart.\"],\"JTHoCu\":[\"wijzigingen wisselen\"],\"JUwjsw\":[\"Select an activity type\"],\"JXgd33\":[\"Terug naar dashboard.\"],\"J_2nGO\":[\"The execution environment that will be used for jobs\\n inside of this organization. This will be used a fallback when\\n an execution environment has not been explicitly assigned at the\\n project, job template or workflow level.\"],\"J_DUZt\":[\"Instantiegroepen\"],\"Ja4VHl\":[[\"0\"],\" meer\"],\"JgP090\":[\"Submodules tracken\"],\"JjcTk5\":[\"sociale aanmelding\"],\"JjfsZM\":[\"Workflowgoedkeuring verwijderen\"],\"JppQoT\":[\"Laatste herberekeningsdatum:\"],\"JsY1p5\":[\"Geweigerd\"],\"Jvv6rS\":[\"Meerkeuze\"],\"JwqOfG\":[\"Evalueren op\"],\"Jy9qCv\":[\"omleiden inloggen bewerken annuleren\"],\"K5AykR\":[\"Team verwijderen\"],\"K93j4j\":[\"Labelnaam\"],\"KC2nS5\":[\"Bron verwijderd\"],\"KDcLJ6\":[\"YAML:\"],\"KEY0qH\":[\"Test geslaagd\"],\"KM6m8p\":[\"Team\"],\"KNOsJ0\":[\"Optionele labels die dit taaksjabloon beschrijven, zoals 'dev' of 'test'. Labels kunnen worden gebruikt om taaksjablonen en voltooide taken te groeperen en te filteren.\"],\"KQ9EQm\":[\"Hoe geconstrueerde voorraadplug-in te gebruiken\"],\"KR9Aiy\":[\"This inventory is currently being used by some templates. Are you sure you want to delete it?\"],\"KRf0wm\":[\"Types toegangsgegevens\"],\"KTvwHj\":[\"Invoerbronnen voor toegangsgegevens\"],\"KVbzjm\":[\"Visualizer\"],\"KXFYp9\":[\"Abonnement ophalen\"],\"KXnokb\":[\"Wereldwijd beschikbare uitvoeringsomgeving kan niet opnieuw worden toegewezen aan een specifieke organisatie\"],\"KZp4lW\":[\"Lookup select\"],\"K_MYeX\":[\"Gebruikersdetails weergeven\"],\"KeRkFA\":[\"Abonnementskeuze wissen\"],\"KeqCdz\":[\"Peers van control nodes\"],\"Ki_j_-\":[\"Laat leeg om bij het opslaan een nieuwe webhook-sleutel te genereren\"],\"KjBkMe\":[\"Deze containergroep wordt momenteel door andere bronnen gebruikt. Weet u zeker dat u hem wilt verwijderen?\"],\"KjVvNP\":[\"ID van het paneel\"],\"KkMfgW\":[\"Taaksjablonen\"],\"KkzJWF\":[\"Eerste automatisering\"],\"KlQd8_\":[\"Geef een bereik op voor de toegang van de token\"],\"KnN1Tu\":[\"Verloopt\"],\"KoCnPE\":[\"Taak annuleren\"],\"KopV8H\":[\"Alleen wortelgroepen tonen\"],\"KxIA0h\":[\"Host wisselen\"],\"Kz9DSl\":[\"Bestaande host toevoegen\"],\"KzQFvE\":[\"Organisatie bewerken\"],\"L1Ob4t\":[\"Tabblad Details\"],\"L3ooU6\":[\"Toegangsgegeven\"],\"L7Nz3F\":[\"Ontbrekende bron\"],\"L8fEEm\":[\"Groep\"],\"L973Qq\":[\"Abonnement aanvragen\"],\"LCl8Ck\":[\"Datumzoekinvoer\"],\"LGl_pR\":[\"Taakinstellingen weergeven\"],\"LGryaQ\":[\"Nieuwe toegangsgegevens maken\"],\"LQ29yc\":[\"Voorraadbronsynchronisatie starten\"],\"LQRys9\":[\"Submodules volgen de laatste commit op hun master-branch (of een andere branch die is opgegeven in .gitmodules). Zo niet, dan worden submodules behouden op de revisie die is opgegeven door het hoofdproject. Dit komt overeen met het opgeven van de vlag --remote bij git submodule update.\"],\"LQTgjH\":[\"Feit niet gevonden.\"],\"LRePxk\":[\"Minimaal aantal instanties dat automatisch aan deze groep wordt toegewezen wanneer nieuwe instanties online komen.\"],\"LSUePQ\":[\"Starten | \",[\"0\"]],\"LULLsO\":[\"Geef alle organisaties weer.\"],\"LV5a9V\":[\"Collega's\"],\"LVecP9\":[\"Gebruikersrollen\"],\"LYAQ1X\":[\"Gelijktijdige taken inschakelen\"],\"LZr1lR\":[\"Kan instantiegroep niet vinden.\"],\"Lc0RHh\":[\"Schema wisselen\"],\"LgD0Cy\":[\"Toepassingsnaam\"],\"LhMjLm\":[\"Tijd\"],\"Ll7Jei\":[\"LDAP3\"],\"LnYbGj\":[\"Vragenlijst wijzigen\"],\"Lnnjmk\":[\"<0><1/> Een technisch voorbeeld van de nieuwe \",[\"brandName\"],\" gebruikersinterface is <2>hier te vinden.\"],\"Lqygiq\":[\"Provisioning terugkoppelingen\"],\"LtBtED\":[\"Berichtsucces wisselen\"],\"LuXP9q\":[\"Toegang\"],\"LwHwt1\":[[\"brandName\"],\"-abonnement\"],\"Lwovp8\":[\"Indien ingeschakeld, zijn gelijktijdige uitvoeringen van dit taaksjabloon toegestaan.\"],\"M0okDw\":[\"Stel voorkeuren in voor gegevensverzameling, logo's en aanmeldingen\"],\"M73whl\":[\"Context\"],\"MA-mp9\":[\"Webhook-reffilter\"],\"MA7cMf\":[\"Geconstrueerde inventarisparametertabel\"],\"MAI_nw\":[\"Probeer een andere zoekopdracht met de bovenstaande filter\"],\"MAV-SQ\":[\"Toegangsgegevens niet gevonden.\"],\"MApRef\":[\"Weet u zeker dat u de login redirect override URL wilt bewerken? Als u dat doet, kan dat invloed hebben op de mogelijkheid van gebruikers om in te loggen op het systeem als de lokale authenticatie ook is uitgeschakeld.\"],\"MD0-Al\":[\"Uw sessie is bijna afgelopen\"],\"MDQLec\":[\"Controleer het uitvoerniveau dat Ansible zal produceren voor voorraadbronupdatetaken.\"],\"MGpavd\":[\"Sleutel typeahead\"],\"MHM-bv\":[\"Ongeldig linkdoel. Kan niet linken aan onder- of bovenliggende knooppunten. Grafiekcycli worden niet ondersteund.\"],\"MHbbol\":[\" Taakverdeling\"],\"MKEPCY\":[\"Volgen\"],\"MP1v-1\":[\"Legenda\"],\"MP8dU9\":[\"De volledige imagelocatie, inclusief het containerregister, de imagenaam en de versietag.\"],\"MQPvAa\":[\"Vraag om labels bij opstarten.\"],\"MQoyj6\":[\"Workflowtaaksjabloon\"],\"MTLPCv\":[\"Uitvoeren wanneer het bovenliggende knooppunt in een storingstoestand komt.\"],\"MVw5um\":[\"2 (Meer verbaal)\"],\"MZU5bt\":[\"Een of meer groepen kunnen niet worden verwijderd.\"],\"M_gXds\":[\"Note: This instance may be re-associated with this instance group if it is managed by \"],\"MdhgLT\":[\"IRC-serverwachtwoord\"],\"MfCEiB\":[\"Galaxy-toegangsgegevens\"],\"MfQHgE\":[\"Te behouden dagen\"],\"Mfk6hJ\":[\"Een of meer sjablonen kunnen niet worden verwijderd.\"],\"Mhn5m4\":[\"Toegangsgegevens registreren\"],\"Mn45Gz\":[\"Terug naar instantiegroepen\"],\"MnbH31\":[\"pagina\"],\"MofjBu\":[\"De uitvoeringsomgeving die wordt gebruikt voor taken die dit project gebruiken. Dit wordt gebruikt als fallback wanneer er geen uitvoeringsomgeving expliciet is toegewezen op taaksjabloon- of workflowniveau.\"],\"MpLngK\":[\"Het webhook-eindpunt van dit project. Voeg het toe aan de webhook-configuratie van de repository zodat pushes een projectsynchronisatie activeren.\"],\"MpZRQy\":[\"Git\"],\"MuhG5I\":[[\"0\",\"plural\",{\"one\":[\"This approval cannot be deleted due to insufficient permissions or a pending job status\"],\"other\":[\"These approvals cannot be deleted due to insufficient permissions or a pending job status\"]}]],\"MwCc2O\":[\"Webhookreferentie voor dit workflowtaaksjabloon.\"],\"Mwf3Mw\":[\"Vul de hosts voor deze inventaris in met behulp van een zoek-\\n filter. Voorbeeld: ansible_facts__ansible_distribution:\\\"RedHat\\\".\\n Raadpleeg de documentatie voor verdere syntaxis en\\n voorbeelden. Raadpleeg de Ansible Controller-documentatie voor verdere syntaxis en\\n voorbeelden.\"],\"MzcRa_\":[\"Gebruikers- en Automatiseringsanalyses\"],\"Mzqo60\":[\"Waarde om het artefact mee te vergelijken. Wordt indien mogelijk als JSON geïnterpreteerd (bijv. true, 3), anders als een gewone tekenreeks.\"],\"N1U4ZG\":[\"Naleving van abonnementen\"],\"N36GRB\":[\"Dit veld moet een getal zijn en een waarde groter dan \",[\"min\"],\" hebben\"],\"N40H-G\":[\"Alle\"],\"N5vmCy\":[\"geconstrueerde inventaris\"],\"N6GBcC\":[\"Verwijderen bevestigen\"],\"N7wOty\":[\"Selecteer het playbook dat door deze taak moet worden uitgevoerd.\"],\"NAKA53\":[\"Hostmislukking\"],\"NBONaK\":[\"Feiten verzamelen\"],\"NCVKhy\":[\"Recente taken\"],\"NDQvUO\":[\"Vraag om tags bij opstarten.\"],\"NIuIk1\":[\"Onbeperkt\"],\"NLKsgx\":[[\"pluralizedItemName\"],\" Lijst\"],\"NO1ZxL\":[\"Toepassingsnaam\"],\"NPfgIB\":[\"sec\"],\"NQHZnb\":[\"Geheel getal\"],\"NRn4V6\":[[\"interval\"],\" months\"],\"NUNUrW\":[\"Tags voor de melding (optioneel)\"],\"NW-xDQ\":[\"Hiermee worden alle configuratiewaarden op deze pagina teruggezet naar\\n hun fabrieksinstellingen. Weet u zeker dat u wilt doorgaan?\"],\"NX18CF\":[\"Op of na\"],\"NYxilo\":[\"Max. aantal gelijktijdige opdrachten\"],\"Na9fIV\":[\"Geen items gevonden.\"],\"NcVaYu\":[\"Voltooiingstijd\"],\"NeA1eI\":[\"Naar rechts pannen\"],\"Never\":[\"Nooit\"],\"NgD4On\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"Deze actie annuleert de volgende taak:\"],\"other\":[\"Deze actie annuleert de volgende taken:\"]}]],\"NjnDuY\":[\"Dragging started for item id: \",[\"newId\"],\".\"],\"NjqMGF\":[\"Brontype toevoegen\"],\"NnH3pK\":[\"Test\"],\"No Jobs\":[\"Geen taken\"],\"NpJHAp\":[\"Taaksjablonen met een ontbrekende inventaris of een ontbrekend project kunnen niet worden geselecteerd tijdens het maken of bewerken van knooppunten. Selecteer een andere sjabloon of herstel de ontbrekende velden om verder te gaan.\"],\"NqIlWb\":[\"Laatst uitgevoerd\"],\"NrGRF4\":[\"Modus Abonnement selecteren\"],\"NsXTPu\":[\"Om een smart-inventaris aan te maken via ansible-feiten, gaat u naar het scherm smart-inventaris.\"],\"NtD3hJ\":[\"Verwante sleutels\"],\"Nu4DdT\":[\"Synchroniseren\"],\"Nu4oKW\":[\"Omschrijving\"],\"Nu7VHX\":[\"Kies de rollen die op de geselecteerde bronnen moeten worden toegepast. Alle geselecteerde rollen worden toegepast op alle geselecteerde bronnen.\"],\"O-OYOe\":[\"Team bewerken\"],\"O06Rp6\":[\"Gebruikersinterface\"],\"O1Aswy\":[\"Verloopt nooit\"],\"O28qFz\":[\"Taak \",[\"0\"],\" weergeven\"],\"O2EuOK\":[\"Aanmelden met SAML \",[\"samlIDP\"]],\"O2UpM1\":[\"Bladeren\"],\"O3oNi5\":[\"E-mail\"],\"O4ilec\":[\"Hoofdletterongevoelige versie van regex.\"],\"O5pAaX\":[\"Instantie en metriek selecteren om grafiek te tonen\"],\"O78b13\":[\"Selecteer de toepassing waartoe dit token zal behoren, of laat dit veld leeg om een persoonlijk toegangstoken aan te maken.\"],\"O8_96D\":[\"Luisterpoort\"],\"O9VQlh\":[\"Frequentie herhalen\"],\"OA8xiA\":[\"Naar links pannen\"],\"OA99Nq\":[\"Wanneer is de host voor het laatst geautomatiseerd\"],\"OC4Tzv\":[\"hier\"],\"OGoqLy\":[\"# sources with sync failures.\"],\"OHGMM6\":[\"Startdatum/-tijd\"],\"OIv5hN\":[\"Doorverwijzen naar abonnementsdetails\"],\"OJ9bHy\":[\"Een of meer groepen kunnen niet worden losgekoppeld.\"],\"OOq_rD\":[\"Draaiboek uitvoering\"],\"OPTWH4\":[\"HTTPS-certificaatcontrole inschakelen\"],\"ORxrw7\":[\"Resterende dagen\"],\"OSH8xi\":[\"Hop\"],\"OcRJRt\":[\"Taak annuleren bevestigen\"],\"Oe_VOY\":[\"Een of meer instanties kunnen niet worden losgekoppeld.\"],\"OgB1k4\":[\"Argumenten\"],\"OiCz65\":[\"Grafana URL\"],\"Oiqdmc\":[\"Aanmelden met GitHub-organisaties\"],\"Oj2Ix6\":[\"De hoeveelheid tijd (in seconden) die wordt uitgevoerd voordat de taak wordt geannuleerd. De standaardwaarde is 0 voor geen taaktime-out.\"],\"OjwX8k\":[\"Tokeninformatie\"],\"OlpaBt\":[\"Gelijktijdige taken: indien ingeschakeld, zijn gelijktijdige uitvoeringen van dit taaksjabloon toegestaan.\"],\"OmbooC\":[\"Taak gestart\"],\"OogRLI\":[\"Gefedereerde inventaris niet gevonden.\"],\"OqE3G-\":[\"Exact zoeken op id-veld.\"],\"Osn70z\":[\"Foutopsporing\"],\"OvBnOM\":[\"Terug naar instellingen\"],\"OyGPiW\":[\"Abonnementsinstellingen\"],\"OzssJK\":[\"Opdracht uitvoeren\"],\"P3spiP\":[\"Terug naar sjablonen\"],\"P7d85D\":[\"Teamtoegang verwijderen\"],\"P8fBlG\":[\"Authenticatie\"],\"PByO0X\":[\"Stemmen\"],\"PCEmEr\":[\"Gebruikerstokens\"],\"PJ1B0S\":[[\"0\",\"plural\",{\"one\":[\"This project is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"PJf54Q\":[\"Terug naar bronnen\"],\"PKTjJ3\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"weekday\"],\" van \",[\"month\"]],\"4\":[\"The fourth \",[\"weekday\"],\" van \",[\"month\"]],\"5\":[\"The fifth \",[\"weekday\"],\" van \",[\"month\"]],\"one\":[\"The first \",[\"weekday\"],\" van \",[\"month\"]],\"two\":[\"The second \",[\"weekday\"],\" van \",[\"month\"]]}]],\"PLzYyl\":[\"Frequentie Uitzondering Details\"],\"PMk2Wg\":[\"Deprovisionering mislukt\"],\"POKy-m\":[\"Uitvoeringsomgeving kopiëren\"],\"PPsHsC\":[\"Alles terugzetten naar standaardinstellingen\"],\"PQPOpT\":[\"Inventarisbestand\"],\"PRuZiQ\":[\"Synchroniseren voor herziening\"],\"PUnovD\":[\"Amazon EC2\"],\"PVCOQE\":[\"Peer verwijderd. Zorg ervoor dat u de installatiebundel voor \",[\"0\"],\" opnieuw uitvoert om de wijzigingen van kracht te zien worden.\"],\"PWwwY2\":[\"Loskoppelen\"],\"PYPqaM\":[\"ID van het paneel (optioneel)\"],\"PZBWpL\":[\"Switch to light mode\"],\"P_s0vy\":[\"Kan het inloggegevenstype voor deze webhook-service niet opzoeken, dus het veld voor webhook-inloggegevens is niet beschikbaar.\"],\"PaTL2O\":[\"Lijst met ontvangers\"],\"PhufXn\":[\"Ouder taken verdelen\"],\"Pi5vnX\":[\"Synchroniseren van geconstrueerde voorraadbron mislukt\"],\"PiK6Ld\":[\"Zat\"],\"PiRb8z\":[\"MEEST RECENTE SYNCHRONISATIE\"],\"PjkoCm\":[\"Weet u zeker dat u het onderstaande knooppunt wilt verwijderen:\"],\"PkVlOm\":[\"Geef HTTP-headers op in JSON-indeling. Raadpleeg\\n de Ansible Controller-documentatie voor voorbeeldsyntaxis.\"],\"Po1btV\":[\"Globale navigatie\"],\"Po7y5X\":[\"Kan uitvoeringsomgeving niet kopiëren\"],\"PvgcEq\":[\"Draggable list to reorder and remove selected items.\"],\"PwAMWD\":[\"Alle taakgebeurtenissen samenvouwen\"],\"PyV1wC\":[\"Instance Group Fallback voorkomen\"],\"Q3P_4s\":[\"Taak\"],\"Q4hWRC\":[\"Workflowtaken (\",[\"total\"],\")\"],\"Q5ZW8j\":[\"Tabel Abonnementen\"],\"QF_MpS\":[\"\\n Houd er rekening mee dat alleen hosts die zich rechtstreeks in deze groep bevinden,\\n kunnen worden losgekoppeld. Hosts in subgroepen moeten rechtstreeks worden losgekoppeld\\n op het subgroepniveau waartoe ze behoren.\\n \"],\"QFdBqu\":[\"Mattermost\"],\"QGbLBK\":[\"Taak-id\"],\"QHF6CU\":[\"Uitvoeringen van het draaiboek\"],\"QIOH6p\":[\"Gestart door (gebruikersnaam)\"],\"QIpNLR\":[\"Geen fouten bij inventarissynchronisatie.\"],\"QIq3_3\":[\"Opmerking: de volgorde waarin deze worden geselecteerd bepaalt de voorrang bij de uitvoering. Selecteer er meer dan één om slepen mogelijk te maken.\"],\"QJbMvX\":[\"Toegangsgegevens waarvoor wachtwoorden nodig zijn bij het starten, zijn niet toegestaan. Verwijder of vervang de volgende toegangsgegevens door één van hetzelfde type om door te gaan: \",[\"0\"]],\"QJowYS\":[\"verwijderen bevestigen\"],\"QKUQw1\":[\"Nieuwe host maken\"],\"QKbQTN\":[\"Keuzeschakelaar type activiteitenlogboek\"],\"QOF7Jg\":[\"Niet goedgekeurd \",[\"0\"],\".\"],\"QPRWww\":[\"Uitvoertype\"],\"QR908H\":[\"Naam instellen\"],\"QT1rDU\":[\"GitHub Enterprise\"],\"QTwM6Y\":[\"Het project dat het playbook bevat dat deze taak zal uitvoeren.\"],\"QYKS3D\":[\"Recente taken\"],\"QamIPZ\":[\"Klik op de startknop om te beginnen.\"],\"Qay_5h\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"Qd2E32\":[\"Haal de ingeschakelde status op uit het gegeven dictaat van hostvariabelen. De ingeschakelde variabele kan worden opgegeven met behulp van puntnotatie, bijvoorbeeld: 'foo.bar'\"],\"Qf36YE\":[\"Verbositeit\"],\"QgnNyZ\":[\"Synchronisatiefout\"],\"Qhb8lT\":[\"Nieuwe toepassing maken\"],\"QmvYrA\":[\"Optionele beschrijving voor het workflowtaaksjabloon.\"],\"QnJn75\":[\"Laatste uitvoering\"],\"Qv59HG\":[\"Type toegangsgegevens selecteren\"],\"Qv91_c\":[\"LDAP 2\"],\"QyjCeq\":[\"Capaciteit\"],\"R-uZ8Y\":[\"Aanmelden met SAML\"],\"R633QG\":[\"Terug naar workflowgoedkeuringen\"],\"R6Gueb\":[\"Berichtwijziging wisselen\"],\"R7s3iG\":[\"Teruggeven\"],\"R9Khdg\":[\"Auto\"],\"R9sZsA\":[\"Alle groepen en hosts verwijderen\"],\"RBDHUE\":[\"Vraag om uitvoeringsomgeving bij opstarten.\"],\"RI8cIw\":[\"Het maximale aantal hosts dat door\\n deze organisatie mag worden beheerd. De waarde is standaard 0, wat betekent dat er geen limiet is.\\n Raadpleeg de Ansible-documentatie voor meer details.\"],\"RIcSTA\":[\"Verloopt op\"],\"RIeAlp\":[\"Elke keer dat een taak wordt uitgevoerd met behulp van deze inventaris, vernieuwt u de inventaris van de geselecteerde bron voordat u projecttaken uitvoert.\"],\"RK1gDV\":[\"Aanmelden met Azure AD\"],\"RMdd1C\":[\"Geen (eenmaal uitgevoerd)\"],\"RO9G1f\":[\"Dit veld moet groter zijn dan 0\"],\"RPnV2o\":[\"De zoekfilter leverde geen resultaten op…\"],\"RThfvh\":[\"Verwant(e) team(s) loskoppelen?\"],\"R_mzhp\":[\"Kan gebruikerstoken niet bijwerken.\"],\"RbIaa9\":[\"Token niet gevonden.\"],\"RdLvW9\":[\"taken opnieuw starten\"],\"Rguqao\":[\"Rij selecteren om deze te verwijderen\"],\"RhOukN\":[[\"interval\"],\" hour\"],\"RiQMUh\":[\"In uitvoering\"],\"RjIKOw\":[\"Kan inventaris op een host niet wijzigen\"],\"RjkhdY\":[\"Veld begint met waarde.\"],\"RkXlPZ\":[\"GitHub\"],\"RlsPz7\":[\"Weet u zeker dat u deze link wilt verwijderen?\"],\"Rm1iI_\":[\"Vraag om variabelen bij opstarten.\"],\"Roaswv\":[\"User Guide\"],\"RpKSl3\":[\"Toegangsgegeven gekopieerd\"],\"RsZ4BA\":[\"Laatste scrollen\"],\"RtKKbA\":[\"Laatste\"],\"Ru59oZ\":[\"Webhook inschakelen voor dit sjabloon.\"],\"RuEWFx\":[\"Aan-datum\"],\"RuiOO0\":[\"Een of meer toepassingen kunnen niet worden verwijderd.\"],\"Rw1xwN\":[\"Inhoud laden\"],\"RxzN1M\":[\"Ingeschakeld\"],\"RyPas1\":[\"Cancel selected jobs\"],\"S0kLOH\":[\"ID\"],\"S2nsEw\":[\"Groter dan vergelijking.\"],\"S5gO6Y\":[\"Geef extra opdrachtregelvariabelen door aan de workflow.\"],\"S6zj7M\":[\"Voor taaksjablonen selecteert u run om het playbook uit te voeren. Selecteer check om alleen de playbook-syntaxis te controleren, de omgevingsconfiguratie te testen en problemen te melden zonder het playbook uit te voeren.\"],\"S7kN8O\":[\"Een of meer gebruikers kunnen niet worden verwijderd.\"],\"S7tNdv\":[\"Bij slagen\"],\"S8FW2i\":[\"Het inventarisbestand dat door deze bron moet worden gesynchroniseerd. U kunt kiezen uit de vervolgkeuzelijst of een bestand invoeren binnen de invoer.\"],\"SA-KXq\":[\"Omhoog pannen\"],\"SAw-Ux\":[\"Weet u zeker dat u de \",[\"0\"],\" toegang vanuit \",[\"username\"],\" wilt verwijderen?\"],\"SBfnbf\":[\"Alle uitvoeringsomgevingen weergeven\"],\"SC1Cur\":[\"Onbekende status\"],\"SDND4q\":[\"Niet geconfigureerd\"],\"SIJDi3\":[\"Capaciteitsaanpassing\"],\"SJjggI\":[\"Update-opties\"],\"SJmHMo\":[\"Documentatie.\"],\"SLm_0U\":[\"IRC-serverpoort\"],\"SODyJ3\":[\"Host Async OK\"],\"SRiPhD\":[\"Verwijdering van knooppunt annuleren\"],\"SV5nA1\":[\"Sommige van de vorige stappen bevatten fouten\"],\"SVG6MY\":[\"Veld terugzetten op eerder opgeslagen waarde\"],\"SYbJcn\":[\"Berichtsjabloon bewerken\"],\"SZvybZ\":[\"LDAP-standaard\"],\"SZw9tS\":[\"Details weergeven\"],\"SbRHme\":[\"Tekstgebied\"],\"Se_E0z\":[\"Workflowtaak\"],\"Sgr5NW\":[\"Selecteer een instantie om een gezondheidscontrole uit te voeren.\"],\"Sh2XTJ\":[\"Berichttype\"],\"SiexHs\":[\"Dashboard (alle activiteit)\"],\"Sja7f-\":[\"Hoe vaak is de host verwijderd\"],\"Sjoj4f\":[\"Naam toegangsgegevens\"],\"SlfejT\":[\"Fout\"],\"SoREmD\":[\"Toepassingen en tokens\"],\"SqA8uD\":[\"Taakuitvoeringen\"],\"SqLEdN\":[\"Kan Smart-inventaris niet verwijderen.\"],\"SqYo9m\":[\"Terug naar instanties\"],\"Ssdrw4\":[\"Afgeschaft\"],\"Successful\":[\"Geslaagd\"],\"SvPvEX\":[\"Workflow goedgekeurde berichtbody\"],\"Svkela\":[\"Ga naar de vorige pagina\"],\"SwJLlZ\":[\"Workflow geweigerde berichtbody\"],\"SxGqey\":[\"Algemene OIDC-instellingen\"],\"Sxm8rQ\":[\"Gebruikers\"],\"SzFxHC\":[\"LDAP-instellingen\"],\"SzQMpA\":[\"Vorken\"],\"T2M20E\":[\"De\"],\"T2mGOG\":[\"docs.ansible.com\"],\"T2x15z\":[\"Kan niet van bericht wisselen.\"],\"T4a4A4\":[\"Webhooksleutel\"],\"T7yEGN\":[\"Het toekenningstype dat de gebruiker moet gebruiken om tokens voor deze applicatie te verkrijgen\"],\"T91vKp\":[\"Afspelen\"],\"T9hZ3D\":[\"GitHub Enterprise-team\"],\"TAnffV\":[\"Dit knooppunt bewerken\"],\"TBH48u\":[\"Kan team niet verwijderen.\"],\"TC32CH\":[\"Aantal dagen dat gegevens moeten worden bewaard\"],\"TD1APv\":[\"Abonnementen ophalen\"],\"TFr1UR\":[\"Selecteer de Ansible-collectie die de inventarisplugin levert die wordt gebruikt om te synchroniseren vanuit vCenter. De collectie community.vmware is afgeschaft ten gunste van de nieuwere collectie vmware.vmware. De selectie wordt toegepast via de sleutel \\\"plugin\\\" in de bronvariabelen; als de sleutel ontbreekt, wordt de standaardcollectie gebruikt.\"],\"TJVvMD\":[\"Verwant zoektype\"],\"TLomdD\":[[\"sessionCountdown\",\"plural\",{\"one\":[\"You will be logged out in \",\"#\",\" second due to inactivity\"],\"other\":[\"You will be logged out in \",\"#\",\" seconds due to inactivity\"]}]],\"TMJ39S\":[\"Rol loskoppelen\"],\"TMLAx2\":[\"Vereist\"],\"TO3h59\":[\"Vul veld vanuit een extern geheimbeheersysteem\"],\"TO4OtU\":[\"Toegangsgegevens voor Insights\"],\"TOjYb_\":[\"Geconstrueerde inventarisgegevens van host bekijken\"],\"TP9_K5\":[\"Token\"],\"TRDppN\":[\"Webhook\"],\"TTMvf7\":[\"Type groep\"],\"TU6IDa\":[\"Soort gebruiker\"],\"TXKmNM\":[\"Er moet een inventaris worden gekozen\"],\"TZEuIE\":[\"Terug naar typen toegangsgegevens\"],\"T_87By\":[\"Parameter\"],\"Ta0ts5\":[\"Wijzigingen tonen\"],\"TcnG-2\":[\"Nieuwe uitvoeringsomgeving maken\"],\"TgSxH9\":[\"Provisioning terugkoppelings-URL\"],\"TkiN8D\":[\"Gebruikersdetails\"],\"Tmh24b\":[\"Indien ingeschakeld, voorkomt het taaksjabloon dat inventaris- of organisatie-instantiegroepen worden toegevoegd aan de lijst met voorkeursinstantiegroepen om op uit te voeren. Opmerking: als deze instelling is ingeschakeld en u een lege lijst hebt opgegeven, worden de globale instantiegroepen toegepast.\"],\"Tmuvry\":[\"Typeahead type instellen\"],\"ToOoEw\":[\"Toegangsgegevens kopiëren\"],\"Tof7pX\":[\"Taken\"],\"Tq71UT\":[\"weekdag\"],\"Tx3NMN\":[\"Privésleutel wachtwoordzin\"],\"TxKKED\":[\"Details van geconstrueerde inventaris bekijken\"],\"TyaPAx\":[\"Systeembeheerder\"],\"Tz0i8g\":[\"Instellingen\"],\"U-nEJl\":[\"GitHub-instellingen weergeven\"],\"U011Uh\":[\"Laatste synchronisatie\"],\"U7rA2a\":[\"Indien niet aangevinkt, wordt een samenvoeging uitgevoerd, waarbij lokale variabelen worden gecombineerd met die op de externe bron.\"],\"UDf-wR\":[\"Verbruikte abonnementen\"],\"UEaj7U\":[\"Fout tijdens inventarissynchronisatie\"],\"UJpDop\":[\"Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"UJsNNk\":[\"Broncodebeheerrevisie\"],\"UPasE4\":[\"Azure AD-standaard\"],\"UPmrRI\":[\"Hoofdletterongevoelige versie van endswith.\"],\"URmyfc\":[\"Meer informatie\"],\"UX2wV1\":[[\"0\",\"plural\",{\"one\":[\"This credential is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"UXBCwc\":[\"Achternaam\"],\"UY6iPZ\":[\"Indien ingeschakeld, zullen besturingsknooppunten automatisch naar dit exemplaar turen. Indien uitgeschakeld, wordt het exemplaar alleen verbonden met geassocieerde collega's.\"],\"UYD5ld\":[\"en klik op Herziening updaten bij opstarten\"],\"UYUgdb\":[\"Bestellen\"],\"U_JUCL\":[\"Red Hat Insights\"],\"Ua-Kc6\":[\"www.json.org\"],\"UbOul8\":[\"Weet u zeker dat u dit wilt verwijderen:\"],\"UbRKMZ\":[\"In afwachting\"],\"UbqhuT\":[\"Kan geen volledig bronobject van knooppunt ophalen.\"],\"Uc_tSU\":[\"Gereedschap wisselen\"],\"UgFDh3\":[\"Deze inventaris wordt momenteel door andere bronnen gebruikt. Weet u zeker dat u hem wilt verwijderen?\"],\"UirGxE\":[\"Fouten\"],\"UlykKR\":[\"Derde\"],\"Uo1S9q\":[\"Aanmelden met Azure AD Tenant\"],\"UueF8b\":[\"Uitvoeringsomgeving ontbreekt of is verwijderd.\"],\"UvGjRK\":[\"Indien ingeschakeld, voer dit playbook uit als beheerder.\"],\"UwJJCk\":[\"Mislukte hosts opnieuw starten\"],\"UxKoFf\":[\"Navigatie\"],\"UyZ7HQ\":[\"Body wijzigingsbericht\"],\"V-7saq\":[[\"pluralizedItemName\"],\" verwijderen?\"],\"V-rJKF\":[\"Seconds\"],\"V0Xv3_\":[[\"intervalValue\",\"plural\",{\"one\":[\"day\"],\"other\":[\"days\"]}]],\"V0fM4k\":[\"Gebruikersanalyses\"],\"V1EGGU\":[\"Voornaam\"],\"V2-omF\":[[\"0\",\"plural\",{\"one\":[\"De inventaris blijft in de status in behandeling totdat de definitieve verwijdering is verwerkt.\"],\"other\":[\"De inventarissen blijven in de status in behandeling totdat de definitieve verwijdering is verwerkt.\"]}]],\"V2RwJr\":[\"Adressen van luisteraars\"],\"V2q9w9\":[\"If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode.\"],\"V3z83V\":[\"LDAP 3\"],\"V4WsyL\":[\"Link toevoegen\"],\"V5RUpn\":[\"Lijst met ontvangers\"],\"V7qsYh\":[\"Opmerking: de volgorde van deze toegangsgegevens bepaalt de voorrang voor de synchronisatie en het opzoeken van de inhoud. Selecteer er meer dan één om slepen mogelijk te maken.\"],\"V9xR6T\":[\"Sectie uitklappen\"],\"VAI2fh\":[\"Nieuwe containergroep maken\"],\"VAcXNz\":[\"Woensdag\"],\"VEj6_Y\":[\"Workflowgoedkeuringen\"],\"VFvVc6\":[\"Details bewerken\"],\"VJUm9p\":[\"Huidige pagina\"],\"VK2gzi\":[\"Het aantal parallelle of gelijktijdige processen dat wordt gebruikt tijdens het uitvoeren van het playbook. Een lege waarde, of een waarde kleiner dan 1, gebruikt de Ansible-standaard, die meestal 5 is. Het standaardaantal forks kan worden overschreven met een wijziging in\"],\"VL2WkJ\":[\"De laatste \",[\"dayOfWeek\"]],\"VLdRt2\":[\"Start synchronisatie bron\"],\"VNUs2y\":[\"Forks\"],\"VSJ6r5\":[\"Schema is actief\"],\"VSim_H\":[\"Inventarisbron maken\"],\"VTDO7X\":[\"Modus gebeurtenisdetails\"],\"VU3Nrn\":[\"Ontbrekend\"],\"VWL2DK\":[\"GitHub-organisatie\"],\"VXFjd8\":[\"Meetwaarden\"],\"VZfXhQ\":[\"Hop-knooppunt\"],\"VdcFUD\":[\"Licentie-overeenkomst voor eindgebruikers\"],\"ViDr6F\":[\"Nieuwe groep toevoegen\"],\"VmClsw\":[\"De aan dit knooppunt gekoppelde bron is verwijderd.\"],\"VmvLj9\":[\"Stel in op Openbaar of Vertrouwelijk, afhankelijk van hoe veilig het clientapparaat is.\"],\"Vqd-tq\":[\"Alles terugzetten bevestigen\"],\"Vqgeac\":[\"Press space or enter to begin dragging,\\n and use the arrow keys to navigate up or down.\\n Press enter to confirm the drag, or any other key to\\n cancel the drag operation.\"],\"Vvbbn2\":[\"Kan rol niet verwijderen.\"],\"Vw8l6h\":[\"Er is een fout opgetreden\"],\"VzE_M-\":[\"Berichtstoring wisselen\"],\"W-O1E9\":[\"Project kopiëren\"],\"W1iIqa\":[\"Inventarisgroepen weergeven\"],\"W3TNvn\":[\"Terug naar gebruikers\"],\"W3pOzF\":[\"Sta toe dat de broncodebeheer-branch of -revisie wordt gewijzigd in een taaksjabloon dat dit project gebruikt.\"],\"W6uTJi\":[\"Kon dashboard niet weergeven:\"],\"W7DGsV\":[\"Opgestart door (gebruikersnaam)\"],\"W9XAF4\":[\"Doordeweeks\"],\"W9uQXX\":[\"Melding\"],\"WAjFYI\":[\"Startdatum\"],\"WD8djW\":[\"Link verwijderen bevestigen\"],\"WL91Ms\":[\"Delete Groups?\"],\"WPM2RV\":[\"Antwoordtype\"],\"WQJduu\":[\"Sleutel selecteren\"],\"WTN9YX\":[\"Accounttoken\"],\"WTV15I\":[\"Login doorverwijzen URL overschrijven bewerken\"],\"WVzGc2\":[\"Abonnement\"],\"WX9-kf\":[\"IRC-bijnaam\"],\"Wc6m4J\":[\"Een op te halen refspec (doorgegeven aan de Ansible git-module). Met deze parameter is toegang mogelijk tot referenties via het branchveld die anders niet beschikbaar zijn.\"],\"Wdl2f2\":[\"Dit veld moet minimaal \",[\"0\"],\" tekens bevatten\"],\"WgsBEi\":[\"Voer ten minste één zoekfilter in om een nieuwe Smart-inventaris te maken\"],\"WhSFGl\":[\"Filteren op \",[\"name\"]],\"Wi1pUG\":[[\"numJobsToCancel\",\"plural\",{\"one\":[[\"0\"]],\"other\":[[\"1\"]]}]],\"Wk1rOS\":[\"Pas de grafiek aan de beschikbare schermgrootte aan\"],\"Wm7XbF\":[\"Een of meer toegangsgegevens kunnen niet worden verwijderd.\"],\"WqaDMq\":[\"Veld bevat waarde.\"],\"Wy25yg\":[\"Twilio\"],\"X03-eC\":[\"Voer een waarde in.\"],\"X5V9DW\":[\"Klik op de knop Bewerken hieronder om het knooppunt opnieuw te configureren.\"],\"X6d3Zy\":[\"Kan organisatie niet verwijderen.\"],\"X97mbf\":[\"Kies een soort taak\"],\"XA12d8\":[\"Optionele door komma's gescheiden lijst met hostnamen die in elk taaksegment moeten worden opgenomen, naast de hosts van het segment zelf. Handig wanneer een play gericht is op een coördinerende host, zoals localhost, waarvan alle segmenten afhankelijk zijn. Namen worden exact vergeleken met inventarishosts; groepen en patronen worden niet ondersteund. Vastgezette hosts voeren hun plays één keer per segment uit.\"],\"XBROpk\":[\"Geef een hostpatroon op om de lijst met hosts die door de workflow worden beheerd of beïnvloed verder te beperken.\"],\"XCCkju\":[\"Knooppunt bewerken\"],\"XFRygA\":[\"Voorbeeld-URL's voor broncodebeheer van extern archief zijn onder meer:\"],\"XHxwBV\":[\"Het geselecteerde datumbereik moet ten minste 1 geplande gebeurtenis hebben.\"],\"XILg0L\":[\"Ongeldig e-mailadres\"],\"XJOV1Y\":[\"Activiteit\"],\"XKp83s\":[\"Inventarissen met bronnen kunnen niet gekopieerd worden\"],\"XLMJ7O\":[\"Cloud\"],\"XLpxoj\":[\"E-mailopties\"],\"XM-gTv\":[\"Raadpleeg de Ansible-documentatie voor details over het configuratiebestand.\"],\"XOD7tz\":[\"Wijzigingen tonen\"],\"XOaZX3\":[\"Paginering\"],\"XP6TQ-\":[\"Indien gespecificeerd, zal dit veld worden getoond op het knooppunt in plaats van de resourcenaam bij het bekijken van de workflow\"],\"XREJvl\":[\"Variabelen die worden gebruikt om de voorraadbron te configureren. Zie voor een gedetailleerde beschrijving van het configureren van deze plug-in\"],\"XViLWZ\":[\"Bij mislukken\"],\"XWDz5f\":[\"Eenvoudige sleutel selecteren\"],\"X_5TsL\":[\"Vragenlijst schakelen\"],\"XaxYwV\":[\"Invoerwaarden\"],\"XbIM8f\":[\"Totale inventarisbronnen\"],\"XdyHT-\":[\"Geïmporteerde hosts\"],\"XfmfOA\":[\"Uitvoeren om de\"],\"Xg3aVa\":[\"SSL gebruiken\"],\"XgTa_2\":[\"The inventory will be in a pending status until the final delete is processed.\"],\"XilEsm\":[\"Instantiegroep\"],\"Xm7ruy\":[\"5 (WinRM-foutopsporing)\"],\"XmJfZT\":[\"naam\"],\"XmVvzl\":[\"Rollen selecteren om toe te passen\"],\"XnxCSh\":[\"Standaardfout\"],\"XozZ38\":[\"Een of meer inventarisbronnen kunnen niet worden verwijderd.\"],\"Xq9A0U\":[\"Onbekend project\"],\"Xt4N6V\":[\"Melding | \",[\"0\"]],\"XtpZSU\":[\"Alle taaktypen\"],\"Xx-ftH\":[\"Je hebt tegen meer hosts geautomatiseerd dan je abonnement toelaat.\"],\"XyTWuQ\":[\"Wacht totdat de topologie-weergave is ingevuld...\"],\"XyW2nH\":[[\"0\",\"plural\",{\"one\":[\"Weet u zeker dat u de onderstaande groep wilt verwijderen?\"],\"other\":[\"Weet u zeker dat u de onderstaande groepen wilt verwijderen?\"]}]],\"XzD7xj\":[\"Items selecteren\"],\"Y1YKad\":[\"Details bewerken\"],\"Y296GK\":[\"Kan rol niet verwijderen\"],\"Y2ml-n\":[\"Goedgekeurd - \",[\"0\"],\". Raadpleeg het Activiteitenlogboek voor meer informatie.\"],\"Y5VrmH\":[\"Niet geconfigureerd voor inventarissynchronisatie.\"],\"Y5vgVF\":[\"Succesvol geweigerd\"],\"Y5xJ7I\":[\"Naam van draaiboek\"],\"Y60pX3\":[\"Geconstrueerde inventaris toevoegen\"],\"YA4I45\":[\"Module selecteren\"],\"YFmVSY\":[\"Loskoppelen?\"],\"YJddb4\":[\"instantietype\"],\"YLMfol\":[\"Kies het type bron dat de nieuwe rollen gaat ontvangen. Als u bijvoorbeeld nieuwe rollen wilt toevoegen aan een groep gebruikers, kies dan Gebruikers en klik op Volgende. In de volgende stap kunt u de specifieke bronnen selecteren.\"],\"YM06Nm\":[\"Type toegangsgegevens bewerken\"],\"YMLB2b\":[\"Of het goedkeuringsknooppunt automatisch wordt goedgekeurd of geweigerd wanneer de time-out verloopt.\"],\"YMpSlP\":[\"Tijd in seconden om een voorraadsynchronisatie als actueel te beschouwen. Tijdens taakruns en callbacks evalueert het taaksysteem de tijdstempel van de nieuwste synchronisatie. Als het ouder is dan Cache Timeout, wordt het niet als actueel beschouwd en wordt een nieuwe voorraadsynchronisatie uitgevoerd.\"],\"YOOdGq\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" minuut\"],\"other\":[\"#\",\" minuten\"]}]],\"YOh7Aw\":[\"Workflowtaak \",[\"currentPosition\"],\"/\",[\"total\"]],\"YP5KRj\":[\"Er wordt een nieuwe webhook-URL gegenereerd bij het opslaan.\"],\"YPDLLX\":[\"Terug naar uitvoeringsomgevingen\"],\"YQqM-5\":[\"De containerimage die voor uitvoering moet worden gebruikt.\"],\"Yd45Xn\":[\"Hosts op processortype\"],\"Yfw7TK\":[\"Time-out voor bericht\"],\"YgqgXs\":[[\"intervalValue\",\"plural\",{\"one\":[\"minute\"],\"other\":[\"minutes\"]}]],\"YiQ03p\":[\"Kan schema niet verwijderen.\"],\"YiUAZm\":[\"<0>Opmerking: Deze instantie kan opnieuw worden gekoppeld aan deze instantiegroep als deze wordt beheerd door <1>beleidsregels.\"],\"YlGAPh\":[\"Vastgezette hosts voor taakverdeling\"],\"Ym7-mu\":[\"Eén Slack-kanaal per regel. Het hekje-symbool (#)\\n is vereist voor kanalen. Om te reageren op een specifiek bericht of een thread te starten, voegt u de bovenliggende bericht-Id toe aan het kanaal, waarbij de bovenliggende bericht-Id 16 cijfers bevat. Er moet handmatig een punt (.) worden ingevoegd na het 10e cijfer. bijv.:#destination-channel, 1231257890.006423. Zie Slack\"],\"YmEWZH\":[\"Sjabloon opstarten\"],\"YmjTf2\":[\"Bevoorrading mislukt\"],\"YoXjSs\":[\"Vraag om inventaris bij opstarten.\"],\"Yq4Eaf\":[\"Statusinformatie van de host is niet beschikbaar voor deze taak.\"],\"YsN-3o\":[\"Details inventarisbron weergeven\"],\"Yt-rBv\":[\"Dit project wordt momenteel gebruikt door andere resources. Weet u zeker dat u het wilt verwijderen?\"],\"YuC9dj\":[\"Associëren\"],\"YxDLmM\":[\"Systeem-ID Insights\"],\"Z17FAa\":[\"Onbekende inventaris\"],\"Z1Vtl5\":[\"Kan projectsynchronisatie niet annuleren\"],\"Z25_RC\":[\"Input selecteren\"],\"Z2hVSb\":[\"Hybride\"],\"Z40J8D\":[\"Schakelt het maken van een provisioning-callback-URL in. Via de URL kan een host contact opnemen met \",[\"brandName\"],\" en een configuratie-update aanvragen met dit taaksjabloon.\"],\"Z5HWHd\":[\"Aan\"],\"Z7ZXbT\":[\"Goedkeuring\"],\"Z88yEl\":[\"Groter dan of gelijk aan vergelijking.\"],\"Z9EFpE\":[\"Dashboard automatiseringsanalyse\"],\"ZAWGCX\":[[\"0\"],\" seconden\"],\"ZEP8tT\":[\"Starten\"],\"ZGDCzb\":[\"Instantie niet gevonden.\"],\"ZJjKDg\":[\"Beheerde knooppunten\"],\"ZKKnVf\":[\"Nieuwe workflowsjabloon maken\"],\"ZL3d6Z\":[\"IRC-serveradres\"],\"ZO4CYH\":[\"Taken in uitvoering\"],\"ZOLfb2\":[\"Dit veld mag niet leeg zijn\"],\"ZWhZbs\":[\"Knooppunt verwijderen bevestigen\"],\"ZajTWA\":[\"Brontelefoonnummer\"],\"Zf6u-6\":[\"Uitleg\"],\"ZfrRb0\":[\"Selecteer een inventaris of schakel de optie Melding bij opstarten in\"],\"ZhUwVw\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" week\"],\"other\":[\"#\",\" weken\"]}]],\"ZhxwOq\":[\"Foutbericht body\"],\"Zikd-1\":[\"Het aantal hosts waartegen u geautomatiseerd heeft is lager dan uw abonnement.\"],\"ZjC8QM\":[\"Kan host niet verwijderen.\"],\"ZjvPb1\":[\"Gemaakt door (Gebruikersnaam)\"],\"Zkh5np\":[\"Peers-update op \",[\"0\"],\". Zorg ervoor dat u de installatiebundel voor \",[\"1\"],\" opnieuw uitvoert om de wijzigingen van kracht te zien worden.\"],\"ZpdX6R\":[\"Fout bij het verwijderen van tokens\"],\"ZrsGjm\":[\"Inventaris\"],\"ZumtuZ\":[\"Sjabloon kopiëren\"],\"ZvVF4C\":[\"Vragenlijstvraag verwijderen\"],\"ZwCTcT\":[\"Tabblad Lijst met recente takenlijst\"],\"ZwujDQ\":[\"L'année passée\"],\"_-NKbo\":[\"Kan niet van schema wisselen.\"],\"_2LfCe\":[\"Om de enquêtevragen te herordenen, sleept u ze naar de gewenste locatie.\"],\"_4gGIX\":[\"Gekopieerd naar klembord\"],\"_5REdR\":[\"Selecteer Input Inventories voor de geconstrueerde voorraadplug-in.\"],\"_Fg1cM\":[\"Workflow Berichtbody voor time-out\"],\"_ITcnz\":[\"dag\"],\"_Ia62Q\":[\"Geconstrueerde inventarisvoorbeelden\"],\"_JN1gB\":[\"Aantal taken\"],\"_K2CvV\":[\"Sjabloon\"],\"_LQZpR\":[[\"intervalValue\",\"plural\",{\"one\":[\"year\"],\"other\":[\"years\"]}]],\"_LVfwJ\":[\"Fout bij synchronisatie van geconstrueerde voorraadbron\"],\"_M4FeF\":[\"Selecteer de uitvoeromgeving waarbinnen u deze opdracht wilt uitvoeren.\"],\"_MTBwI\":[\"Wijzigingsbericht\"],\"_MdgrM\":[\"Nieuw knooppunt toevoegen tussen deze twee knooppunten\"],\"_PRaan\":[\"Een of meer berichtsjablonen kunnen niet worden verwijderd.\"],\"_Pz_QH\":[\"Beheerd door beleid\"],\"_W3ZAw\":[[\"selectedItemsCount\",\"plural\",{\"one\":[\"Click to run a health check on the selected instance.\"],\"other\":[\"Click to run a health check on the selected instances.\"]}]],\"_WBq2_\":[\"Geweigerd - \",[\"0\"],\". Raadpleeg het Activiteitenlogboek voor meer informatie.\"],\"_Yq4TU\":[\"Maximaal aantal forks dat is toegestaan voor alle taken die gelijktijdig op deze groep worden uitgevoerd.\\n Nul betekent dat er geen limiet wordt afgedwongen.\"],\"_ZBhqw\":[\"Kan de synchronisatie van de inventarisbron niet annuleren\"],\"_bAUGi\":[\"Kies een HTTP-methode\"],\"_bE0AS\":[\"Selecteer een instantie\"],\"_cV6Mf\":[\"Bladeren...\"],\"_cq4Aa\":[\"Workflowgoedkeuring niet gevonden.\"],\"_ereyb\":[\"TACACS+\"],\"_gCD76\":[\"Instantiegroep bewerken\"],\"_ismew\":[\"Artefactsleutel\"],\"_kYJq6\":[\"Dagen om gegevens te bewaren\"],\"_khNCh\":[\"De standaard toegangsgegevens van de taaksjabloon moeten worden vervangen door één van hetzelfde type. Selecteer toegangsgegevens voor de volgende typen om door te gaan: \",[\"0\"]],\"_oeZtS\":[\"Hostpolling\"],\"_rCRcH\":[\"Documentatie over geavanceerd zoeken\"],\"_vI8Rx\":[\"Delete Group?\"],\"a02Xjc\":[\"IRC-serveradres\"],\"a3AD0M\":[\"omleiden inloggen bewerken bevestigen\"],\"a5zD9f\":[\"Wijzigingen\"],\"a6E-_p\":[\"Hoofdletterongevoelige versie van bevat\"],\"a8AgQY\":[\"Hostdetails weergeven\"],\"a8nooQ\":[\"Vierde\"],\"a9BTUD\":[\"weekenddag\"],\"aBgwis\":[\"Bereik\"],\"aLlb3-\":[\"boolean\"],\"aNxqSL\":[\"Uitvoeringsomgeving verwijderen\"],\"aQ4XJX\":[\"Logboeksysteem dat feiten individueel bijhoudt inschakelen\"],\"aSuBiU\":[\"Microsoft Azure Resource Manager\"],\"aTK0Fh\":[\"Aan-dagen\"],\"aUNPq3\":[\"Uitvoeringsknooppunt\"],\"aVoVcG\":[\"Meerdere selectie\"],\"aXBrSq\":[\"Red Hat-virtualizering\"],\"a_vlog\":[\"Chip \",[\"0\"],\" verwijderen\"],\"adPhRK\":[\"Selecteer de inventaris waartoe deze host zal behoren.\"],\"adjqlB\":[[\"0\"],\" (verwijderd)\"],\"aht2s_\":[\"Berichtkleur\"],\"aiejXq\":[\"Brontype toevoegen\"],\"ajDpGH\":[\"STATUS:\"],\"anfIXl\":[\"Gebruikersdetails\"],\"aqqAbL\":[\"Indien ingeschakeld, voorkomt deze inventaris dat instantiegroepen voor een organisatie worden toegevoegd aan de lijst met voorkeursinstantiegroepen om gekoppelde taaksjablonen op uit te voeren. Opmerking: als deze instelling is ingeschakeld en u een lege lijst hebt opgegeven, worden de globale instantiegroepen toegepast.\"],\"ar5AA2\":[\"voor meer informatie.\"],\"ataY5Z\":[\"Fout bij verwijderen taak\"],\"ax6e8j\":[\"Selecteer een organisatie voordat u het hostfilter bewerkt\"],\"az8lvo\":[\"Uit\"],\"b1CAkh\":[\"Beheerderstaken\"],\"b2Z0Zq\":[\"Linkwijzigingen annuleren\"],\"b433OF\":[\"Groep bewerken\"],\"b4SLah\":[\"Zie fouten links\"],\"b9Y4up\":[\"Client-id\"],\"bDa_hW\":[\"Selecteer de instantiegroepen waarop de synchronisatie van deze inventarisbron moet worden uitgevoerd. Indien niet ingesteld, wordt de synchronisatie uitgevoerd op de instantiegroepen van de inventaris of de bijbehorende organisatie.\"],\"bE4zYn\":[\"Selecteer de poort waarop Receptor zal luisteren voor inkomende verbindingen, bijv. 27199.\"],\"bHXYoC\":[\"HTTP-methode\"],\"bKR18T\":[\"Een abonnementsmanifest is een export van een Red Hat-abonnement. Ga naar <0>access.redhat.com om een abonnementsmanifest te genereren. Zie de <1>Gebruikershandleiding voor meer informatie.\"],\"bLt_0J\":[\"Workflow\"],\"bPq357\":[\"Ingeschakelde waarde\"],\"bQZByw\":[\"Voer een opmerkingstas in per regel, zonder komma's.\"],\"bTu5jX\":[\"Gebruikersnaam/wachtwoord\"],\"bWr6j5\":[\"Dit veld moet minimaal \",[\"min\"],\" tekens bevatten\"],\"bY8C86\":[\"Geef alle gebruikers weer.\"],\"bYXbel\":[\"webhooksleutel taaksjabloon voor workflows\"],\"baP8gx\":[\"4 (Foutopsporing verbinding)\"],\"baqrhc\":[\"HTTP-koppen\"],\"bbJ-VR\":[\"Uitzoomen\"],\"bcyJXs\":[\"Item OK\"],\"bd1Kuw\":[\"Icoon-URL\"],\"bf7UKi\":[\"Time-out van updatecache\"],\"bfgr_e\":[\"Vraag\"],\"bgjTnp\":[\"0 (Normaal)\"],\"bgq1rW\":[\"Knop Zoekopdracht verzenden\"],\"bhxnLH\":[\"U hebt geen machtiging om de volgende groepen te verwijderen: \",[\"itemsUnableToDelete\"]],\"bkPO0d\":[\"Berichttype\"],\"bpECfE\":[\"Verwijdering van link annuleren\"],\"bpnj1H\":[\"Er is een fout opgetreden bij het laden van deze inhoud. Laad de pagina opnieuw.\"],\"bwRvnp\":[\"Actie\"],\"bx2rrL\":[\"Smart-inventaris\"],\"bxaVlf\":[\"Nieuw type toegangsgegevens maken\"],\"byXCTu\":[\"Voorvallen\"],\"bznJUg\":[\"Selecteer de inventaris met de hosts die u door deze workflow wilt laten beheren.\"],\"bzv8Dv\":[\"Verwijderingsfout\"],\"c-xCSz\":[\"True\"],\"c0n4p3\":[\"Feitenopslag\"],\"c1Rsz1\":[\"Details workflowgoedkeuring weergeven\"],\"c3XJ18\":[\"Help\"],\"c4kHK7\":[\"Inschrijvingsmodus sluiten\"],\"c6IFRs\":[\"JSON-bestand service-account\"],\"c6u6gk\":[\"Selecteer de instantiegroepen waar de organisatie op uitgevoerd wordt.\"],\"c7-Adk\":[\"Kan inventarisbron niet synchroniseren.\"],\"c8HyJq\":[\"Selecteer de instantiegroepen waar deze inventaris op uitgevoerd wordt.\"],\"c8sV0t\":[\"Deze functie is afgeschaft en zal worden verwijderd in een toekomstige versie.\"],\"c9V3Yo\":[\"Host is mislukt\"],\"c9iw51\":[\"Taken in uitvoering\"],\"c9pF61\":[\"Clientidentificatie\"],\"cFC8w7\":[\"Deze inventarisbron wordt momenteel door andere bronnen gebruikt die erop vertrouwen. Weet u zeker dat u hem wilt verwijderen?\"],\"cFCKYZ\":[\"Weigeren\"],\"cFOXv9\":[\"Generieke OIDC\"],\"cGRiaP\":[\"Gebeurtenisinformatie weergeven\"],\"cIdUma\":[\"\\n Er zijn geen beschikbare playbook-mappen in \",[\"project_base_dir\"],\".\\n Ofwel is die map leeg, ofwel is alle inhoud al\\n toegewezen aan andere projecten. Maak daar een nieuwe map aan en zorg\\n ervoor dat de playbook-bestanden kunnen worden gelezen door de \\\"awx\\\"-systeemgebruiker,\\n of laat \",[\"brandName\"],\" uw playbooks rechtstreeks ophalen uit\\n broncodebeheer met behulp van de optie Type broncodebeheer hierboven.\"],\"cNsIJf\":[\"Gewijzigd\"],\"cPTnDL\":[\"Projectsynchronisatie\"],\"cQIQa2\":[\"Groepen selecteren\"],\"cQlPDN\":[\"Lezen\"],\"cUKLzq\":[\"Volgorde bewerken\"],\"cYir0h\":[\"Optie(s) selecteren\"],\"c_PGsA\":[\"Taakdetails weergeven\"],\"cbSPfq\":[\"Deze workflow is reeds in gang gezet\"],\"ccA_Bz\":[\"De aanbevolen indeling voor variabelenamen is kleine letters en\\n gescheiden door onderstrepingstekens (bijvoorbeeld foo_bar, user_id, host_name,\\n enz.). Variabelenamen met spaties zijn niet toegestaan.\"],\"cdm6_X\":[\"Gebruikte capaciteit\"],\"chbm2W\":[\"Instantiefilters\"],\"ci3mwY\":[\"Dit veld mag niet leeg zijn\"],\"cit9TY\":[\"Naam van een artefact dat door het bovenliggende knooppunt via set_stats wordt geproduceerd. De link wordt alleen gevolgd wanneer de bovenliggende taak overeenkomt met de gekozen uitkomst en de voorwaarde waar is. Een ontbrekende sleutel komt nooit overeen.\"],\"cj1KTQ\":[\"Geef alle inventarissen weer.\"],\"cjJXKx\":[\"Host Async mislukking\"],\"ckH3fT\":[\"Klaar\"],\"ckdiAB\":[\"Bericht verwijderen\"],\"cmWTxn\":[\"Minder dan of gelijk aan vergelijking.\"],\"cnGeoo\":[\"Verwijderen\"],\"cnnWD0\":[\"By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>\",[\"0\"],\". Uncheck the following boxes to disable this feature.\"],\"ct_Puj\":[\"Dit veld wordt met behulp van de opgegeven referentie opgehaald uit een extern geheimbeheersysteem.\"],\"cucDBz\":[\"Contextsjabloon\"],\"cucG_7\":[\"Geen yaml beschikbaar\"],\"cxjfgY\":[\"Kan geen gezondheidscontrole uitvoeren voor hop-knooppunten.\"],\"cy3yJa\":[\"Gevestigd\"],\"d-F6q9\":[\"Gemaakt\"],\"d-zGjA\":[\"Met deze actie wordt het volgende verwijderd:\"],\"d1BVnY\":[\"A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>\",[\"0\"],\".\"],\"d5zxa4\":[\"Lokaal\"],\"d6in1T\":[\"Selecteer de inventaris met de hosts die u door deze taak wilt laten beheren.\"],\"d73flf\":[\"Waarschuwingsmodus\"],\"d75lEw\":[\"Type instellen\"],\"d7VUIS\":[\"Knooppunt \",[\"nodeName\"],\" verwijderen\"],\"d8B-tr\":[\"Grafiektabblad Taakstatus\"],\"dAZObA\":[\"URI's doorverwijzen\"],\"dBNZkl\":[\"Hostdetails Smart-inventaris weergeven\"],\"dCcO-F\":[\"Kan de configuratie niet ophalen.\"],\"dELxuP\":[\"Inventaris niet gevonden.\"],\"dEgA5A\":[\"Annuleren\"],\"dH6aQY\":[\"Azure AD Tenant\"],\"dIb9tv\":[\"Geef alle toepassingen weer.\"],\"dJcvVX\":[\"Smart-hostfilter\"],\"dNAHKF\":[\"Taken verdelen\"],\"dOjocz\":[\"Convergentie selecteren\"],\"dPGRd8\":[\"Indien ingeschakeld, toont dit de wijzigingen die door Ansible-taken zijn aangebracht, waar ondersteund. Dit komt overeen met de --diff-modus van Ansible.\"],\"dPY1x1\":[\"voor meer info.\"],\"dQFAgv\":[\"Dit project moet worden bijgewerkt\"],\"dQjRO3\":[\"Start het synchronisatieproces\"],\"dbWo0h\":[\"Aanmelden met Google\"],\"dcGoCm\":[\"Inventarisbestand\"],\"ddIcfH\":[\"Ga naar de laatste pagina\"],\"dfWFox\":[\"Aantal hosts\"],\"dk7qNl\":[\"Controleknooppunt\"],\"dkGxGj\":[\"Subversie\"],\"dlHFy7\":[\"Een of meer uitvoeringsomgevingen kunnen niet worden verwijderd\"],\"dnCwNB\":[\"Succesvol gekopieerd naar klembord!\"],\"dov9kY\":[\"Dit veld moet een getal zijn en een waarde tussen \",[\"0\"],\" en \",[\"1\"],\" hebben\"],\"dqxQzB\":[\"woordenboek\"],\"dzQfDY\":[\"Oktober\"],\"e0NrBM\":[\"Project\"],\"e3pQqT\":[\"Kies een type bericht\"],\"e4GHWP\":[\"Pullen\"],\"e5CMOi\":[\"Omgevingsvariabelen of extra variabelen die aangeven welke waarden een credentialtype kan injecteren.\"],\"e5VbKq\":[\"Workflowtaaksjablonen\"],\"e6BtDv\":[\"<0>\",[\"0\"],\"<1>\",[\"1\"],\"\"],\"e70-_3\":[\"Legenda wisselen\"],\"e8GyQg\":[\"Metrisch\"],\"e8U63Z\":[\"Synchroniseer het project alleen wanneer de gepushte ref overeenkomt met dit patroon, bijvoorbeeld refs/heads/main of refs/heads/release-*. Laat leeg om te synchroniseren bij elke push- of taggebeurtenis.\"],\"e91aLH\":[\"Alle typen toegangsgegevens weergeven\"],\"e9k5zp\":[\"Voeg een schema toe om deze lijst te vullen. Schema's kunnen worden toegevoegd aan een sjabloon, project of inventarisatiebron.\"],\"eAR1n4\":[\"Verwante zoekopdracht typeahead\"],\"eD_0Fo\":[\"Een of meer teams kunnen niet worden verwijderd.\"],\"eDjsWq\":[\"Nieuwe berichtsjabloon maken\"],\"eGkahQ\":[\"Taaksjabloon verwijderen\"],\"eHx-29\":[\"Broninformatie\"],\"ePK91l\":[\"Bewerken\"],\"ePS9As\":[\"RADIUS-instellingen\"],\"eQkgKV\":[\"Geïnstalleerd\"],\"eRV9Z3\":[\"Geen time-out gespecificeerd\"],\"eRlz2Q\":[\"Sms-nummer(s) bestemming\"],\"eSXF_i\":[\"Kan toepassing niet verwijderen.\"],\"eTsJYJ\":[\"omschrijving\"],\"eVJ2lo\":[\"Drijven\"],\"eXOp7I\":[\"U hebt geen machtiging voor gerelateerde bronnen: \",[\"itemsUnableToremove\"]],\"eXWuGz\":[\"Tabblad Lijst met recente sjablonen\"],\"eYJ4TK\":[\"Opgebouwde inventaris niet gevonden.\"],\"eeke40\":[\"Automatiseringsanalyse\"],\"ekUnNJ\":[\"Tags selecteren\"],\"el9nUc\":[\"Schema is actief\"],\"emqNXf\":[\"Draaiboek controleren\"],\"eqiT7d\":[\"Stelt de rol in die deze instantie zal spelen binnen de netwerktopologie. Standaard is \\\"uitvoering\\\".\"],\"espHeZ\":[\"Instance Group Fallback voorkomen: Indien ingeschakeld, zal de inventaris voorkomen dat instantiegroepen van organisaties worden toegevoegd aan de lijst van voorkeursinstantiegroepen om geassocieerde taaksjablonen op uit te voeren.\"],\"etQEqZ\":[\"Als u deze link verwijdert, wordt de rest van de vertakking zwevend en wordt deze onmiddellijk bij lancering uitgevoerd.\"],\"ewSXyG\":[\"Zacht verwijderen\"],\"f-fQK9\":[\"Grafana API-sleutel\"],\"f2o-xB\":[\"Annuleren bevestigen\"],\"f6Hub0\":[\"Sorteren\"],\"f9yJNM\":[\"Gelijk aan\"],\"fCZSgU\":[\"Alle instantiegroepen weergeven\"],\"fDzxi_\":[\"Afsluiten zonder op te slaan\"],\"fE2kOY\":[\"Datumoperator selecteren\"],\"fGEOCn\":[\"Taakstatus\"],\"fGLpQj\":[\"Vertakking/tag/binding broncontrole\"],\"fGQ9Ug\":[\"Selecteer toegangsgegevens voor toegang tot de nodes waarop deze taak wordt uitgevoerd. U kunt slechts één toegangsgegeven van elk type selecteren. Voor machinetoegangsgegevens (SSH) betekent het aanvinken van «Vragen bij starten» zonder toegangsgegevens te selecteren dat u tijdens de uitvoering een machinetoegangsgegeven moet selecteren. Als u toegangsgegevens selecteert en «Vragen bij starten» aanvinkt, worden de geselecteerde toegangsgegevens de standaardwaarden die tijdens de uitvoering kunnen worden bijgewerkt.\"],\"fJ9xam\":[\"Instantie wisselen\"],\"fKew5B\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"Taak annuleren\"],\"other\":[\"Banen annuleren\"]}]],\"fL7WXr\":[\"Toepassingen\"],\"fMUEsk\":[\"Dag \",[\"0\"]],\"fMulwN\":[\"Herziening vernieuwing project\"],\"fOAyP5\":[\"Input voor tekst zoeken\"],\"fODqV4\":[\"De waarde is niet gevonden. Voer een geldige waarde in of selecteer er een.\"],\"fQCM-p\":[\"Organisatiedetails weergeven\"],\"fQGOXc\":[\"Fout!\"],\"fR8DDt\":[\"Verwijderen van alle knooppunten bevestigen\"],\"fVjyJ4\":[\"Loskoppelen bevestigen\"],\"f_Xpp2\":[\"Deze actie ontkoppelt het volgende:\"],\"fcTDCh\":[\"Geef hieronder uw Red Hat- of Red Hat Satellite-inloggegevens op\\n en u kunt kiezen uit een lijst met uw beschikbare abonnementen.\\n De inloggegevens die u gebruikt, worden opgeslagen voor toekomstig gebruik bij het\\n ophalen van verlengde of uitgebreide abonnementen.\"],\"ff_JYN\":[\"Filter op geneste groepsnaam\"],\"fgrmWn\":[\"Vraag om diff-modus bij opstarten.\"],\"fhFmMp\":[\"Clientidentificatie\"],\"fjX9i5\":[\"Smart-inventaris niet gevonden.\"],\"fk1WEw\":[\"Versleuteld\"],\"fld-O4\":[\"Alle taken\"],\"fnbZWe\":[\"Selecteer optioneel de toegangsgegevens die moeten worden gebruikt om statusupdates terug te sturen naar de webhook-service.\"],\"foItBN\":[\"Weekenddag\"],\"fp4RS1\":[\"bezig-met-content-laden\"],\"fpMgHS\":[\"Ma\"],\"fqSfXY\":[\"Vervangen\"],\"fqmP_m\":[\"Host onbereikbaar\"],\"fthJP1\":[\"Webhook-services kunnen taken starten met dit workflow-taaksjabloon door een POST-verzoek naar deze URL te sturen.\"],\"fwX7gC\":[\"VMware vCenter\"],\"g4o5Lr\":[\"Uitgebreid\"],\"g6ekO4\":[\"Kan niet van host wisselen.\"],\"g7CZ-8\":[\"Aanmelden met GitHub Enterprise-organisaties\"],\"g9d3sF\":[\"Body startbericht\"],\"gALXcv\":[\"Dit knooppunt verwijderen\"],\"gBnBJa\":[\"Taak bronworkflow\"],\"gDx5MG\":[\"Link bewerken\"],\"gIGcbR\":[\"Maximaal aantal taken dat tegelijkertijd op deze groep kan worden uitgevoerd. Nul betekent dat er geen limiet wordt afgedwongen.\"],\"gJccsJ\":[\"Workflow goedgekeurd bericht\"],\"gK06zh\":[\"Taaksjabloon toevoegen\"],\"gM3pS9\":[\"Uitvoeringsomgevingen\"],\"gN3aF4\":[\"LDAP5\"],\"gSVH9P\":[\"Alle bronnen synchroniseren\"],\"gUaMtt\":[\"Bij time-out\"],\"gVYePj\":[\"Nieuw team maken\"],\"gWlcwd\":[\"Laatste taakstatus\"],\"gYWK-5\":[\"Instellingen gebruikersinterface weergeven\"],\"gZXc5U\":[\"Het aantal afzonderlijke gebruikers dat moet goedkeuren voordat de werkstroom wordt voortgezet. Eén enkele weigering weigert altijd het knooppunt.\"],\"gZaMqy\":[\"Aanmelden met GitHub-teams\"],\"gZkstf\":[\"Indien ingeschakeld, worden de verzamelde feiten opgeslagen zodat ze op hostniveau kunnen worden bekeken. Feiten worden bewaard en tijdens runtime in de feitencache geïnjecteerd.\"],\"gcFnpl\":[\"Taakstatus\"],\"geTfDb\":[\"Taakdetails weergeven\"],\"ged_ZE\":[\"Oragnisatie\"],\"gezukD\":[\"Taak selecteren om deze te annuleren\"],\"gfyddN\":[\".zip-bestand uploaden\"],\"gh06VD\":[\"Output\"],\"ghJsq8\":[\"Eerste scrollen\"],\"gmB6oO\":[\"Schema\"],\"gmBQqV\":[\"Projectupdate\"],\"gnveFZ\":[\"Tabblad Standaardfout\"],\"goVc-x\":[\"Toegangsgegevens plug-inconfiguratie bewerken\"],\"go_DGX\":[\"Teamrollen toevoegen\"],\"gpKdxJ\":[\"Selecteer een vraag om te verwijderen\"],\"gpmbqk\":[\"Variabelen\"],\"gpnvle\":[\"verwijderingsfout\"],\"gsj32g\":[\"Projectsynchronisatie annuleren\"],\"gtB4z-\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" uur\"],\"other\":[\"#\",\" uur\"]}]],\"gwKtbI\":[\"in de documentatie en de\"],\"h25sKn\":[\"Abonnementenbeheer\"],\"h51QFW\":[\"YAML\"],\"h8DugX\":[\"Labels\"],\"hAjDQy\":[\"Status selecteren\"],\"hBHRCF\":[\"Minimumaantal instanties dat automatisch\\n aan deze groep wordt toegewezen wanneer nieuwe instanties online komen.\"],\"hEBjSg\":[\"Red Hat Satellite 6\"],\"hEnNCI\":[\"Verwijder de huidige zoekopdracht die gerelateerd is aan ansible-feiten om een andere zoekopdracht met deze sleutel mogelijk te maken.\"],\"hG89Ed\":[\"Image\"],\"hHKoQD\":[\"Peer-adressen selecteren\"],\"hLDu5N\":[\"Toepassing bewerken\"],\"hNudM0\":[\"Waarde instellen voor dit veld\"],\"hPa_zN\":[\"Organisatie (naam)\"],\"hQ0dMQ\":[\"Nieuwe host toevoegen\"],\"hQRttt\":[\"Indienen\"],\"hVPa4O\":[\"Kies een optie\"],\"hX8KyU\":[\"Deze opdracht is mislukt en heeft geen uitvoer.\"],\"hXDKWN\":[\"Frequentie-informatie\"],\"hXzOVo\":[\"Volgende\"],\"hYH0cE\":[\"Weet u zeker dat u het verzoek om deze taak te annuleren in wilt dienen?\"],\"hYgDIe\":[\"Maken\"],\"hZ6znB\":[\"Poort\"],\"hZke6f\":[\"Weet u zeker dat u lokale authenticatie wilt uitschakelen? Als u dat doet, kan dat gevolgen hebben voor de mogelijkheid van gebruikers om in te loggen en voor de mogelijkheid van de systeembeheerder om deze wijziging terug te draaien.\"],\"hc_ufD\":[\"Taaktags\"],\"hdyeZ0\":[\"Taak verwijderen\"],\"he3ygx\":[\"Kopiëren\"],\"heqHpI\":[\"Basispad project\"],\"hg6l4j\":[\"Maart\"],\"hgJ0FN\":[\"Voer een zoekopdracht uit om een hostfilter te definiëren\"],\"hgr8eo\":[\"items\"],\"hgvbYY\":[\"September\"],\"hhzh14\":[\"We waren niet in staat om de aan deze account gekoppelde licenties te lokaliseren.\"],\"hi1n6B\":[\"Instellingen bijwerken die betrekking hebben op taken binnen \",[\"brandName\"]],\"hiDMCa\":[\"Voorziening\"],\"hjsbgA\":[\"Extra variabelen\"],\"hjwN_s\":[\"Bronnaam\"],\"hlbQEq\":[\"Content Signature Validation Credential\"],\"hmEecN\":[\"Beheertaak\"],\"hmjNLv\":[\"Voorkeursthema\"],\"hty0d5\":[\"Maandag\"],\"hvs-Js\":[\"Toepassingsinformatie\"],\"i0VMLn\":[\"Workflow geweigerd bericht\"],\"i2izXk\":[\"Er ontbreekt een regel in het schema\"],\"i4_LY_\":[\"Schrijven\"],\"i9sC0B\":[\"Teammachtigingen toevoegen\"],\"iASwqf\":[\"This action will cancel the following job:\"],\"iCFhEl\":[\"Brontelefoonnummer\"],\"iDNBZe\":[\"Berichten\"],\"iDWfOR\":[\"Kan een of meer workflowgoedkeuringen niet goedkeuren.\"],\"iDjyID\":[\"Details toegangsgegevens weergeven\"],\"iE1s1P\":[\"Workflow opstarten\"],\"iEUzMn\":[\"systeem\"],\"iH8pgl\":[\"Terug\"],\"iI4bLJ\":[\"Laatste login\"],\"iIVceM\":[\"Kopieerfout\"],\"iJWOeZ\":[\"Geen JSON beschikbaar\"],\"iJiCFw\":[\"Groepsdetails\"],\"iLO3nG\":[\"Aantal afspelen\"],\"iMaC2H\":[\"Instantiegroepen\"],\"iPp22p\":[\"Deze planning gebruikt complexe regels die niet worden ondersteund in de\\n UI. Gebruik de API om deze planning te beheren.\"],\"iQdYL_\":[\"Smart-inventaris toevoegen\"],\"iRWxmA\":[\"SSL-verificatie uitschakelen\"],\"iTylMl\":[\"Sjablonen\"],\"iWKCzl\":[\"Selecteer uit de lijst met mappen die in het projectbasispad zijn gevonden. Samen bieden het basispad en de playbookmap het volledige pad dat wordt gebruikt om playbooks te lokaliseren.\"],\"iXmHtI\":[\"Type taak selecteren\"],\"iZBwau\":[\"Deze stap bevat fouten\"],\"i_CDGy\":[\"Overschrijven van vertakking toelaten\"],\"i_Kv21\":[\"Nieuwe bron maken\"],\"ifckL-\":[\"Rij selecteren\"],\"ifdViT\":[\"Inventarisdetails weergeven\"],\"ig0q8s\":[\"Deze inventaris wordt toegepast op alle workflowknooppunten binnen deze workflow (\",[\"0\"],\") die vragen naar een inventaris.\"],\"inP0J5\":[\"Details abonnement\"],\"isRobC\":[\"Nieuw\"],\"itlxml\":[\"Beheertaak\"],\"ittbfT\":[\"Zoeken op ansible_facts vereist speciale syntax. Raadpleeg de\"],\"itu2NQ\":[\"Typen verbindingstoestanden\"],\"j1a5f1\":[\"Host bewerken\"],\"j6gqC6\":[\"Branch die in de taakuitvoering moet worden gebruikt. De projectstandaard wordt gebruikt indien leeg. Alleen toegestaan als het veld allow_override van het project is ingesteld op true.\"],\"j7zAEo\":[\"Werkstroomstatussen\"],\"j8QfHv\":[\"Host bewerken\"],\"jAxdt7\":[\"verwijderen annuleren\"],\"jBGh4u\":[\"Voorraaddefinitie geneste groepen:\"],\"jCVu9g\":[\"Cancel selected job\"],\"jEJtMA\":[\"In afwachting van workflowgoedkeuringen\"],\"jEw0Mr\":[\"Voer een geldige URL in\"],\"jFaaUJ\":[\"Canonical\"],\"jGUu_G\":[\"Vereiste goedkeuringen\"],\"jIaeJK\":[\"Vragenlijst\"],\"jJdwCB\":[\"Terugzetten\"],\"jKibyt\":[\"Zoom resetten\"],\"jMyq_x\":[\"Workflow Job 1/\",[\"0\"]],\"jaUa4e\":[\"Deze gegevens worden gebruikt om\\n toekomstige releases van de Tower-software te verbeteren en te helpen\\n de klantervaring en het succes te stroomlijnen.\"],\"jc86YO\":[\"Vraag om limiet bij opstarten.\"],\"ji-8F7\":[\"Deze toegangsgegevens worden momenteel door andere bronnen gebruikt. Weet u zeker dat u ze wilt verwijderen?\"],\"jiE6Vn\":[\"Organisaties\"],\"jifz9m\":[\"Geen (eenmaal uitgevoerd)\"],\"jkQOCm\":[\"Uitzonderingen toevoegen\"],\"jljuYN\":[\"Service waarvan webhook-verzoeken worden geaccepteerd.\"],\"jluR-N\":[\"Waarschuwing: \",[\"selectedValue\"],\" is een link naar \",[\"0\"],\" en wordt als zodanig opgeslagen.\"],\"joAQQS\":[\"The inventories will be in a pending status until the final delete is processed.\"],\"jqVo_k\":[\"hier.\"],\"jqzUyM\":[\"Niet beschikbaar\"],\"jrkyDn\":[\"Afspelen gestart\"],\"jrsFB3\":[\"Output\"],\"jsz-PY\":[\"Onbekende einddatum\"],\"jwmkq1\":[\"Toegangsgegevens machine\"],\"jzD-D6\":[\"Over te slaan tags zijn handig wanneer u een groot playbook heeft en specifieke delen van een play of taak wilt overslaan. Gebruik komma's om meerdere tags te scheiden. Raadpleeg de documentatie voor details over het gebruik van tags.\"],\"k020kO\":[\"Activiteitenlogboek\"],\"k2dzu3\":[\"Verloopt op UTC\"],\"k30JvV\":[\"Geselecteerde categorie\"],\"k5nHqi\":[\"De uitvoeringsomgeving die wordt gebruikt bij het starten van dit taaksjabloon. De opgeloste uitvoeringsomgeving kan worden overschreven door er expliciet een andere toe te wijzen aan dit taaksjabloon.\"],\"k6OGfu\":[\"Select the Ansible collection providing the inventory plugin used to sync from vCenter. The community.vmware collection is deprecated in favor of the newer vmware.vmware collection. The selection is saved as the \\\"plugin\\\" key in the source variables.\"],\"kALwhk\":[\"seconds\"],\"kDWprA\":[\"Deze argumenten worden gebruikt met de gespecificeerde module.\"],\"kEhyki\":[\"Veld eindigt op waarde.\"],\"kLja4m\":[\"Gestart door\"],\"kLk5bG\":[\"Startbericht\"],\"kNUkGV\":[\"Type opzoeken\"],\"kNfXib\":[\"Naam van de module\"],\"kODvZJ\":[\"Voornaam\"],\"kOVkPY\":[\"Instantie wisselen\"],\"kP-3Hw\":[\"Terug naar inventarissen\"],\"kQerRU\":[\"Dit veld mag geen spaties bevatten\"],\"kX-GZH\":[\"Taak opnieuw starten\"],\"kXzl6Z\":[\"Bronvariabelen\"],\"kYDvK4\":[\"Inclusief bestand\"],\"kah1PX\":[\"Bekijk YAML-voorbeelden op\"],\"kaux7o\":[\"Lokale groepen en hosts overschrijven op grond van externe inventarisbron\"],\"kgtWJ0\":[\"Selecteer de instantiegroepen waarop dit taaksjabloon moet worden uitgevoerd.\"],\"kiMHN-\":[\"Systeemcontroleur\"],\"kjrq_8\":[\"Meer informatie\"],\"kkDQ8m\":[\"Donderdag\"],\"kkc8HD\":[\"Eenvoudig inloggen inschakelen voor uw \",[\"brandName\"],\" toepassingen\"],\"kpRn7y\":[\"Vragen verwijderen\"],\"kpnWnY\":[\"Na elke projectupdate waarbij de SCM-revisie verandert, vernieuwt u de inventaris van de geselecteerde bron voordat u projecttaken uitvoert. Dit is bedoeld voor statische content, zoals het Ansible inventory .ini bestandsformaat.\"],\"ks-HYT\":[\"Gebruikersmachtigingen toevoegen\"],\"ks71ra\":[\"Uitzonderingen\"],\"kt8V8M\":[\"Selecteer een branch voor de workflow.\"],\"ktPOqw\":[\"Raadpleeg de\"],\"kuIbuV\":[\"Gezondheidscontroles kunnen alleen worden uitgevoerd op uitvoeringsknooppunten.\"],\"ku__5b\":[\"Seconde\"],\"kyAi7k\":[\"Instantie\"],\"kyHUFI\":[\"Wachtwoord kluis | \",[\"credId\"]],\"kyfr2I\":[\"Indien aangevinkt, worden alle hosts en groepen die eerder aanwezig waren op de externe bron maar nu zijn verwijderd, uit de inventaris verwijderd. Hosts en groepen die niet door de inventarisbron werden beheerd, worden gepromoveerd naar de volgende handmatig gemaakte groep, of als er geen handmatig gemaakte groep is om ze naartoe te promoveren, blijven ze in de standaardgroep \\\"all\\\" voor de inventaris.\"],\"kz7G1W\":[\"Weet u zeker dat u de \",[\"0\"],\" toegang vanuit \",[\"1\"],\" wilt verwijderen? Als u dat doet, heeft dat gevolgen voor alle leden van het team.\"],\"l4MzBY\":[[\"update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" seconde\"],\"other\":[\"#\",\" seconden\"]}]],\"l4k9lc\":[\"Eerste knooppunt\"],\"l5XUoS\":[\"Toegangsgegevens Webhook\"],\"l75CjT\":[\"Ja\"],\"l9ZmWD\":[[\"scm_update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" seconde\"],\"other\":[\"#\",\" seconden\"]}]],\"lCF0wC\":[\"Vernieuwen\"],\"lJFsGr\":[\"Nieuwe instantiegroep maken\"],\"lKxoCA\":[\"Taakgebeurtenissen uitklappen\"],\"lM9cbX\":[\"Houd er rekening mee dat je de groep na het loskoppelen nog steeds in de lijst kunt zien als de host ook lid is van de kinderen van die groep. Deze lijst toont alle groepen waaraan de verhuurder direct en indirect is gekoppeld.\"],\"lURfHJ\":[\"Sectie samenvouwen\"],\"lWkKSO\":[\"min\"],\"lWmv3p\":[\"Inventarisbronnen\"],\"lYDyXS\":[\"Smart-inventaris\"],\"l_jRvf\":[\"Draaiboek voltooid\"],\"lfoFSg\":[\"Host verwijderen\"],\"lgm7y2\":[\"bewerken\"],\"lgphOX\":[\"Verwachte waarde\"],\"lhgU4l\":[\"Sjabloon niet gevonden.\"],\"lhkaAC\":[\"Proefperiode\"],\"ljGeYw\":[\"Normale gebruiker\"],\"lk5WJ7\":[\"Hostnaam-\",[\"0\"]],\"lkgIYt\":[\"Pagerduty\"],\"lo-rJO\":[\"Omlaag pannen\"],\"ltvmAF\":[\"Toepassing niet gevonden.\"],\"lu2qW5\":[\"Iedere\"],\"lucaxq\":[\"Kan logboek aggregator niet inschakelen zonder logboek aggregator host en logboek aggregator type op te geven.\"],\"luxcrf\":[\"Meer informatie voor \",[\"label\"]],\"lyjq5X\":[\"Slack\"],\"m-eV2_\":[\"Containergroep niet gevonden.\"],\"m16xKo\":[\"Toevoegen\"],\"m1tKEz\":[\"Systeembeheerders hebben onbeperkte toegang tot alle bronnen.\"],\"m2ErDa\":[\"Mislukking\"],\"m3k6kn\":[\"Kan de synchronisatie van de geconstrueerde voorraadbron niet annuleren\"],\"m5MOUX\":[\"Terug naar hosts\"],\"mGJIOu\":[\"Deze samengestelde inventarisinvoer\\n maakt een groep voor beide categorieën en gebruikt\\n de limiet (hostpatroon) om alleen hosts te retourneren die\\n zich in de doorsnede van die twee groepen bevinden.\"],\"mNBZ1R\":[\"Opmerking: dit veld gaat ervan uit dat de naam van de remote «origin» is.\"],\"mOFgdC\":[\"Maximum\"],\"mPiYpP\":[\"Typen knooppuntstatus\"],\"mSv_7k\":[\"Afgelopen drie jaar\"],\"mXRKES\":[\"LDAP4\"],\"mXfNlE\":[\"In dit schema ontbreken de vereiste vragenlijstwaarden\"],\"mYGY3B\":[\"Datum\"],\"mZiQNk\":[\"Escalatie van bevoegdheden: indien ingeschakeld, voer dit playbook uit als beheerder.\"],\"m_tELA\":[\"Terugzetten annuleren\"],\"ma7cO9\":[\"Kan groep \",[\"0\"],\" niet verwijderen.\"],\"mahPLs\":[\"Wachtwoord verhoging van rechten\"],\"mcGG2z\":[[\"minutes\"],\" min \",[\"seconds\"],\" sec\"],\"mdNruY\":[\"API-token\"],\"mgJ1oe\":[\"Verwijderen bevestigen\"],\"mgjN5u\":[\"Instantie van instantiegroep loskoppelen?\"],\"mhg7Av\":[\"Ad-hoc-opdracht uitvoeren\"],\"mi9ffh\":[\"Hostdetails\"],\"mk4anB\":[\"Browserstandaard\"],\"mlDUq3\":[\"Gewijzigd door (gebruikersnaam)\"],\"mnm1rs\":[\"GitHub-standaard\"],\"moZ0VP\":[\"Synchronisatiestatus\"],\"momgZ_\":[\"Naam van het workflowtaaksjabloon.\"],\"mqAOoN\":[\"Kies een draaiboekmap\"],\"n-37ya\":[\"Lokale autorisatie uitschakelen bevestigen\"],\"n-LISx\":[\"Er is een fout opgetreden bij het opslaan van de workflow.\"],\"n-ZioH\":[\"Fout bij ophalen bijgewerkt project\"],\"n-qmM7\":[\"Selecteer een JSON-geformatteerde serviceaccountsleutel om de volgende velden automatisch in te vullen.\"],\"n12Go4\":[\"Kan gerelateerde groepen niet laden.\"],\"n60kiJ\":[\"* Dit veld wordt met behulp van de opgegeven referentie opgehaald uit een extern geheimbeheersysteem.\"],\"n6mYYY\":[\"Workflow Time-outbericht\"],\"n9Idrk\":[\"(Beperkt tot de eerste 10)\"],\"n9lz4A\":[\"Mislukte taken\"],\"nBAIS_\":[\"Evenementinformatie weergeven\"],\"nC35Na\":[\"Are you sure you want delete the group below?\"],\"nCU-1E\":[\"Maakt het maken van een provisioning-\\n callback-URL mogelijk. Met de URL kan een host contact opnemen met \",[\"brandName\"],\"\\n en een configuratie-update aanvragen met behulp van deze taak-\\n sjabloon\"],\"nCY9IL\":[\"Host overgeslagen\"],\"nDjIzD\":[\"Projectdetails weergeven\"],\"nGbNEN\":[\"Tijd in seconden om een project als actueel te beschouwen. Tijdens taakuitvoeringen en callbacks evalueert het taaksysteem de tijdstempel van de laatste projectupdate. Als deze ouder is dan de cachetime-out, wordt deze niet als actueel beschouwd en wordt er een nieuwe projectupdate uitgevoerd.\"],\"nI54lc\":[\"Verwijder het project alvorens te synchroniseren\"],\"nJPBvA\":[\"Bestand, map of script\"],\"nJTOTZ\":[\"De uitvoeringsomgeving die zal worden gebruikt voor taken binnen deze organisatie. Dit wordt gebruikt als terugvalpunt wanneer er geen uitvoeringsomgeving expliciet is toegewezen op project-, taaksjabloon- of workflowniveau.\"],\"nLGsp4\":[\"Schakel een enquête in voor dit workflowtaaksjabloon.\"],\"nMiE53\":[\"Ingeschakelde variabele\"],\"nOhz3x\":[\"Afmelden\"],\"nPH1Cr\":[\"Deze uitvoeringsomgevingen kunnen worden gebruikt door andere bronnen die erop vertrouwen. Weet u zeker dat u ze toch wilt verwijderen?\"],\"nQOwDS\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"dayOfWeek\"]],\"4\":[\"The fourth \",[\"dayOfWeek\"]],\"5\":[\"The fifth \",[\"dayOfWeek\"]],\"one\":[\"The first \",[\"dayOfWeek\"]],\"two\":[\"The second \",[\"dayOfWeek\"]]}]],\"nRXCOn\":[\"Aantal mislukte hosts\"],\"nSTT11\":[\"Opnieuw starten vanaf:\"],\"nTENWI\":[\"Terug naar abonnementenbeheer.\"],\"nU16mp\":[\"Cache time-out\"],\"nZPX7r\":[\"Waarschuwing: niet-opgeslagen wijzigingen\"],\"nZW6P0\":[\"Lokale tijdzone\"],\"nZYB4j\":[\"Geen schijfstatus beschikbaar\"],\"nZYxse\":[\"Host van groep loskoppelen?\"],\"n_qDNz\":[\"Switch to dark mode\"],\"naCW6Z\":[\"April\"],\"ncxIQL\":[\"Een of meer instanties kunnen niet worden losgekoppeld.\"],\"neiOWk\":[\"Bekijk hier de opgebouwde inventarisdocumentatie\"],\"nfnm9D\":[\"Naam van organisatie\"],\"ng00aZ\":[\"Hostfilter\"],\"nhxAdQ\":[\"Trefwoord\"],\"nlsWzF\":[\"Voeg vragenlijstvragen toe.\"],\"nnY7VU\":[\"Subdomein Pagerduty\"],\"noGZlf\":[\"Cache time-out (seconden)\"],\"npGo-z\":[\"Aanmelden met \",[\"label\"]],\"nuh_Wq\":[\"Webhook-URL\"],\"nvUq8j\":[\"1 (Uitgebreid)\"],\"nzozOC\":[\"Gebruiker verwijderen\"],\"nzr1qE\":[\"Bestand uploaden geweigerd. Selecteer één .json-bestand.\"],\"o-JPE2\":[\"Geen vragenlijstvragen gevonden.\"],\"o0RwAq\":[\"Aanmelden met GitHub Enterprise\"],\"o0x5-R\":[\"Waarde voor dit veld selecteren\"],\"o4NRE0\":[\"Geavanceerde invoer zoekwaarden\"],\"o5J6dR\":[\"Specificeer de voorwaarden waaronder dit knooppunt moet worden uitgevoerd\"],\"o9R2tO\":[\"SSL-verbinding\"],\"oABS9f\":[\"Geef een waarde op voor dit veld of selecteer de optie Melding bij opstarten.\"],\"oB5EwG\":[\"Extern geheimbeheersysteem\"],\"oBmCtD\":[\"Are you sure you want delete the groups below?\"],\"oC5JSb\":[\"Kan de bijgewerkte projectgegevens niet ophalen.\"],\"oCKCYp\":[\"Bericht is verzonden\"],\"oEijQ7\":[\"Hoofdletterongevoelige versie van startswith.\"],\"oFtmtl\":[\"Select the inventory containing the hosts\\n you want this job to manage.\"],\"oGKq12\":[\"Construeer 2 groepen, beperk tot snijpunt\"],\"oH1Qle\":[\"Webhook-URL voor dit workflowtaaksjabloon.\"],\"oHOOxn\":[\"Standaard verzamelen we analysegegevens over het servicegebruik en verzenden deze naar Red Hat. Er zijn twee categorieën gegevens die door de service worden verzameld. Zie <0>deze Tower-documentatiepagina voor meer informatie. Schakel de volgende selectievakjes uit om deze functie uit te schakelen.\"],\"oII7vS\":[\"GitHub-instellingen\"],\"oKMFX4\":[\"Nooit bijgewerkt\"],\"oKbBFU\":[\"# source with sync failures.\"],\"oNOjE7\":[\"Einddatum/-tijd\"],\"oNZQUQ\":[\"Credential om te authenticeren met Kubernetes of OpenShift\"],\"oQqtoP\":[\"Terug naar beheerderstaken\"],\"oRt7Uv\":[[\"interval\"],\" years\"],\"oTDA5P\":[[\"0\",\"plural\",{\"one\":[\"Deze instantie wordt momenteel gebruikt door andere resources. Weet u zeker dat u deze wilt verwijderen?\"],\"other\":[\"Het deprovisioneren van deze instanties kan gevolgen hebben voor andere resources die ervan afhankelijk zijn. Weet u zeker dat u ze toch wilt verwijderen?\"]}]],\"oWvSIB\":[\"Afzender e-mail\"],\"oX_mCH\":[\"Fout tijdens projectsynchronisatie\"],\"oZvDsd\":[[\"interval\"],\" hours\"],\"ocUvR-\":[\"False\"],\"ofO19Q\":[\"Aanmelden met GitHub Enterprise-teams\"],\"ofcQVG\":[\"Modus Niet-opgeslagen wijzigingen\"],\"olEUh2\":[\"Geslaagd\"],\"opS--k\":[\"Terug naar instantiegroepen\"],\"orh4t6\":[\"Host OK\"],\"osCeRO\":[\"Azure AD-instellingen weergeven\"],\"ot7qsv\":[\"Alle filters wissen\"],\"ovBPCi\":[\"Standaard\"],\"owBGkJ\":[\"Einde kwam niet overeen met een verwachte waarde (\",[\"0\"],\")\"],\"owQ8JH\":[\"Instantiegroep toevoegen\"],\"ozbhWy\":[\"Fout bij verwijderen\"],\"p-nfFx\":[\"Sleep een bestand hierheen of blader om te uploaden\"],\"p-ngUo\":[\"Volgen ongedaan maken\"],\"p-pp9U\":[\"string\"],\"p2LEhJ\":[\"Persoonlijke toegangstoken\"],\"p2_GCq\":[\"Wachtwoord bevestigen\"],\"p3PM8G\":[\"Opnieuw starten vanaf eerste knooppunt\"],\"p6-JME\":[\"De eerste haalt alle referenties op. De tweede haalt de Github pull request nummer 62 op; in dit voorbeeld moet de branch «pull/62/head» zijn.\"],\"pAtylB\":[\"Niet gevonden\"],\"pCCQER\":[\"Wereldwijd beschikbaar\"],\"pH8j40\":[\"Actieve hosts die eerder zijn verwijderd\"],\"pHyx6k\":[\"Meerkeuze-opties (één keuze mogelijk)\"],\"pKQcta\":[\"Podspecificatie aanpassen\"],\"pOJNDA\":[\"opdracht\"],\"pOd3wA\":[\"Druk op 'Enter' om meer antwoordkeuzen toe te voegen. Eén antwoordkeuze per regel.\"],\"pOhwkU\":[\"Deze actie ontkoppelt de volgende rol van \",[\"0\"],\":\"],\"pRZ6hs\":[\"Uitvoeren op\"],\"pSypIG\":[\"Beschrijving tonen\"],\"pYENvg\":[\"Type authenticatieverlening\"],\"pZJ0-s\":[\"Maximaal aantal vorken om toe te staan voor alle taken die tegelijkertijd op deze groep worden uitgevoerd. Nul betekent dat er geen limiet wordt afgedwongen.\"],\"pa1SrG\":[[\"interval\"],\" days\"],\"peCAyQ\":[\"RADIUS-instellingen weergeven\"],\"pfw0Wr\":[\"ALLE\"],\"pguZh2\":[\"Maak variabelen van jinja2-expressies. Dit kan nuttig zijn\\n als de samengestelde groepen die u definieert niet de verwachte\\n hosts bevatten. Dit kan worden gebruikt om hostvars toe te voegen vanuit expressies zodat\\n u weet wat de resulterende waarden van die expressies zijn.\"],\"phTgAm\":[\"Het is moeilijk om een specificatie te geven voor\\n de inventaris voor Ansible-facts, omdat u om\\n de systeemfacts te vullen een playbook moet uitvoeren tegen\\n de inventaris met `gather_facts: true`. De\\n werkelijke facts verschillen van systeem tot systeem.\"],\"pkY73W\":[\"Rocket.Chat\"],\"pn7Xy3\":[\"Zie Django\"],\"poMgBa\":[\"Vraag om SCM-branch bij opstarten.\"],\"ppcQy0\":[\"Zoom instellen op 100% en grafiek centreren\"],\"prydaE\":[\"Mislukte projectsynchronisaties\"],\"pw2VDK\":[\"De laatste \",[\"weekday\"],\" van \",[\"month\"]],\"q-Uk_P\":[\"Een of meer typen toegangsgegevens kunnen niet worden verwijderd.\"],\"q-hNag\":[\"Collectie\"],\"q45OlW\":[\"Regio's\"],\"q5tQBE\":[\"Zet type op uitgeschakeld voor verwant zoekveld fuzzy zoekopdrachten\"],\"q67y3T\":[\"Berichtsjabloon niet gevonden.\"],\"qAlZNb\":[\"U kunt niet reageren op de volgende workflowgoedkeuringen: \",[\"itemsUnableToDeny\"]],\"qCUUnr\":[\"Geen resterende hosts\"],\"qChjCy\":[\"Eerste uitvoering\"],\"qD-pvR\":[\"ID van het dashboard (optioneel)\"],\"qEMgTP\":[\"Fout tijdens synchronisatie inventarisbronnen\"],\"qJK-de\":[\"Aanmelden met SAML \"],\"qS0GhO\":[\"Uitvoeringsomgeving ontbreekt\"],\"qSSVmd\":[\"Bestemmingskanalen of -gebruikers\"],\"qSSg1L\":[\"Link naar een beschikbaar knooppunt\"],\"qWD0iN\":[\"Deze gegevens worden gebruikt om\\n toekomstige releases van de software te verbeteren en om\\n Automation Analytics te leveren.\"],\"qXRYa2\":[\"Submodules laatste binding op vertakking tracken\"],\"qYkrfg\":[\"Provisioning terugkoppelingsdetails\"],\"qZ2MTC\":[\"Dit zijn de modules waar \",[\"brandName\"],\" commando's tegen kan uitvoeren.\"],\"qgjtIt\":[\"Convergentie\"],\"qlhQw_\":[\"Inventarissynchronisatie\"],\"qliDbL\":[\"Extern archief\"],\"qlwLcm\":[\"Probleemoplossen\"],\"qmBmJJ\":[\"Dit is de enige keer dat het cliëntgeheim wordt getoond.\"],\"qmYgP7\":[\"goedgekeurd\"],\"qqeAJM\":[\"Nooit\"],\"qtFFSS\":[\"Herziening updaten bij opstarten\"],\"qtaMu8\":[\"Inventaris (naam)\"],\"qvCD_i\":[\"Voorbeelden zijn onder meer:\"],\"qwaCoN\":[\"Update broncontrole\"],\"qxZ5RX\":[\"hosts\"],\"qznBkw\":[\"Modus Workflowlink\"],\"r6Aglb\":[\"Geef injectoren op met JSON- of YAML-syntaxis. Raadpleeg de documentatie voor Ansible Tower voor voorbeeldsyntaxis.\"],\"r6y-jM\":[\"Waarschuwing\"],\"r6zgGo\":[\"December\"],\"r8ojWq\":[\"Reset bevestigen\"],\"r8oq0Y\":[\"Afgelopen 24 uur\"],\"rBdPPP\":[\"Kan \",[\"name\"],\" niet verwijderen.\"],\"rE95l8\":[\"Type client\"],\"rG3WVm\":[\"Selecteren\"],\"rHK_Sg\":[\"Aangepaste virtuele omgeving \",[\"virtualEnvironment\"],\" moet worden vervangen door een uitvoeringsomgeving. Raadpleeg voor meer informatie over het migreren van uitvoeringsomgevingen <0>de documentatie.\"],\"rK7UBZ\":[\"Alle hosts opnieuw starten\"],\"rKS_55\":[\"Feitenopslag: indien ingeschakeld, worden de verzamelde feiten opgeslagen zodat ze op hostniveau kunnen worden bekeken. Feiten worden bewaard en tijdens runtime in de feitencache geïnjecteerd.\"],\"rKTFNB\":[\"Soort toegangsgegevens verwijderen\"],\"rLznGJ\":[\"Een Jinja2-sjabloon dat wordt gerenderd met upstream set_stats-artefacten wanneer de goedkeuring wordt gemaakt. Gebruik dit om de goedkeurder relevante context uit eerdere taakstappen te tonen. Beschikbare variabelen komen uit de set_stats-gegevens van bovenliggende knooppunten.\"],\"rMrKOB\":[\"Kan project niet synchroniseren.\"],\"rOZRCa\":[\"Workflowlink\"],\"rSYkIY\":[\"Dit veld moet een getal zijn\"],\"rXhu41\":[\"2 (Foutopsporing)\"],\"rYHzDr\":[\"Items per pagina\"],\"r_IfWZ\":[\"Inventaris bewerken\"],\"rdUucN\":[\"Voorvertoning\"],\"rfYaVc\":[\"Antwoord naam variabele\"],\"rfpIXM\":[\"Vraag om instantiegroepen bij opstarten.\"],\"rfx2oA\":[\"Workflow Berichtenbody in behandeling\"],\"riBcU5\":[\"IRC-bijnaam\"],\"rjVfy3\":[\"Workflowdocumentatie\"],\"rjyWPb\":[\"Januari\"],\"rmb2GE\":[\"Geweigerd door \",[\"0\"],\" - \",[\"1\"]],\"rmt9Tu\":[\"Totaal gastheren\"],\"ruhGSG\":[\"Synchronisatie van inventarisbron annuleren\"],\"rvia3m\":[\"Diversen authenticatie\"],\"rw1pRJ\":[\"Bundel downloaden\"],\"rwWNpy\":[\"Inventarissen\"],\"s-MGs7\":[\"Hulpbronnen\"],\"s2xYUy\":[\"Lokale variabelen overschrijven op grond van externe inventarisbron\"],\"s3KtlK\":[\"Dit schema heeft geen voorvallen vanwege de geselecteerde uitzonderingen.\"],\"s4Qnj2\":[\"Uitvoeringsomgeving\"],\"s4fge-\":[\"Afgelopen maand\"],\"s5aIEB\":[\"Workflow-taaksjabloon verwijderen\"],\"s5mACA\":[\"Instantiedetails\"],\"s5r5nt\":[[\"0\",\"plural\",{\"one\":[\"Deze instantiegroep wordt momenteel gebruikt door andere resources. Weet u zeker dat u deze wilt verwijderen?\"],\"other\":[\"Het verwijderen van deze instantiegroepen kan invloed hebben op andere resources die ervan afhankelijk zijn. Weet u zeker dat u ze toch wilt verwijderen?\"]}]],\"s6F6Ks\":[\"Geen output gevonden voor deze taak.\"],\"s70SJY\":[\"Instellingen voor logboekregistratie\"],\"s8hQty\":[\"Geef alle taken weer.\"],\"s9EKbs\":[\"SSL-verificatie uitschakelen\"],\"sAz1tZ\":[\"loskoppelen bevestigen\"],\"sBJ5MF\":[\"Bronnen\"],\"sCEb_0\":[\"Geef alle inventarishosts weer.\"],\"sGodAp\":[\"Overschrijven Podspec\"],\"sMDRa_\":[\"Terug naar groepen\"],\"sOMf4x\":[\"Recente sjablonen\"],\"sSFxX6\":[\"Herziening bijwerken bij starten taak\"],\"sTkKoT\":[\"Selecteer een rij om te weigeren\"],\"sUyFTB\":[\"Doorverwijzen naar dashboard\"],\"sV3kNp\":[\"Deze instantiegroep wordt momenteel door andere bronnen gebruikt. Weet u zeker dat u hem wilt verwijderen?\"],\"sVh4-e\":[\"Deze link verwijderen\"],\"sW5OjU\":[\"verplicht\"],\"sZif4m\":[\"Verwante groep(en) loskoppelen?\"],\"s_XkZs\":[\"BEGINNEN\"],\"s_r4Az\":[\"Dit veld moet een geheel getal zijn\"],\"sesAIn\":[\"Gebruik aangepaste berichten om de inhoud van\\n meldingen te wijzigen die worden verzonden wanneer een taak start, slaagt of mislukt. Gebruik\\n accolades om toegang te krijgen tot informatie over de taak:\"],\"sgRZMG\":[\"Hybride knooppunt\"],\"siJgSI\":[\"Gebruiker niet gevonden.\"],\"sjMCOP\":[\"Laatst aangepast\"],\"sjVfrA\":[\"Opdracht\"],\"smFRaX\":[\"Er is al een opdracht gestart\"],\"sqMsvU\":[[\"0\",\"plural\",{\"one\":[\"#\",\" bron met synchronisatiefouten.\"],\"other\":[\"#\",\" bronnen met synchronisatiefouten.\"]}]],\"sr4LMa\":[\"Inventarisbron\"],\"svR3aM\":[\"OpenStack\"],\"svy2x9\":[\"Retourneert resultaten die aan dit filter of aan andere filters voldoen.\"],\"sxkWRg\":[\"Geavanceerd\"],\"syupn5\":[\"Merkimago\"],\"syyeb9\":[\"Eerste\"],\"t-R8-P\":[\"Uitvoering\"],\"t2q1xO\":[\"Schema bewerken\"],\"t4v_7X\":[\"Selecteer een knooppunttype\"],\"t9QlBd\":[\"November\"],\"tRm9qR\":[\"Tags zijn handig wanneer u een groot playbook heeft en een specifiek deel van een play of taak wilt uitvoeren. Gebruik komma's om meerdere tags te scheiden. Raadpleeg de documentatie voor details over het gebruik van tags.\"],\"tVEot_\":[[\"0\",\"plural\",{\"one\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"other\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"]}]],\"tXkhj_\":[\"Starten\"],\"t_YqKh\":[\"Verwijderen\"],\"tbSVlt\":[\"Gebruikerstoegang verwijderen\"],\"tfDRzk\":[\"Opslaan\"],\"tfh2eq\":[\"Klik om een nieuwe link naar dit knooppunt te maken.\"],\"tgPwON\":[\"Operator\"],\"tgSBSE\":[\"Link verwijderen\"],\"tgWuMB\":[\"Gewijzigd\"],\"thJljW\":[\"WAARSCHUWING: \"],\"toJdZA\":[\"Reorder\"],\"tpCmSt\":[\"policy rules.\"],\"tqlcfo\":[\"Deprovisionering\"],\"trjiIV\":[\"Koppelen peer mislukt.\"],\"tst44n\":[\"Gebeurtenissen\"],\"twE5a9\":[\"Kan toegangsgegevens niet verwijderen.\"],\"txNbrI\":[\"Vertakking broncontrole\"],\"ty2DZX\":[\"Deze organisatie wordt momenteel door andere bronnen gebruikt. Weet u zeker dat u haar wilt verwijderen?\"],\"tzgOKK\":[\"Hieraan is reeds gevolg gegeven\"],\"u-sh8m\":[\"/ (projectroot)\"],\"u4ex5r\":[\"Juli\"],\"u4n8Fm\":[\"Kan peers niet verwijderen.\"],\"u4x6Jy\":[\"Terug naar taken\"],\"u5AJST\":[\"Het aantal parallelle of gelijktijdige processen dat gebruikt wordt bij het uitvoeren van het draaiboek. Als u geen waarde invoert, wordt de standaardwaarde van het Ansible-configuratiebestand gebruikt. U vindt meer informatie\"],\"u7f6WK\":[\"Geef alle workflowgoedkeuringen weer.\"],\"u84wS1\":[\"Fout bij annuleren taak\"],\"uAQUqI\":[\"Status\"],\"uAhZbx\":[\"Inventarisbronnen met fouten\"],\"uCjD1h\":[\"Uw sessie is verlopen. Log in om verder te gaan waar u gebleven was.\"],\"uImfEm\":[\"Bericht Workflow in behandeling\"],\"uJz8NJ\":[\"Zoeken is uitgeschakeld terwijl de taak wordt uitgevoerd\"],\"uPRp5U\":[\"Opzoeken annuleren\"],\"uTDtiS\":[\"Vijfde\"],\"uUehLT\":[\"Wachten\"],\"uVu1Yt\":[\"Type instellen selecteren\"],\"uYtvvN\":[\"Selecteer een project voordat u de uitvoeringsomgeving bewerkt.\"],\"ucSTeu\":[\"Gemaakt door (gebruikersnaam)\"],\"ucgZ0o\":[\"Organisatie\"],\"ugZpot\":[\"Externe inloggegevens testen\"],\"ulRNXw\":[\"Dragging cancelled. List is unchanged.\"],\"upC07l\":[\"Survey Disabled\"],\"uuPCEU\":[\"If you want the Inventory Source to update on launch , click on Update on Launch, and also go to \"],\"uyJsf6\":[\"Over\"],\"uzTiFQ\":[\"Terug naar schema's\"],\"v-CZEv\":[\"Melding bij opstarten\"],\"v-EbDj\":[\"Probleemoplossingsinstellingen\"],\"v-M-LP\":[\"Sjabloon opstarten\"],\"v0urVb\":[\"Als u geen abonnement hebt, kunt u\\n Red Hat bezoeken om een proefabonnement te verkrijgen.\"],\"v1kQyJ\":[\"Webhooks\"],\"v2dMHj\":[\"Opnieuw opstarten met hostparameters\"],\"v2gmVS\":[\"Met deze actie wordt het volgende zacht verwijderd:\"],\"v45yUL\":[\"loskoppelen\"],\"v7vAuj\":[\"Totale taken\"],\"vCS_TJ\":[\"Kan inventarisbron \",[\"name\"],\" niet verwijderen.\"],\"vEr6TL\":[\"Deze argumenten worden gebruikt met de opgegeven module. U kunt informatie over \",[\"0\"],\" vinden door te klikken op \"],\"vF82C6\":[\"Uitvoeren wanneer het bovenliggende knooppunt in een succesvolle status resulteert.\"],\"vFKI2e\":[\"Schema Regels\"],\"vFVhzc\":[\"SOCIAAL\"],\"vGVmd5\":[\"Dit veld wordt genegeerd, tenzij er een Ingeschakelde variabele is ingesteld. Als de ingeschakelde variabele overeenkomt met deze waarde, wordt de host bij het importeren ingeschakeld.\"],\"vGjmyl\":[\"Verwijderd\"],\"vHAaZi\":[\"Sla elke\"],\"vIb3RK\":[\"Nieuw schema toevoegen\"],\"vKRQJB\":[\"Veld voor het opgeven van een aangepaste Kubernetes of OpenShift Pod-specificatie.\"],\"vLyv1R\":[\"Verbergen\"],\"vPrMqH\":[\"Herziening #\"],\"vQHUI6\":[\"Indien aangevinkt, worden alle variabelen voor onderliggende groepen en hosts verwijderd en vervangen door die in de externe bron.\"],\"vTL8gi\":[\"Eindtijd\"],\"vUOn9d\":[\"Teruggeven\"],\"vYFWsi\":[\"Teams selecteren\"],\"vYuE8q\":[\"Verstreken tijd in seconden dat de taak is uitgevoerd\"],\"vZbIkJ\":[\"GitLab\"],\"vcH-SH\":[\"Bitbucket-datacenter\"],\"ve_jRy\":[\"Op voorwaarde\"],\"vgwVkd\":[\"UTC\"],\"vlHGDw\":[\"Geef extra opdrachtregelvariabelen door aan het playbook. Dit is de opdrachtregelparameter -e of --extra-vars voor ansible-playbook. Geef sleutel/waarde-paren op met YAML of JSON. Raadpleeg de documentatie voor een voorbeeldsyntaxis.\"],\"voRH7M\":[\"Voorbeelden:\"],\"vq1XXv\":[\"Nieuwe Smart-inventaris met het toegepaste filter maken\"],\"vq2WxD\":[\"Di\"],\"vq9gg6\":[\"U kunt niet reageren op de volgende workflowgoedkeuringen: \",[\"itemsUnableToApprove\"]],\"vqAmQC\":[\"Module\"],\"vvY8pz\":[\"Vraag om skip-tags bij opstarten.\"],\"vye-ip\":[\"Vraag om time-out bij opstarten.\"],\"vzsN_5\":[[\"interval\"],\" day\"],\"w07pgp\":[\"Vraag om uitgebreidheid bij opstarten.\"],\"w0kTk8\":[\"Opnieuw starten vanaf mislukt knooppunt\"],\"w14eW4\":[\"Geef alle tokens weer.\"],\"w1RiT6\":[[\"0\",\"plural\",{\"one\":[\"Deze inventarisbron wordt momenteel gebruikt door andere resources die ervan afhankelijk zijn. Weet u zeker dat u deze wilt verwijderen?\"],\"other\":[\"Het verwijderen van deze inventarisbronnen kan invloed hebben op andere resources die ervan afhankelijk zijn. Weet u zeker dat u ze toch wilt verwijderen?\"]}]],\"w2VTLB\":[\"Minder dan vergelijking.\"],\"w3EE8S\":[\"Geautomatiseerde hosts\"],\"w4j7js\":[\"Teamdetails weergeven\"],\"w6zx64\":[\"Browserstandaard gebruiken\"],\"wCnaTT\":[\"Veld vervangen door nieuwe waarde\"],\"wF-BAU\":[\"Inventaris toevoegen\"],\"wFnb77\":[\"Inventaris-id\"],\"wKEfMu\":[\"Verwerking van gebeurtenissen voltooid.\"],\"wO29qX\":[\"Organisatie niet gevonden.\"],\"wW08QA\":[\"Niet gelijk aan\"],\"wX6sAX\":[\"Afgelopen twee jaar\"],\"wXAVe-\":[\"Module-argumenten\"],\"wXB7k5\":[\"Geef een meldingskleur op. Aanvaardbare kleuren zijn hexadecimale\\n kleurcodes (voorbeeld: #3af of #789abc).\"],\"waFx9W\":[\"Beheerd\"],\"wdxz7K\":[\"Bron\"],\"wgNoIs\":[\"Alles selecteren\"],\"wkgHlv\":[\"Een nieuw knooppunt toevoegen\"],\"wlQNTg\":[\"Leden\"],\"wnizTi\":[\"Abonnement selecteren\"],\"wpT1VN\":[\"Voorwaarde\"],\"wpt6vB\":[\"LDAP2\"],\"wqXiR2\":[\"Geef extra opdrachtregelwijzigingen door. Er zijn twee ansible-opdrachtregelparameters: \"],\"wsggVq\":[\"Als dit niet is aangevinkt, blijven lokale kinderhosts en groepen die niet op de externe bron worden gevonden, onaangetast door het proces voor het bijwerken van de inventaris.\"],\"x-a4Mr\":[\"Webhook toegangsgegevens\"],\"x02hbg\":[\"Provisioning-callbacks: schakelt het maken van een provisioning-callback-URL in. Via de URL kan een host contact opnemen met Ansible AWX en een configuratie-update aanvragen met dit taaksjabloon.\"],\"x4Xp3c\":[\"bijgewerkt\"],\"x5DnMs\":[\"Laatste wijziging\"],\"x6_dAC\":[\"Gefedereerde inventaris\"],\"x6oT_o\":[\"Beschikbare hosts\"],\"x7PDL5\":[\"Logboekregistratie\"],\"x8uKc7\":[\"Instantiestaat\"],\"x9WS62\":[\"Annuleren \",[\"0\"]],\"xAYSEs\":[\"Starttijd\"],\"xAqth4\":[\"Instellingen Google OAuth 2.0 weergeven\"],\"xC9EVu\":[\"Geannuleerd knooppunt\"],\"xCJdfg\":[\"Wissen\"],\"xDr_ct\":[\"Einde\"],\"xESTou\":[\"Kan taak niet verwijderen.\"],\"xF5tnT\":[\"Wachtwoord kluis\"],\"xGQZwx\":[\"Containergroep toevoegen\"],\"xGVfLh\":[\"Doorgaan\"],\"xHZS6u\":[\"Succesvolle taken\"],\"xHokxV\":[[\"0\",\"plural\",{\"one\":[\"The selected job cannot be deleted due to insufficient permission or a running job status\"],\"other\":[\"The selected jobs cannot be deleted due to insufficient permissions or a running job status\"]}]],\"xHt036\":[\"Persoonlijke toegangstoken\"],\"xKQRBr\":[\"Maximumlengte\"],\"xM01Pk\":[\"Standaardantwoord\"],\"xONDaO\":[\"Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?\"],\"xOl1yT\":[\"Exact zoeken op naamveld.\"],\"xPO5w7\":[\"Aanmelden met GitHub\"],\"xPpkbX\":[\"Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway\"],\"xPxMOJ\":[\"Ongeldige tijdnotatie\"],\"xQioPk\":[\"Voorwaarden voor het uitvoeren van dit knooppunt wanneer er meerdere bovenliggende elementen zijn. Raadpleeg de\"],\"xSytdh\":[\"VOLTOOID:\"],\"xUhTCP\":[\"Kies een bron\"],\"xVhQZV\":[\"Vrij\"],\"xY9DEq\":[\"Het patroon dat gebruikt wordt om hosts in de inventaris te targeten. Door het veld leeg te laten, worden met alle en * alle hosts in de inventaris getarget. U kunt meer informatie vinden over hostpatronen van Ansible\"],\"xY9s5E\":[\"Time-out\"],\"x_Ej3K\":[\"Kies een antwoordtype of -indeling dat u als prompt voor de gebruiker wilt.\\n Raadpleeg de Ascender-documentatie voor aanvullende informatie over elke optie.\"],\"x_ugm_\":[\"Totaal aantal groepen\"],\"xa7N9Z\":[\"Login doorverwijzen URL overschrijven bewerken\"],\"xcaG5l\":[\"Workflow bewerken\"],\"xd2LI3\":[\"Verloopt op \",[\"0\"]],\"xdA_-p\":[\"Gereedschap\"],\"xe5RvT\":[\"Tabblad yaml\"],\"xefC7k\":[\"IRC-serverpoort\"],\"xeiujy\":[\"Tekst\"],\"xg771-\":[\"LDAP1\"],\"xhj1Rt\":[\"De door u opgevraagde pagina kan niet worden gevonden.\"],\"xi4nE2\":[\"Foutbericht\"],\"xnSIXG\":[\"Een of meer hosts kunnen niet worden verwijderd.\"],\"xoCdYY\":[\"Controleert of de waarde van het opgegeven veld voorkomt in de opgegeven lijst; verwacht een door komma's gescheiden lijst met items.\"],\"xoXoBo\":[\"Fout verwijderen\"],\"xrG8k4\":[\"Google Compute Engine\"],\"xtRU96\":[\"GitHub Enterprise-organisatie\"],\"xuYTJb\":[\"Kan taaksjabloon niet verwijderen.\"],\"xw06rt\":[\"De instelling komt overeen met de fabrieksinstelling.\"],\"xxTtJH\":[\"Reguliere expressie waarbij alleen overeenkomende hostnamen worden geïmporteerd. Het filter wordt toegepast als een nabewerkingsstap nadat eventuele filters voor inventarisplugins zijn toegepast.\"],\"y11WBZ\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"Geselecteerde taak annuleren\"],\"other\":[\"Geselecteerde taken annuleren\"]}]],\"y8ibKI\":[\"Instanties verwijderen\"],\"yCCaoF\":[\"Kan de vragenlijst niet bijwerken.\"],\"yDeNnS\":[\"Nieuw geconstrueerde inventaris aanmaken\"],\"yDifzB\":[\"Selectie bevestigen\"],\"yGS9cI\":[\"Gezond\"],\"yGUKlf\":[\"Beheertaken\"],\"yGfW7Y\":[\"Wijzig PROJECTS_ROOT bij het implementeren van \",[\"brandName\"],\" om deze locatie te wijzigen.\"],\"yMIahh\":[\"Welkom bij Red Hat Ansible Automation Platform!\\n Voltooi de onderstaande stappen om uw abonnement te activeren.\"],\"yMYuDg\":[\"Versie automatiseringscontroller\"],\"yMfU4O\":[\"Afzender e-mailbericht\"],\"yNcGa2\":[\"Toegangstoken vervallen\"],\"yOXgbH\":[\"Opmerking: Wanneer u het SSH-protocol voor GitHub of Bitbucket gebruikt, voert u alleen een SSH-sleutel in, geen gebruikersnaam (anders dan git). Bovendien ondersteunen GitHub en Bitbucket geen wachtwoordverificatie bij gebruik van SSH. Het alleen-lezen GIT-protocol (git://) gebruikt geen gebruikersnaam- of wachtwoordinformatie.\"],\"yQE2r9\":[\"Laden\"],\"yRiHPB\":[\"Voer een taak uit om deze lijst te vullen.\"],\"yRkqG9\":[\"Limiet\"],\"yRsSBw\":[\"Goedkeuringen\"],\"yUlffE\":[\"Opnieuw starten\"],\"yVgnJA\":[\"Het maximale aantal hosts dat door deze organisatie mag worden beheerd.\\n De waarde is standaard 0, wat betekent dat er geen limiet is. Raadpleeg de Ansible-\\n documentatie voor meer details.\"],\"yX3qAQ\":[\"Workflowtaaksjabloonnodes\"],\"yaG1CX\":[\"LDAP\"],\"yaX9sM\":[\"Workflowsjabloon\"],\"yb_fjw\":[\"Goedkeuring\"],\"ydoZpB\":[\"Taak niet gevonden.\"],\"ydw9CW\":[\"Mislukte hosts\"],\"yfG3F2\":[\"Directe sleutels\"],\"yjwMJ8\":[\"Hoe vaak is de host geautomatiseerd\"],\"yjyGja\":[\"Input uitbreiden\"],\"ylXj1N\":[\"Geselecteerd\"],\"yq6OqI\":[\"Dit is de enige keer dat de tokenwaarde en de bijbehorende ververste tokenwaarde worden getoond.\"],\"yqiwAW\":[\"Workflow annuleren\"],\"yrUyDQ\":[\"Stelt het huidige levenscyclusstadium van deze instantie in. Standaard is \\\"geïnstalleerd\\\".\"],\"yrwl2P\":[\"Conform\"],\"yuXsFE\":[\"Een of meer workflowgoedkeuringen kunnen niet worden verwijderd.\"],\"yuvDX_\":[[\"intervalValue\",\"plural\",{\"one\":[\"month\"],\"other\":[\"months\"]}]],\"ywSBEn\":[\"Fout in geassocieerde rol\"],\"yxDqcD\":[\"Machtigingscode vervallen\"],\"yy1cWw\":[\"Berichten aanpassen...\"],\"yz7wBu\":[\"Sluiten\"],\"yzQhLU\":[\"Beleid instantieminimum\"],\"yzdDia\":[\"Vragenlijst verwijderen\"],\"z-BNGk\":[\"Gebruikerstoken verwijderen\"],\"z0DcIS\":[\"versleuteld\"],\"z3XA1I\":[\"Host opnieuw proberen\"],\"z409y8\":[\"Webhookservice\"],\"z7NLxJ\":[\"Als u alleen de toegang voor deze specifieke gebruiker wilt verwijderen, verwijder deze dan uit het team.\"],\"z8mwbl\":[\"Minimaal percentage van alle instanties dat automatisch aan deze groep wordt toegewezen wanneer nieuwe instanties online komen.\"],\"zBO1TV\":[[\"numOccurrences\",\"plural\",{\"one\":[\"Na \",\"#\",\" keer\"],\"other\":[\"Na \",\"#\",\" keer\"]}]],\"zHcXAG\":[\"Laat dit veld leeg om de uitvoeringsomgeving globaal beschikbaar te maken.\"],\"zICM7E\":[\"Alle lokale wijzigingen vernietigen alvorens te synchroniseren\"],\"zJY4Uj\":[\"Draaiboek\"],\"zKJMiH\":[\"Draaiboekmap\"],\"zK_63z\":[\"Ongeldige gebruikersnaam of wachtwoord. Probeer het opnieuw.\"],\"zLsDix\":[\"ldap-gebruiker\"],\"zMKkOk\":[\"Terug naar organisaties\"],\"zN0nhk\":[\"Geef uw Red Hat- of Red Hat Satellite-toegangsgegevens op om Automatiseringsanalyse in te schakelen.\"],\"zQRgi-\":[\"Berichtstart wisselen\"],\"zTediT\":[\"Dit veld moet een getal zijn en een waarde tussen \",[\"min\"],\" en \",[\"max\"],\" hebben\"],\"zUIPys\":[\"Hosts toevoegen aan groep op basis van Jinja2-voorwaarden.\"],\"z_PZxu\":[\"Kan workflowgoedkeuring niet verwijderen.\"],\"zbLCH1\":[\"Type inventaris\"],\"zcQj5X\":[\"Selecteer eerst een sleutel\"],\"zdl7YZ\":[\"Bronpad selecteren\"],\"zeEQd_\":[\"Juni\"],\"zf7FzC\":[\"Toegangsgegevens voor authenticatie met Kubernetes of OpenShift. Moet van het type 'Kubernetes/OpenShift API Bearer Token' zijn. Indien leeg gelaten, wordt de serviceaccount van de onderliggende Pod gebruikt.\"],\"zfZydd\":[\"Modus Voorbeeld van vragenlijst\"],\"zfsBaJ\":[\"Meer informatie over Automatiseringsanalyse\"],\"zgInnV\":[\"Modis Weergave workflowknooppunt\"],\"zga9sT\":[\"OK\"],\"zhPLvU\":[\"Kan niet koppelen.\"],\"zhrjek\":[\"Groepen\"],\"zi_YNm\":[\"Kan \",[\"0\"],\" niet annuleren\"],\"zmu4-P\":[\"SID account\"],\"znG7ed\":[\"Draaiboek selecteren\"],\"znTz5r\":[\"Schema niet gevonden.\"],\"znuW_M\":[\"Zo ja, maak ongeldige vermeldingen een fatale fout, anders overslaan en\\n doorgaan.\"],\"zq0gmb\":[\"Periode selecteren\"],\"ztOzCj\":[\"Update bij opstarten\"],\"ztw2L3\":[\"Er moet een waarde in ten minste één invoerveld staan\"],\"zvfXp0\":[\"Berichtgoedkeuringen wisselen\"],\"zx4BuL\":[\"Week\"],\"zzDlyQ\":[\"Geslaagd\"],\"{count, plural, one {# fork} other {# forks}}\":[[\"count\",\"plural\",{\"one\":[\"#\",\" fork\"],\"other\":[\"#\",\" forks\"]}]]}")}; \ No newline at end of file diff --git a/awx/ui/src/locales/nl/messages.po b/awx/ui/src/locales/nl/messages.po index 5eaec5ab..eade3793 100644 --- a/awx/ui/src/locales/nl/messages.po +++ b/awx/ui/src/locales/nl/messages.po @@ -57,7 +57,7 @@ msgid "TACACS+" msgstr "TACACS+" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:637 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:232 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:251 msgid "Workflow timed out message body" msgstr "Workflow Berichtbody voor time-out" @@ -115,6 +115,10 @@ msgstr "Selecteer de uitvoeromgeving waarbinnen u deze opdracht wilt uitvoeren." msgid "Add a new node between these two nodes" msgstr "Nieuw knooppunt toevoegen tussen deze twee knooppunten" +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:170 +msgid "Changed message" +msgstr "Wijzigingsbericht" + #: screens/Job/JobOutput/JobOutputSearch.js:120 msgid "Host Polling" msgstr "Hostpolling" @@ -148,7 +152,7 @@ msgid "Maximum number of forks to allow across all jobs running concurrently on msgstr "Maximaal aantal forks dat is toegestaan voor alle taken die gelijktijdig op deze groep worden uitgevoerd.\n" " Nul betekent dat er geen limiet wordt afgedwongen." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:341 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:349 #: screens/Inventory/InventorySources/InventorySourceListItem.js:89 msgid "Failed to cancel Inventory Source Sync" msgstr "Kan de synchronisatie van de inventarisbron niet annuleren" @@ -332,8 +336,8 @@ msgstr "Uit te checken branch. Naast branches kunt u tags, commit-hashes en will #: components/JobList/JobList.js:265 #: components/JobList/JobListItem.js:109 #: components/Lookup/ProjectLookup.js:134 -#: components/NotificationList/NotificationList.js:219 -#: components/NotificationList/NotificationListItem.js:34 +#: components/NotificationList/NotificationList.js:230 +#: components/NotificationList/NotificationListItem.js:36 #: components/PromptDetail/PromptDetail.js:125 #: components/RelatedTemplateList/RelatedTemplateList.js:200 #: components/TemplateList/TemplateList.js:219 @@ -433,7 +437,7 @@ msgstr "Klik om de taakdetails weer te geven" msgid "Sync Project" msgstr "Project synchroniseren" -#: components/NotificationList/NotificationList.js:194 +#: components/NotificationList/NotificationList.js:205 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:135 msgid "Grafana" msgstr "Grafana" @@ -513,7 +517,7 @@ msgstr "Gebeurtenis" msgid "Repeat Frequency" msgstr "Frequentie herhalen" -#: screens/Inventory/shared/Inventory.helptext.js:171 +#: screens/Inventory/shared/Inventory.helptext.js:172 msgid "Variables used to configure the constructed inventory plugin. For a detailed description of how to configure this plugin, see" msgstr "Variabelen die worden gebruikt om de geconstrueerde voorraadplug-in te configureren. Zie voor een gedetailleerde beschrijving van het configureren van deze plug-in" @@ -575,8 +579,8 @@ msgstr "Containergroep" msgid "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" msgstr "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" -#: components/NotificationList/NotificationList.js:220 -#: components/NotificationList/NotificationListItem.js:35 +#: components/NotificationList/NotificationList.js:231 +#: components/NotificationList/NotificationListItem.js:38 #: screens/Credential/shared/TypeInputsSubForm.js:46 #: screens/InstanceGroup/shared/ContainerGroupForm.js:79 #: screens/Instances/Shared/InstanceForm.js:95 @@ -600,7 +604,7 @@ msgid "You cannot select multiple vault credentials with the same vault ID. Doin msgstr "U kunt niet meerdere kluisreferenties met delfde kluis-ID selecteren. Als u dat wel doet, worden de andere met delfde kluis-ID automatisch gedeselecteerd." #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:334 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:342 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:350 #: screens/Project/ProjectDetail/ProjectDetail.js:354 msgid "Cancel Sync" msgstr "Synchronisatie annuleren" @@ -713,8 +717,8 @@ msgstr "Metrics" msgid "Create new credential Type" msgstr "Nieuw type toegangsgegevens maken" -#: screens/Inventory/shared/Inventory.helptext.js:103 -#: screens/Inventory/shared/Inventory.helptext.js:118 +#: screens/Inventory/shared/Inventory.helptext.js:104 +#: screens/Inventory/shared/Inventory.helptext.js:119 msgid "If you want the Inventory Source to update on launch, click on Update on Launch, and also go to " msgstr "Als u wilt dat de inventarisbron bij het starten wordt bijgewerkt, klikt u op Bijwerken bij starten en gaat u ook naar " @@ -732,7 +736,7 @@ msgid "Start Time" msgstr "Starttijd" #: screens/Inventory/shared/Inventory.helptext.js:48 -#: screens/Inventory/shared/Inventory.helptext.js:184 +#: screens/Inventory/shared/Inventory.helptext.js:185 msgid "Variables must be in JSON or YAML syntax. Use the radio button to toggle between the two." msgstr "Voer variabelen in met JSON- of YAML-syntaxis. Gebruik de radioknop om tussen de twee te wisselen." @@ -748,7 +752,7 @@ msgstr "Bestandsverschil" msgid "Relaunch from canceled node" msgstr "Opnieuw starten vanaf geannuleerd knooppunt" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:271 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:279 msgid "Cache timeout" msgstr "Cache time-out" @@ -828,7 +832,7 @@ msgstr "Voer een aantal voorvallen in." msgid "Fuzzy search on name field." msgstr "Fuzzy search op naamveld." -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:106 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:107 msgid "Ansible Controller Documentation." msgstr "Ansible Controller Documentatie." @@ -836,7 +840,7 @@ msgstr "Ansible Controller Documentatie." msgid "The Instance Groups to which this instance belongs." msgstr "De Instance Groups waartoe deze instantie behoort." -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:97 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:98 msgid "You may apply a number of possible variables in the\n" " message. For more information, refer to the" msgstr "U kunt een aantal mogelijke variabelen toepassen in het\n" @@ -885,7 +889,7 @@ msgstr "Werkstroomknooppunten" msgid "Overwrite" msgstr "Overschrijven" -#: components/NotificationList/NotificationList.js:195 +#: components/NotificationList/NotificationList.js:206 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:136 msgid "Hipchat" msgstr "Hipchat" @@ -920,7 +924,7 @@ msgstr "Vertakking broncontrole" msgid "Tabs" msgstr "Tabbladen" -#: screens/Template/Template.js:273 +#: screens/Template/Template.js:274 #: screens/Template/WorkflowJobTemplate.js:286 msgid "View Template Details" msgstr "Sjabloondetails weergeven" @@ -966,7 +970,7 @@ msgstr "{interval, plural, one {# jaar} other {# jaar}}" msgid "Inventory Source Sync" msgstr "Synchronisatie inventarisbronnen" -#: screens/Inventory/shared/Inventory.helptext.js:146 +#: screens/Inventory/shared/Inventory.helptext.js:147 msgid "Inventory Plugins" msgstr "Voorraadplugins" @@ -1036,7 +1040,7 @@ msgstr "1 (Info)" msgid "Set the instance enabled or disabled. If disabled, jobs will not be assigned to this instance." msgstr "Zet de instantie aan of uit. Indien uitgeschakeld, zullen er geen taken aan deze instantie worden toegewezen." -#: screens/Inventory/shared/Inventory.helptext.js:105 +#: screens/Inventory/shared/Inventory.helptext.js:106 msgid "and click on Update Revision on Launch." msgstr "en klik op Update Revision on Launch." @@ -1525,8 +1529,8 @@ msgstr "Een of meer taken kunnen niet worden verwijderd." msgid "Run Command" msgstr "Opdracht uitvoeren" -#: screens/Inventory/shared/Inventory.helptext.js:156 -#: screens/Inventory/shared/Inventory.helptext.js:179 +#: screens/Inventory/shared/Inventory.helptext.js:157 +#: screens/Inventory/shared/Inventory.helptext.js:180 msgid "plugin configuration guide." msgstr "plugin configuratiegids." @@ -1637,9 +1641,9 @@ msgstr "Nieuwe gefedereerde inventaris maken" #: components/Lookup/OrganizationLookup.js:141 #: components/Lookup/ProjectLookup.js:129 #: components/Lookup/ProjectLookup.js:159 -#: components/NotificationList/NotificationList.js:181 -#: components/NotificationList/NotificationList.js:218 -#: components/NotificationList/NotificationListItem.js:29 +#: components/NotificationList/NotificationList.js:192 +#: components/NotificationList/NotificationList.js:229 +#: components/NotificationList/NotificationListItem.js:31 #: components/OptionsList/OptionsList.js:48 #: components/PaginatedTable/PaginatedTable.js:76 #: components/PromptDetail/PromptDetail.js:115 @@ -1753,14 +1757,14 @@ msgstr "Nieuwe gefedereerde inventaris maken" #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:182 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:197 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:238 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:204 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:205 #: screens/Inventory/InventorySources/InventorySourceList.js:212 #: screens/Inventory/InventorySources/InventorySourceListItem.js:60 #: screens/Inventory/shared/ConstructedInventoryForm.js:66 #: screens/Inventory/shared/FederatedInventoryForm.js:56 #: screens/Inventory/shared/InventoryForm.js:50 #: screens/Inventory/shared/InventoryGroupForm.js:33 -#: screens/Inventory/shared/InventorySourceForm.js:133 +#: screens/Inventory/shared/InventorySourceForm.js:139 #: screens/Inventory/shared/SmartInventoryForm.js:46 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:98 #: screens/ManagementJob/ManagementJobList/ManagementJobList.js:91 @@ -1883,7 +1887,7 @@ msgstr "{automatedInstancesCount} sinds {automatedInstancesSinceDateTime}" msgid "No job data available" msgstr "Geen taakgegevens beschikbaar" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:309 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:317 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:22 msgid "Source variables" msgstr "Bronvariabelen" @@ -2020,7 +2024,7 @@ msgid "Confirm" msgstr "Bevestigen" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:526 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:142 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:143 msgid "Success message body" msgstr "Body succesbericht" @@ -2295,7 +2299,7 @@ msgstr "Mislukte hosts" msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?" msgstr "Deze uitvoeringsomgeving wordt momenteel gebruikt door andere bronnen. Weet u zeker dat u deze wilt verwijderen?" -#: components/NotificationList/NotificationList.js:196 +#: components/NotificationList/NotificationList.js:207 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:137 msgid "IRC" msgstr "IRC" @@ -2499,7 +2503,7 @@ msgstr "Externe logboekregistratie inschakelen" #: components/Sparkline/Sparkline.js:30 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:51 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:181 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:182 #: screens/Inventory/InventorySources/InventorySourceListItem.js:31 #: screens/Project/ProjectDetail/ProjectDetail.js:134 #: screens/Project/ProjectList/ProjectListItem.js:56 @@ -2539,7 +2543,7 @@ msgstr "Logboeksysteem dat feiten individueel bijhoudt inschakelen" msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" msgstr "Taaksjablonen met toegangsgegevens die om een wachtwoord vragen, kunnen niet worden geselecteerd tijdens het maken of bewerken van knooppunten" -#: screens/Inventory/shared/Inventory.helptext.js:193 +#: screens/Inventory/shared/Inventory.helptext.js:194 msgid "If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on. Note: If this setting is enabled and you provided an empty list, the global instance groups will be applied." msgstr "Indien ingeschakeld, voorkomt deze inventaris dat instantiegroepen voor een organisatie worden toegevoegd aan de lijst met voorkeursinstantiegroepen om gekoppelde taaksjablonen op uit te voeren. Opmerking: als deze instelling is ingeschakeld en u een lege lijst hebt opgegeven, worden de globale instantiegroepen toegepast." @@ -2676,7 +2680,7 @@ msgstr "Een of meer hosts kunnen niet worden losgekoppeld." #: components/Sparkline/Sparkline.js:27 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:48 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:178 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:179 #: screens/Inventory/InventorySources/InventorySourceListItem.js:28 #: screens/Project/ProjectDetail/ProjectDetail.js:131 #: screens/Project/ProjectList/ProjectListItem.js:53 @@ -2763,7 +2767,7 @@ msgstr "Item OK" msgid "Icon URL" msgstr "Icoon-URL" -#: screens/Inventory/shared/InventorySourceForm.js:159 +#: screens/Inventory/shared/InventorySourceForm.js:165 msgid "Select the Instance Groups this inventory source sync should run on. If unset, the sync runs on the instance groups of the inventory or its organization." msgstr "Selecteer de instantiegroepen waarop de synchronisatie van deze inventarisbron moet worden uitgevoerd. Indien niet ingesteld, wordt de synchronisatie uitgevoerd op de instantiegroepen van de inventaris of de bijbehorende organisatie." @@ -2772,7 +2776,7 @@ msgid "Select the port that Receptor will listen on for incoming connections, e. msgstr "Selecteer de poort waarop Receptor zal luisteren voor inkomende verbindingen, bijv. 27199." #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:517 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:133 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:134 msgid "Success message" msgstr "Succesbericht" @@ -2829,7 +2833,7 @@ msgstr "HTTP-methode" msgid "The execution environment that will be used for jobs inside of this organization. This will be used as a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." msgstr "De uitvoeringsomgeving die wordt gebruikt voor taken binnen deze organisatie. Deze wordt gebruikt als terugvaloptie wanneer er niet expliciet een uitvoeringsomgeving is toegewezen op project-, taaksjabloon- of workflowniveau." -#: components/NotificationList/NotificationList.js:190 +#: components/NotificationList/NotificationList.js:201 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:131 msgid "Notification type" msgstr "Berichttype" @@ -2863,7 +2867,7 @@ msgstr "Verwijdering van link annuleren" msgid "There was an error loading this content. Please reload the page." msgstr "Er is een fout opgetreden bij het laden van deze inhoud. Laad de pagina opnieuw." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:292 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:300 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:135 msgid "Enabled Value" msgstr "Ingeschakelde waarde" @@ -3176,7 +3180,7 @@ msgstr "<0>Opmerking: instanties kunnen opnieuw worden gekoppeld aan deze instan msgid "Timeout minutes" msgstr "Time-out minuten" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:353 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:361 msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" msgstr "Deze inventarisbron wordt momenteel door andere bronnen gebruikt die erop vertrouwen. Weet u zeker dat u hem wilt verwijderen?" @@ -3331,7 +3335,7 @@ msgstr "Minder dan of gelijk aan vergelijking." #: screens/Inventory/FederatedInventoryDetail/FederatedInventoryDetail.js:187 #: screens/Inventory/InventoryDetail/InventoryDetail.js:185 #: screens/Inventory/InventoryGroups/InventoryGroupsList.js:102 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:356 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:364 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:67 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:71 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:76 @@ -3354,6 +3358,7 @@ msgstr "Minder dan of gelijk aan vergelijking." msgid "Delete" msgstr "Verwijderen" +#: components/NotificationList/NotificationListItem.js:105 #: components/StatusLabel/StatusLabel.js:53 #: screens/Job/JobOutput/shared/HostStatusBar.js:43 msgid "Changed" @@ -3485,7 +3490,7 @@ msgstr "GitHub-team" #: screens/Inventory/InventoryDetail/InventoryDetail.js:157 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:43 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:78 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:317 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:325 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:133 #: screens/Job/JobDetail/JobDetail.js:578 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:425 @@ -3859,7 +3864,7 @@ msgstr "Standaarduitvoeringsomgeving" #: components/PromptDetail/PromptJobTemplateDetail.js:122 #: components/PromptDetail/PromptJobTemplateDetail.js:130 #: components/TemplateList/TemplateListItem.js:263 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:245 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:246 #: screens/Job/JobDetail/JobDetail.js:180 #: screens/Job/JobDetail/JobDetail.js:214 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:216 @@ -3980,7 +3985,7 @@ msgstr "Topologie-weergave" msgid "Syncing" msgstr "Synchroniseren" -#: screens/Inventory/shared/InventorySourceForm.js:192 +#: screens/Inventory/shared/InventorySourceForm.js:198 msgid "Source details" msgstr "Broninformatie" @@ -4072,7 +4077,7 @@ msgstr "Toegangsgegevens verwijderen" #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:56 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:61 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:100 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:332 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:340 #: screens/Inventory/InventorySources/InventorySourceListItem.js:105 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:148 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:450 @@ -4154,7 +4159,7 @@ msgstr "Geen time-out gespecificeerd" msgid "On Timeout" msgstr "Bij time-out" -#: screens/Inventory/shared/Inventory.helptext.js:196 +#: screens/Inventory/shared/Inventory.helptext.js:197 msgid "Prevent Instance Group Fallback: If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on." msgstr "Instance Group Fallback voorkomen: Indien ingeschakeld, zal de inventaris voorkomen dat instantiegroepen van organisaties worden toegevoegd aan de lijst van voorkeursinstantiegroepen om geassocieerde taaksjablonen op uit te voeren." @@ -4496,7 +4501,7 @@ msgstr "bezig-met-content-laden" msgid "Mon" msgstr "Ma" -#: screens/Organization/Organization.js:239 +#: screens/Organization/Organization.js:240 msgid "View Organization Details" msgstr "Organisatiedetails weergeven" @@ -4509,7 +4514,7 @@ msgstr "Organisatiedetails weergeven" #: components/JobList/JobList.js:345 #: components/LaunchButton/LaunchButton.js:248 #: components/LaunchPrompt/LaunchPrompt.js:99 -#: components/NotificationList/NotificationList.js:246 +#: components/NotificationList/NotificationList.js:259 #: components/PaginatedTable/ToolbarDeleteButton.js:148 #: components/RelatedTemplateList/RelatedTemplateList.js:254 #: components/ResourceAccessList/ResourceAccessList.js:249 @@ -4553,7 +4558,7 @@ msgstr "Organisatiedetails weergeven" #: screens/Inventory/InventoryHosts/InventoryHostList.js:204 #: screens/Inventory/InventoryList/InventoryList.js:300 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:270 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:363 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:371 #: screens/Inventory/InventorySources/InventorySourceList.js:240 #: screens/Inventory/InventorySources/InventorySourceList.js:252 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:155 @@ -4705,11 +4710,11 @@ msgid "Notification Templates" msgstr "Berichtsjablonen" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:508 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:124 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:125 msgid "Start message body" msgstr "Body startbericht" -#: screens/Inventory/shared/Inventory.helptext.js:128 +#: screens/Inventory/shared/Inventory.helptext.js:129 msgid "Branch to use on inventory sync. Project default used if blank. Only allowed if project allow_override field is set to true." msgstr "Filiaal om te gebruiken bij voorraadsynchronisatie. Projectstandaard gebruikt indien leeg. Alleen toegestaan als het veld project allow_override is ingesteld op true." @@ -4818,7 +4823,7 @@ msgid "Failed to delete one or more user tokens." msgstr "Een of meer gebruikerstokens kunnen niet worden verwijderd." #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:553 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:169 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:188 msgid "Workflow approved message" msgstr "Workflow goedgekeurd bericht" @@ -4999,12 +5004,12 @@ msgstr "Bij time-out" msgid "Create New Team" msgstr "Nieuw team maken" -#: screens/Inventory/shared/Inventory.helptext.js:148 +#: screens/Inventory/shared/Inventory.helptext.js:149 msgid "in the documentation and the" msgstr "in de documentatie en de" #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:152 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:206 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:207 #: screens/Project/ProjectDetail/ProjectDetail.js:160 msgid "Last Job Status" msgstr "Laatste taakstatus" @@ -5336,7 +5341,7 @@ msgid "Preferred Theme" msgstr "Voorkeursthema" #: screens/Instances/Shared/InstanceForm.js:31 -#: screens/Inventory/shared/InventorySourceForm.js:92 +#: screens/Inventory/shared/InventorySourceForm.js:98 #: screens/Project/shared/ProjectForm.js:121 msgid "Set a value for this field" msgstr "Waarde instellen voor dit veld" @@ -5469,7 +5474,7 @@ msgid "Download Bundle" msgstr "Download Bundel" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:577 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:187 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:206 msgid "Workflow denied message" msgstr "Workflow geweigerd bericht" @@ -5522,7 +5527,7 @@ msgstr "Type knooppunt" msgid "View Credential Details" msgstr "Details toegangsgegevens weergeven" -#: components/NotificationList/NotificationList.js:177 +#: components/NotificationList/NotificationList.js:188 #: routeConfig.js:140 #: screens/Inventory/Inventories.js:119 #: screens/Inventory/InventorySource/InventorySource.js:101 @@ -5742,7 +5747,7 @@ msgstr "Testbericht" #: screens/Credential/CredentialDetail/CredentialDetail.js:262 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:234 #: screens/Inventory/InventoryDetail/InventoryDetail.js:122 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:305 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:313 #: screens/Project/ProjectDetail/ProjectDetail.js:333 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:357 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:193 @@ -5791,7 +5796,7 @@ msgstr "Broncontrolevertakking" #: screens/Instances/InstanceDetail/InstanceDetail.js:248 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:225 #: screens/Inventory/InventoryDetail/InventoryDetail.js:107 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:239 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:240 #: screens/Organization/OrganizationDetail/OrganizationDetail.js:116 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:418 #: util/getRelatedResourceDeleteDetails.js:282 @@ -6121,7 +6126,7 @@ msgid "View YAML examples at" msgstr "Bekijk YAML-voorbeelden op" #: components/PromptDetail/PromptInventorySourceDetail.js:35 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:142 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:143 msgid "Overwrite local groups and hosts from remote inventory source" msgstr "Lokale groepen en hosts overschrijven op grond van externe inventarisbron" @@ -6130,7 +6135,7 @@ msgid "Resource deleted" msgstr "Bron verwijderd" #: screens/Inventory/shared/Inventory.helptext.js:54 -#: screens/Inventory/shared/Inventory.helptext.js:187 +#: screens/Inventory/shared/Inventory.helptext.js:188 msgid "YAML:" msgstr "YAML:" @@ -6217,7 +6222,7 @@ msgid "Initiated By" msgstr "Gestart door" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:499 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:115 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:116 msgid "Start message" msgstr "Startbericht" @@ -6281,7 +6286,7 @@ msgstr "Instantie wisselen" msgid "Back to Inventories" msgstr "Terug naar inventarissen" -#: screens/Inventory/shared/Inventory.helptext.js:113 +#: screens/Inventory/shared/Inventory.helptext.js:114 msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format." msgstr "Na elke projectupdate waarbij de SCM-revisie verandert, vernieuwt u de inventaris van de geselecteerde bron voordat u projecttaken uitvoert. Dit is bedoeld voor statische content, zoals het Ansible inventory .ini bestandsformaat." @@ -6375,7 +6380,7 @@ msgstr "Instantie" msgid "Including File" msgstr "Inclusief bestand" -#: screens/Inventory/shared/Inventory.helptext.js:81 +#: screens/Inventory/shared/Inventory.helptext.js:82 msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." msgstr "Indien aangevinkt, worden alle hosts en groepen die eerder aanwezig waren op de externe bron maar nu zijn verwijderd, uit de inventaris verwijderd. Hosts en groepen die niet door de inventarisbron werden beheerd, worden gepromoveerd naar de volgende handmatig gemaakte groep, of als er geen handmatig gemaakte groep is om ze naartoe te promoveren, blijven ze in de standaardgroep \"all\" voor de inventaris." @@ -6412,7 +6417,7 @@ msgstr "Tabblad Details" #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:100 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:72 #: screens/InstanceGroup/shared/ContainerGroupForm.js:50 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:298 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:306 #: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:39 #: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:38 #: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:38 @@ -6423,7 +6428,7 @@ msgstr "Tabblad Details" #: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:117 #: screens/Inventory/shared/InventorySourceSubForms/TerraformSubForm.js:38 #: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:39 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:39 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:44 msgid "Credential" msgstr "Toegangsgegeven" @@ -6432,7 +6437,7 @@ msgid "First node" msgstr "Eerste knooppunt" #: components/PromptDetail/PromptInventorySourceDetail.js:97 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:273 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:281 msgid "{update_cache_timeout, plural, one {# second} other {# seconds}}" msgstr "{update_cache_timeout, plural, one {# seconde} other {# seconden}}" @@ -6496,7 +6501,7 @@ msgstr "Taakinstellingen weergeven" #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:122 #: screens/Instances/InstanceDetail/InstanceDetail.js:349 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:96 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:329 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:337 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:145 #: screens/Project/ProjectDetail/ProjectDetail.js:340 #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:229 @@ -6550,7 +6555,7 @@ msgstr "Normale gebruiker" msgid "host-name-{0}" msgstr "Hostnaam-{0}" -#: components/NotificationList/NotificationList.js:198 +#: components/NotificationList/NotificationList.js:209 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:139 msgid "Pagerduty" msgstr "Pagerduty" @@ -6609,7 +6614,7 @@ msgstr "Minimaal aantal instanties dat automatisch aan deze groep wordt toegewez msgid "Launch | {0}" msgstr "Starten | {0}" -#: components/NotificationList/NotificationListItem.js:79 +#: components/NotificationList/NotificationListItem.js:84 msgid "Toggle notification success" msgstr "Berichtsucces wisselen" @@ -6702,7 +6707,7 @@ msgstr "Gelijktijdige taken inschakelen" msgid "Smart Inventory" msgstr "Smart-inventaris" -#: components/NotificationList/NotificationList.js:200 +#: components/NotificationList/NotificationList.js:211 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:141 msgid "Slack" msgstr "Slack" @@ -6738,7 +6743,7 @@ msgstr "Toevoegen" msgid "System administrators have unrestricted access to all resources." msgstr "Systeembeheerders hebben onbeperkte toegang tot alle bronnen." -#: components/NotificationList/NotificationListItem.js:86 +#: components/NotificationList/NotificationListItem.js:91 msgid "Failure" msgstr "Mislukking" @@ -6883,7 +6888,7 @@ msgstr "Volgen" #: components/Lookup/MultiCredentialsLookup.js:205 #: components/Lookup/OrganizationLookup.js:135 #: components/Lookup/ProjectLookup.js:149 -#: components/NotificationList/NotificationList.js:210 +#: components/NotificationList/NotificationList.js:221 #: components/RelatedTemplateList/RelatedTemplateList.js:183 #: components/Schedule/ScheduleList/ScheduleList.js:205 #: components/TemplateList/TemplateList.js:235 @@ -7095,7 +7100,7 @@ msgstr "Dit veld moet een getal zijn en een waarde groter dan {min} hebben" msgid "All" msgstr "Alle" -#: screens/Inventory/shared/Inventory.helptext.js:177 +#: screens/Inventory/shared/Inventory.helptext.js:178 msgid "constructed inventory" msgstr "geconstrueerde inventaris" @@ -7109,7 +7114,7 @@ msgid "Confirm Delete" msgstr "Verwijderen bevestigen" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:625 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:223 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:242 msgid "Workflow timed out message" msgstr "Workflow Time-outbericht" @@ -7205,7 +7210,7 @@ msgstr "Nooit" msgid "Organization Name" msgstr "Naam van organisatie" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:282 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:290 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:149 msgid "Host Filter" msgstr "Hostfilter" @@ -7257,7 +7262,7 @@ msgstr "{pluralizedItemName} Lijst" msgid "Please add survey questions." msgstr "Voeg vragenlijstvragen toe." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:287 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:295 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:121 msgid "Enabled Variable" msgstr "Ingeschakelde variabele" @@ -7369,7 +7374,7 @@ msgstr "Synchroniseren" #: components/Lookup/ApplicationLookup.js:128 #: components/Lookup/HostFilterLookup.js:439 #: components/Lookup/HostListItem.js:10 -#: components/NotificationList/NotificationList.js:186 +#: components/NotificationList/NotificationList.js:197 #: components/PromptDetail/PromptDetail.js:120 #: components/Schedule/ScheduleDetail/ScheduleDetail.js:337 #: components/Schedule/ScheduleList/ScheduleList.js:197 @@ -7404,13 +7409,13 @@ msgstr "Synchroniseren" #: screens/Inventory/InventoryHosts/InventoryHostList.js:125 #: screens/Inventory/InventoryHosts/InventoryHostList.js:141 #: screens/Inventory/InventoryList/InventoryList.js:215 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:221 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:222 #: screens/Inventory/shared/ConstructedInventoryForm.js:74 #: screens/Inventory/shared/ConstructedInventoryHint.js:63 #: screens/Inventory/shared/FederatedInventoryForm.js:64 #: screens/Inventory/shared/InventoryForm.js:58 #: screens/Inventory/shared/InventoryGroupForm.js:41 -#: screens/Inventory/shared/InventorySourceForm.js:141 +#: screens/Inventory/shared/InventorySourceForm.js:147 #: screens/Inventory/shared/SmartInventoryForm.js:54 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:104 #: screens/Job/JobOutput/HostEventModal.js:118 @@ -7555,7 +7560,7 @@ msgstr "Aanmelden met GitHub Enterprise" #: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130 #: screens/Inventory/shared/InventorySourceSubForms/TerraformSubForm.js:46 #: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:47 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:47 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:52 #: screens/Inventory/shared/SmartInventoryForm.js:66 #: screens/NotificationTemplate/shared/NotificationTemplateForm.js:29 #: screens/NotificationTemplate/shared/NotificationTemplateForm.js:66 @@ -7588,7 +7593,7 @@ msgstr "Aanmelden met SAML {samlIDP}" msgid "Browse" msgstr "Bladeren" -#: components/NotificationList/NotificationList.js:193 +#: components/NotificationList/NotificationList.js:204 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:134 #: screens/User/shared/UserForm.js:104 #: screens/User/UserDetail/UserDetail.js:71 @@ -8011,7 +8016,7 @@ msgid "Sat" msgstr "Zat" #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:46 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:176 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:177 #: screens/Inventory/InventorySources/InventorySourceListItem.js:26 #: screens/Project/ProjectDetail/ProjectDetail.js:129 #: screens/Project/ProjectList/ProjectListItem.js:51 @@ -8048,7 +8053,7 @@ msgid "Specify HTTP Headers in JSON format. Refer to\n" msgstr "Geef HTTP-headers op in JSON-indeling. Raadpleeg\n" " de Ansible Controller-documentatie voor voorbeeldsyntaxis." -#: components/NotificationList/NotificationList.js:199 +#: components/NotificationList/NotificationList.js:210 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:140 msgid "Rocket.Chat" msgstr "Rocket.Chat" @@ -8106,7 +8111,7 @@ msgstr "Zoom instellen op 100% en grafiek centreren" msgid "Revert all to default" msgstr "Alles terugzetten naar standaardinstellingen" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:255 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:256 #: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:135 msgid "Inventory file" msgstr "Inventarisbestand" @@ -8183,6 +8188,11 @@ msgstr "Instance Group Fallback voorkomen" msgid "Maximum number of forks to allow across all jobs running concurrently on this group. Zero means no limit will be enforced." msgstr "Maximaal aantal vorken om toe te staan voor alle taken die tegelijkertijd op deze groep worden uitgevoerd. Nul betekent dat er geen limiet wordt afgedwongen." +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:263 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:56 +msgid "Collection" +msgstr "Collectie" + #: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:207 msgid "Failed to delete one or more credential types." msgstr "Een of meer typen toegangsgegevens kunnen niet worden verwijderd." @@ -8197,7 +8207,7 @@ msgstr "Regio's" #: components/WorkflowOutputNavigation/WorkflowOutputNavigation.js:148 msgid "Workflow Jobs ({total})" -msgstr "" +msgstr "Workflowtaken ({total})" #: components/Search/AdvancedSearch.js:315 msgid "Set type disabled for related search field fuzzy searches" @@ -8233,11 +8243,11 @@ msgstr "Geen resterende hosts" msgid "ID of the dashboard (optional)" msgstr "ID van het dashboard (optioneel)" -#: screens/Inventory/shared/Inventory.helptext.js:127 +#: screens/Inventory/shared/Inventory.helptext.js:128 msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'" msgstr "Haal de ingeschakelde status op uit het gegeven dictaat van hostvariabelen. De ingeschakelde variabele kan worden opgegeven met behulp van puntnotatie, bijvoorbeeld: 'foo.bar'" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:339 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:347 #: screens/Inventory/InventorySources/InventorySourceListItem.js:88 msgid "Inventory Source Sync Error" msgstr "Fout tijdens synchronisatie inventarisbronnen" @@ -8264,14 +8274,14 @@ msgstr "" #: components/VerbositySelectField/VerbositySelectField.js:35 #: components/VerbositySelectField/VerbositySelectField.js:45 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:217 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:261 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:269 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:47 #: screens/Job/JobDetail/JobDetail.js:369 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:257 msgid "Verbosity" msgstr "Verbositeit" -#: components/NotificationList/NotificationList.js:197 +#: components/NotificationList/NotificationList.js:208 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:138 msgid "Mattermost" msgstr "Mattermost" @@ -8498,6 +8508,10 @@ msgstr "Terug naar workflowgoedkeuringen" msgid "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Controller documentation for example syntax." msgstr "Geef injectoren op met JSON- of YAML-syntaxis. Raadpleeg de documentatie voor Ansible Tower voor voorbeeldsyntaxis." +#: components/NotificationList/NotificationListItem.js:112 +msgid "Toggle notification changed" +msgstr "Berichtwijziging wisselen" + #: components/Workflow/WorkflowLegend.js:122 #: screens/Job/JobOutput/JobOutputSearch.js:140 msgid "Warning" @@ -8566,7 +8580,7 @@ msgid "Prompt for instance groups on launch." msgstr "Vraag om instantiegroepen bij opstarten." #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:613 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:214 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:233 msgid "Workflow pending message body" msgstr "Workflow Berichtenbody in behandeling" @@ -8608,7 +8622,7 @@ msgstr "IRC-bijnaam" msgid "Expires on" msgstr "Verloopt op" -#: screens/Inventory/shared/Inventory.helptext.js:98 +#: screens/Inventory/shared/Inventory.helptext.js:99 msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." msgstr "Elke keer dat een taak wordt uitgevoerd met behulp van deze inventaris, vernieuwt u de inventaris van de geselecteerde bron voordat u projecttaken uitvoert." @@ -8733,7 +8747,7 @@ msgstr "Webhook inschakelen voor dit sjabloon." msgid "On date" msgstr "Aan-datum" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:340 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:348 #: screens/Inventory/InventorySources/InventorySourceListItem.js:90 msgid "Cancel Inventory Source Sync" msgstr "Synchronisatie van inventarisbron annuleren" @@ -8810,7 +8824,7 @@ msgid "Greater than comparison." msgstr "Groter dan vergelijking." #: components/PromptDetail/PromptInventorySourceDetail.js:40 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:148 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:149 msgid "Overwrite local variables from remote inventory source" msgstr "Lokale variabelen overschrijven op grond van externe inventarisbron" @@ -8882,7 +8896,7 @@ msgstr "Een of meer gebruikers kunnen niet worden verwijderd." msgid "On Success" msgstr "Bij slagen" -#: screens/Inventory/shared/Inventory.helptext.js:192 +#: screens/Inventory/shared/Inventory.helptext.js:193 msgid "The inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." msgstr "Het inventarisbestand dat door deze bron moet worden gesynchroniseerd. U kunt kiezen uit de vervolgkeuzelijst of een bestand invoeren binnen de invoer." @@ -8947,7 +8961,7 @@ msgstr "Niet geconfigureerd" msgid "Workflow Job" msgstr "Workflowtaak" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:82 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:83 msgid "Use custom messages to change the content of\n" " notifications sent when a job starts, succeeds, or fails. Use\n" " curly braces to access information about the job:" @@ -9151,7 +9165,7 @@ msgid "Go to previous page" msgstr "Ga naar de vorige pagina" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:565 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:178 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:197 msgid "Workflow approved message body" msgstr "Workflow goedgekeurde berichtbody" @@ -9168,7 +9182,7 @@ msgid "required" msgstr "verplicht" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:589 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:196 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:215 msgid "Workflow denied message body" msgstr "Workflow geweigerde berichtbody" @@ -9270,7 +9284,7 @@ msgstr "docs.ansible.com" msgid "Edit Schedule" msgstr "Schema bewerken" -#: components/NotificationList/NotificationList.js:250 +#: components/NotificationList/NotificationList.js:263 msgid "Failed to toggle notification." msgstr "Kan niet van bericht wisselen." @@ -9359,6 +9373,10 @@ msgstr "Opslaan" msgid "Click to create a new link to this node." msgstr "Klik om een nieuwe link naar dit knooppunt te maken." +#: screens/Inventory/shared/Inventory.helptext.js:78 +msgid "Select the Ansible collection providing the inventory plugin used to sync from vCenter. The community.vmware collection is deprecated in favor of the newer vmware.vmware collection. The selection is applied via the \"plugin\" key in the source variables; when the key is absent, the default collection is used." +msgstr "Selecteer de Ansible-collectie die de inventarisplugin levert die wordt gebruikt om te synchroniseren vanuit vCenter. De collectie community.vmware is afgeschaft ten gunste van de nieuwere collectie vmware.vmware. De selectie wordt toegepast via de sleutel \"plugin\" in de bronvariabelen; als de sleutel ontbreekt, wordt de standaardcollectie gebruikt." + #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:167 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:136 msgid "Operator" @@ -9476,7 +9494,7 @@ msgid "Deprovisioning" msgstr "Deprovisionering" #: components/DetailList/LaunchedByDetail.js:27 -#: components/NotificationList/NotificationList.js:202 +#: components/NotificationList/NotificationList.js:213 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:143 msgid "Webhook" msgstr "Webhook" @@ -9517,7 +9535,7 @@ msgstr "Kan toegangsgegevens niet verwijderen." msgid "Private key passphrase" msgstr "Privésleutel wachtwoordzin" -#: components/NotificationList/NotificationListItem.js:58 +#: components/NotificationList/NotificationListItem.js:63 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:47 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:53 msgid "Start" @@ -9537,7 +9555,7 @@ msgstr "Er moet een inventaris worden gekozen" #: components/PromptDetail/PromptProjectDetail.js:100 #: components/PromptDetail/PromptWFJobTemplateDetail.js:81 #: components/Schedule/ScheduleDetail/ScheduleDetail.js:477 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:266 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:274 #: screens/Job/JobDetail/JobDetail.js:345 #: screens/Project/ProjectDetail/ProjectDetail.js:229 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 @@ -9591,7 +9609,7 @@ msgstr "Red Hat Insights" msgid "View GitHub Settings" msgstr "GitHub-instellingen weergeven" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:257 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:258 msgid "/ (project root)" msgstr "/ (projectroot)" @@ -9620,7 +9638,7 @@ msgstr "Het aantal parallelle of gelijktijdige processen dat gebruikt wordt bij msgid "View all Workflow Approvals." msgstr "Geef alle workflowgoedkeuringen weer." -#: screens/Inventory/shared/Inventory.helptext.js:92 +#: screens/Inventory/shared/Inventory.helptext.js:93 msgid "When not checked, a merge will be performed, combining local variables with those found on the external source." msgstr "Indien niet aangevinkt, wordt een samenvoeging uitgevoerd, waarbij lokale variabelen worden gecombineerd met die op de externe bron." @@ -9714,7 +9732,7 @@ msgstr "Gereedschap wisselen" #: screens/Inventory/InventoryList/InventoryList.js:211 #: screens/Inventory/InventoryList/InventoryList.js:241 #: screens/Inventory/InventoryList/InventoryListItem.js:121 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:225 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:226 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:107 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:153 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:163 @@ -9765,7 +9783,7 @@ msgid "Test External Credential" msgstr "Externe inloggegevens testen" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:601 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:205 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:224 msgid "Workflow pending message" msgstr "Bericht Workflow in behandeling" @@ -9948,7 +9966,7 @@ msgstr "Navigatie" msgid "If enabled, control nodes will peer to this instance automatically. If disabled, instance will be connected only to associated peers." msgstr "Indien ingeschakeld, zullen besturingsknooppunten automatisch naar dit exemplaar turen. Indien uitgeschakeld, wordt het exemplaar alleen verbonden met geassocieerde collega's." -#: screens/Inventory/shared/Inventory.helptext.js:120 +#: screens/Inventory/shared/Inventory.helptext.js:121 msgid "and click on Update Revision on Launch" msgstr "en klik op Herziening updaten bij opstarten" @@ -9967,6 +9985,10 @@ msgstr "Selecteer een project voordat u de uitvoeringsomgeving bewerkt." msgid "Order" msgstr "Bestellen" +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:179 +msgid "Changed message body" +msgstr "Body wijzigingsbericht" + #: components/Schedule/Schedule.js:65 msgid "Back to Schedules" msgstr "Terug naar schema's" @@ -10085,7 +10107,7 @@ msgstr "Nieuwe containergroep maken" msgid "Bitbucket Data Center" msgstr "Bitbucket-datacenter" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:367 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:375 msgid "Failed to delete inventory source {name}." msgstr "Kan inventarisbron {name} niet verwijderen." @@ -10151,7 +10173,7 @@ msgstr "Details bewerken" msgid "Deleted" msgstr "Verwijderd" -#: screens/Inventory/shared/Inventory.helptext.js:129 +#: screens/Inventory/shared/Inventory.helptext.js:130 msgid "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import." msgstr "Dit veld wordt genegeerd, tenzij er een Ingeschakelde variabele is ingesteld. Als de ingeschakelde variabele overeenkomt met deze waarde, wordt de host bij het importeren ingeschakeld." @@ -10250,11 +10272,11 @@ msgstr "Module" msgid "Confirm revert all" msgstr "Alles terugzetten bevestigen" -#: screens/Inventory/shared/Inventory.helptext.js:89 +#: screens/Inventory/shared/Inventory.helptext.js:90 msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source." msgstr "Indien aangevinkt, worden alle variabelen voor onderliggende groepen en hosts verwijderd en vervangen door die in de externe bron." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:350 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:358 msgid "Delete inventory source" msgstr "Inventarisbron maken" @@ -10325,7 +10347,7 @@ msgstr "Verstreken tijd in seconden dat de taak is uitgevoerd" msgid "GitLab" msgstr "GitLab" -#: components/NotificationList/NotificationListItem.js:93 +#: components/NotificationList/NotificationListItem.js:98 msgid "Toggle notification failure" msgstr "Berichtstoring wisselen" @@ -10426,8 +10448,8 @@ msgstr "Dit veld moet minimaal {0} tekens bevatten" #: components/JobList/JobListItem.js:197 #: components/PromptDetail/PromptInventorySourceDetail.js:78 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:222 -#: screens/Inventory/shared/InventorySourceForm.js:162 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:223 +#: screens/Inventory/shared/InventorySourceForm.js:168 #: screens/Job/JobDetail/JobDetail.js:180 #: screens/Job/JobDetail/JobDetail.js:332 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:93 @@ -10511,7 +10533,7 @@ msgstr "Sleutel selecteren" msgid "Pass extra command line changes. There are two ansible command line parameters: " msgstr "Geef extra opdrachtregelwijzigingen door. Er zijn twee ansible-opdrachtregelparameters: " -#: screens/Inventory/shared/Inventory.helptext.js:84 +#: screens/Inventory/shared/Inventory.helptext.js:85 msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process." msgstr "Als dit niet is aangevinkt, blijven lokale kinderhosts en groepen die niet op de externe bron worden gevonden, onaangetast door het proces voor het bijwerken van de inventaris." @@ -10554,7 +10576,7 @@ msgid "Specify a notification color. Acceptable colors are hex\n" msgstr "Geef een meldingskleur op. Aanvaardbare kleuren zijn hexadecimale\n" " kleurcodes (voorbeeld: #3af of #789abc)." -#: components/NotificationList/NotificationList.js:201 +#: components/NotificationList/NotificationList.js:212 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:142 msgid "Twilio" msgstr "Twilio" @@ -10594,7 +10616,7 @@ msgid "updated" msgstr "bijgewerkt" #: screens/Inventory/AdvancedInventoryHostDetail/AdvancedInventoryHostDetail.js:50 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:320 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:328 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:135 #: screens/Project/ProjectList/ProjectListItem.js:274 #: screens/TopologyView/Tooltip.js:347 @@ -10795,7 +10817,7 @@ msgid "Successful jobs" msgstr "Succesvolle taken" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:535 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:151 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:152 msgid "Error message" msgstr "Foutbericht" @@ -10924,7 +10946,7 @@ msgstr "Onbekend project" msgid "Preconditions for running this node when there are multiple parents. Refer to the" msgstr "Voorwaarden voor het uitvoeren van dit knooppunt wanneer er meerdere bovenliggende elementen zijn. Raadpleeg de" -#: screens/Inventory/shared/Inventory.helptext.js:140 +#: screens/Inventory/shared/Inventory.helptext.js:141 msgid "Variables used to configure the inventory source. For a detailed description of how to configure this plugin, see" msgstr "Variabelen die worden gebruikt om de voorraadbron te configureren. Zie voor een gedetailleerde beschrijving van het configureren van deze plug-in" @@ -10934,7 +10956,7 @@ msgstr "Google Compute Engine" #: components/Sparkline/Sparkline.js:34 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:55 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:185 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:186 #: screens/Inventory/InventorySources/InventorySourceListItem.js:35 #: screens/Project/ProjectDetail/ProjectDetail.js:138 #: screens/Project/ProjectList/ProjectListItem.js:60 @@ -10956,7 +10978,7 @@ msgstr "Alle taaktypen" msgid "GitHub Enterprise Organization" msgstr "GitHub Enterprise-organisatie" -#: screens/Inventory/shared/InventorySourceForm.js:170 +#: screens/Inventory/shared/InventorySourceForm.js:176 msgid "Choose a source" msgstr "Kies een bron" @@ -10990,7 +11012,7 @@ msgstr "Eenvoudige sleutel selecteren" msgid "You have automated against more hosts than your subscription allows." msgstr "Je hebt tegen meer hosts geautomatiseerd dan je abonnement toelaat." -#: screens/Inventory/shared/Inventory.helptext.js:130 +#: screens/Inventory/shared/Inventory.helptext.js:131 msgid "Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied." msgstr "Reguliere expressie waarbij alleen overeenkomende hostnamen worden geïmporteerd. Het filter wordt toegepast als een nabewerkingsstap nadat eventuele filters voor inventarisplugins zijn toegepast." @@ -11116,7 +11138,7 @@ msgstr "LDAP" msgid "Workflow Template" msgstr "Workflowsjabloon" -#: components/NotificationList/NotificationListItem.js:40 +#: components/NotificationList/NotificationListItem.js:45 #: components/Workflow/WorkflowLegend.js:118 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:76 msgid "Approval" @@ -11278,7 +11300,7 @@ msgstr "Bevoorrading mislukt" msgid "Whether the approval node is automatically approved or denied when the timeout expires." msgstr "Of het goedkeuringsknooppunt automatisch wordt goedgekeurd of geweigerd wanneer de time-out verloopt." -#: screens/Inventory/shared/Inventory.helptext.js:125 +#: screens/Inventory/shared/Inventory.helptext.js:126 msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed." msgstr "Tijd in seconden om een voorraadsynchronisatie als actueel te beschouwen. Tijdens taakruns en callbacks evalueert het taaksysteem de tijdstempel van de nieuwste synchronisatie. Als het ouder is dan Cache Timeout, wordt het niet als actueel beschouwd en wordt een nieuwe voorraadsynchronisatie uitgevoerd." @@ -11292,7 +11314,7 @@ msgstr "Toegangstoken vervallen" #: components/WorkflowOutputNavigation/WorkflowOutputNavigation.js:147 msgid "Workflow Job {currentPosition}/{total}" -msgstr "" +msgstr "Workflowtaak {currentPosition}/{total}" #: components/Schedule/ScheduleDetail/FrequencyDetails.js:69 msgid "{interval, plural, one {# minute} other {# minutes}}" @@ -11436,7 +11458,7 @@ msgstr "Systeem-ID Insights" msgid "Authorization Code Expiration" msgstr "Machtigingscode vervallen" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:69 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:70 msgid "Customize messages…" msgstr "Berichten aanpassen..." @@ -11662,7 +11684,7 @@ msgid "{interval, plural, one {# week} other {# weeks}}" msgstr "{interval, plural, one {# week} other {# weken}}" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:544 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:160 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:161 msgid "Error message body" msgstr "Foutbericht body" @@ -11705,7 +11727,7 @@ msgstr "Beheerde knooppunten" #: components/Lookup/MultiCredentialsLookup.js:201 #: components/Lookup/OrganizationLookup.js:131 #: components/Lookup/ProjectLookup.js:153 -#: components/NotificationList/NotificationList.js:206 +#: components/NotificationList/NotificationList.js:217 #: components/RelatedTemplateList/RelatedTemplateList.js:179 #: components/Schedule/ScheduleList/ScheduleList.js:201 #: components/TemplateList/TemplateList.js:231 @@ -11821,7 +11843,7 @@ msgstr "Fout bij het verwijderen van tokens" msgid "Select period" msgstr "Periode selecteren" -#: components/NotificationList/NotificationListItem.js:65 +#: components/NotificationList/NotificationListItem.js:70 msgid "Toggle notification start" msgstr "Berichtstart wisselen" @@ -11869,7 +11891,7 @@ msgid "This field must be a number and have a value between {min} and {max}" msgstr "Dit veld moet een getal zijn en een waarde tussen {min} en {max} hebben" #: components/PromptDetail/PromptInventorySourceDetail.js:45 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:154 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:155 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:93 msgid "Update on launch" msgstr "Update bij opstarten" @@ -11886,7 +11908,7 @@ msgstr "Hosts toevoegen aan groep op basis van Jinja2-voorwaarden." msgid "Copy Template" msgstr "Sjabloon kopiëren" -#: components/NotificationList/NotificationListItem.js:51 +#: components/NotificationList/NotificationListItem.js:56 msgid "Toggle notification approvals" msgstr "Berichtgoedkeuringen wisselen" @@ -11914,7 +11936,7 @@ msgstr "L'année passée" msgid "Week" msgstr "Week" -#: components/NotificationList/NotificationListItem.js:72 +#: components/NotificationList/NotificationListItem.js:77 #: components/StatusLabel/StatusLabel.js:39 msgid "Success" msgstr "Geslaagd" diff --git a/awx/ui/src/locales/zh/messages.js b/awx/ui/src/locales/zh/messages.js index d1b4bf6b..d63fbc5e 100644 --- a/awx/ui/src/locales/zh/messages.js +++ b/awx/ui/src/locales/zh/messages.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"--iDlT\":[\"删除项目\"],\"-0AkQd\":[[\"forks\",\"plural\",{\"one\":[\"#\",\" 个分叉\"],\"other\":[\"#\",\" 个分叉\"]}]],\"-0B-ue\":[\"项目\"],\"-5kO8P\":[\"周六\"],\"-6EcFR\":[\"按 Enter 进行编辑。按 ESC 停止编辑。\"],\"-7M7WW\":[\"点击以切换默认值\"],\"-7VWRl\":[\"RAM \",[\"0\"]],\"-8WGoO\":[\"插件参数是必需的。\"],\"-9d7Ol\":[\"Pagerduty 子域\"],\"-9y9jy\":[\"运行健康检查\"],\"-9yY_Q\":[\"复制清单失败。\"],\"-AZQnp\":[\"SAML\"],\"-FWz2-\":[\"滚动到前一个\"],\"-FjWgX\":[\"周四\"],\"-GMFSa\":[\"复制项目失败。\"],\"-GOG9X\":[\"隐藏描述\"],\"-NI2UI\":[\"将此任务模板完成的工作划分为指定数量的任务切片,每个切片针对清单的一部分运行相同的任务。\"],\"-NezOR\":[\"一些凭证目前正在使用此凭证类型,无法删除\"],\"-OpL2l\":[\"无论父节点的最后状态如何都执行。\"],\"-PyL32\":[\"您确定要从删除这个节点吗?\"],\"-RAMET\":[\"编辑这个链接\"],\"-SAqJ3\":[\"复制凭证失败。\"],\"-Uepfb\":[\"控制\"],\"-b3ghh\":[\"权限升级\"],\"-cWxFz\":[\"启用内容签名以验证在同步项目时内容是否保持安全。如果内容已被篡改,任务将不会运行。\"],\"-hh3vo\":[\"无法加载最后的作业更新\"],\"-li8PK\":[\"订阅使用情况\"],\"-nb9qF\":[\"(启动时提示)\"],\"-ohrPc\":[\"查找 typeahead\"],\"-rfqXD\":[\"启用问卷调查\"],\"-uOi7U\":[\"点下载捆绑包\"],\"-vAlj5\":[\"启动作业失败。\"],\"-z0Ubz\":[\"选择要应用的角色\"],\"-zW4qj\":[\"要检出的分支。除了分支之外,您还可以输入标签、提交哈希和任意引用。除非您还提供自定义 refspec,否则某些提交哈希和引用可能不可用。\"],\"-zy2Nq\":[\"类型\"],\"0-31GV\":[\"删除\"],\"0-yjzX\":[\"项目必须在修订可用前同步。\"],\"00_HDq\":[\"策略类型\"],\"00cteM\":[\"此字段不得超过 \",[\"0\"],\" 个字符\"],\"01Zgfk\":[\"超时\"],\"02FGuS\":[\"创建新组\"],\"02ePaq\":[\"选择 \",[\"0\"]],\"02o5A-\":[\"创建新项目\"],\"05TJDT\":[\"点击以查看作业详情\"],\"06Veq8\":[\"同步项目\"],\"08IuMU\":[\"覆盖变量\"],\"08dX0o\":[\"Grafana\"],\"0Ca6Bi\":[[\"dateStr\"],\"(由 <0>\",[\"username\"],\")\"],\"0DRyjU\":[\"正在运行的处理程序\"],\"0JjrTf\":[\"解析该文件时出错。请检查文件格式然后重试。\"],\"0K8MzY\":[\"此字段不得超过 \",[\"max\"],\" 个字符\"],\"0LUj25\":[\"删除实例组\"],\"0MFMD5\":[\"在一个或多个实例上运行健康检查失败。\"],\"0Ohn6b\":[\"启动者\"],\"0PUWHV\":[\"重复频率\"],\"0Pz6gk\":[\"用于配置构建的清单插件的变量。有关如何配置此插件的详细说明,请参阅\"],\"0QsHpG\":[\"输入架构,为该类型定义一组排序字段。\"],\"0Tddvz\":[\"Grafana 服务器的基本 URL - /api/annotations\\n 端点将自动添加到基本\\n Grafana URL。\"],\"0WL4_U\":[\"删除所有节点\"],\"0WP27-\":[\"等待作业输出…\"],\"0YAsXQ\":[\"容器组\"],\"0ZdD1M\":[[\"0\",\"plural\",{\"one\":[\"You cannot cancel the following job because it is not running:\"],\"other\":[\"You cannot cancel the following jobs because they are not running:\"]}]],\"0ZqUtV\":[\"有关更多信息,请参阅\"],\"0_ru-E\":[\"复制清单\"],\"0cqIWs\":[\"基本验证密码\"],\"0d48JM\":[\"多项选择(多选)\"],\"0eOoxo\":[\"请选择一个比开始日期/时间晚的结束日期/时间。\"],\"0f7U0k\":[\"周三\"],\"0gPQCa\":[\"始终\"],\"0lvFRT\":[\"无法更改凭据的凭据类型,因为这可能会破坏使用它的资源的功能。\"],\"0pC_y6\":[\"事件\"],\"0qOaMt\":[\"测试此凭据和元数据的请求出错。\"],\"0rVzXl\":[\"Google OAuth2 设置\"],\"0sNe72\":[\"添加角色\"],\"0tNXE8\":[\"PUT\"],\"0tfvhT\":[\"实例组使用的容量\"],\"0wlLcO\":[\"设置数据应保留的天数。\"],\"0zpgxV\":[\"选项\"],\"0zs8j5\":[\"此节点的作业在遵循其失败路径之前失败后自动重试的最大次数。已取消的作业永远不会重试。\"],\"1-4GhF\":[\"取消同步\"],\"10B0do\":[\"发送测试通知失败。\"],\"1280Tg\":[\"主机名\"],\"12j25_\":[\"GPG 公钥\"],\"12kemj\":[\"源控制 URL\"],\"14KOyT\":[\"源变量\"],\"15GcuU\":[\"查看其他身份验证设置\"],\"17TKua\":[\"实例组\"],\"19zgn6\":[\"实例类型\"],\"1A3EXy\":[\"展开\"],\"1C5cFl\":[\"下次运行\"],\"1Ey8My\":[\"IP 地址\"],\"1F0IaT\":[\"查看调度\"],\"1HMy92\":[\"JSON:\"],\"1I6UoR\":[\"视图\"],\"1L3KBl\":[\"创建新凭证类型\"],\"1LRwvx\":[\"如果您希望清单源在启动时更新,请点击「启动时更新」,并转到 \"],\"1Ltnvs\":[\"添加节点\"],\"1PQRWr\":[\"开始时间\"],\"1QRNEs\":[\"重复频率\"],\"1RYzKu\":[\"从已取消的节点重新启动\"],\"1UJu6o\":[\"选择的日数字应介于 1 到 31 之间。\"],\"1UjRxI\":[\"缓存超时\"],\"1UzENP\":[\"否\"],\"1V4Yvg\":[\"杂项系统\"],\"1WlWk7\":[\"查看清单主机详情\"],\"1WsB5U\":[\"我们无法找到与这个帐户关联的许可证。\"],\"1ZaQUH\":[\"姓\"],\"1_gTC7\":[\"您不能选择具有相同 vault ID 的多个 vault 凭证。这样做会自动取消选择具有相同的 vault ID 的另一个凭证。\"],\"1abtmx\":[\"提升子组和主机\"],\"1ahgeV\":[\"Google OAuth2\"],\"1cT4RU\":[\"SCM 更新\"],\"1fO-kL\":[\"切换实例失败。\"],\"1hCxP5\":[\"删除一个或多个实例组失败。\"],\"1kwHxg\":[\"指标\"],\"1n50PN\":[\"JSON 标签页\"],\"1qd4yi\":[\"变量需要是 JSON 或 YAML 语法格式。使用单选按钮在两者之间切换。\"],\"1rDBnp\":[\"文件差异\"],\"1w2SCz\":[\"选择源控制类型\"],\"1xdJD7\":[\"根据屏幕调整\"],\"1yHVE-\":[\"添加\"],\"2-iKER\":[\"查看活动流\"],\"2B_v7Y\":[\"策略实例百分比\"],\"2CTKOa\":[\"返回到项目\"],\"2FB7vv\":[\"在编辑默认执行环境前选择一个机构。\"],\"2FeJcd\":[\"项已跳过\"],\"2H9REH\":[\"模糊搜索名称字段。\"],\"2JV4mx\":[\"此实例所属的实例组。\"],\"2KlsJC\":[\"您可以在消息中应用多个可能的变量。\\n 如需更多信息,请参阅\"],\"2MSEkM\":[\"删除清单失败。\"],\"2a07Yj\":[\"复制通知模板\"],\"2ekvhy\":[\"例外频率\"],\"2gDkH_\":[\"请输入事件发生的值。\"],\"2iyx-2\":[\"Ansible 控制器文档。\"],\"2n41Wr\":[\"添加工作流模板\"],\"2nsB1O\":[\"返回到令牌\"],\"2ocqzE\":[\"Webhook:为此模板启用 webhook。\"],\"2ooR7j\":[\"LDAP 5\"],\"2p6eVk\":[\"查找模式\"],\"2pNIxF\":[\"工作流节点\"],\"2pgi-L\":[\"指示主机是否可用以及是否应包含在运行中的\\n 作业中。对于属于外部清单的主机,这可能会被\\n 清单同步过程重置。\"],\"2qfwJn\":[\"覆盖\"],\"2r06bV\":[\"HipChat\"],\"2rvMKg\":[\"刷新令牌\"],\"2w-INk\":[\"主机详情\"],\"2zs1kI\":[\"此值与之前输入的密码不匹配。请确认该密码。\"],\"3-SkJA\":[\"从主机中解除关联组?\"],\"3-sY1p\":[\"目标 SMS 号码\"],\"328Yxp\":[\"源控制分支\"],\"38Or-7\":[\"制表符\"],\"38VIWI\":[\"查看模板详情\"],\"39y5bn\":[\"周五\"],\"3A9ATS\":[\"未找到执行环境。\"],\"3AOZPn\":[\"查看和编辑调试选项\"],\"3FUtN9\":[\"清单源同步\"],\"3IVQDN\":[\"此调度使用 UI 中不支持的复杂规则。\\n 请使用 API 来管理此调度。\"],\"3JjdaA\":[\"运行\"],\"3JnvxN\":[\"选择将获得新角色的资源。您可以选择下一步中要应用的角色。请注意,此处选择的资源将接收下一步中选择的所有角色。\"],\"3JzsDb\":[\"5 月\"],\"3LoUor\":[\"目标频道\"],\"3LqMX2\":[\"CIQ Ascender Automation Platform\"],\"3PAU4M\":[\"年\"],\"3PZalO\":[\"未找到主机。\"],\"3Rke7L\":[\"1(信息)\"],\"3WGwSW\":[\"在执行更新之前完全删除本地存储库。根据存储库的大小,这可能会显著增加完成更新所需的时间。\"],\"3YSVMq\":[\"删除错误\"],\"3aIe4Y\":[\"创建新机构\"],\"3b24mY\":[\"CPU \",[\"0\"]],\"3fG1e7\":[\"过期的时间\"],\"3fMc43\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 年\"],\"other\":[\"#\",\" 年\"]}]],\"3hCQhK\":[\"清单插件.\"],\"3hvUyZ\":[\"新选择\"],\"3mTiHp\":[\"复制模板失败。\"],\"3pBNb0\":[\"重新加载输出\"],\"3sFvGC\":[\"设置实例被启用或禁用。如果禁用,则不会将作业分配给此实例。\"],\"3sXZ-V\":[\"然后单击启动时更新修订版本。\"],\"3uAM50\":[\"最终用户许可证协议\"],\"3wPA9L\":[\"设置类别\"],\"3y7qi5\":[\"返回到凭证\"],\"3yy_k-\":[\"查看所有团队。\"],\"4-RjdJ\":[[\"interval\"],\" year\"],\"40lLFI\":[\"进入下一页\"],\"41KRqu\":[\"凭证密码\"],\"45BzQy\":[\"运行状况检查是异步任务。请参阅\"],\"45cx0B\":[\"取消订阅编辑\"],\"45gLaI\":[\"启动时提示输入凭证。\"],\"46SUtl\":[\"编辑组\"],\"479kuh\":[\"将完整修订复制到剪贴板。\"],\"47e97a\":[\"最大重试次数\"],\"4BITzH\":[\"错误:\"],\"4LzLLz\":[\"查看所有设置\"],\"4Q4HZp\":[\"未找到 \",[\"pluralizedItemName\"]],\"4QXpWJ\":[\"超时\"],\"4QfhOe\":[\"智能清单主机过滤器中不支持 not__ 和 __search 等一些搜索修饰符。删除这些修改以使用此过滤器创建新的智能清单。\"],\"4S2cNE\":[\"查看日志记录设置\"],\"4Wt2Ty\":[\"从列表中选择项\"],\"4_ESDh\":[\"此字段必须是正则表达式\"],\"4_xiC_\":[\"工件\"],\"4alXD6\":[\"此组上同时运行的最大作业数。\\n 零意味着不会强制执行任何限制。\"],\"4bhLaA\":[\"选择一个凭证类型\"],\"4cWhxn\":[\"控制此实例是否由策略管理。如果启用,实例将可用于根据策略规则自动分配给实例组和取消分配实例组。\"],\"4dQFvz\":[\"完成\"],\"4g1rw0\":[\"电子邮件通知停止尝试连接主机并超时前的\\n 时间(以秒为单位)。范围为\\n 1 到 120 秒。\"],\"4hPyPF\":[\"保存并退出\"],\"4j2eOR\":[\"选择此主机要属于的清单。\"],\"4jnim6\":[\"选择一个 webhook 服务。\"],\"4km-Vu\":[\"不合规\"],\"4kw_um\":[[\"interval\"],\" minute\"],\"4lCMxZ\":[\"解释失败:\"],\"4lgLew\":[\"2 月\"],\"4mQyZf\":[\"Webhook 服务可以将此用作共享密钥。\"],\"4nLbTY\":[\"查看所有管理作业\"],\"4o_cFL\":[\"创建应用\"],\"4s0pSB\":[\"提供主机模式以进一步限制将由 playbook 管理或影响的主机列表。允许使用多个模式。有关模式的更多信息和示例,请参阅 Ansible 文档。\"],\"4uVADI\":[\"客户端 secret\"],\"4vFDZV\":[\"创建新作业模板\"],\"4vkbaA\":[\"此清单更新的来源项目。\"],\"4yGeRr\":[\"清单同步\"],\"4zue79\":[\"版权\"],\"5-qYGv\":[\"编辑实例\"],\"54_SyV\":[[\"0\",\"plural\",{\"one\":[\"You do not have permission to cancel the following job:\"],\"other\":[\"You do not have permission to cancel the following jobs:\"]}]],\"56fd5u\":[\"您确定要删除此工作流中的所有节点吗?\"],\"5B77Dm\":[\"最后作业\"],\"5F5F4w\":[\"工作流已批准\"],\"5IhYoj\":[\"节点类型\"],\"5K7kGO\":[\"文档\"],\"5KMGbn\":[\"您确定要取消此作业吗?\"],\"5RMgCw\":[\"主机\"],\"5S4tZv\":[\"频率与预期值不匹配\"],\"5Sa1Ss\":[\"电子邮件\"],\"5TnQp6\":[\"作业类型\"],\"5WFDw4\":[\"唯一分组标准\"],\"5X2wog\":[\"登录时有问题。请重试。\"],\"5_vHPm\":[\"查看 TACACS+ 设置\"],\"5ajaW1\":[\"当父节点的工件与条件匹配时执行。\"],\"5dJK4M\":[\"角色\"],\"5eHyY-\":[\"测试通知\"],\"5eL2KN\":[\"目标 URL\"],\"5lqXf5\":[\"恢复到工厂默认值。\"],\"5n_soj\":[\"启动时提示输入作业切片数。\"],\"5p6-Mk\":[\"根据失败的作业过滤\"],\"5pDe2G\":[\"Remove \",[\"0\"],\" Access\"],\"5pa4JT\":[\"Playbook 已启动\"],\"5qauVA\":[\"其他资源目前正在使用此工作流作业模板。确定要删除它吗?\"],\"5vA8H0\":[\"未匹配主机\"],\"5xzS8Q\":[\"确保这是「constructed」插件的\\n 源文件的令牌。\"],\"5y9wkB\":[\"返回到通知\"],\"6-OdGi\":[\"协议\"],\"6-ptnU\":[\"选项\"],\"623gDt\":[\"删除用户失败。\"],\"63C4Yo\":[\"容器组\"],\"66Zq7T\":[\"保存链路更改\"],\"66qTfS\":[\"过去一周\"],\"679-JR\":[\"模糊搜索 id、name 或 description 字段。\"],\"68OTAn\":[\"This intance is currently being used by other resources. Are you sure you want to delete it?\"],\"68h6WG\":[\"启动管理作业\"],\"69aXwM\":[\"添加现有组\"],\"69zuwn\":[\"Deprovisioning these instances could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"6ASSBg\":[\"LDAP 4\"],\"6BzDub\":[\"软删除\"],\"6GBt0m\":[\"元数据\"],\"6HLTEb\":[\"过滤...\"],\"6J-cs1\":[\"超时秒\"],\"6KhU4s\":[\"您确定要退出 Workflow Creator 而不保存您的更改吗?\"],\"6LTyxl\":[\"修订\"],\"6PmtyP\":[\"切换图例\"],\"6RDwJM\":[\"令牌\"],\"6UYTy8\":[\"分钟\"],\"6V3Ea3\":[\"复制\"],\"6WwHL3\":[\"节点总数\"],\"6XOI1I\":[\"创建新联邦库存\"],\"6XgEPi\":[\"小时\"],\"6YtxFj\":[\"名称\"],\"6Z5ACo\":[\"主机配置键\"],\"6bpC9t\":[\"失败的节点\"],\"6cylr_\":[\"Stdout\"],\"6f961q\":[\"仅在缺失时\"],\"6hEnxG\":[\"启用权限升级\"],\"6j6_0F\":[\"相关资源\"],\"6kpN96\":[\"删除通知失败。\"],\"6lGV3K\":[\"显示更少\"],\"6msU0q\":[\"删除一个或多个作业失败。\"],\"6nsio_\":[\"运行命令\"],\"6oNH0E\":[\"插件配置指南。\"],\"6pMgh_\":[\"查看 LDAP 设置\"],\"6rSKy6\":[\"为此联邦库存选择源库存。启动作业时,主机将自动路由到每个源库存的实例组。\"],\"6uvnKV\":[\"API 服务/集成密钥\"],\"6vrz8I\":[\"取消一个或多个作业失败。\"],\"6zGHNM\":[\"剩余主机\"],\"74MNbw\":[\"Ctrl IQ, Inc.\"],\"764xeZ\":[\"更新问卷调查失败。\"],\"7Bj3x9\":[\"失败\"],\"7ElOdS\":[\"仪表盘 ID\"],\"7IUE9q\":[\"源变量\"],\"7JF9w9\":[\"添加问题\"],\"7L01XJ\":[\"操作\"],\"7O5TcN\":[\"事件摘要不可用\"],\"7PzzBU\":[\"User\"],\"7UZtKb\":[\"拥有此工作流作业模板的组织。\"],\"7VETeB\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"],\"7VpPHA\":[\"确认\"],\"7Xk3M1\":[\"选择包含您希望此任务执行的 playbook 的项目。\"],\"7ZhNzL\":[\"前往第一页\"],\"7b8TOD\":[\"详情。\"],\"7bDeKc\":[\"订阅清单\"],\"7fJwmW\":[\"所选项列表。\"],\"7hS02I\":[[\"automatedInstancesCount\"],\" 自 \",[\"automatedInstancesSinceDateTime\"]],\"7icMBj\":[\"没有可用作业数据\"],\"7kb4LU\":[\"已批准\"],\"7p5kLi\":[\"仪表盘\"],\"7q256R\":[\"允许分支覆写\"],\"7qFdk8\":[\"编辑凭证\"],\"7sMeHQ\":[\"密钥\"],\"7sNhEz\":[\"用户名\"],\"7w3QvK\":[\"成功消息正文\"],\"7wgt9A\":[\"Playbook 运行\"],\"7zmvk2\":[\"项故障\"],\"81eOdm\":[\"重新启动工作流\"],\"82O8kJ\":[\"此项目当前正在同步,在同步过程完成之前无法单击\"],\"82sWFi\":[\"管理\"],\"84Usx_\":[\"删除项目失败。\"],\"87a_t_\":[\"标志\"],\"88ip8h\":[\"恢复所有\"],\"8BkLPF\":[\"允许的 URI 列表,以空格分隔\"],\"8F8HYs\":[\"选择要使用的 Ansible Automation Platform 订阅。\"],\"8H3Igx\":[[\"interval\"],\" month\"],\"8Oef5v\":[\"GIT 源代码控制的示例 URL 包括:\"],\"8XM8GW\":[\"正确分配角色失败\"],\"8Z236a\":[\"品牌徽标\"],\"8ZsakT\":[\"密码\"],\"8_wZUD\":[\"团队角色\"],\"8d57h8\":[\"查看杂项系统设置\"],\"8gCRbU\":[\"其他提示\"],\"8gaTqG\":[\"类型详情\"],\"8kDNpI\":[\"在评估条件之前需要父节点的结果。\"],\"8l9yyw\":[\"任务模板\"],\"8lEjQX\":[\"安装捆绑包\"],\"8lb4Do\":[\"清除订阅\"],\"8oiwP_\":[\"输入配置\"],\"8p_xVT\":[[\"0\",\"plural\",{\"one\":[[\"1\"]],\"other\":[[\"2\"]]}]],\"8u5g0S\":[\"删除智能清单\"],\"8vETh9\":[\"显示\"],\"8wxHsh\":[\"此工作流作业模板的 Webhook 密钥。\"],\"8yd882\":[\"解除关联一个或多个团队失败。\"],\"8zGO4o\":[\"字段与给出的正则表达式匹配。\"],\"8zoIOi\":[[\"0\",\"plural\",{\"one\":[\"This credential type is currently being used by some credentials and cannot be deleted.\"],\"other\":[\"Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?\"]}]],\"8zvzWO\":[\"允许此工作流作业模板同时运行。\"],\"9-wVFp\":[\"查看联邦库存详情\"],\"91UHfE\":[\"清单更新\"],\"91lyAf\":[\"并发作业\"],\"933cZy\":[\"杂项系统设置\"],\"954HqS\":[\"房东首次自动执行操作的时间\"],\"95p1BK\":[\"创建新用户\"],\"98Qtlu\":[\"每次使用此项目运行任务时,在开始任务之前更新项目的修订版本。\"],\"991Df5\":[\"a new webhook key will be generated on save.\"],\"99qC6z\":[[\"interval\"],\" week\"],\"9Ah95g\":[[\"0\",\"plural\",{\"one\":[\"此清单当前正被某些模板使用。确定要删除它吗?\"],\"other\":[\"删除这些清单可能会影响依赖它们的某些模板。确定仍要删除吗?\"]}]],\"9BTNYL\":[\"Expected at least one of client_email, project_id or private_key to be present in the file.\"],\"9BpfLa\":[\"选择标签\"],\"9DOXq6\":[\"查看所有模板。\"],\"9DugxF\":[\"订阅类型\"],\"9HhFQ8\":[\"返回具有除此之外的其他值以及其他过滤器的结果。\"],\"9L1ngr\":[\"作业总数\"],\"9N-4tQ\":[\"凭证类型\"],\"9NyAH9\":[\"跳过\"],\"9PB0sF\":[\"IRC\"],\"9Rsklx\":[\"删除所有节点\"],\"9Tmez1\":[\"查看实例详情\"],\"9UuGMQ\":[\"等待删除\"],\"9V-Un3\":[\"启用事实缓存\"],\"9VMv7k\":[\"已建库存\"],\"9Wm-J4\":[\"切换密码\"],\"9XA1Rs\":[\"该项目目前正在同步,且修订将在同步完成后可用。\"],\"9Y3BQE\":[\"删除机构\"],\"9YSB0Z\":[\"此调度缺少清单\"],\"9ZnrIx\":[\"查看并编辑您的订阅信息\"],\"9fRa7M\":[\"选择要删除的行\"],\"9hmrEp\":[\"重新启动于\"],\"9iX1S0\":[\"此操作将删除以下实例,您可能需要为以前连接到的任何实例重新运行安装包:\"],\"9jfn-S\":[\"未扩展\"],\"9l0RZY\":[\"点一个可用的节点来创建新链接。点击图形之外来取消。\"],\"9m7jms\":[\"当针对此联邦库存启动作业时,其主机将被路由到各自实例组的源库存。\"],\"9mfJJf\":[\"作业模板\"],\"9nhhVW\":[\"页\"],\"9nypdt\":[\"恢复初始值。\"],\"9odS2n\":[\"失败的主机\"],\"9og-0c\":[\"其他资源目前正在使用此执行环境。确定要删除它吗?\"],\"9rFgm2\":[\"订阅容量\"],\"9rvzNA\":[\"关联模态\"],\"9td1Wl\":[\"检查\"],\"9uI_rE\":[\"撤消\"],\"9u_dDE\":[\"无法访问的主机数\"],\"9uxVdR\":[\"源控制凭证\"],\"9wvWk3\":[\"此构建的库存输入 \\n 为两个类别创建一个组,并使用 \\n 限制(主机模式)仅返回位于这两个组 \\n 交集中的主机。\"],\"A1a8Ku\":[\"管理作业启动错误\"],\"A1taO8\":[\"搜索\"],\"A3o0Xd\":[\"要运行此机构的实例组。\"],\"A6paZd\":[\"添加联邦库存\"],\"A8lIi2\":[\"修订版本同步\"],\"A9-PUr\":[\"提交健康检查请求。请等待并重新载入页面。\"],\"AA2ASV\":[\"执行环境复制成功\"],\"ADVQ46\":[\"登录\"],\"ARAUFe\":[\"删除清单\"],\"AV22aU\":[\"出现错误...\"],\"AWOSPo\":[\"放大\"],\"Ab1y_G\":[\"取消构建的库存源同步\"],\"AgTBbk\":[[\"intervalValue\",\"plural\",{\"one\":[\"week\"],\"other\":[\"weeks\"]}]],\"AgTuXC\":[\"您没有权限删除 \",[\"pluralizedItemName\"],\":\",[\"itemsUnableToDelete\"]],\"Ai2U7L\":[\"主机\"],\"Aj3on1\":[\"启用外部日志记录\"],\"AoCBvp\":[\"作业分片\"],\"Apl-Vf\":[\"Red Hat 订阅清单\"],\"Apv-R1\":[\"如果您准备进行升级或续订,请<0>联系我们。\"],\"AqdlyH\":[\"在创建或编辑节点时无法选择具有提示密码凭证的作业模板\"],\"ArtxnQ\":[\"源控制 Refspec\"],\"AsLVdj\":[\"每行使用一个 IRC 频道或用户名。频道的\\n 井号 (#) 和用户的 at (@) 符号不是\\n 必需的。\"],\"AwUsnG\":[\"实例\"],\"AxC8wb\":[\"复制输出\"],\"AxPAXW\":[\"没有找到结果\"],\"Axi4f8\":[\"Dragging item \",[\"id\"],\". Item with index \",[\"oldIndex\"],\" in now \",[\"newIndex\"],\".\"],\"Azw0EZ\":[\"创建新智能清单\"],\"B0HFJ8\":[\"解除关联一个或多个主机失败。\"],\"B0P3qo\":[\"作业 ID:\"],\"B0dbFG\":[\"删除调度\"],\"B2Zb_F\":[\"JSON\"],\"B3ZzHO\":[\"最后自动\"],\"B4WcU9\":[\"由 \",[\"0\"],\" 批准 - \",[\"1\"]],\"B7FU4J\":[\"主机已启动\"],\"B8bpYS\":[\"上传一个包含了您的订阅的 Red Hat Subscription Manifest。要生成订阅清单,请访问红帽用户门户网站中的 <0>subscription allocations。\"],\"BAmn8K\":[\"选择资源类型\"],\"BERhj_\":[\"成功信息\"],\"BGNDgh\":[\"节点别名\"],\"BH7upP\":[\"POST\"],\"BIJ2_m\":[\"将用于此组织内作业的执行环境。当未在项目、作业模板或工作流级别显式分配执行环境时,将用作回退。\"],\"BNDplB\":[\"成功复制的模板\"],\"BWTzAb\":[\"手动\"],\"BaPk6N\":[\"用于定位 playbook 的基本路径。在此路径中找到的目录将列在 playbook 目录下拉列表中。基本路径和所选的 playbook 目录一起提供用于定位 playbook 的完整路径。\"],\"BfYq0G\":[\"源控制类型\"],\"Bg7M6U\":[\"未找到结果\"],\"Bl2Djq\":[\"查看令牌\"],\"Bl2eoO\":[\"已加密\"],\"BskWMl\":[\"无法访问\"],\"BsrdSv\":[\"使用JSON或YAML语法输入库存变量。使用单选按钮在两者之间切换。请参阅Ansible Controller文档,了解语法示例。\"],\"Bv8zdm\":[\"输入库存\"],\"BwJKBw\":[\"的\"],\"Bz7WRU\":[[\"0\",\"plural\",{\"one\":[\"请输入有效的电话号码。\"],\"other\":[\"请输入有效的电话号码。\"]}]],\"BzEFor\":[\"或\"],\"BzbzJb\":[\"事实\"],\"BzfzPK\":[\"项\"],\"C-gr_n\":[\"Azure AD 设置\"],\"C0sUgI\":[\"创建新清单\"],\"C2KEkR\":[\"SSH 密码\"],\"C3Q1LZ\":[\"查看 OIDC 设置\"],\"C4C-qQ\":[\"调度详情\"],\"C6GAUT\":[\"已展开\"],\"C7dP40\":[\"拒绝 \",[\"0\"],\" 失败。\"],\"C7s60U\":[\"Webhook 详情\"],\"CAL6E9\":[\"团队\"],\"CDOlBM\":[\"实例 ID\"],\"CE-M2e\":[\"信息\"],\"CGOseh\":[\"调度详情\"],\"CGZgZY\":[\"选择要解除关联的行\"],\"CG_9l6\":[\"LDAP 1\"],\"CGwKKr\":[[\"0\",\"plural\",{\"one\":[\"删除组?\"],\"other\":[\"删除组?\"]}]],\"CIEoqM\":[\"实例名\"],\"CKc7jz\":[\"主机详情模式\"],\"CL7QiF\":[\"键入回答,然后点右侧选择回答作为默认选项。\"],\"CLTHnk\":[\"问卷调查问题顺序\"],\"CMmwQ-\":[\"未知开始日期\"],\"CNZ5h9\":[\"数据保留的周期\"],\"CS8u6E\":[\"启用 Webhook\"],\"CSvk3a\":[\"Twilio 中与「Messaging\\n Service」关联的号码,格式为 +18005550199。\"],\"CW11B-\":[\"最小值\"],\"CXJHPJ\":[\"修改者(用户名)\"],\"CZDqWd\":[\"项目修订当前已过期。请刷新以获取最新的修订版本。\"],\"CZg9aH\":[\"选择主机\"],\"C_Lu89\":[\"使用 JSON 或 YAML 语法输入。示例语法请参阅 Ansible 控制器文档。\"],\"C_NnqT\":[\"创建新主机\"],\"Cc8jO8\":[\"选择要在访问远程主机时用来运行命令的凭证。选择包含 Ansbile 登录远程主机所需的用户名和 SSH 密钥或密码的凭证。\"],\"CcKMRv\":[\"其他资源目前正在使用此任务模板。确定要删除它吗?\"],\"CczdmZ\":[\"查看所有凭证。\"],\"CdGRti\":[\"查看所有通知模板。\"],\"Ce28nP\":[\"< 0 >注意:如果实例由< 1 >策略规则管理,则可以将其重新关联到此实例组。 \"],\"Cev3QF\":[\"超时分钟\"],\"ChTa9Z\":[[\"intervalValue\",\"plural\",{\"one\":[\"hour\"],\"other\":[\"hours\"]}]],\"CoPs3y\":[\"此工作流没有配置任何节点。\"],\"CoTqdo\":[\"\\n Note that you may still see the group in the list after\\n disassociating if the host is also a member of that group’s\\n children. This list shows all groups the host is associated\\n with directly and indirectly.\\n \"],\"Coyxic\":[\"点击这个按钮使用所选凭证和指定的输入验证到 secret 管理系统的连接。\"],\"Cs0oSA\":[\"查看设置\"],\"Csvbqs\":[\"在此处查看构建的清单插件文档。\"],\"Cx8SDk\":[\"刷新令牌过期\"],\"D-NlUC\":[\"系统\"],\"D1JWCq\":[[\"interval\"],\" minutes\"],\"D4euEu\":[\"其它身份验证设置\"],\"D89zck\":[\"周日\"],\"DBBU2q\":[\"此字段至少选择一个值。\"],\"DBC3t5\":[\"周日\"],\"DBHTm_\":[\"8 月\"],\"DFNPK8\":[\"运行健康检查\"],\"DGZ08x\":[\"全部同步\"],\"DHf0mx\":[\"创建新实例\"],\"DHrOgD\":[\"项目更新状态\"],\"DIKUI7\":[\"最小长度\"],\"DIX823\":[\"此字段必须是数字,且值小于 \",[\"max\"]],\"DJIazz\":[\"成功批准\"],\"DNLiC8\":[\"恢复设置\"],\"DNqHaO\":[\"此表提供了构建的库存插件的\\n 一些有用参数。有关完整的参数列表,请参阅 \"],\"DPfwMq\":[\"完成\"],\"DV-Xbw\":[\"首选语言\"],\"DVIUId\":[\"提示覆盖\"],\"DZNGtI\":[\"项目检出结果\"],\"D_oBkC\":[\"GitHub Team\"],\"DdlJTq\":[\"完全匹配(如果没有指定,则默认查找)。\"],\"De2WsK\":[\"此操作将从所选团队中解除该用户的所有角色。\"],\"DhSza7\":[\"控制器节点\"],\"DnkUe2\":[\"选择 Webhook 服务\"],\"DqnAO4\":[\"第一个自动的\"],\"Du6bPw\":[\"地址\"],\"Dug0C-\":[\"发生次数后\"],\"DyYigF\":[\"TACACS+ 设置\"],\"Dz7fsq\":[\"放大\"],\"E6Z4zF\":[\"无效的文件格式。请上传有效的红帽订阅清单。\"],\"E86aJB\":[\"解除关联角色!\"],\"E9wN_Q\":[\"最后的健康检查\"],\"EH6-2h\":[\"拓扑视图\"],\"EHu0x2\":[\"同步\"],\"EIBcgD\":[\"来自项目的源\"],\"EIkRy0\":[\"目标频道\"],\"EJQLCT\":[\"删除工作流任务模板失败。\"],\"ENDbv1\":[\"查看所有主机。\"],\"ENRWp9\":[\"注解的标签\"],\"ENyw54\":[\"相关组\"],\"EP-eCv\":[\"SAML 设置\"],\"EQ-qsg\":[\"工作流作业模板\"],\"ES0WE_\":[\"超时时\"],\"ETUQuF\":[\"删除一个或多个清单失败。\"],\"EWL-h4\":[\"host-description-\",[\"0\"]],\"E_QGRL\":[\"禁用\"],\"E_tJey\":[\"默认执行环境\"],\"Eb5CN1\":[[\"0\",\"plural\",{\"one\":[\"This organization is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"EdQY6l\":[\"无\"],\"Eff_76\":[\"本地时区\"],\"Eg4kGP\":[\"默认回答\"],\"EmSrGB\":[\"之前\"],\"EmfKjn\":[\"故障修复设置\"],\"Emna_v\":[\"编辑源\"],\"EmzUsN\":[\"查看节点详情\"],\"EnC3hS\":[\"自定义 pod 规格\"],\"EpH7Cd\":[\"删除凭证\"],\"Eq6_y5\":[\"this Tower documentation page\"],\"Eqp9wv\":[\"在查看JSON示例\"],\"EwxKbE\":[\"已删除\"],\"EzwCw7\":[\"编辑问题\"],\"F-0xxR\":[\"此模板中缺少资源。\"],\"F-LGli\":[\"您没有权限取消关联: \",[\"itemsUnableToDisassociate\"]],\"F-_-es\":[\"选择实例\"],\"F0xJYs\":[\"更新容量调整失败。\"],\"F2l57P\":[\"当新实例上线时将自动分配给此组的所有实例的\\n 最小百分比。\"],\"FCnKmF\":[\"创建用户令牌\"],\"FD8Y9V\":[\"点击节点图标显示详细信息。\"],\"FEr96N\":[\"主题\"],\"FFv0Vh\":[\"自动化\"],\"FG2mko\":[\"从列表中选择项\"],\"FGnH0p\":[\"这将取消此工作流中的所有后续节点\"],\"FMpB-A\":[\"< 0 >注意:如果实例由< 1 >策略规则管理,则手动关联的实例可能会自动与实例组解除关联。 \"],\"FO7Rwo\":[\"删除同行?\"],\"FQto51\":[\"扩展所有行\"],\"FTuS3P\":[\"此字段不得为空白\"],\"FV5MUV\":[\"如果用户需要有关其构建的组正确性的\\n 反馈,强烈建议\\n 在插件配置中使用 strict: true。\"],\"FXmp8Q\":[\"关联角色失败\"],\"FYJRCY\":[\"删除一个或多个项目失败。\"],\"F_Nk65\":[\"下载输出\"],\"F_c3Jb\":[\"自定义 Kubernetes 或 OpenShift Pod 的规格。\"],\"Failed\":[\"失败\"],\"Fanpmj\":[\"提示变量\"],\"FblMFO\":[\"选择一个指标\"],\"FclH3w\":[\"保存成功!\"],\"FfGhiE\":[\"保存工作流时出错!\"],\"FhTYgi\":[\"删除一个或多个作业模板失败。\"],\"FhhvWu\":[\"这将取消此工作流中的所有后续节点。\"],\"FiyMaa\":[\"选择 .json 文件\"],\"FjVFQ-\":[\"选择模块\"],\"FjkaiT\":[\"缩小\"],\"FkQvI0\":[\"编辑模板\"],\"FlvpdU\":[\"If enabled, show the changes made\\n by Ansible tasks, where supported. This is equivalent to Ansible’s\\n --diff mode.\"],\"FnSb-y\":[\"取消作业\"],\"FnZzou\":[\"实例状态\"],\"FncCci\":[\"RADIUS\"],\"Fo2bwm\":[\"操作者\"],\"Fo6qAq\":[\"Subversion 源代码控制的示例 URL 包括:\"],\"Fp0Rk4\":[\"描述此清单的可选标签,\\n 例如 'dev' 或 'test'。标签可用于分组和过滤\\n 清单和已完成的作业。\"],\"FqW8E0\":[\"已使用容量\"],\"FsGJXJ\":[\"清理\"],\"Fx2-x_\":[\"添加用户角色\"],\"G-jHgL\":[\"设置源路径为\"],\"G2KpGE\":[\"编辑项目\"],\"G3myU-\":[\"周二\"],\"G768_0\":[\"拒绝\"],\"G8jcl6\":[\"通知模板\"],\"G9MOps\":[\"用于库存同步的分支。如果为空,则使用项目默认值。仅当项目allow_override字段设置为true时才允许。\"],\"GDvlUT\":[\"角色\"],\"GGWsTU\":[\"已取消\"],\"GGuAXg\":[\"查看 SAML 设置\"],\"GHDQ7i\":[\"删除一个或多个机构失败。\"],\"GJKwN0\":[\"调度\"],\"GLZDtF\":[\"系统警告\"],\"GLwo_j\":[\"0(警告)\"],\"GMaU6_\":[\"启动时提示输入作业类型。\"],\"GO6s6F\":[\"作业设置\"],\"GRwtth\":[\"对实例运行健康检查\"],\"GSYBQc\":[\"API 服务/集成密钥\"],\"GTOcxw\":[\"编辑用户\"],\"GU9vaV\":[\"无法访问的主机\"],\"GXiLKo\":[\"文本区\"],\"GZIG7_\":[\"成功复制清单\"],\"G_Dwo_\":[\"Choose an answer type or format you want as the prompt for the user.\\n Refer to the Ansible Controller Documentation for more additional\\n information about each option.\"],\"GaJLE6\":[\"启动者\"],\"Gd-B71\":[\"未找到凭证类型。\"],\"Ge5ecx\":[\"最大主机数\"],\"GeIrWJ\":[[\"brandName\"],\" 标志\"],\"Gf3vm8\":[\"每页\"],\"GiXRTS\":[\"删除一个或多个用户令牌失败。\"],\"Gix1h_\":[\"查看所有作业\"],\"GkbHM9\":[\"查看所有项目。\"],\"Gn7TK5\":[\"切换工具\"],\"GpNoVG\":[\"请添加一个调度来填充此列表。\"],\"GpWp6E\":[\"定义系统级的特性和功能\"],\"GtycJ_\":[\"任务\"],\"H0z3JJ\":[\"这些参数与指定的模块一起使用。您可以通过单击以下位置查找有关 \",[\"moduleName\"],\" 的信息 \"],\"H1M6a6\":[\"查看所有实例。\"],\"H3kCln\":[\"主机名\"],\"H6jbKn\":[\"用户界面设置\"],\"H7OUPr\":[\"天\"],\"H7e4dl\":[\"使用 YAML 或 JSON 提供\\n 键/值对。\"],\"H86f9p\":[\"折叠\"],\"H9MIed\":[\"执行节点\"],\"HAi1aX\":[\"轮转 Webhook 密钥\"],\"HAzhV7\":[\"凭证\"],\"HDULRt\":[\"独一无二的房东\"],\"HGOtRu\":[\"通知测试失败。\"],\"HIfMSF\":[\"多项选择选项\"],\"HLAK2g\":[\"This action will cancel the following jobs:\"],\"HODq3s\":[\"无法拒绝一个或多个工作流程审批。\"],\"HQ7e8y\":[\"完全相同不区分大小写的版本。\"],\"HQ7oEt\":[\"返回到团队\"],\"HUx6pW\":[\"注入程序配置\"],\"HajiZl\":[\"月\"],\"HbaQks\":[\"每行一个电子邮件地址,为这类通知创建一个接收者列表。\"],\"HbnjOn\":[[\"interval\"],\" weeks\"],\"HcznyH\":[\"同步部分或所有清单源失败。\"],\"HdE1If\":[\"频道\"],\"HdErwL\":[\"选择要批准的行\"],\"Hf0QDK\":[\"成功复制的项目\"],\"Hhnh8d\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 天\"],\"other\":[\"#\",\" 天\"]}]],\"HiTf1W\":[\"取消恢复\"],\"HjxnnB\":[\"选择模块\"],\"HlhZ5D\":[\"使用 TLS\"],\"HoHveO\":[\"返回同时满足此过滤器和其他过滤器的结果。 如果未选择任何内容,这是默认的集合类型。\"],\"HpK_8d\":[\"重新加载\"],\"Ht1JWm\":[\"通知颜色\"],\"HwpTx4\":[\"控制 playbook 执行时 ansible 将产生的输出级别。\"],\"I0LRRn\":[\"下载捆绑包\"],\"I7Epp-\":[\"选项详情\"],\"I9NouQ\":[\"未找到订阅\"],\"ICi4pv\":[\"自动化\"],\"ICt7Id\":[\"节点类型\"],\"IEKPuq\":[\"滚动到下一个\"],\"IGQ11b\":[\"与 webhook 服务共享的密钥。该服务使用它来签署其请求,以便只有您的存储库才能触发项目同步。键入您自己的密钥以将其作为配置进行管理,或将该字段留空以在保存时生成一个。\"],\"IJAVcb\":[\"返回到应用程序\"],\"IKg_un\":[\"目标频道或用户\"],\"IMJYui\":[\"每行使用一个电话号码来指定将 SMS 消息\\n 路由到何处。电话号码应格式化为 +11231231234。如需更多信息,请参阅 Twilio 文档\"],\"IN6gbp\":[\"单击以重新安排调查问题的顺序\"],\"IPusY8\":[\"在执行更新之前删除任何本地修改。\"],\"ISuwrJ\":[\"编辑执行环境\"],\"IV0EjT\":[\"测试通知\"],\"IVvM2B\":[\"启用的选项\"],\"IWoF_f\":[\"查看问卷调查\"],\"IZfe0p\":[\"源控制分支\"],\"Igz8MU\":[\"过去两周\"],\"IiR1sT\":[\"节点类型\"],\"IjDwKK\":[\"登录类型\"],\"Ikhk0q\":[\"此工作流作业模板的 Webhook 服务。\"],\"Iqm2E5\":[\"请添加 \",[\"pluralizedItemName\"],\" 来填充此列表\"],\"IrC12v\":[\"应用程序\"],\"IrI9pg\":[\"结束日期\"],\"IsJ8i6\":[\"为工作流选择一个分支。此分支应用于所有提示输入分支的任务模板节点。\"],\"IspLSK\":[\"未找到管理作业。\"],\"J0zi6q\":[\"跳过标签\"],\"J2HgCR\":[\"Red Hat, Inc.\"],\"J2d1y8\":[\"根据成功的作业过滤\"],\"J4y7Uk\":[\"工作流已取消 \"],\"J8VgfD\":[\"检查给定字段或相关对象是否为 null;需要布尔值。\"],\"JEGlfK\":[\"已开始\"],\"JFnJqF\":[\"已经过\"],\"JFphCp\":[\"3(调试)\"],\"JGvwnU\":[\"最后使用\"],\"JIX50w\":[\"阻止实例组回退:如果启用,任务模板将阻止将任何清单或组织实例组添加到要运行的首选实例组列表中。\"],\"JJwEMx\":[\"主机已删除\"],\"JKZTiL\":[\"这些是支持的标准运行命令运行的详细程度。\"],\"JL3si7\":[\"更新\"],\"JLjfEs\":[\"删除一个或多个调度失败。\"],\"JOmgRg\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 个月\"],\"other\":[\"#\",\" 个月\"]}]],\"JRa4kV\":[\"当源代码控制存储库中发生推送时同步项目,以便本地副本始终保持最新,而无需在每次任务启动时轮询或更新。\"],\"JTHoCu\":[\"切换更改\"],\"JUwjsw\":[\"Select an activity type\"],\"JXgd33\":[\"返回到仪表盘。\"],\"J_2nGO\":[\"The execution environment that will be used for jobs\\n inside of this organization. This will be used a fallback when\\n an execution environment has not been explicitly assigned at the\\n project, job template or workflow level.\"],\"J_DUZt\":[\"实例组\"],\"Ja4VHl\":[[\"0\"],\" 更多\"],\"JgP090\":[\"跟踪子模块\"],\"JjcTk5\":[\"社交登录\"],\"JjfsZM\":[\"删除工作流批准\"],\"JppQoT\":[\"上次重新计算日期:\"],\"JsY1p5\":[\"已拒绝\"],\"Jvv6rS\":[\"多选\"],\"JwqOfG\":[\"评估时机\"],\"Jy9qCv\":[\"取消编辑登录重定向\"],\"K5AykR\":[\"删除团队\"],\"K93j4j\":[\"标签名称\"],\"KC2nS5\":[\"资源已删除\"],\"KDcLJ6\":[\"YAML:\"],\"KEY0qH\":[\"测试通过\"],\"KM6m8p\":[\"Team\"],\"KNOsJ0\":[\"描述此任务模板的可选标签,例如 'dev' 或 'test'。标签可用于对任务模板和已完成的任务进行分组和过滤。\"],\"KQ9EQm\":[\"如何使用构建的库存插件\"],\"KR9Aiy\":[\"This inventory is currently being used by some templates. Are you sure you want to delete it?\"],\"KRf0wm\":[\"凭证类型\"],\"KTvwHj\":[\"凭证输入源\"],\"KVbzjm\":[\"可视化工具\"],\"KXFYp9\":[\"获取订阅\"],\"KXnokb\":[\"全局可用的执行环境无法重新分配给特定机构\"],\"KZp4lW\":[\"Lookup select\"],\"K_MYeX\":[\"查看用户详情\"],\"KeRkFA\":[\"清除订阅选择\"],\"KeqCdz\":[\"来自控制节点的对等节点\"],\"Ki_j_-\":[\"留空以在保存时生成新的 webhook 密钥\"],\"KjBkMe\":[\"其他资源目前正在此容器组中。确定要删除它吗?\"],\"KjVvNP\":[\"面板 ID\"],\"KkMfgW\":[\"作业模板\"],\"KkzJWF\":[\"第一次自动化\"],\"KlQd8_\":[\"令牌访问的范围\"],\"KnN1Tu\":[\"过期\"],\"KoCnPE\":[\"取消作业\"],\"KopV8H\":[\"只显示 root 组\"],\"KxIA0h\":[\"切换主机\"],\"Kz9DSl\":[\"添加现有主机\"],\"KzQFvE\":[\"编辑机构\"],\"L1Ob4t\":[\"详情标签页\"],\"L3ooU6\":[\"凭证\"],\"L7Nz3F\":[\"缺少资源\"],\"L8fEEm\":[\"组\"],\"L973Qq\":[\"请求订阅\"],\"LCl8Ck\":[\"日期搜索输入\"],\"LGl_pR\":[\"查看作业设置\"],\"LGryaQ\":[\"创建新凭证\"],\"LQ29yc\":[\"开始库存源同步\"],\"LQRys9\":[\"子模块将跟踪其 master 分支(或 .gitmodules 中指定的其他分支)上的最新提交。如果否,子模块将保持在主项目指定的修订版本。这相当于为 git submodule update 指定 --remote 标志。\"],\"LQTgjH\":[\"未找到项目。\"],\"LRePxk\":[\"新实例上线时将自动分配给此组的最小实例数。\"],\"LSUePQ\":[\"启动 | \",[\"0\"]],\"LULLsO\":[\"查看所有机构。\"],\"LV5a9V\":[\"对等\"],\"LVecP9\":[\"用户角色\"],\"LYAQ1X\":[\"启用并发作业\"],\"LZr1lR\":[\"没有找到实例组。\"],\"Lc0RHh\":[\"删除调度\"],\"LgD0Cy\":[\"应用程序名\"],\"LhMjLm\":[\"时间\"],\"Ll7Jei\":[\"LDAP3\"],\"LnYbGj\":[\"编辑问卷调查\"],\"Lnnjmk\":[\"< 0 > < 1/>新 \",[\"brandName\"],\" 用户界面的技术预览可在< 2 >此处找到。\"],\"Lqygiq\":[\"置备回调\"],\"LtBtED\":[\"切换通知成功\"],\"LuXP9q\":[\"访问\"],\"LwHwt1\":[[\"brandName\"],\" 订阅\"],\"Lwovp8\":[\"如果启用,将允许同时运行此任务模板。\"],\"M0okDw\":[\"为数据收集、日志和登录设置偏好\"],\"M73whl\":[\"上下文\"],\"MA-mp9\":[\"Webhook 引用过滤器\"],\"MA7cMf\":[\"构建的库存参数表\"],\"MAI_nw\":[\"请使用上面的过滤器尝试另一个搜索\"],\"MAV-SQ\":[\"未找到凭证。\"],\"MApRef\":[\"您确定要编辑登录重定向覆盖 URL? 这样做可能会影响用户在同时禁用本地身份验证后登录系统的能力。\"],\"MD0-Al\":[\"您的会话即将到期\"],\"MDQLec\":[\"控制Ansible将为库存源更新作业生成的输出级别。\"],\"MGpavd\":[\"键 typeahead\"],\"MHM-bv\":[\"无效的链路目标。无法连接到子节点或祖先节点。不支持图形周期。\"],\"MHbbol\":[\" 作业分片\"],\"MKEPCY\":[\"关注\"],\"MP1v-1\":[\"图例\"],\"MP8dU9\":[\"完整镜像位置,包括容器注册表、镜像名称和版本标签。\"],\"MQPvAa\":[\"启动时提示输入标签。\"],\"MQoyj6\":[\"工作流作业模板\"],\"MTLPCv\":[\"当父节点出现故障状态时执行。\"],\"MVw5um\":[\"2(更多详细内容)\"],\"MZU5bt\":[\"删除一个或多个组失败。\"],\"M_gXds\":[\"Note: This instance may be re-associated with this instance group if it is managed by \"],\"MdhgLT\":[\"IRC 服务器密码\"],\"MfCEiB\":[\"Galaxy 凭证\"],\"MfQHgE\":[\"保存的天数\"],\"Mfk6hJ\":[\"删除一个或多个模板失败。\"],\"Mhn5m4\":[\"注册表凭证\"],\"Mn45Gz\":[\"返回到实例组\"],\"MnbH31\":[\"页\"],\"MofjBu\":[\"将用于使用此项目的任务的执行环境。当未在任务模板或工作流级别显式分配执行环境时,将用作回退。\"],\"MpLngK\":[\"此项目的 webhook 端点。将其添加到存储库的 webhook 配置中,以便推送触发项目同步。\"],\"MpZRQy\":[\"Git\"],\"MuhG5I\":[[\"0\",\"plural\",{\"one\":[\"This approval cannot be deleted due to insufficient permissions or a pending job status\"],\"other\":[\"These approvals cannot be deleted due to insufficient permissions or a pending job status\"]}]],\"MwCc2O\":[\"此工作流作业模板的 Webhook 凭证。\"],\"Mwf3Mw\":[\"使用搜索过滤器填充此清单的主机。\\n 示例:ansible_facts__ansible_distribution:\\\"RedHat\\\"。\\n 有关更多语法和示例,请参阅\\n 文档。有关更多语法和示例,请参阅 Ansible Controller\\n 文档。\"],\"MzcRa_\":[\"用户和 Automation Analytics\"],\"Mzqo60\":[\"要与工件进行比较的值。尽可能解释为 JSON(例如 true、3),否则解释为纯字符串。\"],\"N1U4ZG\":[\"订阅合规性\"],\"N36GRB\":[\"此字段必须是数字,且值大于 \",[\"min\"]],\"N40H-G\":[\"所有\"],\"N5vmCy\":[\"已建库存\"],\"N6GBcC\":[\"确认删除\"],\"N7wOty\":[\"选择此任务要执行的 playbook。\"],\"NAKA53\":[\"主机故障\"],\"NBONaK\":[\"收集事实\"],\"NCVKhy\":[\"最近的作业\"],\"NDQvUO\":[\"启动时提示输入标记。\"],\"NIuIk1\":[\"无限\"],\"NLKsgx\":[[\"pluralizedItemName\"],\" 列表\"],\"NO1ZxL\":[\"应用程序名\"],\"NPfgIB\":[\"秒\"],\"NQHZnb\":[\"整数\"],\"NRn4V6\":[[\"interval\"],\" months\"],\"NUNUrW\":[\"注解的标签(可选)\"],\"NW-xDQ\":[\"这会将此页面上的所有配置值恢复到\\n 其工厂默认值。您确定要继续吗?\"],\"NX18CF\":[\"当天或之后\"],\"NYxilo\":[\"最大并发作业数\"],\"Na9fIV\":[\"没有找到项。\"],\"NcVaYu\":[\"完成时间\"],\"NeA1eI\":[\"向右平移\"],\"Never\":[\"永不\"],\"NgD4On\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"此操作将取消以下作业:\"],\"other\":[\"此操作将取消以下作业:\"]}]],\"NjnDuY\":[\"Dragging started for item id: \",[\"newId\"],\".\"],\"NjqMGF\":[\"资源类型\"],\"NnH3pK\":[\"测试\"],\"No Jobs\":[\"没有作业\"],\"NpJHAp\":[\"在创建或编辑节点时无法选择缺失的清单或项目的作业模板。选择另一个模板或修复缺少的字段以继续。\"],\"NqIlWb\":[\"最后运行\"],\"NrGRF4\":[\"订阅选择模态\"],\"NsXTPu\":[\"要使用 ansible 事实创建智能清单,请转至智能清单屏幕。\"],\"NtD3hJ\":[\"相关密钥\"],\"Nu4DdT\":[\"同步\"],\"Nu4oKW\":[\"描述\"],\"Nu7VHX\":[\"选择应用到所选资源的角色。请注意,所有选择的角色将应用到所有选择的资源。\"],\"O-OYOe\":[\"编辑团队\"],\"O06Rp6\":[\"用户界面\"],\"O1Aswy\":[\"永不过期\"],\"O28qFz\":[\"查看作业 \",[\"0\"]],\"O2EuOK\":[\"使用 SAML \",[\"samlIDP\"],\" 登陆\"],\"O2UpM1\":[\"浏览\"],\"O3oNi5\":[\"电子邮件\"],\"O4ilec\":[\"regex 不区分大小写的版本。\"],\"O5pAaX\":[\"选择一个实例和一个指标来显示图表\"],\"O78b13\":[\"此令牌所属的应用,或将此字段留空以创建个人访问令牌。\"],\"O8_96D\":[\"侦听器端口\"],\"O9VQlh\":[\"选择频率\"],\"OA8xiA\":[\"向左平移\"],\"OA99Nq\":[\"房东最后一次自动操作是什么时候\"],\"OC4Tzv\":[\"此处\"],\"OGoqLy\":[\"# sources with sync failures.\"],\"OHGMM6\":[\"开始日期/时间\"],\"OIv5hN\":[\"重定向到订阅详情\"],\"OJ9bHy\":[\"解除关联一个或多个组关联。\"],\"OOq_rD\":[\"Playbook 运行\"],\"OPTWH4\":[\"启用 HTTPS 证书验证\"],\"ORxrw7\":[\"剩余的天数\"],\"OSH8xi\":[\"Hop(跃点)\"],\"OcRJRt\":[\"确认取消作业\"],\"Oe_VOY\":[\"删除一个或多个实例失败。\"],\"OgB1k4\":[\"参数\"],\"OiCz65\":[\"Grafana URL\"],\"Oiqdmc\":[\"使用 GitHub Organizations 登录\"],\"Oj2Ix6\":[\"任务被取消前的运行时间(以秒为单位)。默认为 0,表示没有任务超时。\"],\"OjwX8k\":[\"令牌信息\"],\"OlpaBt\":[\"并发任务:如果启用,将允许同时运行此任务模板。\"],\"OmbooC\":[\"任务已启动\"],\"OogRLI\":[\"未找到联邦库存。\"],\"OqE3G-\":[\"对 id 字段进行精确搜索。\"],\"Osn70z\":[\"调试\"],\"OvBnOM\":[\"返回到设置\"],\"OyGPiW\":[\"订阅设置\"],\"OzssJK\":[\"运行命令\"],\"P3spiP\":[\"返回到模板\"],\"P7d85D\":[\"删除团队访问\"],\"P8fBlG\":[\"身份验证\"],\"PByO0X\":[\"投票\"],\"PCEmEr\":[\"用户令牌\"],\"PJ1B0S\":[[\"0\",\"plural\",{\"one\":[\"This project is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"PJf54Q\":[\"返回到源\"],\"PKTjJ3\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"weekday\"],\" of \",[\"month\"]],\"4\":[\"The fourth \",[\"weekday\"],\" of \",[\"month\"]],\"5\":[\"The fifth \",[\"weekday\"],\" of \",[\"month\"]],\"one\":[\"The first \",[\"weekday\"],\" of \",[\"month\"]],\"two\":[\"The second \",[\"weekday\"],\" of \",[\"month\"]]}]],\"PLzYyl\":[\"频率例外详情\"],\"PMk2Wg\":[\"取消置备失败\"],\"POKy-m\":[\"复制执行环境\"],\"PPsHsC\":[\"全部恢复为默认值\"],\"PQPOpT\":[\"清单文件\"],\"PRuZiQ\":[\"重新刷新修订版本\"],\"PUnovD\":[\"Amazon EC2\"],\"PVCOQE\":[\"已删除对等点。请确保再次运行 \",[\"0\"],\" 的安装捆绑包,以便看到更改生效。\"],\"PWwwY2\":[\"解除关联\"],\"PYPqaM\":[\"面板 ID(可选)\"],\"PZBWpL\":[\"Switch to light mode\"],\"P_s0vy\":[\"无法查找此 webhook 服务的凭证类型,因此 webhook 凭证字段不可用。\"],\"PaTL2O\":[\"接收者列表\"],\"PhufXn\":[\"任务分片父级\"],\"Pi5vnX\":[\"无法同步构建的库存源\"],\"PiK6Ld\":[\"周六\"],\"PiRb8z\":[\"最新同步\"],\"PjkoCm\":[\"您确定要删除以下节点:\"],\"PkVlOm\":[\"以 JSON 格式指定 HTTP 标头。有关示例语法,\\n 请参阅 Ansible Controller 文档。\"],\"Po1btV\":[\"全局导航\"],\"Po7y5X\":[\"复制执行环境失败\"],\"PvgcEq\":[\"Draggable list to reorder and remove selected items.\"],\"PwAMWD\":[\"折叠所有作业事件\"],\"PyV1wC\":[\"防止实例组 Fallback\"],\"Q3P_4s\":[\"任务\"],\"Q4hWRC\":[\"Workflow Jobs (\",[\"total\"],\")\"],\"Q5ZW8j\":[\"订阅表\"],\"QF_MpS\":[\"\\n 请注意,只有直接位于此组中的主机才能\\n 被取消关联。子组中的主机必须直接从它们所属的\\n 子组级别取消关联。\\n \"],\"QFdBqu\":[\"Mattermost\"],\"QGbLBK\":[\"作业 ID\"],\"QHF6CU\":[\"Play\"],\"QIOH6p\":[\"启动者(用户名)\"],\"QIpNLR\":[\"没有清单同步失败。\"],\"QIq3_3\":[\"注:选择它们的顺序设定执行优先级。选择多个来启用拖放。\"],\"QJbMvX\":[\"不允许在启动时需要密码的凭证。请删除以下凭证或将其替换为相同类型的凭证以继续: \",[\"0\"]],\"QJowYS\":[\"确认删除\"],\"QKUQw1\":[\"创建新主机\"],\"QKbQTN\":[\"活动流类型选择器\"],\"QOF7Jg\":[\"批准 \",[\"0\"],\" 失败。\"],\"QPRWww\":[\"运行类型\"],\"QR908H\":[\"设置名称\"],\"QT1rDU\":[\"GitHub Enterprise\"],\"QTwM6Y\":[\"包含此任务将执行的 playbook 的项目。\"],\"QYKS3D\":[\"最近的作业\"],\"QamIPZ\":[\"请点开始按钮开始。\"],\"Qay_5h\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"Qd2E32\":[\"从给定的主机变量字典中检索启用状态。启用的变量可以使用点符号指定,例如: 'foo.bar'\"],\"Qf36YE\":[\"详细程度\"],\"QgnNyZ\":[\"同步错误\"],\"Qhb8lT\":[\"创建新应用\"],\"QmvYrA\":[\"工作流作业模板的可选描述。\"],\"QnJn75\":[\"最后运行\"],\"Qv59HG\":[\"编辑凭证类型\"],\"Qv91_c\":[\"LDAP 2\"],\"QyjCeq\":[\"容量\"],\"R-uZ8Y\":[\"使用 SAML 登陆\"],\"R633QG\":[\"返回到工作流批准\"],\"R7s3iG\":[\"返回到\"],\"R9Khdg\":[\"自动\"],\"R9sZsA\":[\"删除所有组和主机\"],\"RBDHUE\":[\"启动时提示输入执行环境。\"],\"RI8cIw\":[\"允许此机构管理的最大主机数。\\n 值默认为 0,表示没有限制。\\n 如需更多详情,请参阅 Ansible 文档。\"],\"RIcSTA\":[\"过期于\"],\"RIeAlp\":[\"每次使用此清单运行作业时,请在执行作业任务之前刷新选定来源的清单。\"],\"RK1gDV\":[\"使用 Azure AD 登陆\"],\"RMdd1C\":[\"无(运行一次)\"],\"RO9G1f\":[\"此字段必须大于 0\"],\"RPnV2o\":[\"搜索过滤器没有产生任何结果…\"],\"RThfvh\":[\"解除关联相关的团队?\"],\"R_mzhp\":[\"用户令牌失败。\"],\"RbIaa9\":[\"未找到令牌\"],\"RdLvW9\":[\"重新启动作业\"],\"Rguqao\":[\"选择要删除的行\"],\"RhOukN\":[[\"interval\"],\" hour\"],\"RiQMUh\":[\"运行中\"],\"RjIKOw\":[\"无法更改主机上的清单\"],\"RjkhdY\":[\"字段以值开头。\"],\"RkXlPZ\":[\"GitHub\"],\"RlsPz7\":[\"您确定要从删除这个链接吗?\"],\"Rm1iI_\":[\"启动时提示输入变量。\"],\"Roaswv\":[\"User Guide\"],\"RpKSl3\":[\"成功复制的凭证\"],\"RsZ4BA\":[\"滚动到最后\"],\"RtKKbA\":[\"最后\"],\"Ru59oZ\":[\"为此模板启用 webhook。\"],\"RuEWFx\":[\"于日期\"],\"RuiOO0\":[\"删除一个或多个应用程序失败。\"],\"Rw1xwN\":[\"内容加载\"],\"RxzN1M\":[\"启用\"],\"RyPas1\":[\"Cancel selected jobs\"],\"S0kLOH\":[\"ID\"],\"S2nsEw\":[\"大于比较。\"],\"S5gO6Y\":[\"向工作流传递额外的命令行变量。\"],\"S6zj7M\":[\"对于任务模板,选择 run 以执行 playbook。选择 check 仅检查 playbook 语法、测试环境设置并报告问题,而不执行 playbook。\"],\"S7kN8O\":[\"删除一个或多个用户失败。\"],\"S7tNdv\":[\"成功时\"],\"S8FW2i\":[\"要由此源同步的库存文件。您可以从下拉列表中进行选择,也可以在输入内容中输入文件。\"],\"SA-KXq\":[\"向上平移\"],\"SAw-Ux\":[\"您确定要从 \",[\"username\"],\" 中删除 \",[\"0\"],\" 吗?\"],\"SBfnbf\":[\"查看所有执行环境\"],\"SC1Cur\":[\"未知状态\"],\"SDND4q\":[\"没有配置\"],\"SIJDi3\":[\"容量调整\"],\"SJjggI\":[\"更新选项\"],\"SJmHMo\":[\"文档。\"],\"SLm_0U\":[\"IRC 服务器端口\"],\"SODyJ3\":[\"主机异步正常\"],\"SRiPhD\":[\"取消节点删除\"],\"SV5nA1\":[\"前面的一些步骤有错误\"],\"SVG6MY\":[\"将字段恢复到之前保存的值\"],\"SYbJcn\":[\"编辑通知模板\"],\"SZvybZ\":[\"LDAP 默认\"],\"SZw9tS\":[\"查看详情\"],\"SbRHme\":[\"文本区\"],\"Se_E0z\":[\"工作流任务\"],\"Sgr5NW\":[\"选择一个要运行健康检查的实例。\"],\"Sh2XTJ\":[\"通知类型\"],\"SiexHs\":[\"仪表盘(所有活动)\"],\"Sja7f-\":[\"房东/体验达人被删除了多少次\"],\"Sjoj4f\":[\"凭证名称\"],\"SlfejT\":[\"错误\"],\"SoREmD\":[\"应用程序和令牌\"],\"SqA8uD\":[\"作业运行\"],\"SqLEdN\":[\"删除智能清单失败。\"],\"SqYo9m\":[\"返回到实例\"],\"Ssdrw4\":[\"已弃用\"],\"Successful\":[\"成功\"],\"SvPvEX\":[\"工作流批准的消息正文\"],\"Svkela\":[\"进入上一页\"],\"SwJLlZ\":[\"工作流拒绝的消息正文\"],\"SxGqey\":[\"通用 OIDC 设置\"],\"Sxm8rQ\":[\"用户\"],\"SzFxHC\":[\"LDAP 设置\"],\"SzQMpA\":[\"Forks\"],\"T2M20E\":[\"这个\"],\"T2mGOG\":[\"docs.ansible.com\"],\"T2x15z\":[\"切换通知失败。\"],\"T4a4A4\":[\"Webhook 密钥\"],\"T7yEGN\":[\"用户为此应用程序获取令牌时必须使用的授权类型\"],\"T91vKp\":[\"播放\"],\"T9hZ3D\":[\"GitHub Enterprise Team\"],\"TAnffV\":[\"编辑此节点\"],\"TBH48u\":[\"删除团队失败。\"],\"TC32CH\":[\"数据被保留的天数\"],\"TD1APv\":[\"获取订阅\"],\"TJVvMD\":[\"相关的搜索类型\"],\"TLomdD\":[[\"sessionCountdown\",\"plural\",{\"one\":[\"You will be logged out in \",\"#\",\" second due to inactivity\"],\"other\":[\"You will be logged out in \",\"#\",\" seconds due to inactivity\"]}]],\"TMJ39S\":[\"解除关联角色\"],\"TMLAx2\":[\"必需\"],\"TO3h59\":[\"从外部 secret 管理系统填充字段\"],\"TO4OtU\":[\"Insights 凭证\"],\"TOjYb_\":[\"查看已建库存房东详情\"],\"TP9_K5\":[\"令牌\"],\"TRDppN\":[\"Webhook\"],\"TTMvf7\":[\"组类型\"],\"TU6IDa\":[\"用户类型\"],\"TXKmNM\":[\"必须选择一个清单\"],\"TZEuIE\":[\"返回到凭证类型\"],\"T_87By\":[\"参数\"],\"Ta0ts5\":[\"显示更改\"],\"TcnG-2\":[\"创建新执行环境\"],\"TgSxH9\":[\"部署回调 URL\"],\"TkiN8D\":[\"用户详情\"],\"Tmh24b\":[\"如果启用,任务模板将阻止将任何清单或组织实例组添加到要运行的首选实例组列表中。注意:如果启用此设置且您提供了空列表,则将应用全局实例组。\"],\"Tmuvry\":[\"设置类型 typeahead\"],\"ToOoEw\":[\"复制凭证\"],\"Tof7pX\":[\"作业\"],\"Tq71UT\":[\"工作日\"],\"Tx3NMN\":[\"私钥密码\"],\"TxKKED\":[\"查看已建库存明细\"],\"TyaPAx\":[\"系统管理员\"],\"Tz0i8g\":[\"设置\"],\"U-nEJl\":[\"查看 GitHub 设置\"],\"U011Uh\":[\"最后看到\"],\"U7rA2a\":[\"未选中时,将执行合并,将局部变量与外部源上的局部变量相结合。\"],\"UDf-wR\":[\"已消耗的订阅\"],\"UEaj7U\":[\"清单同步失败\"],\"UJpDop\":[\"Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"UJsNNk\":[\"源控制修订\"],\"UPasE4\":[\"Azure AD 默认\"],\"UPmrRI\":[\"结尾不区分大小写的版本。\"],\"URmyfc\":[\"详情\"],\"UX2wV1\":[[\"0\",\"plural\",{\"one\":[\"This credential is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"UXBCwc\":[\"姓氏\"],\"UY6iPZ\":[\"如果启用,控制节点将自动对等到此实例。如果禁用,实例将仅连接到关联的对等点。\"],\"UYD5ld\":[\"点 Update Revision on Launch\"],\"UYUgdb\":[\"顺序\"],\"U_JUCL\":[\"Red Hat Insights\"],\"Ua-Kc6\":[\"www.json.org\"],\"UbOul8\":[\"您确定要删除:\"],\"UbRKMZ\":[\"待处理\"],\"UbqhuT\":[\"获取完整节点资源对象失败。\"],\"Uc_tSU\":[\"切换工具\"],\"UgFDh3\":[\"其他资源目前正在使用此清单。确定要删除它吗?\"],\"UirGxE\":[\"错误\"],\"UlykKR\":[\"第三\"],\"Uo1S9q\":[\"使用 Azure AD Tenant 登录\"],\"UueF8b\":[\"执行环境缺失或删除。\"],\"UvGjRK\":[\"如果启用,以管理员身份运行此 playbook。\"],\"UwJJCk\":[\"重新启动失败的主机\"],\"UxKoFf\":[\"导航\"],\"V-7saq\":[\"删除 \",[\"pluralizedItemName\"],\"?\"],\"V-rJKF\":[\"Seconds\"],\"V0Xv3_\":[[\"intervalValue\",\"plural\",{\"one\":[\"day\"],\"other\":[\"days\"]}]],\"V0fM4k\":[\"用户分析\"],\"V1EGGU\":[\"名字\"],\"V2-omF\":[[\"0\",\"plural\",{\"one\":[\"在处理最终删除之前,清单将处于待处理状态。\"],\"other\":[\"在处理最终删除之前,清单将处于待处理状态。\"]}]],\"V2RwJr\":[\"侦听器地址\"],\"V2q9w9\":[\"If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode.\"],\"V3z83V\":[\"LDAP 3\"],\"V4WsyL\":[\"添加链接\"],\"V5RUpn\":[\"接收者列表\"],\"V7qsYh\":[\"注意:这些凭据的顺序设置内容同步和查找的优先级。选择多个来启用拖放。\"],\"V9xR6T\":[\"展开部分\"],\"VAI2fh\":[\"创建新容器组\"],\"VAcXNz\":[\"周三\"],\"VEj6_Y\":[\"工作流批准\"],\"VFvVc6\":[\"编辑详情\"],\"VJUm9p\":[\"当前页\"],\"VK2gzi\":[\"执行 playbook 时要使用的并行或同时进程的数量。空值或小于 1 的值将使用 Ansible 默认值,通常为 5。可以通过更改以下内容来覆盖默认的 forks 数量\"],\"VL2WkJ\":[\"最后一个 \",[\"dayOfWeek\"]],\"VLdRt2\":[\"启动同步源\"],\"VNUs2y\":[\"最大分叉数\"],\"VSJ6r5\":[\"调度处于活跃状态\"],\"VSim_H\":[\"删除清单源\"],\"VTDO7X\":[\"事件详情模式\"],\"VU3Nrn\":[\"缺少\"],\"VWL2DK\":[\"GitHub Organization\"],\"VXFjd8\":[\"指标\"],\"VZfXhQ\":[\"Hop(跃点)节点\"],\"VdcFUD\":[\"最终用户许可证协议\"],\"ViDr6F\":[\"添加新组\"],\"VmClsw\":[\"已删除与该节点关联的资源。\"],\"VmvLj9\":[\"根据客户端设备的安全程度设置为 Public 或 Confidential。\"],\"Vqd-tq\":[\"确认全部恢复\"],\"Vqgeac\":[\"Press space or enter to begin dragging,\\n and use the arrow keys to navigate up or down.\\n Press enter to confirm the drag, or any other key to\\n cancel the drag operation.\"],\"Vvbbn2\":[\"删除角色失败。\"],\"Vw8l6h\":[\"发生错误\"],\"VzE_M-\":[\"切换通知失败\"],\"W-O1E9\":[\"复制项目\"],\"W1iIqa\":[\"查看清单组\"],\"W3TNvn\":[\"返回到用户\"],\"W3pOzF\":[\"允许在使用此项目的任务模板中更改源代码控制分支或修订版本。\"],\"W6uTJi\":[\"获取实例失败。\"],\"W7DGsV\":[\"启动者(用户名)\"],\"W9XAF4\":[\"周中日\"],\"W9uQXX\":[\"提示\"],\"WAjFYI\":[\"开始日期\"],\"WD8djW\":[\"确认链接删除\"],\"WL91Ms\":[\"Delete Groups?\"],\"WPM2RV\":[\"回答类型\"],\"WQJduu\":[\"键选择\"],\"WTN9YX\":[\"帐户令牌\"],\"WTV15I\":[\"编辑登录重定向覆写 URL\"],\"WVzGc2\":[\"订阅\"],\"WX9-kf\":[\"IRC Nick\"],\"Wc6m4J\":[\"要获取的 refspec(传递给 Ansible git 模块)。此参数允许通过分支字段访问其他方式无法获得的引用。\"],\"Wdl2f2\":[\"此字段必须至少包含 \",[\"0\"],\" 个字符\"],\"WgsBEi\":[\"请至少输入一个搜索过滤来创建一个新的智能清单\"],\"WhSFGl\":[\"按 \",[\"name\"],\" 过滤\"],\"Wi1pUG\":[[\"numJobsToCancel\",\"plural\",{\"one\":[[\"0\"]],\"other\":[[\"1\"]]}]],\"Wk1rOS\":[\"使图像与可用屏幕大小匹配\"],\"Wm7XbF\":[\"删除一个或多个凭证失败。\"],\"WqaDMq\":[\"字段包含值。\"],\"Wy25yg\":[\"Twilio\"],\"X03-eC\":[\"请输入一个值。\"],\"X5V9DW\":[\"点击下面的编辑按钮重新配置节点。\"],\"X6d3Zy\":[\"删除机构失败。\"],\"X97mbf\":[\"选择作业类型\"],\"XA12d8\":[\"可选的以逗号分隔的主机名列表,除了切片本身的主机之外,还包含在每个任务切片中。当 play 以协调主机(例如 localhost)为目标且所有切片都依赖于它时非常有用。名称与清单主机完全匹配;不支持组和模式。固定主机每个切片运行一次其 play。\"],\"XBROpk\":[\"提供主机模式以进一步限制将由工作流管理或影响的主机列表。\"],\"XCCkju\":[\"编辑节点\"],\"XFRygA\":[\"远程存档源代码控制的示例 URL 包括:\"],\"XHxwBV\":[\"选定日期范围必须至少有 1 个计划发生。\"],\"XILg0L\":[\"电子邮件地址无效\"],\"XJOV1Y\":[\"活动\"],\"XKp83s\":[\"无法复制含有源的清单\"],\"XLMJ7O\":[\"云\"],\"XLpxoj\":[\"电子邮件选项\"],\"XM-gTv\":[\"有关配置文件的详细信息,请参阅 Ansible 文档。\"],\"XOD7tz\":[\"显示更改\"],\"XOaZX3\":[\"分页\"],\"XP6TQ-\":[\"如果指定,则在查看工作流时此字段将显示在节点上,而不是资源名称\"],\"XREJvl\":[\"用于配置库存源的变量。有关如何配置此插件的详细说明,请参阅\"],\"XViLWZ\":[\"失败时\"],\"XWDz5f\":[\"简单键选择\"],\"X_5TsL\":[\"问卷调查切换\"],\"XaxYwV\":[\"提示的值\"],\"XbIM8f\":[\"总库存来源\"],\"XdyHT-\":[\"导入的主机\"],\"XfmfOA\":[\"运行每\"],\"Xg3aVa\":[\"使用 SSL\"],\"XgTa_2\":[\"The inventory will be in a pending status until the final delete is processed.\"],\"XilEsm\":[\"实例组\"],\"Xm7ruy\":[\"5(WinRM 调试)\"],\"XmJfZT\":[\"名称\"],\"XmVvzl\":[\"选择要应用的角色\"],\"XnxCSh\":[\"标准错误\"],\"XozZ38\":[\"删除一个或多个清单源失败。\"],\"Xq9A0U\":[\"未知的工程ID\"],\"Xt4N6V\":[\"提示 | \",[\"0\"]],\"XtpZSU\":[\"作业作业类型\"],\"Xx-ftH\":[\"您已自动针对的主机数量大于订阅所允许的数量。\"],\"XyTWuQ\":[\"请等到拓扑视图被填充...\"],\"XyW2nH\":[[\"0\",\"plural\",{\"one\":[\"您确定要删除下面的组吗?\"],\"other\":[\"您确定要删除下面的组吗?\"]}]],\"XzD7xj\":[\"选择项\"],\"Y1YKad\":[\"类型详情\"],\"Y296GK\":[\"删除角色失败\"],\"Y2ml-n\":[\"已批准 - \",[\"0\"],\"。请参阅活动流以获取更多信息。\"],\"Y5VrmH\":[\"没有为清单同步配置。\"],\"Y5vgVF\":[\"成功拒绝\"],\"Y5xJ7I\":[\"Playbook 名称\"],\"Y60pX3\":[\"添加已建库存\"],\"YA4I45\":[\"选择一个模块\"],\"YFmVSY\":[\"解除关联?\"],\"YJddb4\":[\"实例类型\"],\"YLMfol\":[\"选择将获得新角色的资源类型。例如,如果您想为一组用户添加新角色,请选择用户并点击下一步。您可以选择下一步中的具体资源。\"],\"YM06Nm\":[\"编辑凭证类型\"],\"YMLB2b\":[\"超时到期时是否自动批准或拒绝批准节点。\"],\"YMpSlP\":[\"将库存同步视为最新的时间(以秒为单位)。在作业运行和回调期间,任务系统将评估最新同步的时间戳。如果它早于缓存超时,则不视为当前,并将执行新的库存同步。\"],\"YOOdGq\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 分钟\"],\"other\":[\"#\",\" 分钟\"]}]],\"YOh7Aw\":[\"Workflow Job \",[\"currentPosition\"],\"/\",[\"total\"]],\"YP5KRj\":[\"在保存时会生成一个新的 WEBHOOK url。\"],\"YPDLLX\":[\"返回到执行环境\"],\"YQqM-5\":[\"用于执行的容器镜像。\"],\"Yd45Xn\":[\"主机(按处理器类型)\"],\"Yfw7TK\":[\"通知超时\"],\"YgqgXs\":[[\"intervalValue\",\"plural\",{\"one\":[\"minute\"],\"other\":[\"minutes\"]}]],\"YiQ03p\":[\"删除调度失败。\"],\"YiUAZm\":[\"<0>注意:如果此实例由<1>策略规则管理,则可能会重新与此实例组关联。\"],\"YlGAPh\":[\"作业分片固定主机\"],\"Ym7-mu\":[\"每行一个 Slack 频道。频道需要井号 (#)。\\n 要回复特定消息或对其启动线程,请将父消息 Id 添加到频道,其中父消息 Id 为 16 位数字。必须在第 10 位数字后手动插入点 (.)。例如:#destination-channel, 1231257890.006423。请参阅 Slack\"],\"YmEWZH\":[\"启动模板\"],\"YmjTf2\":[\"置备失败\"],\"YoXjSs\":[\"启动时提示输入清单。\"],\"Yq4Eaf\":[\"此作业的主机状态信息不可用。\"],\"YsN-3o\":[\"查看清单源详情\"],\"Yt-rBv\":[\"其他资源目前正在使用此项目。您确定要删除它吗?\"],\"YuC9dj\":[\"关联\"],\"YxDLmM\":[\"Insights 系统 ID\"],\"Z17FAa\":[\"未知库存\"],\"Z1Vtl5\":[\"取消项目同步失败\"],\"Z25_RC\":[\"选择输入\"],\"Z2hVSb\":[\"混合\"],\"Z40J8D\":[\"启用创建置备回调 URL。使用该 URL,主机可以联系 \",[\"brandName\"],\" 并使用此任务模板请求配置更新。\"],\"Z5HWHd\":[\"开\"],\"Z7ZXbT\":[\"批准\"],\"Z88yEl\":[\"大于或等于比较。\"],\"Z9EFpE\":[\"自动化分析仪表盘\"],\"ZAWGCX\":[[\"0\"],\" 秒\"],\"ZEP8tT\":[\"启动\"],\"ZGDCzb\":[\"未找到实例\"],\"ZJjKDg\":[\"受管的节点\"],\"ZKKnVf\":[\"创建新工作流模板\"],\"ZL3d6Z\":[\"IRC 服务器地址\"],\"ZO4CYH\":[\"运行作业\"],\"ZOLfb2\":[\"此字段不能为空。\"],\"ZWhZbs\":[\"确认节点删除\"],\"ZajTWA\":[\"源电话号码\"],\"Zf6u-6\":[\"解释\"],\"ZfrRb0\":[\"请选择一个清单或者选中“启动时提示”选项\"],\"ZhUwVw\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 周\"],\"other\":[\"#\",\" 周\"]}]],\"ZhxwOq\":[\"错误消息正文\"],\"Zikd-1\":[\"您已自动针对的主机数量低于您的订阅数。\"],\"ZjC8QM\":[\"删除主机失败。\"],\"ZjvPb1\":[\"创建者(用户名)\"],\"Zkh5np\":[\"同行在 \",[\"0\"],\" 上更新。请务必再次运行 \",[\"1\"],\" 的安装包,以便看到更改生效。\"],\"ZpdX6R\":[\"删除令牌时出错\"],\"ZrsGjm\":[\"清单\"],\"ZumtuZ\":[\"复制模板\"],\"ZvVF4C\":[\"删除问卷调查问题\"],\"ZwCTcT\":[\"最近的任务列表标签页\"],\"ZwujDQ\":[\"%y 年\"],\"_-NKbo\":[\"切换调度失败。\"],\"_2LfCe\":[\"要重新调整调查问题的顺序,将问题拖放到所需的位置。\"],\"_4gGIX\":[\"复制到剪贴板\"],\"_5REdR\":[\"为构建的库存插件选择输入库存。\"],\"_Fg1cM\":[\"工作流超时信息正文\"],\"_ITcnz\":[\"日\"],\"_Ia62Q\":[\"构建的库存示例\"],\"_JN1gB\":[\"任务计数\"],\"_K2CvV\":[\"模板\"],\"_LQZpR\":[[\"intervalValue\",\"plural\",{\"one\":[\"year\"],\"other\":[\"years\"]}]],\"_LVfwJ\":[\"构建的库存源同步错误\"],\"_M4FeF\":[\"选择您希望这个命令在内运行的执行环境。\"],\"_MdgrM\":[\"在这两个节点间添加新节点\"],\"_PRaan\":[\"删除一个或多个通知模板失败。\"],\"_Pz_QH\":[\"由策略管理\"],\"_W3ZAw\":[[\"selectedItemsCount\",\"plural\",{\"one\":[\"Click to run a health check on the selected instance.\"],\"other\":[\"Click to run a health check on the selected instances.\"]}]],\"_WBq2_\":[\"已拒绝 - \",[\"0\"],\"。请参阅活动流以获取更多信息。\"],\"_Yq4TU\":[\"此组上同时运行的所有作业允许的最大分叉数。\\n 零意味着不会强制执行任何限制。\"],\"_ZBhqw\":[\"取消清单源同步失败\"],\"_bAUGi\":[\"选择 HTTP 方法\"],\"_bE0AS\":[\"选择一个实例\"],\"_cV6Mf\":[\"浏览...\"],\"_cq4Aa\":[\"未找到工作流批准。\"],\"_ereyb\":[\"TACACS+\"],\"_gCD76\":[\"编辑实例组\"],\"_ismew\":[\"工件密钥\"],\"_kYJq6\":[\"保留数据的天数\"],\"_khNCh\":[\"作业模板的默认凭证必须替换为相同类型的凭证。请为以下类型选择一个凭证以继续: \",[\"0\"]],\"_oeZtS\":[\"主机轮询\"],\"_rCRcH\":[\"高级搜索文档\"],\"_vI8Rx\":[\"Delete Group?\"],\"a02Xjc\":[\"IRC 服务器地址\"],\"a3AD0M\":[\"确认编辑登录重定向\"],\"a5zD9f\":[\"更改\"],\"a6E-_p\":[\"包含不区分大小写的版本\"],\"a8AgQY\":[\"查看主机详情\"],\"a8nooQ\":[\"第四\"],\"a9BTUD\":[\"周末日\"],\"aBgwis\":[\"范围\"],\"aLlb3-\":[\"布尔\"],\"aNxqSL\":[\"删除执行环境\"],\"aQ4XJX\":[\"单独启用日志系统跟踪事实\"],\"aSuBiU\":[\"Microsoft Azure Resource Manager\"],\"aTK0Fh\":[\"于日\"],\"aUNPq3\":[\"执行节点\"],\"aVoVcG\":[\"多选\"],\"aXBrSq\":[\"Red Hat Virtualization\"],\"a_vlog\":[\"删除 \",[\"0\"],\" 芯片\"],\"adPhRK\":[\"此主机要属于的清单。\"],\"adjqlB\":[[\"0\"],\"(已删除)\"],\"aht2s_\":[\"通知颜色\"],\"aiejXq\":[\"添加资源类型\"],\"ajDpGH\":[\"状态:\"],\"anfIXl\":[\"用户详情\"],\"aqqAbL\":[\"如果启用,则该清单将阻止将任何机构实例组添加到运行相关作业模板的首选实例组列表中。注:如果启用了此设置,且提供了空列表,则会应用全局实例组。\"],\"ar5AA2\":[\"更多信息。\"],\"ataY5Z\":[\"作业删除错误\"],\"ax6e8j\":[\"请在编辑主机过滤器前选择机构\"],\"az8lvo\":[\"关\"],\"b1CAkh\":[\"管理作业\"],\"b2Z0Zq\":[\"取消链路更改\"],\"b433OF\":[\"编辑组\"],\"b4SLah\":[\"在左侧查看错误\"],\"b9Y4up\":[\"客户端 ID\"],\"bDa_hW\":[\"选择此清单源同步应在其上运行的实例组。如果未设置,同步将在清单或其机构的实例组上运行。\"],\"bE4zYn\":[\"选择接收器将侦听传入连接的端口,例如27199。\"],\"bHXYoC\":[\"HTTP 方法\"],\"bKR18T\":[\"订阅清单是 Red Hat 订阅的导出。要生成订阅清单,请转到 <0>access.redhat.com。有关更多信息,请参阅<1>用户指南。\"],\"bLt_0J\":[\"工作流\"],\"bPq357\":[\"启用的值\"],\"bQZByw\":[\"每行使用一个注解标签,不带逗号。\"],\"bTu5jX\":[\"用户名/密码\"],\"bWr6j5\":[\"此字段必须至少包含 \",[\"min\"],\" 个字符\"],\"bY8C86\":[\"查看所有用户。\"],\"bYXbel\":[\"工作流作业模板 webhook 密钥\"],\"baP8gx\":[\"4(连接调试)\"],\"baqrhc\":[\"HTTP 标头\"],\"bbJ-VR\":[\"缩小\"],\"bcyJXs\":[\"项正常\"],\"bd1Kuw\":[\"图标 URL\"],\"bf7UKi\":[\"更新缓存超时\"],\"bfgr_e\":[\"问题\"],\"bgjTnp\":[\"0(普通)\"],\"bgq1rW\":[\"搜索提交按钮\"],\"bhxnLH\":[\"您没有权限删除以下组: \",[\"itemsUnableToDelete\"]],\"bkPO0d\":[\"通知类型\"],\"bpECfE\":[\"取消链接删除\"],\"bpnj1H\":[\"加载此内容时出错。请重新加载页面。\"],\"bwRvnp\":[\"操作\"],\"bx2rrL\":[\"智能清单\"],\"bxaVlf\":[\"创建新凭证类型\"],\"byXCTu\":[\"发生次数\"],\"bznJUg\":[\"选择包含您希望此工作流管理的主机的清单。\"],\"bzv8Dv\":[\"删除错误\"],\"c-xCSz\":[\"True\"],\"c0n4p3\":[\"事实存储\"],\"c1Rsz1\":[\"查看工作流批准详情\"],\"c3XJ18\":[\"帮助\"],\"c4kHK7\":[\"关闭订阅模态\"],\"c6IFRs\":[\"服务账户 JSON 文件\"],\"c6u6gk\":[\"选择要运行此机构的实例组。\"],\"c7-Adk\":[\"同步清单源失败。\"],\"c8HyJq\":[\"选择要运行此清单的实例组。\"],\"c8sV0t\":[\"这个功能已被弃用并将在以后的发行版本中被删除。\"],\"c9V3Yo\":[\"主机故障\"],\"c9iw51\":[\"运行任务\"],\"c9pF61\":[\"客户端标识符\"],\"cFC8w7\":[\"依赖该清单源的其他资源目前正在使用此清单源。确定要删除它吗?\"],\"cFCKYZ\":[\"拒绝\"],\"cFOXv9\":[\"通用 OIDC\"],\"cGRiaP\":[\"查看详情\"],\"cIdUma\":[\"\\n \",[\"project_base_dir\"],\" 中没有可用的 playbook 目录。\\n 该目录为空,或者所有内容都已\\n 分配给其他项目。请在那里创建一个新目录,并确保\\n playbook 文件可以由「awx」系统用户读取,\\n 或者让 \",[\"brandName\"],\" 使用上面的源控制类型选项\\n 直接从源控制中检索您的 playbook。\"],\"cNsIJf\":[\"已更改\"],\"cPTnDL\":[\"项目同步\"],\"cQIQa2\":[\"选择组\"],\"cQlPDN\":[\"读取\"],\"cUKLzq\":[\"编辑顺序\"],\"cYir0h\":[\"选择选项\"],\"c_PGsA\":[\"工作流作业详情\"],\"cbSPfq\":[\"此工作流已进行\"],\"ccA_Bz\":[\"变量名称的建议格式为小写并\\n 以下划线分隔(例如 foo_bar、user_id、host_name\\n 等)。不允许使用带空格的变量名称。\"],\"cdm6_X\":[\"使用的容量\"],\"chbm2W\":[\"实例过滤器\"],\"ci3mwY\":[\"此字段不能为空\"],\"cit9TY\":[\"父节点通过 set_stats 生成的工件的名称。仅当父作业与所选结果匹配且条件为真时才会遵循该链接。缺失的密钥永远不匹配。\"],\"cj1KTQ\":[\"查看所有清单。\"],\"cjJXKx\":[\"主机同步故障\"],\"ckH3fT\":[\"就绪\"],\"ckdiAB\":[\"删除通知\"],\"cmWTxn\":[\"小于或等于比较。\"],\"cnGeoo\":[\"删除\"],\"cnnWD0\":[\"By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>\",[\"0\"],\". Uncheck the following boxes to disable this feature.\"],\"ct_Puj\":[\"此字段将使用指定的凭证从外部 secret 管理系统检索。\"],\"cucDBz\":[\"上下文模板\"],\"cucG_7\":[\"没有可用的YAML\"],\"cxjfgY\":[\"无法在跃点节点上运行健康检查。\"],\"cy3yJa\":[\"已建立\"],\"d-F6q9\":[\"创建\"],\"d-zGjA\":[\"此操作将删除以下内容:\"],\"d1BVnY\":[\"A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>\",[\"0\"],\".\"],\"d5zxa4\":[\"本地\"],\"d6in1T\":[\"选择包含您希望此任务管理的主机的清单。\"],\"d73flf\":[\"警报模式\"],\"d75lEw\":[\"设置类型\"],\"d7VUIS\":[\"删除节点 \",[\"nodeName\"]],\"d8B-tr\":[\"作业状态图标签页\"],\"dAZObA\":[\"重定向 URI\"],\"dBNZkl\":[\"查看智能清单主机详情\"],\"dCcO-F\":[\"获取配置失败。\"],\"dELxuP\":[\"未找到清单。\"],\"dEgA5A\":[\"取消\"],\"dH6aQY\":[\"Azure AD Tenant\"],\"dIb9tv\":[\"查看所有应用程序。\"],\"dJcvVX\":[\"智能主机过滤器\"],\"dNAHKF\":[\"作业分片\"],\"dOjocz\":[\"趋同选择\"],\"dPGRd8\":[\"如果启用,在受支持的情况下显示 Ansible 任务所做的更改。这等同于 Ansible 的 --diff 模式。\"],\"dPY1x1\":[\"更多信息。\"],\"dQFAgv\":[\"此项目需要被更新\"],\"dQjRO3\":[\"启动同步进程\"],\"dbWo0h\":[\"使用 Google 登录\"],\"dcGoCm\":[\"清单文件\"],\"ddIcfH\":[\"进入最后页\"],\"dfWFox\":[\"主机计数\"],\"dk7qNl\":[\"控制节点\"],\"dkGxGj\":[\"Subversion\"],\"dlHFy7\":[\"删除一个或多个执行环境失败\"],\"dnCwNB\":[\"成功复制至剪贴板!\"],\"dov9kY\":[\"此字段必须是数字,且值介于 \",[\"0\"],\" 和 \",[\"1\"],\" 之间\"],\"dqxQzB\":[\"词典\"],\"dzQfDY\":[\"10 月\"],\"e0NrBM\":[\"项目\"],\"e3pQqT\":[\"选择通知类型\"],\"e4GHWP\":[\"拉取\"],\"e5CMOi\":[\"用于指定凭证类型可注入值的环境变量或额外变量。\"],\"e5VbKq\":[\"工作流作业模板\"],\"e6BtDv\":[\"<0>\",[\"0\"],\"<1>\",[\"1\"],\"\"],\"e70-_3\":[\"切换图例\"],\"e8GyQg\":[\"指标\"],\"e8U63Z\":[\"仅当推送的引用与此模式匹配时才同步项目,例如 refs/heads/main 或 refs/heads/release-*。留空以在任何推送或标签事件时同步。\"],\"e91aLH\":[\"查看所有凭证类型\"],\"e9k5zp\":[\"请添加一个调度来填充此列表。调度可以添加到模板、项目或清单源中。\"],\"eAR1n4\":[\"相关的搜索类型 typeahead\"],\"eD_0Fo\":[\"删除一个或多个团队失败。\"],\"eDjsWq\":[\"创建新通知模板\"],\"eGkahQ\":[\"删除作业模板\"],\"eHx-29\":[\"源详情\"],\"ePK91l\":[\"编辑\"],\"ePS9As\":[\"RADIUS 设置\"],\"eQkgKV\":[\"已安装\"],\"eRV9Z3\":[\"未指定超时\"],\"eRlz2Q\":[\"目标 SMS 号码\"],\"eSXF_i\":[\"删除应用程序失败。\"],\"eTsJYJ\":[\"描述\"],\"eVJ2lo\":[\"浮点值\"],\"eXOp7I\":[\"您没有删除实例的权限:\",[\"itemsUnableToremove\"]],\"eXWuGz\":[\"最近模板列表标签页\"],\"eYJ4TK\":[\"未找到构建的库存。\"],\"eeke40\":[\"自动化分析\"],\"ekUnNJ\":[\"选择标签\"],\"el9nUc\":[\"调度处于非活跃状态\"],\"emqNXf\":[\"Playbook 检查\"],\"eqiT7d\":[\"设置此实例在网格拓扑中扮演的角色。默认为 \\\"execution\\\"。\"],\"espHeZ\":[\"防止实例组 Fallback:如果启用,则该清单将阻止将任何机构实例组添加到运行相关作业模板的首选实例组列表中。\"],\"etQEqZ\":[\"删除此链接将会孤立分支的剩余部分,并导致它在启动时立即执行。\"],\"ewSXyG\":[\"软删除\"],\"f-fQK9\":[\"Grafana API 密钥\"],\"f2o-xB\":[\"确认取消\"],\"f6Hub0\":[\"排序\"],\"f9yJNM\":[\"等于\"],\"fCZSgU\":[\"查看所有实例组\"],\"fDzxi_\":[\"不保存退出\"],\"fE2kOY\":[\"日期运算符选择\"],\"fGEOCn\":[\"作业状态\"],\"fGLpQj\":[\"源控制分支/标签/提交\"],\"fGQ9Ug\":[\"选择用于访问此任务将针对其运行的节点的凭证。每种类型只能选择一个凭证。对于计算机凭证 (SSH),在不选择凭证的情况下勾选“启动时提示”将要求您在运行时选择计算机凭证。如果您选择凭证并勾选“启动时提示”,则所选凭证将成为可在运行时更新的默认值。\"],\"fJ9xam\":[\"启用实例\"],\"fKew5B\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"取消作业\"],\"other\":[\"取消作业\"]}]],\"fL7WXr\":[\"应用程序\"],\"fMUEsk\":[\"第 \",[\"0\"],\" 天\"],\"fMulwN\":[\"重新刷新项目修订版本\"],\"fOAyP5\":[\"搜索文本输入\"],\"fODqV4\":[\"未找到该值。请输入或选择一个有效值。\"],\"fQCM-p\":[\"查看机构详情\"],\"fQGOXc\":[\"错误!\"],\"fR8DDt\":[\"确认删除所有节点\"],\"fVjyJ4\":[\"确认解除关联\"],\"f_Xpp2\":[\"此操作将解除以下关联:\"],\"fcTDCh\":[\"在下面提供您的 Red Hat 或 Red Hat Satellite 凭证,\\n 您可以从可用订阅列表中进行选择。\\n 您使用的凭证将被存储以供将来\\n 检索续订或扩展的订阅时使用。\"],\"ff_JYN\":[\"按嵌套组名称筛选\"],\"fgrmWn\":[\"启动时提示输入差异模式。\"],\"fhFmMp\":[\"客户端标识符\"],\"fjX9i5\":[\"未找到智能清单。\"],\"fk1WEw\":[\"已加密\"],\"fld-O4\":[\"所有作业\"],\"fnbZWe\":[\"(可选)选择用于将状态更新发送回 webhook 服务的凭证。\"],\"foItBN\":[\"周末日\"],\"fp4RS1\":[\"content-loading-in-progress\"],\"fpMgHS\":[\"周一\"],\"fqSfXY\":[\"替换\"],\"fqmP_m\":[\"主机无法访问\"],\"fthJP1\":[\"Webhook 服务可以通过向此 URL 发出 POST 请求来使用此工作流任务模板启动任务。\"],\"fwX7gC\":[\"VMware vCenter\"],\"g4o5Lr\":[\"详细\"],\"g6ekO4\":[\"切换主机失败。\"],\"g7CZ-8\":[\"使用 GitHub Enterprise Organizations 登录\"],\"g9d3sF\":[\"开始消息正文\"],\"gALXcv\":[\"删除此节点\"],\"gBnBJa\":[\"源工作流作业\"],\"gDx5MG\":[\"编辑链接\"],\"gIGcbR\":[\"在此组上同时运行的最大作业数。零意味着不会强制执行任何限制。\"],\"gJccsJ\":[\"工作流批准的消息\"],\"gK06zh\":[\"添加作业模板\"],\"gM3pS9\":[\"执行环境\"],\"gN3aF4\":[\"LDAP5\"],\"gSVH9P\":[\"同步所有源\"],\"gUaMtt\":[\"超时时\"],\"gVYePj\":[\"创建新团队\"],\"gWlcwd\":[\"最后的作业状态\"],\"gYWK-5\":[\"查看用户界面设置\"],\"gZXc5U\":[\"在工作流继续之前必须批准的不同用户数。单次拒绝始终会拒绝该节点。\"],\"gZaMqy\":[\"使用 GitHub Teams 登录\"],\"gZkstf\":[\"如果启用,这将存储收集的事实,以便可以在主机级别查看它们。事实会被持久化并在运行时注入到事实缓存中。\"],\"gcFnpl\":[\"作业状态\"],\"geTfDb\":[\"查看作业详情\"],\"ged_ZE\":[\"Oragnization\"],\"gezukD\":[\"选择要取消的作业\"],\"gfyddN\":[\"上传一个 .zip 文件\"],\"gh06VD\":[\"输出\"],\"ghJsq8\":[\"滚动到第一\"],\"gmB6oO\":[\"调度\"],\"gmBQqV\":[\"项目更新\"],\"gnveFZ\":[\"标准错误标签页\"],\"goVc-x\":[\"编辑凭证插件配置\"],\"go_DGX\":[\"添加团队角色\"],\"gpKdxJ\":[\"选择要删除的问题\"],\"gpmbqk\":[\"变量\"],\"gpnvle\":[\"删除错误\"],\"gsj32g\":[\"取消项目同步\"],\"gtB4z-\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 小时\"],\"other\":[\"#\",\" 小时\"]}]],\"gwKtbI\":[\"在文档和\"],\"h25sKn\":[\"订阅管理\"],\"h51QFW\":[\"YAML\"],\"h8DugX\":[\"标签\"],\"hAjDQy\":[\"选择状态\"],\"hBHRCF\":[\"当新实例上线时将自动分配给此组的\\n 最小实例数。\"],\"hEBjSg\":[\"Red Hat Satellite 6\"],\"hEnNCI\":[\"删除与 ansible 事实相关的当前搜索,以启用使用此键的另一个搜索。\"],\"hG89Ed\":[\"镜像\"],\"hHKoQD\":[\"选择对等地址\"],\"hLDu5N\":[\"编辑应用\"],\"hNudM0\":[\"为这个字段设置值\"],\"hPa_zN\":[\"机构(名称)\"],\"hQ0dMQ\":[\"添加新主机\"],\"hQRttt\":[\"提交\"],\"hVPa4O\":[\"选择一个选项\"],\"hX8KyU\":[\"此作业失败,且没有输出。\"],\"hXDKWN\":[\"频率详情\"],\"hXzOVo\":[\"下一\"],\"hYH0cE\":[\"您确定要提交取消此任务的请求吗?\"],\"hYgDIe\":[\"创建\"],\"hZ6znB\":[\"端口\"],\"hZke6f\":[\"您确定要禁用本地身份验证吗?这样做可能会影响用户登录的能力,以及系统管理员撤销此更改的能力。\"],\"hc_ufD\":[\"作业标签\"],\"hdyeZ0\":[\"删除作业\"],\"he3ygx\":[\"复制\"],\"heqHpI\":[\"项目基本路径\"],\"hg6l4j\":[\"3 月\"],\"hgJ0FN\":[\"执行搜索以定义主机过滤器\"],\"hgr8eo\":[\"项\"],\"hgvbYY\":[\"9 月\"],\"hhzh14\":[\"我们无法找到与这个帐户关联的许可证。\"],\"hi1n6B\":[\"更新 \",[\"brandName\"],\" 中与作业相关的设置\"],\"hiDMCa\":[\"置备\"],\"hjsbgA\":[\"额外变量\"],\"hjwN_s\":[\"资源名称\"],\"hlbQEq\":[\"内容签名验证凭证\"],\"hmEecN\":[\"管理作业\"],\"hmjNLv\":[\"首选主题\"],\"hty0d5\":[\"周一\"],\"hvs-Js\":[\"应用程序信息\"],\"i0VMLn\":[\"工作流拒绝的消息\"],\"i2izXk\":[\"调度缺少规则\"],\"i4_LY_\":[\"写入\"],\"i9sC0B\":[\"添加团队权限\"],\"iASwqf\":[\"This action will cancel the following job:\"],\"iCFhEl\":[\"源电话号码\"],\"iDNBZe\":[\"通知\"],\"iDWfOR\":[\"审批一个或多个工作流审批失败。\"],\"iDjyID\":[\"查看凭证详情\"],\"iE1s1P\":[\"启动工作流\"],\"iEUzMn\":[\"系统\"],\"iH8pgl\":[\"返回\"],\"iI4bLJ\":[\"最近登陆\"],\"iIVceM\":[\"复制错误\"],\"iJWOeZ\":[\"没有可用的 JSON\"],\"iJiCFw\":[\"组详情\"],\"iLO3nG\":[\"play 数量\"],\"iMaC2H\":[\"实例组\"],\"iPp22p\":[\"此调度使用 UI 中不支持的复杂规则。\\n 请使用 API 来管理此调度。\"],\"iQdYL_\":[\"添加智能清单\"],\"iRWxmA\":[\"禁用 SSL 验证\"],\"iTylMl\":[\"模板\"],\"iWKCzl\":[\"从在项目基本路径中找到的目录列表中选择。基本路径和 playbook 目录一起提供用于定位 playbook 的完整路径。\"],\"iXmHtI\":[\"选择作业类型\"],\"iZBwau\":[\"这一步包含错误\"],\"i_CDGy\":[\"允许分支覆写\"],\"i_Kv21\":[\"创建新源\"],\"ifckL-\":[\"行选择\"],\"ifdViT\":[\"查看清单脚本\"],\"ig0q8s\":[\"此清单会应用到在这个工作流 (\",[\"0\"],\") 中的所有作业模板,它会提示输入一个清单。\"],\"inP0J5\":[\"订阅详情\"],\"isRobC\":[\"新\"],\"itlxml\":[\"管理作业\"],\"ittbfT\":[\"根据 ansible_facts 搜索需要特殊的语法。请参阅\"],\"itu2NQ\":[\"链接状态类型\"],\"j1a5f1\":[\"编辑主机\"],\"j6gqC6\":[\"任务运行中要使用的分支。如果为空,则使用项目默认值。仅当项目的 allow_override 字段设置为 true 时才允许。\"],\"j7zAEo\":[\"工作流状态\"],\"j8QfHv\":[\"编辑主机\"],\"jAxdt7\":[\"取消删除\"],\"jBGh4u\":[\"嵌套组清单定义:\"],\"jCVu9g\":[\"Cancel selected job\"],\"jEJtMA\":[\"等待工作流批准\"],\"jEw0Mr\":[\"请输入有效的 URL\"],\"jFaaUJ\":[\"规范\"],\"jGUu_G\":[\"所需批准\"],\"jIaeJK\":[\"问卷调查\"],\"jJdwCB\":[\"恢复\"],\"jKibyt\":[\"重新设置缩放\"],\"jMyq_x\":[\"Workflow Job 1/\",[\"0\"]],\"jaUa4e\":[\"此数据用于增强\\n Tower 软件的未来版本,并帮助\\n 简化客户体验和成功。\"],\"jc86YO\":[\"启动时提示输入限制。\"],\"ji-8F7\":[\"其他资源目前正在使用此凭证。确定要删除它吗?\"],\"jiE6Vn\":[\"机构\"],\"jifz9m\":[\"无(运行一次)\"],\"jkQOCm\":[\"添加例外\"],\"jljuYN\":[\"将接受 webhook 请求的来源服务。\"],\"jluR-N\":[\"警告:\",[\"selectedValue\"],\" 是指向 \",[\"0\"],\" 的链接,并将保存为该链接。\"],\"joAQQS\":[\"The inventories will be in a pending status until the final delete is processed.\"],\"jqVo_k\":[\"此处。\"],\"jqzUyM\":[\"不可用\"],\"jrkyDn\":[\"Play 已启动\"],\"jrsFB3\":[\"输出标签页\"],\"jsz-PY\":[\"未知完成日期\"],\"jwmkq1\":[\"机器凭证\"],\"jzD-D6\":[\"当您有一个大型 playbook 并且想要跳过 play 或任务的特定部分时,跳过标签非常有用。使用逗号分隔多个标签。有关标签用法的详细信息,请参阅文档。\"],\"k020kO\":[\"活动流\"],\"k2dzu3\":[\"在 UTC 过期\"],\"k30JvV\":[\"选择的类别\"],\"k5nHqi\":[\"启动此任务模板时将使用的执行环境。可以通过为此任务模板显式分配不同的执行环境来覆盖解析的执行环境。\"],\"kALwhk\":[\"seconds\"],\"kDWprA\":[\"这些参数与指定的模块一起使用。\"],\"kEhyki\":[\"字段以值结尾。\"],\"kLja4m\":[\"启动者\"],\"kLk5bG\":[\"开始消息\"],\"kNUkGV\":[\"查找类型\"],\"kNfXib\":[\"模块名称\"],\"kODvZJ\":[\"名\"],\"kOVkPY\":[\"切换实例\"],\"kP-3Hw\":[\"返回到清单\"],\"kQerRU\":[\"此字段不得包含空格\"],\"kX-GZH\":[\"重新启动作业\"],\"kXzl6Z\":[\"源变量\"],\"kYDvK4\":[\"包含文件\"],\"kah1PX\":[\"在以下位置查看YAML示例:\"],\"kaux7o\":[\"从远程清单源覆盖本地组和主机\"],\"kgtWJ0\":[\"选择此任务模板要在其上运行的实例组。\"],\"kiMHN-\":[\"系统审核员\"],\"kjrq_8\":[\"更多信息\"],\"kkDQ8m\":[\"周四\"],\"kkc8HD\":[\"为您的 \",[\"brandName\"],\" 应用启用简化的登录\"],\"kpRn7y\":[\"删除问题\"],\"kpnWnY\":[\"在每个 SCM 修订版更改带来的工程项目更新后, 在执行作业任务之前, 请刷新所选源的资源清单。这适用于静态内容, 例如使用 .ini 文件格式的 Ansible 资源清单。\"],\"ks-HYT\":[\"添加用户权限\"],\"ks71ra\":[\"例外\"],\"kt8V8M\":[\"为工作流选择一个分支。\"],\"ktPOqw\":[\"请参阅\"],\"kuIbuV\":[\"运行状况检查只能在执行节点上运行。\"],\"ku__5b\":[\"秒\"],\"kyAi7k\":[\"实例\"],\"kyHUFI\":[\"Vault 密码 | \",[\"credId\"]],\"kyfr2I\":[\"如果选中,则以前存在于外部源但现在已删除的任何主机和组都将从清单中删除。不受清单源管理的主机和组将被提升到下一个手动创建的组,或者如果没有手动创建的组可将其提升到其中,它们将保留在清单的默认「all」组中。\"],\"kz7G1W\":[\"您确定要从 \",[\"1\"],\" 中删除访问 \",[\"0\"],\" 吗?这样做会影响团队所有成员。\"],\"l4MzBY\":[[\"update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" 秒\"],\"other\":[\"#\",\" 秒\"]}]],\"l4k9lc\":[\"第一个节点\"],\"l5XUoS\":[\"Webhook 凭证\"],\"l75CjT\":[\"是\"],\"l9ZmWD\":[[\"scm_update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" 秒\"],\"other\":[\"#\",\" 秒\"]}]],\"lCF0wC\":[\"刷新\"],\"lJFsGr\":[\"创建新实例组\"],\"lKxoCA\":[\"扩展作业事件\"],\"lM9cbX\":[\"请注意,如果房东/体验达人也是该组的子级成员,则在取消关联后,您仍可能在列表中看到该组。此列表显示房东直接或间接关联的所有群组。\"],\"lURfHJ\":[\"折叠部分\"],\"lWkKSO\":[\"分钟\"],\"lWmv3p\":[\"清单源\"],\"lYDyXS\":[\"智能清单\"],\"l_jRvf\":[\"Playbook 完成\"],\"lfoFSg\":[\"删除主机\"],\"lgm7y2\":[\"编辑\"],\"lgphOX\":[\"预期值\"],\"lhgU4l\":[\"未找到模板。\"],\"lhkaAC\":[\"试用\"],\"ljGeYw\":[\"普通用户\"],\"lk5WJ7\":[\"host-name-\",[\"0\"]],\"lkgIYt\":[\"Pagerduty\"],\"lo-rJO\":[\"向下平移\"],\"ltvmAF\":[\"未找到应用程序。\"],\"lu2qW5\":[\"任何\"],\"lucaxq\":[\"如果不提供日志聚合器主机和日志聚合器类型,则无法启用日志聚合器。\"],\"luxcrf\":[[\"label\"],\" 的更多信息\"],\"lyjq5X\":[\"Slack\"],\"m-eV2_\":[\"未找到容器组。\"],\"m16xKo\":[\"添加\"],\"m1tKEz\":[\"系统管理员对所有资源的访问权限是不受限制的。\"],\"m2ErDa\":[\"失败\"],\"m3k6kn\":[\"取消构建的库存源同步失败\"],\"m5MOUX\":[\"返回到主机\"],\"mGJIOu\":[\"此构建的库存输入\\n 为两个类别创建一个组,并使用\\n 限制(主机模式)仅返回位于这两个组\\n 交集中的主机。\"],\"mNBZ1R\":[\"注意:此字段假定远程名称为 “origin”。\"],\"mOFgdC\":[\"最大值\"],\"mPiYpP\":[\"节点状态类型\"],\"mSv_7k\":[\"过去三年\"],\"mXRKES\":[\"LDAP4\"],\"mXfNlE\":[\"此调度缺少所需的调查值\"],\"mYGY3B\":[\"日期\"],\"mZiQNk\":[\"权限提升:如果启用,以管理员身份运行此 playbook。\"],\"m_tELA\":[\"取消删除\"],\"ma7cO9\":[\"删除组 \",[\"0\"],\" 失败。\"],\"mahPLs\":[\"权限升级密码\"],\"mcGG2z\":[[\"minutes\"],\" 分 \",[\"seconds\"],\" 秒\"],\"mdNruY\":[\"API 令牌\"],\"mgJ1oe\":[\"确认删除\"],\"mgjN5u\":[\"从实例组中解除关联实例?\"],\"mhg7Av\":[\"运行临时命令\"],\"mi9ffh\":[\"类型详情\"],\"mk4anB\":[\"浏览器默认\"],\"mlDUq3\":[\"修改者(用户名)\"],\"mnm1rs\":[\"GitHub Default\"],\"moZ0VP\":[\"同步状态\"],\"momgZ_\":[\"工作流作业模板的名称。\"],\"mqAOoN\":[\"选择 Playbook 目录\"],\"n-37ya\":[\"确认禁用本地授权\"],\"n-LISx\":[\"保存工作流时出错。\"],\"n-ZioH\":[\"获取更新的项目时出错\"],\"n-qmM7\":[\"选择一个 JSON 格式的服务帐户密钥来自动填充以下字段。\"],\"n12Go4\":[\"加载相关组失败。\"],\"n60kiJ\":[\"* 此字段将使用指定的凭证从外部 secret 管理系统检索。\"],\"n6mYYY\":[\"工作流超时信息\"],\"n9Idrk\":[\"(限制为前 10)\"],\"n9lz4A\":[\"失败的作业\"],\"nBAIS_\":[\"查看事件详情\"],\"nC35Na\":[\"Are you sure you want delete the group below?\"],\"nCU-1E\":[\"启用置备回调 URL 的创建。\\n 使用该 URL,主机可以联系 \",[\"brandName\"],\"\\n 并使用此作业模板请求配置\\n 更新\"],\"nCY9IL\":[\"主机已跳过\"],\"nDjIzD\":[\"查看项目详情\"],\"nGbNEN\":[\"将项目视为最新的时间(以秒为单位)。在任务运行和回调期间,任务系统将评估最新项目更新的时间戳。如果它早于缓存超时,则不将其视为最新,并将执行新的项目更新。\"],\"nI54lc\":[\"在同步前删除项目\"],\"nJPBvA\":[\"文件、目录或脚本\"],\"nJTOTZ\":[\"用于本机构内作业的执行环境。当项目、作业模板或工作流没有显式分配执行环境时,则会使用它。\"],\"nLGsp4\":[\"为此工作流作业模板启用调查。\"],\"nMiE53\":[\"启用的变量\"],\"nOhz3x\":[\"退出\"],\"nPH1Cr\":[\"这些执行环境可能被依赖它们的其他资源使用。您确定要删除它们吗?\"],\"nQOwDS\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"dayOfWeek\"]],\"4\":[\"The fourth \",[\"dayOfWeek\"]],\"5\":[\"The fifth \",[\"dayOfWeek\"]],\"one\":[\"The first \",[\"dayOfWeek\"]],\"two\":[\"The second \",[\"dayOfWeek\"]]}]],\"nRXCOn\":[\"失败的主机计数\"],\"nSTT11\":[\"重新启动自:\"],\"nTENWI\":[\"返回到订阅管理。\"],\"nU16mp\":[\"缓存超时\"],\"nZPX7r\":[\"警告:未保存的更改\"],\"nZW6P0\":[\"本地时区\"],\"nZYB4j\":[\"没有状态\"],\"nZYxse\":[\"从组中解除关联主机?\"],\"n_qDNz\":[\"Switch to dark mode\"],\"naCW6Z\":[\"4 月\"],\"ncxIQL\":[\"解除关联一个或多个实例失败。\"],\"neiOWk\":[\"在此处查看构建的库存文档\"],\"nfnm9D\":[\"机构名称\"],\"ng00aZ\":[\"主机过滤器\"],\"nhxAdQ\":[\"关键字\"],\"nlsWzF\":[\"请添加问卷调查问题。\"],\"nnY7VU\":[\"Pagerduty 子域\"],\"noGZlf\":[\"缓存超时(秒)\"],\"npGo-z\":[\"使用 \",[\"label\"],\" 登陆\"],\"nuh_Wq\":[\"Webhook URL\"],\"nvUq8j\":[\"1(详细)\"],\"nzozOC\":[\"删除用户\"],\"nzr1qE\":[\"上传文件被拒绝。请选择单个 .json 文件。\"],\"o-JPE2\":[\"没有找到问卷调查问题。\"],\"o0RwAq\":[\"使用 GitHub Enterprise 登录\"],\"o0x5-R\":[\"为这个字段选择一个值\"],\"o4NRE0\":[\"高级搜索值输入\"],\"o5J6dR\":[\"指定应该执行此节点的条件\"],\"o9R2tO\":[\"SSL 连接\"],\"oABS9f\":[\"为这个字段输入值或者选择「启动时提示」选项。\"],\"oB5EwG\":[\"外部 Secret 管理系统\"],\"oBmCtD\":[\"Are you sure you want delete the groups below?\"],\"oC5JSb\":[\"获取更新的项目数据失败。\"],\"oCKCYp\":[\"发送通知成功\"],\"oEijQ7\":[\"开头不区分大小写的版本。\"],\"oFtmtl\":[\"Select the inventory containing the hosts\\n you want this job to manage.\"],\"oGKq12\":[\"构建2组,限制在交叉点\"],\"oH1Qle\":[\"此工作流作业模板的 Webhook URL。\"],\"oHOOxn\":[\"默认情况下,我们会收集有关服务使用情况的分析数据并将其传输给 Red Hat。该服务收集两类数据。有关更多信息,请参阅<0>此 Tower 文档页面。取消选中以下复选框可禁用此功能。\"],\"oII7vS\":[\"GitHub 设置\"],\"oKMFX4\":[\"永不更新\"],\"oKbBFU\":[\"# source with sync failures.\"],\"oNOjE7\":[\"结束日期/时间\"],\"oNZQUQ\":[\"使用 Kubernetes 或 OpenShift 进行身份验证的凭证\"],\"oQqtoP\":[\"返回到管理作业\"],\"oRt7Uv\":[[\"interval\"],\" years\"],\"oTDA5P\":[[\"0\",\"plural\",{\"one\":[\"此实例当前正被其他资源使用。确定要删除它吗?\"],\"other\":[\"取消置备这些实例可能会影响依赖它们的其他资源。确定仍要删除吗?\"]}]],\"oWvSIB\":[\"发件人电子邮件\"],\"oX_mCH\":[\"项目同步错误\"],\"oZvDsd\":[[\"interval\"],\" hours\"],\"ocUvR-\":[\"false\"],\"ofO19Q\":[\"使用 GitHub Enterprise Teams 登录\"],\"ofcQVG\":[\"未保存的修改 modal\"],\"olEUh2\":[\"成功\"],\"opS--k\":[\"返回到实例组\"],\"orh4t6\":[\"主机正常\"],\"osCeRO\":[\"查看 Azure AD 设置\"],\"ot7qsv\":[\"清除所有过滤器\"],\"ovBPCi\":[\"默认\"],\"owBGkJ\":[\"结束与预期值不匹配 (\",[\"0\"],\")\"],\"owQ8JH\":[\"添加实例组\"],\"ozbhWy\":[\"删除错误\"],\"p-nfFx\":[\"把文件拖放在这里或浏览以上传\"],\"p-ngUo\":[\"未追随\"],\"p-pp9U\":[\"字符串\"],\"p2LEhJ\":[\"个人访问令牌\"],\"p2_GCq\":[\"确认密码\"],\"p3PM8G\":[\"从第一个节点重新启动\"],\"p6-JME\":[\"第一个获取所有引用。第二个获取 Github 拉取请求编号 62,在此示例中分支需要为 “pull/62/head”。\"],\"pAtylB\":[\"未找到\"],\"pCCQER\":[\"全局可用\"],\"pH8j40\":[\"先前已删除的活跃房东\"],\"pHyx6k\":[\"多项选择(单选)\"],\"pKQcta\":[\"自定义 Pod 规格\"],\"pOJNDA\":[\"命令\"],\"pOd3wA\":[\"按 'Enter' 添加更多回答选择。每行一个回答选择。\"],\"pOhwkU\":[\"此操作将从 \",[\"0\"],\" 中解除以下角色关联:\"],\"pRZ6hs\":[\"运行于\"],\"pSypIG\":[\"显示描述\"],\"pYENvg\":[\"授权授予类型\"],\"pZJ0-s\":[\"此组上同时运行的所有作业允许的最大分叉数。零意味着不会强制执行任何限制。\"],\"pa1SrG\":[[\"interval\"],\" days\"],\"peCAyQ\":[\"查看 RADIUS 设置\"],\"pfw0Wr\":[\"所有\"],\"pguZh2\":[\"从 jinja2 表达式创建变量。如果您定义的\\n 构建的组不包含预期的主机,这会很有用。\\n 这可用于从表达式添加 hostvars,以便\\n 您知道这些表达式的结果值是什么。\"],\"phTgAm\":[\"很难为 Ansible 事实的清单提供\\n 规格,因为要填充系统事实,您需要\\n 针对具有 `gather_facts: true` 的清单运行\\n playbook。实际事实\\n 会因系统而异。\"],\"pkY73W\":[\"Rocket.Chat\"],\"pn7Xy3\":[\"请参阅 Django\"],\"poMgBa\":[\"启动时提示输入 SCM 分支。\"],\"ppcQy0\":[\"将缩放设置为 100% 和中心图\"],\"prydaE\":[\"项目同步失败\"],\"pw2VDK\":[[\"month\"],\"的最后一个 \",[\"weekday\"]],\"q-Uk_P\":[\"删除一个或多个凭证类型失败。\"],\"q45OlW\":[\"区域\"],\"q5tQBE\":[\"为相关搜索字段模糊搜索设置类型禁用\"],\"q67y3T\":[\"没有找到通知模板。\"],\"qAlZNb\":[\"您无法对以下工作流审批采取行动: \",[\"itemsUnableToDeny\"]],\"qCUUnr\":[\"没有剩余主机\"],\"qChjCy\":[\"首次运行\"],\"qD-pvR\":[\"仪表盘 ID(可选)\"],\"qEMgTP\":[\"清单源同步错误\"],\"qJK-de\":[\"使用 OIDC 登陆\"],\"qS0GhO\":[\"缺少执行环境\"],\"qSSVmd\":[\"目标频道或用户\"],\"qSSg1L\":[\"链接到可用节点\"],\"qWD0iN\":[\"此数据用于增强\\n 软件的未来版本,并提供\\n Automation Analytics。\"],\"qXRYa2\":[\"跟踪分支中的最新提交\"],\"qYkrfg\":[\"置备回调详情\"],\"qZ2MTC\":[\"这些是 \",[\"brandName\"],\" 支持运行命令的模块。\"],\"qgjtIt\":[\"趋同\"],\"qlhQw_\":[\"清单同步\"],\"qliDbL\":[\"远程归档\"],\"qlwLcm\":[\"故障排除\"],\"qmBmJJ\":[\"这是唯一显示客户端 secret 的时间。\"],\"qmYgP7\":[\"批准\"],\"qqeAJM\":[\"永不\"],\"qtFFSS\":[\"启动时更新修订\"],\"qtaMu8\":[\"清单(名称)\"],\"qvCD_i\":[\"示例包括:\"],\"qwaCoN\":[\"源控制更新\"],\"qxZ5RX\":[\"主机\"],\"qznBkw\":[\"工作流链接模式\"],\"r6Aglb\":[\"使用 JSON 或 YAML 语法输入注入程序。示例语法请参阅 Ansible 控制器文档。\"],\"r6y-jM\":[\"警告\"],\"r6zgGo\":[\"12 月\"],\"r8ojWq\":[\"确认删除\"],\"r8oq0Y\":[\"过去 24 小时\"],\"rBdPPP\":[\"删除 \",[\"name\"],\" 失败。\"],\"rE95l8\":[\"客户端类型\"],\"rG3WVm\":[\"选择\"],\"rHK_Sg\":[\"自定义虚拟环境 \",[\"virtualEnvironment\"],\" 必须替换为执行环境。有关迁移到执行环境的更多信息,请参阅<0>文档。\"],\"rK7UBZ\":[\"重新启动所有主机\"],\"rKS_55\":[\"事实存储:如果启用,这将存储收集的事实,以便可以在主机级别查看它们。事实会被持久化并在运行时注入到事实缓存中。\"],\"rKTFNB\":[\"删除凭证类型\"],\"rLznGJ\":[\"创建批准时使用上游 set_stats 工件呈现的 Jinja2 模板。使用它向批准者显示先前作业步骤的相关上下文。可用变量来自父节点的 set_stats 数据。\"],\"rMrKOB\":[\"同步项目失败。\"],\"rOZRCa\":[\"工作流链接\"],\"rSYkIY\":[\"此字段必须是数字\"],\"rXhu41\":[\"2(调试)\"],\"rYHzDr\":[\"每页的项\"],\"r_IfWZ\":[\"编辑清单\"],\"rdUucN\":[\"预览\"],\"rfYaVc\":[\"回答变量名称\"],\"rfpIXM\":[\"启动时提示输入实例组。\"],\"rfx2oA\":[\"工作流待处理信息正文\"],\"riBcU5\":[\"IRC Nick\"],\"rjVfy3\":[\"工作流文档\"],\"rjyWPb\":[\"1 月\"],\"rmb2GE\":[\"由 \",[\"0\"],\" 拒绝 - \",[\"1\"]],\"rmt9Tu\":[\"主机总数\"],\"ruhGSG\":[\"取消清单源同步\"],\"rvia3m\":[\"其它身份验证\"],\"rw1pRJ\":[\"下载捆绑包\"],\"rwWNpy\":[\"清单\"],\"s-MGs7\":[\"资源\"],\"s2xYUy\":[\"从远程清单源覆盖本地变量\"],\"s3KtlK\":[\"由于所选的例外,此计划没有发生。\"],\"s4Qnj2\":[\"执行环境\"],\"s4fge-\":[\"过去一个月\"],\"s5aIEB\":[\"删除工作流作业模板\"],\"s5mACA\":[\"实例详情\"],\"s5r5nt\":[[\"0\",\"plural\",{\"one\":[\"此实例组当前正被其他资源使用。您确定要删除它吗?\"],\"other\":[\"删除这些实例组可能会影响依赖它们的其他资源。您确定仍要删除吗?\"]}]],\"s6F6Ks\":[\"没有为该作业找到输出。\"],\"s70SJY\":[\"日志设置\"],\"s8hQty\":[\"查看所有作业\"],\"s9EKbs\":[\"禁用 SSL 验证\"],\"sAz1tZ\":[\"确认解除关联\"],\"sBJ5MF\":[\"源\"],\"sCEb_0\":[\"查看所有清单主机。\"],\"sGodAp\":[\"Pod 规格覆写\"],\"sMDRa_\":[\"返回到组\"],\"sOMf4x\":[\"最近模板\"],\"sSFxX6\":[\"启动作业时更新修订\"],\"sTkKoT\":[\"选择要拒绝的行\"],\"sUyFTB\":[\"重定向到仪表盘\"],\"sV3kNp\":[\"其他资源目前正在此实例组中。确定要删除它吗?\"],\"sVh4-e\":[\"删除此链接\"],\"sW5OjU\":[\"必填\"],\"sZif4m\":[\"解除关联相关的组?\"],\"s_XkZs\":[\"开始\"],\"s_r4Az\":[\"此字段必须是整数\"],\"sesAIn\":[\"使用自定义消息来更改作业启动、成功或失败时\\n 发送的通知内容。使用\\n 花括号来访问有关作业的信息:\"],\"sgRZMG\":[\"混合节点\"],\"siJgSI\":[\"未找到用户。\"],\"sjMCOP\":[\"最后修改\"],\"sjVfrA\":[\"命令\"],\"smFRaX\":[\"已启动一个作业\"],\"sqMsvU\":[[\"0\",\"plural\",{\"one\":[\"#\",\" 个源存在同步失败。\"],\"other\":[\"#\",\" 个源存在同步失败。\"]}]],\"sr4LMa\":[\"清单源\"],\"svR3aM\":[\"OpenStack\"],\"svy2x9\":[\"返回满足此过滤器或任何其他过滤器的结果。\"],\"sxkWRg\":[\"高级\"],\"syupn5\":[\"品牌图像\"],\"syyeb9\":[\"第一\"],\"t-R8-P\":[\"执行\"],\"t2q1xO\":[\"编辑调度\"],\"t4v_7X\":[\"选择节点类型\"],\"t9QlBd\":[\"11 月\"],\"tRm9qR\":[\"当您有一个大型 playbook 并且想要运行 play 或任务的特定部分时,标签非常有用。使用逗号分隔多个标签。有关标签用法的详细信息,请参阅文档。\"],\"tVEot_\":[[\"0\",\"plural\",{\"one\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"other\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"]}]],\"tXkhj_\":[\"开始\"],\"t_YqKh\":[\"删除\"],\"tbSVlt\":[\"删除用户访问\"],\"tfDRzk\":[\"保存\"],\"tfh2eq\":[\"点击以创建到此节点的新链接。\"],\"tgPwON\":[\"运算符\"],\"tgSBSE\":[\"删除链接\"],\"tgWuMB\":[\"修改\"],\"thJljW\":[\"警告: \"],\"toJdZA\":[\"Reorder\"],\"tpCmSt\":[\"policy rules.\"],\"tqlcfo\":[\"取消置备\"],\"trjiIV\":[\"无法关联对等点。\"],\"tst44n\":[\"事件\"],\"twE5a9\":[\"删除凭证失败。\"],\"txNbrI\":[\"源控制分支\"],\"ty2DZX\":[\"这个机构目前由其他资源使用。您确定要删除它吗?\"],\"tzgOKK\":[\"此已操作\"],\"u-sh8m\":[\"/ (project root)\"],\"u4ex5r\":[\"7 月\"],\"u4n8Fm\":[\"删除对等项失败。\"],\"u4x6Jy\":[\"返回到作业\"],\"u5AJST\":[\"执行 playbook 时使用的并行或同步进程数量。如果不输入值,则将使用 ansible 配置文件中的默认值。您可以找到更多信息\"],\"u7f6WK\":[\"查看所有工作流批准。\"],\"u84wS1\":[\"作业取消错误\"],\"uAQUqI\":[\"状态\"],\"uAhZbx\":[\"出现故障的库存源\"],\"uCjD1h\":[\"您的会话已过期。请登录以继续使用会话过期前所在的位置。\"],\"uImfEm\":[\"工作流待处理信息\"],\"uJz8NJ\":[\"作业运行时会禁用搜索\"],\"uPRp5U\":[\"取消查找\"],\"uTDtiS\":[\"第五\"],\"uUehLT\":[\"等待\"],\"uVu1Yt\":[\"设置类型选项\"],\"uYtvvN\":[\"在编辑执行环境前选择一个项目。\"],\"ucSTeu\":[\"创建者(用户名)\"],\"ucgZ0o\":[\"机构(Organization)\"],\"ugZpot\":[\"测试外部凭据\"],\"ulRNXw\":[\"Dragging cancelled. List is unchanged.\"],\"upC07l\":[\"Survey Disabled\"],\"uuPCEU\":[\"If you want the Inventory Source to update on launch , click on Update on Launch, and also go to \"],\"uyJsf6\":[\"关于\"],\"uzTiFQ\":[\"返回到调度\"],\"v-CZEv\":[\"启动时提示\"],\"v-EbDj\":[\"故障修复设置\"],\"v-M-LP\":[\"启动模板\"],\"v0urVb\":[\"如果您没有订阅,可以访问\\n Red Hat 以获取试用订阅。\"],\"v1kQyJ\":[\"Webhook\"],\"v2dMHj\":[\"使用主机参数重新启动\"],\"v2gmVS\":[\"此操作将软删除以下内容:\"],\"v45yUL\":[\"解除关联\"],\"v7vAuj\":[\"作业总数\"],\"vCS_TJ\":[\"删除清单源 \",[\"name\"],\" 失败。\"],\"vEr6TL\":[\"这些参数与指定的模块一起使用。您可以通过点击以下内容找到有关 \",[\"0\"],\" 的信息: \"],\"vF82C6\":[\"当父节点具有成功状态时执行。\"],\"vFKI2e\":[\"调度规则\"],\"vFVhzc\":[\"社交\"],\"vGVmd5\":[\"除非设置了启用的变量,否则此字段会被忽略。如果启用的变量与这个值匹配,则会在导入时启用主机。\"],\"vGjmyl\":[\"已删除\"],\"vHAaZi\":[\"跳过每个\"],\"vIb3RK\":[\"创建新调度\"],\"vKRQJB\":[\"用于传递自定义 Kubernetes 或 OpenShift Pod 规格的字段。\"],\"vLyv1R\":[\"隐藏\"],\"vPrMqH\":[\"修订号 #\"],\"vQHUI6\":[\"如果选中,子组和主机的所有变量将被删除并替换为在外部源上找到的变量。\"],\"vTL8gi\":[\"结束时间\"],\"vUOn9d\":[\"返回\"],\"vYFWsi\":[\"选择团队\"],\"vYuE8q\":[\"作业运行所经过的时间\"],\"vZbIkJ\":[\"GitLab\"],\"vcH-SH\":[\"Bitbucket数据中心\"],\"ve_jRy\":[\"按条件\"],\"vgwVkd\":[\"UTC\"],\"vlHGDw\":[\"向 playbook 传递额外的命令行变量。这是 ansible-playbook 的 -e 或 --extra-vars 命令行参数。使用 YAML 或 JSON 提供键/值对。有关语法示例,请参阅文档。\"],\"voRH7M\":[\"示例:\"],\"vq1XXv\":[\"使用应用的过滤器创建新智能清单\"],\"vq2WxD\":[\"周二\"],\"vq9gg6\":[\"您无法对以下工作流审批采取行动: \",[\"itemsUnableToApprove\"]],\"vqAmQC\":[\"模块\"],\"vvY8pz\":[\"启动时提示输入跳过标记。\"],\"vye-ip\":[\"启动时提示输入超时。\"],\"vzsN_5\":[[\"interval\"],\" day\"],\"w07pgp\":[\"启动时提示输入详细程度。\"],\"w0kTk8\":[\"从失败的节点重新启动\"],\"w14eW4\":[\"查看所有令牌。\"],\"w1RiT6\":[[\"0\",\"plural\",{\"one\":[\"此清单源当前正被依赖它的其他资源使用。您确定要删除它吗?\"],\"other\":[\"删除这些清单源可能会影响依赖它们的其他资源。您确定仍要删除它们吗?\"]}]],\"w2VTLB\":[\"小于比较。\"],\"w3EE8S\":[\"自动的主机\"],\"w4j7js\":[\"查看团队详情\"],\"w6zx64\":[\"使用浏览器默认\"],\"wCnaTT\":[\"使用新值替换项\"],\"wF-BAU\":[\"添加清单\"],\"wFnb77\":[\"清单 ID\"],\"wKEfMu\":[\"事件处理完成。\"],\"wO29qX\":[\"未找到机构。\"],\"wW08QA\":[\"不等于\"],\"wX6sAX\":[\"过去两年\"],\"wXAVe-\":[\"模块参数\"],\"wXB7k5\":[\"指定通知颜色。可接受的颜色是十六进制\\n 颜色代码(例如:#3af 或 #789abc)。\"],\"waFx9W\":[\"受管\"],\"wdxz7K\":[\"源\"],\"wgNoIs\":[\"选择所有\"],\"wkgHlv\":[\"添加新令牌\"],\"wlQNTg\":[\"成员\"],\"wnizTi\":[\"导入一个订阅\"],\"wpT1VN\":[\"条件\"],\"wpt6vB\":[\"LDAP2\"],\"wqXiR2\":[\"传递额外的命令行更改。有两个 ansible 命令行参数: \"],\"wsggVq\":[\"如果未选中,在外部源上未找到的本地子主机和组将保持不受库存更新过程的影响。\"],\"x-a4Mr\":[\"Webhook 凭证\"],\"x02hbg\":[\"置备回调:启用创建置备回调 URL。使用该 URL,主机可以联系 Ansible AWX 并使用此任务模板请求配置更新。\"],\"x4Xp3c\":[\"已更新\"],\"x5DnMs\":[\"最后修改\"],\"x6_dAC\":[\"联邦库存\"],\"x6oT_o\":[\"可用主机\"],\"x7PDL5\":[\"日志记录\"],\"x8uKc7\":[\"实例状态\"],\"x9WS62\":[\"取消 \",[\"0\"]],\"xAYSEs\":[\"开始时间\"],\"xAqth4\":[\"查看 Google OAuth 2.0 设置\"],\"xC9EVu\":[\"已取消的节点\"],\"xCJdfg\":[\"清除\"],\"xDr_ct\":[\"结束\"],\"xESTou\":[\"删除作业失败。\"],\"xF5tnT\":[\"Vault 密码\"],\"xGQZwx\":[\"添加容器组\"],\"xGVfLh\":[\"继续\"],\"xHZS6u\":[\"成功的作业\"],\"xHokxV\":[[\"0\",\"plural\",{\"one\":[\"The selected job cannot be deleted due to insufficient permission or a running job status\"],\"other\":[\"The selected jobs cannot be deleted due to insufficient permissions or a running job status\"]}]],\"xHt036\":[\"个人访问令牌\"],\"xKQRBr\":[\"最大长度\"],\"xM01Pk\":[\"默认回答\"],\"xONDaO\":[\"Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?\"],\"xOl1yT\":[\"对名称字段进行精确搜索。\"],\"xPO5w7\":[\"使用 GitHub 登陆\"],\"xPpkbX\":[\"Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway\"],\"xPxMOJ\":[\"时间格式无效\"],\"xQioPk\":[\"在有多个父对象时运行此节点的先决条件。请参阅\"],\"xSytdh\":[\"完成:\"],\"xUhTCP\":[\"选择一个源\"],\"xVhQZV\":[\"周五\"],\"xY9DEq\":[\"用于将字段保留为清单中的目标主机的模式。留空、所有和 * 将针对清单中的所有主机。您可以找到有关 Ansible 主机模式的更多信息\"],\"xY9s5E\":[\"超时\"],\"x_Ej3K\":[\"选择您希望作为用户提示的答案类型或格式。\\n 有关每个选项的更多信息,请参阅 Ascender 文档。\"],\"x_ugm_\":[\"团体总数\"],\"xa7N9Z\":[\"编辑登录重定向覆写 URL\"],\"xcaG5l\":[\"编辑工作流\"],\"xd2LI3\":[\"到期时间 \",[\"0\"]],\"xdA_-p\":[\"工具\"],\"xe5RvT\":[\"YAML选项卡\"],\"xefC7k\":[\"IRC 服务器端口\"],\"xeiujy\":[\"文本\"],\"xg771-\":[\"LDAP1\"],\"xhj1Rt\":[\"您请求的页面无法找到。\"],\"xi4nE2\":[\"错误消息\"],\"xnSIXG\":[\"删除一个或多个主机失败。\"],\"xoCdYY\":[\"检查给定字段的值是否出现在提供的列表中;需要一个以逗号分隔的项目列表。\"],\"xoXoBo\":[\"删除错误\"],\"xrG8k4\":[\"Google Compute Engine\"],\"xtRU96\":[\"GitHub Enterprise Organization\"],\"xuYTJb\":[\"删除作业模板失败。\"],\"xw06rt\":[\"设置与工厂默认匹配。\"],\"xxTtJH\":[\"仅导入主机名与这个正则表达式匹配的主机。该过滤器在应用任何清单插件过滤器后作为后步骤使用。\"],\"y11WBZ\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"取消所选作业\"],\"other\":[\"取消所选作业\"]}]],\"y8ibKI\":[\"删除实例\"],\"yCCaoF\":[\"更新实例失败。\"],\"yDeNnS\":[\"创建新建库存\"],\"yDifzB\":[\"确认选择\"],\"yGS9cI\":[\"健康\"],\"yGUKlf\":[\"管理作业\"],\"yGfW7Y\":[\"部署 \",[\"brandName\"],\" 时更改 PROJECTS_ROOT 以更改此位置。\"],\"yMIahh\":[\"欢迎使用 Red Hat Ansible Automation Platform!\\n 请完成以下步骤来激活您的订阅。\"],\"yMYuDg\":[\"Automation Controller 版本\"],\"yMfU4O\":[\"发件人电子邮件\"],\"yNcGa2\":[\"访问令牌过期\"],\"yOXgbH\":[\"注意:为 GitHub 或 Bitbucket 使用 SSH 协议时,请仅输入 SSH 密钥,不要输入用户名(git 除外)。此外,GitHub 和 Bitbucket 在使用 SSH 时不支持密码身份验证。GIT 只读协议 (git://) 不使用用户名或密码信息。\"],\"yQE2r9\":[\"正在加载\"],\"yRiHPB\":[\"请运行一个作业来填充此列表。\"],\"yRkqG9\":[\"限制\"],\"yRsSBw\":[\"批准\"],\"yUlffE\":[\"重新启动\"],\"yVgnJA\":[\"允许此机构管理的最大主机数。\\n 值默认为 0,表示没有限制。如需更多详情,请参阅 Ansible\\n 文档。\"],\"yX3qAQ\":[\"工作流作业模板节点\"],\"yaG1CX\":[\"LDAP\"],\"yaX9sM\":[\"工作流模板\"],\"yb_fjw\":[\"批准\"],\"ydoZpB\":[\"未找到团队。\"],\"ydw9CW\":[\"失败的主机\"],\"yfG3F2\":[\"直接密钥\"],\"yjwMJ8\":[\"房东/体验达人被自动处理了多少次\"],\"yjyGja\":[\"展开输入\"],\"ylXj1N\":[\"已选择\"],\"yq6OqI\":[\"这是唯一显示令牌值和关联刷新令牌值的时间。\"],\"yqiwAW\":[\"取消工作流\"],\"yrUyDQ\":[\"设置此实例的当前生命周期阶段。默认为\\\"installed\\\"。\"],\"yrwl2P\":[\"合规\"],\"yuXsFE\":[\"无法删除一个或多个工作流批准。\"],\"yuvDX_\":[[\"intervalValue\",\"plural\",{\"one\":[\"month\"],\"other\":[\"months\"]}]],\"ywSBEn\":[\"关联角色错误\"],\"yxDqcD\":[\"授权代码过期\"],\"yy1cWw\":[\"自定义消息…\"],\"yz7wBu\":[\"关闭\"],\"yzQhLU\":[\"策略实例最小值\"],\"yzdDia\":[\"删除问卷调查\"],\"z-BNGk\":[\"删除用户令牌\"],\"z0DcIS\":[\"加密\"],\"z3XA1I\":[\"主机重试\"],\"z409y8\":[\"Webhook 服务\"],\"z7NLxJ\":[\"如果您只想删除这个特定用户的访问,请将其从团队中删除。\"],\"z8mwbl\":[\"当新实例上线时,将自动分配给此组的所有实例的最小百分比。\"],\"zBO1TV\":[[\"numOccurrences\",\"plural\",{\"one\":[\"#\",\" 次出现后\"],\"other\":[\"#\",\" 次出现后\"]}]],\"zHcXAG\":[\"将此字段留空以使执行环境全局可用。\"],\"zICM7E\":[\"在同步前丢弃本地更改\"],\"zJY4Uj\":[\"Playbook\"],\"zKJMiH\":[\"Playbook 目录\"],\"zK_63z\":[\"无效的用户名或密码。请重试。\"],\"zLsDix\":[\"LDAP 用户\"],\"zMKkOk\":[\"返回到机构\"],\"zN0nhk\":[\"提供您的 Red Hat 或 Red Hat Satellite 凭证以启用 Automation Analytics。\"],\"zQRgi-\":[\"切换通知开始\"],\"zTediT\":[\"此字段必须是数字,且值介于 \",[\"min\"],\" 和 \",[\"max\"],\" 之间\"],\"zUIPys\":[\"根据Jinja2条件将房东添加到群组中。\"],\"z_PZxu\":[\"删除工作流批准失败。\"],\"zbLCH1\":[\"清单类型\"],\"zcQj5X\":[\"首先,选择一个密钥\"],\"zdl7YZ\":[\"选择源路径\"],\"zeEQd_\":[\"6 月\"],\"zf7FzC\":[\"与 Kubernetes 或 OpenShift 进行身份验证的凭证。必须为“Kubernetes/OpenShift API Bearer Token”类型。如果留空,底层 Pod 的服务帐户会被使用。\"],\"zfZydd\":[\"问卷调查预览模态\"],\"zfsBaJ\":[\"了解更多有关 Automation Analytics 的信息\"],\"zgInnV\":[\"工作流节点查看模式\"],\"zga9sT\":[\"确定\"],\"zhPLvU\":[\"关联失败。\"],\"zhrjek\":[\"组\"],\"zi_YNm\":[\"取消 \",[\"0\"],\" 失败\"],\"zmu4-P\":[\"帐户 SID\"],\"znG7ed\":[\"选择一个 playbook\"],\"znTz5r\":[\"未找到调度。\"],\"znuW_M\":[\"如果是,则将无效条目视为致命错误,否则跳过并\\n 继续。\"],\"zq0gmb\":[\"选择周期\"],\"ztOzCj\":[\"启动时更新\"],\"ztw2L3\":[\"至少一个输入中必须有值\"],\"zvfXp0\":[\"切换通知批准\"],\"zx4BuL\":[\"周\"],\"zzDlyQ\":[\"成功\"],\"{count, plural, one {# fork} other {# forks}}\":[[\"count\",\"plural\",{\"one\":[\"#\",\" fork\"],\"other\":[\"#\",\" forks\"]}]]}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"--iDlT\":[\"删除项目\"],\"-0AkQd\":[[\"forks\",\"plural\",{\"one\":[\"#\",\" 个分叉\"],\"other\":[\"#\",\" 个分叉\"]}]],\"-0B-ue\":[\"项目\"],\"-5kO8P\":[\"周六\"],\"-6EcFR\":[\"按 Enter 进行编辑。按 ESC 停止编辑。\"],\"-7M7WW\":[\"点击以切换默认值\"],\"-7VWRl\":[\"RAM \",[\"0\"]],\"-8WGoO\":[\"插件参数是必需的。\"],\"-9d7Ol\":[\"Pagerduty 子域\"],\"-9y9jy\":[\"运行健康检查\"],\"-9yY_Q\":[\"复制清单失败。\"],\"-AZQnp\":[\"SAML\"],\"-FWz2-\":[\"滚动到前一个\"],\"-FjWgX\":[\"周四\"],\"-GMFSa\":[\"复制项目失败。\"],\"-GOG9X\":[\"隐藏描述\"],\"-NI2UI\":[\"将此任务模板完成的工作划分为指定数量的任务切片,每个切片针对清单的一部分运行相同的任务。\"],\"-NezOR\":[\"一些凭证目前正在使用此凭证类型,无法删除\"],\"-OpL2l\":[\"无论父节点的最后状态如何都执行。\"],\"-PyL32\":[\"您确定要从删除这个节点吗?\"],\"-RAMET\":[\"编辑这个链接\"],\"-SAqJ3\":[\"复制凭证失败。\"],\"-Uepfb\":[\"控制\"],\"-b3ghh\":[\"权限升级\"],\"-cWxFz\":[\"启用内容签名以验证在同步项目时内容是否保持安全。如果内容已被篡改,任务将不会运行。\"],\"-hh3vo\":[\"无法加载最后的作业更新\"],\"-li8PK\":[\"订阅使用情况\"],\"-nb9qF\":[\"(启动时提示)\"],\"-ohrPc\":[\"查找 typeahead\"],\"-rfqXD\":[\"启用问卷调查\"],\"-uOi7U\":[\"点下载捆绑包\"],\"-vAlj5\":[\"启动作业失败。\"],\"-z0Ubz\":[\"选择要应用的角色\"],\"-zW4qj\":[\"要检出的分支。除了分支之外,您还可以输入标签、提交哈希和任意引用。除非您还提供自定义 refspec,否则某些提交哈希和引用可能不可用。\"],\"-zy2Nq\":[\"类型\"],\"0-31GV\":[\"删除\"],\"0-yjzX\":[\"项目必须在修订可用前同步。\"],\"00_HDq\":[\"策略类型\"],\"00cteM\":[\"此字段不得超过 \",[\"0\"],\" 个字符\"],\"01Zgfk\":[\"超时\"],\"02FGuS\":[\"创建新组\"],\"02ePaq\":[\"选择 \",[\"0\"]],\"02o5A-\":[\"创建新项目\"],\"05TJDT\":[\"点击以查看作业详情\"],\"06Veq8\":[\"同步项目\"],\"08IuMU\":[\"覆盖变量\"],\"08dX0o\":[\"Grafana\"],\"0Ca6Bi\":[[\"dateStr\"],\"(由 <0>\",[\"username\"],\")\"],\"0DRyjU\":[\"正在运行的处理程序\"],\"0JjrTf\":[\"解析该文件时出错。请检查文件格式然后重试。\"],\"0K8MzY\":[\"此字段不得超过 \",[\"max\"],\" 个字符\"],\"0LUj25\":[\"删除实例组\"],\"0MFMD5\":[\"在一个或多个实例上运行健康检查失败。\"],\"0Ohn6b\":[\"启动者\"],\"0PUWHV\":[\"重复频率\"],\"0Pz6gk\":[\"用于配置构建的清单插件的变量。有关如何配置此插件的详细说明,请参阅\"],\"0QsHpG\":[\"输入架构,为该类型定义一组排序字段。\"],\"0Tddvz\":[\"Grafana 服务器的基本 URL - /api/annotations\\n 端点将自动添加到基本\\n Grafana URL。\"],\"0WL4_U\":[\"删除所有节点\"],\"0WP27-\":[\"等待作业输出…\"],\"0YAsXQ\":[\"容器组\"],\"0ZdD1M\":[[\"0\",\"plural\",{\"one\":[\"You cannot cancel the following job because it is not running:\"],\"other\":[\"You cannot cancel the following jobs because they are not running:\"]}]],\"0ZqUtV\":[\"有关更多信息,请参阅\"],\"0_ru-E\":[\"复制清单\"],\"0cqIWs\":[\"基本验证密码\"],\"0d48JM\":[\"多项选择(多选)\"],\"0eOoxo\":[\"请选择一个比开始日期/时间晚的结束日期/时间。\"],\"0f7U0k\":[\"周三\"],\"0gPQCa\":[\"始终\"],\"0lvFRT\":[\"无法更改凭据的凭据类型,因为这可能会破坏使用它的资源的功能。\"],\"0pC_y6\":[\"事件\"],\"0qOaMt\":[\"测试此凭据和元数据的请求出错。\"],\"0rVzXl\":[\"Google OAuth2 设置\"],\"0sNe72\":[\"添加角色\"],\"0tNXE8\":[\"PUT\"],\"0tfvhT\":[\"实例组使用的容量\"],\"0wlLcO\":[\"设置数据应保留的天数。\"],\"0zpgxV\":[\"选项\"],\"0zs8j5\":[\"此节点的作业在遵循其失败路径之前失败后自动重试的最大次数。已取消的作业永远不会重试。\"],\"1-4GhF\":[\"取消同步\"],\"10B0do\":[\"发送测试通知失败。\"],\"1280Tg\":[\"主机名\"],\"12j25_\":[\"GPG 公钥\"],\"12kemj\":[\"源控制 URL\"],\"14KOyT\":[\"源变量\"],\"15GcuU\":[\"查看其他身份验证设置\"],\"17TKua\":[\"实例组\"],\"19zgn6\":[\"实例类型\"],\"1A3EXy\":[\"展开\"],\"1C5cFl\":[\"下次运行\"],\"1Ey8My\":[\"IP 地址\"],\"1F0IaT\":[\"查看调度\"],\"1HMy92\":[\"JSON:\"],\"1I6UoR\":[\"视图\"],\"1L3KBl\":[\"创建新凭证类型\"],\"1LRwvx\":[\"如果您希望清单源在启动时更新,请点击「启动时更新」,并转到 \"],\"1Ltnvs\":[\"添加节点\"],\"1PQRWr\":[\"开始时间\"],\"1QRNEs\":[\"重复频率\"],\"1RYzKu\":[\"从已取消的节点重新启动\"],\"1UJu6o\":[\"选择的日数字应介于 1 到 31 之间。\"],\"1UjRxI\":[\"缓存超时\"],\"1UzENP\":[\"否\"],\"1V4Yvg\":[\"杂项系统\"],\"1WlWk7\":[\"查看清单主机详情\"],\"1WsB5U\":[\"我们无法找到与这个帐户关联的许可证。\"],\"1ZaQUH\":[\"姓\"],\"1_gTC7\":[\"您不能选择具有相同 vault ID 的多个 vault 凭证。这样做会自动取消选择具有相同的 vault ID 的另一个凭证。\"],\"1abtmx\":[\"提升子组和主机\"],\"1ahgeV\":[\"Google OAuth2\"],\"1cT4RU\":[\"SCM 更新\"],\"1fO-kL\":[\"切换实例失败。\"],\"1hCxP5\":[\"删除一个或多个实例组失败。\"],\"1kwHxg\":[\"指标\"],\"1n50PN\":[\"JSON 标签页\"],\"1qd4yi\":[\"变量需要是 JSON 或 YAML 语法格式。使用单选按钮在两者之间切换。\"],\"1rDBnp\":[\"文件差异\"],\"1w2SCz\":[\"选择源控制类型\"],\"1xdJD7\":[\"根据屏幕调整\"],\"1yHVE-\":[\"添加\"],\"2-iKER\":[\"查看活动流\"],\"2B_v7Y\":[\"策略实例百分比\"],\"2CTKOa\":[\"返回到项目\"],\"2FB7vv\":[\"在编辑默认执行环境前选择一个机构。\"],\"2FeJcd\":[\"项已跳过\"],\"2H9REH\":[\"模糊搜索名称字段。\"],\"2JV4mx\":[\"此实例所属的实例组。\"],\"2KlsJC\":[\"您可以在消息中应用多个可能的变量。\\n 如需更多信息,请参阅\"],\"2MSEkM\":[\"删除清单失败。\"],\"2a07Yj\":[\"复制通知模板\"],\"2ekvhy\":[\"例外频率\"],\"2gDkH_\":[\"请输入事件发生的值。\"],\"2iyx-2\":[\"Ansible 控制器文档。\"],\"2n41Wr\":[\"添加工作流模板\"],\"2nsB1O\":[\"返回到令牌\"],\"2ocqzE\":[\"Webhook:为此模板启用 webhook。\"],\"2ooR7j\":[\"LDAP 5\"],\"2p6eVk\":[\"查找模式\"],\"2pNIxF\":[\"工作流节点\"],\"2pgi-L\":[\"指示主机是否可用以及是否应包含在运行中的\\n 作业中。对于属于外部清单的主机,这可能会被\\n 清单同步过程重置。\"],\"2qfwJn\":[\"覆盖\"],\"2r06bV\":[\"HipChat\"],\"2rvMKg\":[\"刷新令牌\"],\"2w-INk\":[\"主机详情\"],\"2zs1kI\":[\"此值与之前输入的密码不匹配。请确认该密码。\"],\"3-SkJA\":[\"从主机中解除关联组?\"],\"3-sY1p\":[\"目标 SMS 号码\"],\"328Yxp\":[\"源控制分支\"],\"38Or-7\":[\"制表符\"],\"38VIWI\":[\"查看模板详情\"],\"39y5bn\":[\"周五\"],\"3A9ATS\":[\"未找到执行环境。\"],\"3AOZPn\":[\"查看和编辑调试选项\"],\"3FUtN9\":[\"清单源同步\"],\"3IVQDN\":[\"此调度使用 UI 中不支持的复杂规则。\\n 请使用 API 来管理此调度。\"],\"3JjdaA\":[\"运行\"],\"3JnvxN\":[\"选择将获得新角色的资源。您可以选择下一步中要应用的角色。请注意,此处选择的资源将接收下一步中选择的所有角色。\"],\"3JzsDb\":[\"5 月\"],\"3LoUor\":[\"目标频道\"],\"3LqMX2\":[\"CIQ Ascender Automation Platform\"],\"3PAU4M\":[\"年\"],\"3PZalO\":[\"未找到主机。\"],\"3Rke7L\":[\"1(信息)\"],\"3WGwSW\":[\"在执行更新之前完全删除本地存储库。根据存储库的大小,这可能会显著增加完成更新所需的时间。\"],\"3YSVMq\":[\"删除错误\"],\"3aIe4Y\":[\"创建新机构\"],\"3b24mY\":[\"CPU \",[\"0\"]],\"3fG1e7\":[\"过期的时间\"],\"3fMc43\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 年\"],\"other\":[\"#\",\" 年\"]}]],\"3hCQhK\":[\"清单插件.\"],\"3hvUyZ\":[\"新选择\"],\"3mTiHp\":[\"复制模板失败。\"],\"3pBNb0\":[\"重新加载输出\"],\"3sFvGC\":[\"设置实例被启用或禁用。如果禁用,则不会将作业分配给此实例。\"],\"3sXZ-V\":[\"然后单击启动时更新修订版本。\"],\"3uAM50\":[\"最终用户许可证协议\"],\"3wPA9L\":[\"设置类别\"],\"3y7qi5\":[\"返回到凭证\"],\"3yy_k-\":[\"查看所有团队。\"],\"4-RjdJ\":[[\"interval\"],\" year\"],\"40lLFI\":[\"进入下一页\"],\"41KRqu\":[\"凭证密码\"],\"45BzQy\":[\"运行状况检查是异步任务。请参阅\"],\"45cx0B\":[\"取消订阅编辑\"],\"45gLaI\":[\"启动时提示输入凭证。\"],\"46SUtl\":[\"编辑组\"],\"479kuh\":[\"将完整修订复制到剪贴板。\"],\"47e97a\":[\"最大重试次数\"],\"4BITzH\":[\"错误:\"],\"4LzLLz\":[\"查看所有设置\"],\"4Q4HZp\":[\"未找到 \",[\"pluralizedItemName\"]],\"4QXpWJ\":[\"超时\"],\"4QfhOe\":[\"智能清单主机过滤器中不支持 not__ 和 __search 等一些搜索修饰符。删除这些修改以使用此过滤器创建新的智能清单。\"],\"4S2cNE\":[\"查看日志记录设置\"],\"4Wt2Ty\":[\"从列表中选择项\"],\"4_ESDh\":[\"此字段必须是正则表达式\"],\"4_xiC_\":[\"工件\"],\"4alXD6\":[\"此组上同时运行的最大作业数。\\n 零意味着不会强制执行任何限制。\"],\"4bhLaA\":[\"选择一个凭证类型\"],\"4cWhxn\":[\"控制此实例是否由策略管理。如果启用,实例将可用于根据策略规则自动分配给实例组和取消分配实例组。\"],\"4dQFvz\":[\"完成\"],\"4g1rw0\":[\"电子邮件通知停止尝试连接主机并超时前的\\n 时间(以秒为单位)。范围为\\n 1 到 120 秒。\"],\"4hPyPF\":[\"保存并退出\"],\"4j2eOR\":[\"选择此主机要属于的清单。\"],\"4jnim6\":[\"选择一个 webhook 服务。\"],\"4km-Vu\":[\"不合规\"],\"4kw_um\":[[\"interval\"],\" minute\"],\"4lCMxZ\":[\"解释失败:\"],\"4lgLew\":[\"2 月\"],\"4mQyZf\":[\"Webhook 服务可以将此用作共享密钥。\"],\"4nLbTY\":[\"查看所有管理作业\"],\"4o_cFL\":[\"创建应用\"],\"4s0pSB\":[\"提供主机模式以进一步限制将由 playbook 管理或影响的主机列表。允许使用多个模式。有关模式的更多信息和示例,请参阅 Ansible 文档。\"],\"4uVADI\":[\"客户端 secret\"],\"4vFDZV\":[\"创建新作业模板\"],\"4vkbaA\":[\"此清单更新的来源项目。\"],\"4yGeRr\":[\"清单同步\"],\"4zue79\":[\"版权\"],\"5-qYGv\":[\"编辑实例\"],\"54_SyV\":[[\"0\",\"plural\",{\"one\":[\"You do not have permission to cancel the following job:\"],\"other\":[\"You do not have permission to cancel the following jobs:\"]}]],\"56fd5u\":[\"您确定要删除此工作流中的所有节点吗?\"],\"5B77Dm\":[\"最后作业\"],\"5F5F4w\":[\"工作流已批准\"],\"5IhYoj\":[\"节点类型\"],\"5K7kGO\":[\"文档\"],\"5KMGbn\":[\"您确定要取消此作业吗?\"],\"5RMgCw\":[\"主机\"],\"5S4tZv\":[\"频率与预期值不匹配\"],\"5Sa1Ss\":[\"电子邮件\"],\"5TnQp6\":[\"作业类型\"],\"5WFDw4\":[\"唯一分组标准\"],\"5X2wog\":[\"登录时有问题。请重试。\"],\"5_vHPm\":[\"查看 TACACS+ 设置\"],\"5ajaW1\":[\"当父节点的工件与条件匹配时执行。\"],\"5dJK4M\":[\"角色\"],\"5eHyY-\":[\"测试通知\"],\"5eL2KN\":[\"目标 URL\"],\"5lqXf5\":[\"恢复到工厂默认值。\"],\"5n_soj\":[\"启动时提示输入作业切片数。\"],\"5p6-Mk\":[\"根据失败的作业过滤\"],\"5pDe2G\":[\"Remove \",[\"0\"],\" Access\"],\"5pa4JT\":[\"Playbook 已启动\"],\"5qauVA\":[\"其他资源目前正在使用此工作流作业模板。确定要删除它吗?\"],\"5vA8H0\":[\"未匹配主机\"],\"5xzS8Q\":[\"确保这是「constructed」插件的\\n 源文件的令牌。\"],\"5y9wkB\":[\"返回到通知\"],\"6-OdGi\":[\"协议\"],\"6-ptnU\":[\"选项\"],\"623gDt\":[\"删除用户失败。\"],\"63C4Yo\":[\"容器组\"],\"66Zq7T\":[\"保存链路更改\"],\"66qTfS\":[\"过去一周\"],\"679-JR\":[\"模糊搜索 id、name 或 description 字段。\"],\"68OTAn\":[\"This intance is currently being used by other resources. Are you sure you want to delete it?\"],\"68h6WG\":[\"启动管理作业\"],\"69aXwM\":[\"添加现有组\"],\"69zuwn\":[\"Deprovisioning these instances could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"6ASSBg\":[\"LDAP 4\"],\"6BzDub\":[\"软删除\"],\"6GBt0m\":[\"元数据\"],\"6HLTEb\":[\"过滤...\"],\"6J-cs1\":[\"超时秒\"],\"6KhU4s\":[\"您确定要退出 Workflow Creator 而不保存您的更改吗?\"],\"6LTyxl\":[\"修订\"],\"6PmtyP\":[\"切换图例\"],\"6RDwJM\":[\"令牌\"],\"6UYTy8\":[\"分钟\"],\"6V3Ea3\":[\"复制\"],\"6WwHL3\":[\"节点总数\"],\"6XOI1I\":[\"创建新联邦库存\"],\"6XgEPi\":[\"小时\"],\"6YtxFj\":[\"名称\"],\"6Z5ACo\":[\"主机配置键\"],\"6bpC9t\":[\"失败的节点\"],\"6cylr_\":[\"Stdout\"],\"6f961q\":[\"仅在缺失时\"],\"6hEnxG\":[\"启用权限升级\"],\"6j6_0F\":[\"相关资源\"],\"6kpN96\":[\"删除通知失败。\"],\"6lGV3K\":[\"显示更少\"],\"6msU0q\":[\"删除一个或多个作业失败。\"],\"6nsio_\":[\"运行命令\"],\"6oNH0E\":[\"插件配置指南。\"],\"6pMgh_\":[\"查看 LDAP 设置\"],\"6rSKy6\":[\"为此联邦库存选择源库存。启动作业时,主机将自动路由到每个源库存的实例组。\"],\"6uvnKV\":[\"API 服务/集成密钥\"],\"6vrz8I\":[\"取消一个或多个作业失败。\"],\"6zGHNM\":[\"剩余主机\"],\"74MNbw\":[\"Ctrl IQ, Inc.\"],\"764xeZ\":[\"更新问卷调查失败。\"],\"7Bj3x9\":[\"失败\"],\"7ElOdS\":[\"仪表盘 ID\"],\"7IUE9q\":[\"源变量\"],\"7JF9w9\":[\"添加问题\"],\"7L01XJ\":[\"操作\"],\"7O5TcN\":[\"事件摘要不可用\"],\"7PzzBU\":[\"User\"],\"7UZtKb\":[\"拥有此工作流作业模板的组织。\"],\"7VETeB\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"],\"7VpPHA\":[\"确认\"],\"7Xk3M1\":[\"选择包含您希望此任务执行的 playbook 的项目。\"],\"7ZhNzL\":[\"前往第一页\"],\"7b8TOD\":[\"详情。\"],\"7bDeKc\":[\"订阅清单\"],\"7fJwmW\":[\"所选项列表。\"],\"7hS02I\":[[\"automatedInstancesCount\"],\" 自 \",[\"automatedInstancesSinceDateTime\"]],\"7icMBj\":[\"没有可用作业数据\"],\"7kb4LU\":[\"已批准\"],\"7p5kLi\":[\"仪表盘\"],\"7q256R\":[\"允许分支覆写\"],\"7qFdk8\":[\"编辑凭证\"],\"7sMeHQ\":[\"密钥\"],\"7sNhEz\":[\"用户名\"],\"7w3QvK\":[\"成功消息正文\"],\"7wgt9A\":[\"Playbook 运行\"],\"7zmvk2\":[\"项故障\"],\"81eOdm\":[\"重新启动工作流\"],\"82O8kJ\":[\"此项目当前正在同步,在同步过程完成之前无法单击\"],\"82sWFi\":[\"管理\"],\"84Usx_\":[\"删除项目失败。\"],\"87a_t_\":[\"标志\"],\"88ip8h\":[\"恢复所有\"],\"8BkLPF\":[\"允许的 URI 列表,以空格分隔\"],\"8F8HYs\":[\"选择要使用的 Ansible Automation Platform 订阅。\"],\"8H3Igx\":[[\"interval\"],\" month\"],\"8Oef5v\":[\"GIT 源代码控制的示例 URL 包括:\"],\"8XM8GW\":[\"正确分配角色失败\"],\"8Z236a\":[\"品牌徽标\"],\"8ZsakT\":[\"密码\"],\"8_wZUD\":[\"团队角色\"],\"8d57h8\":[\"查看杂项系统设置\"],\"8gCRbU\":[\"其他提示\"],\"8gaTqG\":[\"类型详情\"],\"8kDNpI\":[\"在评估条件之前需要父节点的结果。\"],\"8l9yyw\":[\"任务模板\"],\"8lEjQX\":[\"安装捆绑包\"],\"8lb4Do\":[\"清除订阅\"],\"8oiwP_\":[\"输入配置\"],\"8p_xVT\":[[\"0\",\"plural\",{\"one\":[[\"1\"]],\"other\":[[\"2\"]]}]],\"8u5g0S\":[\"删除智能清单\"],\"8vETh9\":[\"显示\"],\"8wxHsh\":[\"此工作流作业模板的 Webhook 密钥。\"],\"8yd882\":[\"解除关联一个或多个团队失败。\"],\"8zGO4o\":[\"字段与给出的正则表达式匹配。\"],\"8zoIOi\":[[\"0\",\"plural\",{\"one\":[\"This credential type is currently being used by some credentials and cannot be deleted.\"],\"other\":[\"Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?\"]}]],\"8zvzWO\":[\"允许此工作流作业模板同时运行。\"],\"9-wVFp\":[\"查看联邦库存详情\"],\"91UHfE\":[\"清单更新\"],\"91lyAf\":[\"并发作业\"],\"933cZy\":[\"杂项系统设置\"],\"954HqS\":[\"房东首次自动执行操作的时间\"],\"95p1BK\":[\"创建新用户\"],\"98Qtlu\":[\"每次使用此项目运行任务时,在开始任务之前更新项目的修订版本。\"],\"991Df5\":[\"a new webhook key will be generated on save.\"],\"99qC6z\":[[\"interval\"],\" week\"],\"9Ah95g\":[[\"0\",\"plural\",{\"one\":[\"此清单当前正被某些模板使用。确定要删除它吗?\"],\"other\":[\"删除这些清单可能会影响依赖它们的某些模板。确定仍要删除吗?\"]}]],\"9BTNYL\":[\"Expected at least one of client_email, project_id or private_key to be present in the file.\"],\"9BpfLa\":[\"选择标签\"],\"9DOXq6\":[\"查看所有模板。\"],\"9DugxF\":[\"订阅类型\"],\"9HhFQ8\":[\"返回具有除此之外的其他值以及其他过滤器的结果。\"],\"9L1ngr\":[\"作业总数\"],\"9N-4tQ\":[\"凭证类型\"],\"9NyAH9\":[\"跳过\"],\"9PB0sF\":[\"IRC\"],\"9Rsklx\":[\"删除所有节点\"],\"9Tmez1\":[\"查看实例详情\"],\"9UuGMQ\":[\"等待删除\"],\"9V-Un3\":[\"启用事实缓存\"],\"9VMv7k\":[\"已建库存\"],\"9Wm-J4\":[\"切换密码\"],\"9XA1Rs\":[\"该项目目前正在同步,且修订将在同步完成后可用。\"],\"9Y3BQE\":[\"删除机构\"],\"9YSB0Z\":[\"此调度缺少清单\"],\"9ZnrIx\":[\"查看并编辑您的订阅信息\"],\"9fRa7M\":[\"选择要删除的行\"],\"9hmrEp\":[\"重新启动于\"],\"9iX1S0\":[\"此操作将删除以下实例,您可能需要为以前连接到的任何实例重新运行安装包:\"],\"9jfn-S\":[\"未扩展\"],\"9l0RZY\":[\"点一个可用的节点来创建新链接。点击图形之外来取消。\"],\"9m7jms\":[\"当针对此联邦库存启动作业时,其主机将被路由到各自实例组的源库存。\"],\"9mfJJf\":[\"作业模板\"],\"9nhhVW\":[\"页\"],\"9nypdt\":[\"恢复初始值。\"],\"9odS2n\":[\"失败的主机\"],\"9og-0c\":[\"其他资源目前正在使用此执行环境。确定要删除它吗?\"],\"9rFgm2\":[\"订阅容量\"],\"9rvzNA\":[\"关联模态\"],\"9td1Wl\":[\"检查\"],\"9uI_rE\":[\"撤消\"],\"9u_dDE\":[\"无法访问的主机数\"],\"9uxVdR\":[\"源控制凭证\"],\"9wvWk3\":[\"此构建的库存输入 \\n 为两个类别创建一个组,并使用 \\n 限制(主机模式)仅返回位于这两个组 \\n 交集中的主机。\"],\"A1a8Ku\":[\"管理作业启动错误\"],\"A1taO8\":[\"搜索\"],\"A3o0Xd\":[\"要运行此机构的实例组。\"],\"A6paZd\":[\"添加联邦库存\"],\"A8lIi2\":[\"修订版本同步\"],\"A9-PUr\":[\"提交健康检查请求。请等待并重新载入页面。\"],\"AA2ASV\":[\"执行环境复制成功\"],\"ADVQ46\":[\"登录\"],\"ARAUFe\":[\"删除清单\"],\"AV22aU\":[\"出现错误...\"],\"AWOSPo\":[\"放大\"],\"Ab1y_G\":[\"取消构建的库存源同步\"],\"AgTBbk\":[[\"intervalValue\",\"plural\",{\"one\":[\"week\"],\"other\":[\"weeks\"]}]],\"AgTuXC\":[\"您没有权限删除 \",[\"pluralizedItemName\"],\":\",[\"itemsUnableToDelete\"]],\"Ai2U7L\":[\"主机\"],\"Aj3on1\":[\"启用外部日志记录\"],\"AoCBvp\":[\"作业分片\"],\"Apl-Vf\":[\"Red Hat 订阅清单\"],\"Apv-R1\":[\"如果您准备进行升级或续订,请<0>联系我们。\"],\"AqdlyH\":[\"在创建或编辑节点时无法选择具有提示密码凭证的作业模板\"],\"ArtxnQ\":[\"源控制 Refspec\"],\"AsLVdj\":[\"每行使用一个 IRC 频道或用户名。频道的\\n 井号 (#) 和用户的 at (@) 符号不是\\n 必需的。\"],\"AwUsnG\":[\"实例\"],\"AxC8wb\":[\"复制输出\"],\"AxPAXW\":[\"没有找到结果\"],\"Axi4f8\":[\"Dragging item \",[\"id\"],\". Item with index \",[\"oldIndex\"],\" in now \",[\"newIndex\"],\".\"],\"Azw0EZ\":[\"创建新智能清单\"],\"B0HFJ8\":[\"解除关联一个或多个主机失败。\"],\"B0P3qo\":[\"作业 ID:\"],\"B0dbFG\":[\"删除调度\"],\"B2Zb_F\":[\"JSON\"],\"B3ZzHO\":[\"最后自动\"],\"B4WcU9\":[\"由 \",[\"0\"],\" 批准 - \",[\"1\"]],\"B7FU4J\":[\"主机已启动\"],\"B8bpYS\":[\"上传一个包含了您的订阅的 Red Hat Subscription Manifest。要生成订阅清单,请访问红帽用户门户网站中的 <0>subscription allocations。\"],\"BAmn8K\":[\"选择资源类型\"],\"BERhj_\":[\"成功信息\"],\"BGNDgh\":[\"节点别名\"],\"BH7upP\":[\"POST\"],\"BIJ2_m\":[\"将用于此组织内作业的执行环境。当未在项目、作业模板或工作流级别显式分配执行环境时,将用作回退。\"],\"BNDplB\":[\"成功复制的模板\"],\"BWTzAb\":[\"手动\"],\"BaPk6N\":[\"用于定位 playbook 的基本路径。在此路径中找到的目录将列在 playbook 目录下拉列表中。基本路径和所选的 playbook 目录一起提供用于定位 playbook 的完整路径。\"],\"BfYq0G\":[\"源控制类型\"],\"Bg7M6U\":[\"未找到结果\"],\"Bl2Djq\":[\"查看令牌\"],\"Bl2eoO\":[\"已加密\"],\"BskWMl\":[\"无法访问\"],\"BsrdSv\":[\"使用JSON或YAML语法输入库存变量。使用单选按钮在两者之间切换。请参阅Ansible Controller文档,了解语法示例。\"],\"Bv8zdm\":[\"输入库存\"],\"BwJKBw\":[\"的\"],\"Bz7WRU\":[[\"0\",\"plural\",{\"one\":[\"请输入有效的电话号码。\"],\"other\":[\"请输入有效的电话号码。\"]}]],\"BzEFor\":[\"或\"],\"BzbzJb\":[\"事实\"],\"BzfzPK\":[\"项\"],\"C-gr_n\":[\"Azure AD 设置\"],\"C0sUgI\":[\"创建新清单\"],\"C2KEkR\":[\"SSH 密码\"],\"C3Q1LZ\":[\"查看 OIDC 设置\"],\"C4C-qQ\":[\"调度详情\"],\"C6GAUT\":[\"已展开\"],\"C7dP40\":[\"拒绝 \",[\"0\"],\" 失败。\"],\"C7s60U\":[\"Webhook 详情\"],\"CAL6E9\":[\"团队\"],\"CDOlBM\":[\"实例 ID\"],\"CE-M2e\":[\"信息\"],\"CGOseh\":[\"调度详情\"],\"CGZgZY\":[\"选择要解除关联的行\"],\"CG_9l6\":[\"LDAP 1\"],\"CGwKKr\":[[\"0\",\"plural\",{\"one\":[\"删除组?\"],\"other\":[\"删除组?\"]}]],\"CIEoqM\":[\"实例名\"],\"CKc7jz\":[\"主机详情模式\"],\"CL7QiF\":[\"键入回答,然后点右侧选择回答作为默认选项。\"],\"CLTHnk\":[\"问卷调查问题顺序\"],\"CMmwQ-\":[\"未知开始日期\"],\"CNZ5h9\":[\"数据保留的周期\"],\"CS8u6E\":[\"启用 Webhook\"],\"CSvk3a\":[\"Twilio 中与「Messaging\\n Service」关联的号码,格式为 +18005550199。\"],\"CW11B-\":[\"最小值\"],\"CXJHPJ\":[\"修改者(用户名)\"],\"CZDqWd\":[\"项目修订当前已过期。请刷新以获取最新的修订版本。\"],\"CZg9aH\":[\"选择主机\"],\"C_Lu89\":[\"使用 JSON 或 YAML 语法输入。示例语法请参阅 Ansible 控制器文档。\"],\"C_NnqT\":[\"创建新主机\"],\"Cc8jO8\":[\"选择要在访问远程主机时用来运行命令的凭证。选择包含 Ansbile 登录远程主机所需的用户名和 SSH 密钥或密码的凭证。\"],\"CcKMRv\":[\"其他资源目前正在使用此任务模板。确定要删除它吗?\"],\"CczdmZ\":[\"查看所有凭证。\"],\"CdGRti\":[\"查看所有通知模板。\"],\"Ce28nP\":[\"< 0 >注意:如果实例由< 1 >策略规则管理,则可以将其重新关联到此实例组。 \"],\"Cev3QF\":[\"超时分钟\"],\"ChTa9Z\":[[\"intervalValue\",\"plural\",{\"one\":[\"hour\"],\"other\":[\"hours\"]}]],\"CoPs3y\":[\"此工作流没有配置任何节点。\"],\"CoTqdo\":[\"\\n Note that you may still see the group in the list after\\n disassociating if the host is also a member of that group’s\\n children. This list shows all groups the host is associated\\n with directly and indirectly.\\n \"],\"Coyxic\":[\"点击这个按钮使用所选凭证和指定的输入验证到 secret 管理系统的连接。\"],\"Cs0oSA\":[\"查看设置\"],\"Csvbqs\":[\"在此处查看构建的清单插件文档。\"],\"Cx8SDk\":[\"刷新令牌过期\"],\"D-NlUC\":[\"系统\"],\"D1JWCq\":[[\"interval\"],\" minutes\"],\"D4euEu\":[\"其它身份验证设置\"],\"D89zck\":[\"周日\"],\"DBBU2q\":[\"此字段至少选择一个值。\"],\"DBC3t5\":[\"周日\"],\"DBHTm_\":[\"8 月\"],\"DFNPK8\":[\"运行健康检查\"],\"DGZ08x\":[\"全部同步\"],\"DHf0mx\":[\"创建新实例\"],\"DHrOgD\":[\"项目更新状态\"],\"DIKUI7\":[\"最小长度\"],\"DIX823\":[\"此字段必须是数字,且值小于 \",[\"max\"]],\"DJIazz\":[\"成功批准\"],\"DNLiC8\":[\"恢复设置\"],\"DNqHaO\":[\"此表提供了构建的库存插件的\\n 一些有用参数。有关完整的参数列表,请参阅 \"],\"DPfwMq\":[\"完成\"],\"DV-Xbw\":[\"首选语言\"],\"DVIUId\":[\"提示覆盖\"],\"DZNGtI\":[\"项目检出结果\"],\"D_oBkC\":[\"GitHub Team\"],\"DdlJTq\":[\"完全匹配(如果没有指定,则默认查找)。\"],\"De2WsK\":[\"此操作将从所选团队中解除该用户的所有角色。\"],\"DhSza7\":[\"控制器节点\"],\"DnkUe2\":[\"选择 Webhook 服务\"],\"DqnAO4\":[\"第一个自动的\"],\"Du6bPw\":[\"地址\"],\"Dug0C-\":[\"发生次数后\"],\"DyYigF\":[\"TACACS+ 设置\"],\"Dz7fsq\":[\"放大\"],\"E6Z4zF\":[\"无效的文件格式。请上传有效的红帽订阅清单。\"],\"E86aJB\":[\"解除关联角色!\"],\"E9wN_Q\":[\"最后的健康检查\"],\"EH6-2h\":[\"拓扑视图\"],\"EHu0x2\":[\"同步\"],\"EIBcgD\":[\"来自项目的源\"],\"EIkRy0\":[\"目标频道\"],\"EJQLCT\":[\"删除工作流任务模板失败。\"],\"ENDbv1\":[\"查看所有主机。\"],\"ENRWp9\":[\"注解的标签\"],\"ENyw54\":[\"相关组\"],\"EP-eCv\":[\"SAML 设置\"],\"EQ-qsg\":[\"工作流作业模板\"],\"ES0WE_\":[\"超时时\"],\"ETUQuF\":[\"删除一个或多个清单失败。\"],\"EWL-h4\":[\"host-description-\",[\"0\"]],\"E_QGRL\":[\"禁用\"],\"E_tJey\":[\"默认执行环境\"],\"Eb5CN1\":[[\"0\",\"plural\",{\"one\":[\"This organization is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"EdQY6l\":[\"无\"],\"Eff_76\":[\"本地时区\"],\"Eg4kGP\":[\"默认回答\"],\"EmSrGB\":[\"之前\"],\"EmfKjn\":[\"故障修复设置\"],\"Emna_v\":[\"编辑源\"],\"EmzUsN\":[\"查看节点详情\"],\"EnC3hS\":[\"自定义 pod 规格\"],\"EpH7Cd\":[\"删除凭证\"],\"Eq6_y5\":[\"this Tower documentation page\"],\"Eqp9wv\":[\"在查看JSON示例\"],\"EwxKbE\":[\"已删除\"],\"EzwCw7\":[\"编辑问题\"],\"F-0xxR\":[\"此模板中缺少资源。\"],\"F-LGli\":[\"您没有权限取消关联: \",[\"itemsUnableToDisassociate\"]],\"F-_-es\":[\"选择实例\"],\"F0xJYs\":[\"更新容量调整失败。\"],\"F2l57P\":[\"当新实例上线时将自动分配给此组的所有实例的\\n 最小百分比。\"],\"FCnKmF\":[\"创建用户令牌\"],\"FD8Y9V\":[\"点击节点图标显示详细信息。\"],\"FEr96N\":[\"主题\"],\"FFv0Vh\":[\"自动化\"],\"FG2mko\":[\"从列表中选择项\"],\"FGnH0p\":[\"这将取消此工作流中的所有后续节点\"],\"FMpB-A\":[\"< 0 >注意:如果实例由< 1 >策略规则管理,则手动关联的实例可能会自动与实例组解除关联。 \"],\"FO7Rwo\":[\"删除同行?\"],\"FQto51\":[\"扩展所有行\"],\"FTuS3P\":[\"此字段不得为空白\"],\"FV5MUV\":[\"如果用户需要有关其构建的组正确性的\\n 反馈,强烈建议\\n 在插件配置中使用 strict: true。\"],\"FXmp8Q\":[\"关联角色失败\"],\"FYJRCY\":[\"删除一个或多个项目失败。\"],\"F_Nk65\":[\"下载输出\"],\"F_c3Jb\":[\"自定义 Kubernetes 或 OpenShift Pod 的规格。\"],\"Failed\":[\"失败\"],\"Fanpmj\":[\"提示变量\"],\"FblMFO\":[\"选择一个指标\"],\"FclH3w\":[\"保存成功!\"],\"FfGhiE\":[\"保存工作流时出错!\"],\"FhTYgi\":[\"删除一个或多个作业模板失败。\"],\"FhhvWu\":[\"这将取消此工作流中的所有后续节点。\"],\"FiyMaa\":[\"选择 .json 文件\"],\"FjVFQ-\":[\"选择模块\"],\"FjkaiT\":[\"缩小\"],\"FkQvI0\":[\"编辑模板\"],\"FlvpdU\":[\"If enabled, show the changes made\\n by Ansible tasks, where supported. This is equivalent to Ansible’s\\n --diff mode.\"],\"FnSb-y\":[\"取消作业\"],\"FnZzou\":[\"实例状态\"],\"FncCci\":[\"RADIUS\"],\"Fo2bwm\":[\"操作者\"],\"Fo6qAq\":[\"Subversion 源代码控制的示例 URL 包括:\"],\"Fp0Rk4\":[\"描述此清单的可选标签,\\n 例如 'dev' 或 'test'。标签可用于分组和过滤\\n 清单和已完成的作业。\"],\"FqW8E0\":[\"已使用容量\"],\"FsGJXJ\":[\"清理\"],\"Fx2-x_\":[\"添加用户角色\"],\"G-jHgL\":[\"设置源路径为\"],\"G2KpGE\":[\"编辑项目\"],\"G3myU-\":[\"周二\"],\"G768_0\":[\"拒绝\"],\"G8jcl6\":[\"通知模板\"],\"G9MOps\":[\"用于库存同步的分支。如果为空,则使用项目默认值。仅当项目allow_override字段设置为true时才允许。\"],\"GDvlUT\":[\"角色\"],\"GGWsTU\":[\"已取消\"],\"GGuAXg\":[\"查看 SAML 设置\"],\"GHDQ7i\":[\"删除一个或多个机构失败。\"],\"GJKwN0\":[\"调度\"],\"GLZDtF\":[\"系统警告\"],\"GLwo_j\":[\"0(警告)\"],\"GMaU6_\":[\"启动时提示输入作业类型。\"],\"GO6s6F\":[\"作业设置\"],\"GRwtth\":[\"对实例运行健康检查\"],\"GSYBQc\":[\"API 服务/集成密钥\"],\"GTOcxw\":[\"编辑用户\"],\"GU9vaV\":[\"无法访问的主机\"],\"GXiLKo\":[\"文本区\"],\"GZIG7_\":[\"成功复制清单\"],\"G_Dwo_\":[\"Choose an answer type or format you want as the prompt for the user.\\n Refer to the Ansible Controller Documentation for more additional\\n information about each option.\"],\"GaJLE6\":[\"启动者\"],\"Gd-B71\":[\"未找到凭证类型。\"],\"Ge5ecx\":[\"最大主机数\"],\"GeIrWJ\":[[\"brandName\"],\" 标志\"],\"Gf3vm8\":[\"每页\"],\"GiXRTS\":[\"删除一个或多个用户令牌失败。\"],\"Gix1h_\":[\"查看所有作业\"],\"GkbHM9\":[\"查看所有项目。\"],\"Gn7TK5\":[\"切换工具\"],\"GpNoVG\":[\"请添加一个调度来填充此列表。\"],\"GpWp6E\":[\"定义系统级的特性和功能\"],\"GtycJ_\":[\"任务\"],\"H0z3JJ\":[\"这些参数与指定的模块一起使用。您可以通过单击以下位置查找有关 \",[\"moduleName\"],\" 的信息 \"],\"H1M6a6\":[\"查看所有实例。\"],\"H3kCln\":[\"主机名\"],\"H6jbKn\":[\"用户界面设置\"],\"H7OUPr\":[\"天\"],\"H7e4dl\":[\"使用 YAML 或 JSON 提供\\n 键/值对。\"],\"H86f9p\":[\"折叠\"],\"H9MIed\":[\"执行节点\"],\"HAi1aX\":[\"轮转 Webhook 密钥\"],\"HAzhV7\":[\"凭证\"],\"HDULRt\":[\"独一无二的房东\"],\"HGOtRu\":[\"通知测试失败。\"],\"HIfMSF\":[\"多项选择选项\"],\"HLAK2g\":[\"This action will cancel the following jobs:\"],\"HODq3s\":[\"无法拒绝一个或多个工作流程审批。\"],\"HQ7e8y\":[\"完全相同不区分大小写的版本。\"],\"HQ7oEt\":[\"返回到团队\"],\"HUx6pW\":[\"注入程序配置\"],\"HajiZl\":[\"月\"],\"HbaQks\":[\"每行一个电子邮件地址,为这类通知创建一个接收者列表。\"],\"HbnjOn\":[[\"interval\"],\" weeks\"],\"HcznyH\":[\"同步部分或所有清单源失败。\"],\"HdE1If\":[\"频道\"],\"HdErwL\":[\"选择要批准的行\"],\"Hf0QDK\":[\"成功复制的项目\"],\"Hhnh8d\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 天\"],\"other\":[\"#\",\" 天\"]}]],\"HiTf1W\":[\"取消恢复\"],\"HjxnnB\":[\"选择模块\"],\"HlhZ5D\":[\"使用 TLS\"],\"HoHveO\":[\"返回同时满足此过滤器和其他过滤器的结果。 如果未选择任何内容,这是默认的集合类型。\"],\"HpK_8d\":[\"重新加载\"],\"Ht1JWm\":[\"通知颜色\"],\"HwpTx4\":[\"控制 playbook 执行时 ansible 将产生的输出级别。\"],\"I0LRRn\":[\"下载捆绑包\"],\"I7Epp-\":[\"选项详情\"],\"I9NouQ\":[\"未找到订阅\"],\"ICi4pv\":[\"自动化\"],\"ICt7Id\":[\"节点类型\"],\"IEKPuq\":[\"滚动到下一个\"],\"IGQ11b\":[\"与 webhook 服务共享的密钥。该服务使用它来签署其请求,以便只有您的存储库才能触发项目同步。键入您自己的密钥以将其作为配置进行管理,或将该字段留空以在保存时生成一个。\"],\"IJAVcb\":[\"返回到应用程序\"],\"IKg_un\":[\"目标频道或用户\"],\"IMJYui\":[\"每行使用一个电话号码来指定将 SMS 消息\\n 路由到何处。电话号码应格式化为 +11231231234。如需更多信息,请参阅 Twilio 文档\"],\"IN6gbp\":[\"单击以重新安排调查问题的顺序\"],\"IPusY8\":[\"在执行更新之前删除任何本地修改。\"],\"ISuwrJ\":[\"编辑执行环境\"],\"IV0EjT\":[\"测试通知\"],\"IVvM2B\":[\"启用的选项\"],\"IWoF_f\":[\"查看问卷调查\"],\"IZfe0p\":[\"源控制分支\"],\"Igz8MU\":[\"过去两周\"],\"IiR1sT\":[\"节点类型\"],\"IjDwKK\":[\"登录类型\"],\"Ikhk0q\":[\"此工作流作业模板的 Webhook 服务。\"],\"Iqm2E5\":[\"请添加 \",[\"pluralizedItemName\"],\" 来填充此列表\"],\"IrC12v\":[\"应用程序\"],\"IrI9pg\":[\"结束日期\"],\"IsJ8i6\":[\"为工作流选择一个分支。此分支应用于所有提示输入分支的任务模板节点。\"],\"IspLSK\":[\"未找到管理作业。\"],\"J0zi6q\":[\"跳过标签\"],\"J2HgCR\":[\"Red Hat, Inc.\"],\"J2d1y8\":[\"根据成功的作业过滤\"],\"J4y7Uk\":[\"工作流已取消 \"],\"J8VgfD\":[\"检查给定字段或相关对象是否为 null;需要布尔值。\"],\"JEGlfK\":[\"已开始\"],\"JFnJqF\":[\"已经过\"],\"JFphCp\":[\"3(调试)\"],\"JGvwnU\":[\"最后使用\"],\"JIX50w\":[\"阻止实例组回退:如果启用,任务模板将阻止将任何清单或组织实例组添加到要运行的首选实例组列表中。\"],\"JJwEMx\":[\"主机已删除\"],\"JKZTiL\":[\"这些是支持的标准运行命令运行的详细程度。\"],\"JL3si7\":[\"更新\"],\"JLjfEs\":[\"删除一个或多个调度失败。\"],\"JOmgRg\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 个月\"],\"other\":[\"#\",\" 个月\"]}]],\"JRa4kV\":[\"当源代码控制存储库中发生推送时同步项目,以便本地副本始终保持最新,而无需在每次任务启动时轮询或更新。\"],\"JTHoCu\":[\"切换更改\"],\"JUwjsw\":[\"Select an activity type\"],\"JXgd33\":[\"返回到仪表盘。\"],\"J_2nGO\":[\"The execution environment that will be used for jobs\\n inside of this organization. This will be used a fallback when\\n an execution environment has not been explicitly assigned at the\\n project, job template or workflow level.\"],\"J_DUZt\":[\"实例组\"],\"Ja4VHl\":[[\"0\"],\" 更多\"],\"JgP090\":[\"跟踪子模块\"],\"JjcTk5\":[\"社交登录\"],\"JjfsZM\":[\"删除工作流批准\"],\"JppQoT\":[\"上次重新计算日期:\"],\"JsY1p5\":[\"已拒绝\"],\"Jvv6rS\":[\"多选\"],\"JwqOfG\":[\"评估时机\"],\"Jy9qCv\":[\"取消编辑登录重定向\"],\"K5AykR\":[\"删除团队\"],\"K93j4j\":[\"标签名称\"],\"KC2nS5\":[\"资源已删除\"],\"KDcLJ6\":[\"YAML:\"],\"KEY0qH\":[\"测试通过\"],\"KM6m8p\":[\"Team\"],\"KNOsJ0\":[\"描述此任务模板的可选标签,例如 'dev' 或 'test'。标签可用于对任务模板和已完成的任务进行分组和过滤。\"],\"KQ9EQm\":[\"如何使用构建的库存插件\"],\"KR9Aiy\":[\"This inventory is currently being used by some templates. Are you sure you want to delete it?\"],\"KRf0wm\":[\"凭证类型\"],\"KTvwHj\":[\"凭证输入源\"],\"KVbzjm\":[\"可视化工具\"],\"KXFYp9\":[\"获取订阅\"],\"KXnokb\":[\"全局可用的执行环境无法重新分配给特定机构\"],\"KZp4lW\":[\"Lookup select\"],\"K_MYeX\":[\"查看用户详情\"],\"KeRkFA\":[\"清除订阅选择\"],\"KeqCdz\":[\"来自控制节点的对等节点\"],\"Ki_j_-\":[\"留空以在保存时生成新的 webhook 密钥\"],\"KjBkMe\":[\"其他资源目前正在此容器组中。确定要删除它吗?\"],\"KjVvNP\":[\"面板 ID\"],\"KkMfgW\":[\"作业模板\"],\"KkzJWF\":[\"第一次自动化\"],\"KlQd8_\":[\"令牌访问的范围\"],\"KnN1Tu\":[\"过期\"],\"KoCnPE\":[\"取消作业\"],\"KopV8H\":[\"只显示 root 组\"],\"KxIA0h\":[\"切换主机\"],\"Kz9DSl\":[\"添加现有主机\"],\"KzQFvE\":[\"编辑机构\"],\"L1Ob4t\":[\"详情标签页\"],\"L3ooU6\":[\"凭证\"],\"L7Nz3F\":[\"缺少资源\"],\"L8fEEm\":[\"组\"],\"L973Qq\":[\"请求订阅\"],\"LCl8Ck\":[\"日期搜索输入\"],\"LGl_pR\":[\"查看作业设置\"],\"LGryaQ\":[\"创建新凭证\"],\"LQ29yc\":[\"开始库存源同步\"],\"LQRys9\":[\"子模块将跟踪其 master 分支(或 .gitmodules 中指定的其他分支)上的最新提交。如果否,子模块将保持在主项目指定的修订版本。这相当于为 git submodule update 指定 --remote 标志。\"],\"LQTgjH\":[\"未找到项目。\"],\"LRePxk\":[\"新实例上线时将自动分配给此组的最小实例数。\"],\"LSUePQ\":[\"启动 | \",[\"0\"]],\"LULLsO\":[\"查看所有机构。\"],\"LV5a9V\":[\"对等\"],\"LVecP9\":[\"用户角色\"],\"LYAQ1X\":[\"启用并发作业\"],\"LZr1lR\":[\"没有找到实例组。\"],\"Lc0RHh\":[\"删除调度\"],\"LgD0Cy\":[\"应用程序名\"],\"LhMjLm\":[\"时间\"],\"Ll7Jei\":[\"LDAP3\"],\"LnYbGj\":[\"编辑问卷调查\"],\"Lnnjmk\":[\"< 0 > < 1/>新 \",[\"brandName\"],\" 用户界面的技术预览可在< 2 >此处找到。\"],\"Lqygiq\":[\"置备回调\"],\"LtBtED\":[\"切换通知成功\"],\"LuXP9q\":[\"访问\"],\"LwHwt1\":[[\"brandName\"],\" 订阅\"],\"Lwovp8\":[\"如果启用,将允许同时运行此任务模板。\"],\"M0okDw\":[\"为数据收集、日志和登录设置偏好\"],\"M73whl\":[\"上下文\"],\"MA-mp9\":[\"Webhook 引用过滤器\"],\"MA7cMf\":[\"构建的库存参数表\"],\"MAI_nw\":[\"请使用上面的过滤器尝试另一个搜索\"],\"MAV-SQ\":[\"未找到凭证。\"],\"MApRef\":[\"您确定要编辑登录重定向覆盖 URL? 这样做可能会影响用户在同时禁用本地身份验证后登录系统的能力。\"],\"MD0-Al\":[\"您的会话即将到期\"],\"MDQLec\":[\"控制Ansible将为库存源更新作业生成的输出级别。\"],\"MGpavd\":[\"键 typeahead\"],\"MHM-bv\":[\"无效的链路目标。无法连接到子节点或祖先节点。不支持图形周期。\"],\"MHbbol\":[\" 作业分片\"],\"MKEPCY\":[\"关注\"],\"MP1v-1\":[\"图例\"],\"MP8dU9\":[\"完整镜像位置,包括容器注册表、镜像名称和版本标签。\"],\"MQPvAa\":[\"启动时提示输入标签。\"],\"MQoyj6\":[\"工作流作业模板\"],\"MTLPCv\":[\"当父节点出现故障状态时执行。\"],\"MVw5um\":[\"2(更多详细内容)\"],\"MZU5bt\":[\"删除一个或多个组失败。\"],\"M_gXds\":[\"Note: This instance may be re-associated with this instance group if it is managed by \"],\"MdhgLT\":[\"IRC 服务器密码\"],\"MfCEiB\":[\"Galaxy 凭证\"],\"MfQHgE\":[\"保存的天数\"],\"Mfk6hJ\":[\"删除一个或多个模板失败。\"],\"Mhn5m4\":[\"注册表凭证\"],\"Mn45Gz\":[\"返回到实例组\"],\"MnbH31\":[\"页\"],\"MofjBu\":[\"将用于使用此项目的任务的执行环境。当未在任务模板或工作流级别显式分配执行环境时,将用作回退。\"],\"MpLngK\":[\"此项目的 webhook 端点。将其添加到存储库的 webhook 配置中,以便推送触发项目同步。\"],\"MpZRQy\":[\"Git\"],\"MuhG5I\":[[\"0\",\"plural\",{\"one\":[\"This approval cannot be deleted due to insufficient permissions or a pending job status\"],\"other\":[\"These approvals cannot be deleted due to insufficient permissions or a pending job status\"]}]],\"MwCc2O\":[\"此工作流作业模板的 Webhook 凭证。\"],\"Mwf3Mw\":[\"使用搜索过滤器填充此清单的主机。\\n 示例:ansible_facts__ansible_distribution:\\\"RedHat\\\"。\\n 有关更多语法和示例,请参阅\\n 文档。有关更多语法和示例,请参阅 Ansible Controller\\n 文档。\"],\"MzcRa_\":[\"用户和 Automation Analytics\"],\"Mzqo60\":[\"要与工件进行比较的值。尽可能解释为 JSON(例如 true、3),否则解释为纯字符串。\"],\"N1U4ZG\":[\"订阅合规性\"],\"N36GRB\":[\"此字段必须是数字,且值大于 \",[\"min\"]],\"N40H-G\":[\"所有\"],\"N5vmCy\":[\"已建库存\"],\"N6GBcC\":[\"确认删除\"],\"N7wOty\":[\"选择此任务要执行的 playbook。\"],\"NAKA53\":[\"主机故障\"],\"NBONaK\":[\"收集事实\"],\"NCVKhy\":[\"最近的作业\"],\"NDQvUO\":[\"启动时提示输入标记。\"],\"NIuIk1\":[\"无限\"],\"NLKsgx\":[[\"pluralizedItemName\"],\" 列表\"],\"NO1ZxL\":[\"应用程序名\"],\"NPfgIB\":[\"秒\"],\"NQHZnb\":[\"整数\"],\"NRn4V6\":[[\"interval\"],\" months\"],\"NUNUrW\":[\"注解的标签(可选)\"],\"NW-xDQ\":[\"这会将此页面上的所有配置值恢复到\\n 其工厂默认值。您确定要继续吗?\"],\"NX18CF\":[\"当天或之后\"],\"NYxilo\":[\"最大并发作业数\"],\"Na9fIV\":[\"没有找到项。\"],\"NcVaYu\":[\"完成时间\"],\"NeA1eI\":[\"向右平移\"],\"Never\":[\"永不\"],\"NgD4On\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"此操作将取消以下作业:\"],\"other\":[\"此操作将取消以下作业:\"]}]],\"NjnDuY\":[\"Dragging started for item id: \",[\"newId\"],\".\"],\"NjqMGF\":[\"资源类型\"],\"NnH3pK\":[\"测试\"],\"No Jobs\":[\"没有作业\"],\"NpJHAp\":[\"在创建或编辑节点时无法选择缺失的清单或项目的作业模板。选择另一个模板或修复缺少的字段以继续。\"],\"NqIlWb\":[\"最后运行\"],\"NrGRF4\":[\"订阅选择模态\"],\"NsXTPu\":[\"要使用 ansible 事实创建智能清单,请转至智能清单屏幕。\"],\"NtD3hJ\":[\"相关密钥\"],\"Nu4DdT\":[\"同步\"],\"Nu4oKW\":[\"描述\"],\"Nu7VHX\":[\"选择应用到所选资源的角色。请注意,所有选择的角色将应用到所有选择的资源。\"],\"O-OYOe\":[\"编辑团队\"],\"O06Rp6\":[\"用户界面\"],\"O1Aswy\":[\"永不过期\"],\"O28qFz\":[\"查看作业 \",[\"0\"]],\"O2EuOK\":[\"使用 SAML \",[\"samlIDP\"],\" 登陆\"],\"O2UpM1\":[\"浏览\"],\"O3oNi5\":[\"电子邮件\"],\"O4ilec\":[\"regex 不区分大小写的版本。\"],\"O5pAaX\":[\"选择一个实例和一个指标来显示图表\"],\"O78b13\":[\"此令牌所属的应用,或将此字段留空以创建个人访问令牌。\"],\"O8_96D\":[\"侦听器端口\"],\"O9VQlh\":[\"选择频率\"],\"OA8xiA\":[\"向左平移\"],\"OA99Nq\":[\"房东最后一次自动操作是什么时候\"],\"OC4Tzv\":[\"此处\"],\"OGoqLy\":[\"# sources with sync failures.\"],\"OHGMM6\":[\"开始日期/时间\"],\"OIv5hN\":[\"重定向到订阅详情\"],\"OJ9bHy\":[\"解除关联一个或多个组关联。\"],\"OOq_rD\":[\"Playbook 运行\"],\"OPTWH4\":[\"启用 HTTPS 证书验证\"],\"ORxrw7\":[\"剩余的天数\"],\"OSH8xi\":[\"Hop(跃点)\"],\"OcRJRt\":[\"确认取消作业\"],\"Oe_VOY\":[\"删除一个或多个实例失败。\"],\"OgB1k4\":[\"参数\"],\"OiCz65\":[\"Grafana URL\"],\"Oiqdmc\":[\"使用 GitHub Organizations 登录\"],\"Oj2Ix6\":[\"任务被取消前的运行时间(以秒为单位)。默认为 0,表示没有任务超时。\"],\"OjwX8k\":[\"令牌信息\"],\"OlpaBt\":[\"并发任务:如果启用,将允许同时运行此任务模板。\"],\"OmbooC\":[\"任务已启动\"],\"OogRLI\":[\"未找到联邦库存。\"],\"OqE3G-\":[\"对 id 字段进行精确搜索。\"],\"Osn70z\":[\"调试\"],\"OvBnOM\":[\"返回到设置\"],\"OyGPiW\":[\"订阅设置\"],\"OzssJK\":[\"运行命令\"],\"P3spiP\":[\"返回到模板\"],\"P7d85D\":[\"删除团队访问\"],\"P8fBlG\":[\"身份验证\"],\"PByO0X\":[\"投票\"],\"PCEmEr\":[\"用户令牌\"],\"PJ1B0S\":[[\"0\",\"plural\",{\"one\":[\"This project is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"PJf54Q\":[\"返回到源\"],\"PKTjJ3\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"weekday\"],\" of \",[\"month\"]],\"4\":[\"The fourth \",[\"weekday\"],\" of \",[\"month\"]],\"5\":[\"The fifth \",[\"weekday\"],\" of \",[\"month\"]],\"one\":[\"The first \",[\"weekday\"],\" of \",[\"month\"]],\"two\":[\"The second \",[\"weekday\"],\" of \",[\"month\"]]}]],\"PLzYyl\":[\"频率例外详情\"],\"PMk2Wg\":[\"取消置备失败\"],\"POKy-m\":[\"复制执行环境\"],\"PPsHsC\":[\"全部恢复为默认值\"],\"PQPOpT\":[\"清单文件\"],\"PRuZiQ\":[\"重新刷新修订版本\"],\"PUnovD\":[\"Amazon EC2\"],\"PVCOQE\":[\"已删除对等点。请确保再次运行 \",[\"0\"],\" 的安装捆绑包,以便看到更改生效。\"],\"PWwwY2\":[\"解除关联\"],\"PYPqaM\":[\"面板 ID(可选)\"],\"PZBWpL\":[\"Switch to light mode\"],\"P_s0vy\":[\"无法查找此 webhook 服务的凭证类型,因此 webhook 凭证字段不可用。\"],\"PaTL2O\":[\"接收者列表\"],\"PhufXn\":[\"任务分片父级\"],\"Pi5vnX\":[\"无法同步构建的库存源\"],\"PiK6Ld\":[\"周六\"],\"PiRb8z\":[\"最新同步\"],\"PjkoCm\":[\"您确定要删除以下节点:\"],\"PkVlOm\":[\"以 JSON 格式指定 HTTP 标头。有关示例语法,\\n 请参阅 Ansible Controller 文档。\"],\"Po1btV\":[\"全局导航\"],\"Po7y5X\":[\"复制执行环境失败\"],\"PvgcEq\":[\"Draggable list to reorder and remove selected items.\"],\"PwAMWD\":[\"折叠所有作业事件\"],\"PyV1wC\":[\"防止实例组 Fallback\"],\"Q3P_4s\":[\"任务\"],\"Q4hWRC\":[\"工作流任务 (\",[\"total\"],\")\"],\"Q5ZW8j\":[\"订阅表\"],\"QF_MpS\":[\"\\n 请注意,只有直接位于此组中的主机才能\\n 被取消关联。子组中的主机必须直接从它们所属的\\n 子组级别取消关联。\\n \"],\"QFdBqu\":[\"Mattermost\"],\"QGbLBK\":[\"作业 ID\"],\"QHF6CU\":[\"Play\"],\"QIOH6p\":[\"启动者(用户名)\"],\"QIpNLR\":[\"没有清单同步失败。\"],\"QIq3_3\":[\"注:选择它们的顺序设定执行优先级。选择多个来启用拖放。\"],\"QJbMvX\":[\"不允许在启动时需要密码的凭证。请删除以下凭证或将其替换为相同类型的凭证以继续: \",[\"0\"]],\"QJowYS\":[\"确认删除\"],\"QKUQw1\":[\"创建新主机\"],\"QKbQTN\":[\"活动流类型选择器\"],\"QOF7Jg\":[\"批准 \",[\"0\"],\" 失败。\"],\"QPRWww\":[\"运行类型\"],\"QR908H\":[\"设置名称\"],\"QT1rDU\":[\"GitHub Enterprise\"],\"QTwM6Y\":[\"包含此任务将执行的 playbook 的项目。\"],\"QYKS3D\":[\"最近的作业\"],\"QamIPZ\":[\"请点开始按钮开始。\"],\"Qay_5h\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"Qd2E32\":[\"从给定的主机变量字典中检索启用状态。启用的变量可以使用点符号指定,例如: 'foo.bar'\"],\"Qf36YE\":[\"详细程度\"],\"QgnNyZ\":[\"同步错误\"],\"Qhb8lT\":[\"创建新应用\"],\"QmvYrA\":[\"工作流作业模板的可选描述。\"],\"QnJn75\":[\"最后运行\"],\"Qv59HG\":[\"编辑凭证类型\"],\"Qv91_c\":[\"LDAP 2\"],\"QyjCeq\":[\"容量\"],\"R-uZ8Y\":[\"使用 SAML 登陆\"],\"R633QG\":[\"返回到工作流批准\"],\"R6Gueb\":[\"切换通知更改\"],\"R7s3iG\":[\"返回到\"],\"R9Khdg\":[\"自动\"],\"R9sZsA\":[\"删除所有组和主机\"],\"RBDHUE\":[\"启动时提示输入执行环境。\"],\"RI8cIw\":[\"允许此机构管理的最大主机数。\\n 值默认为 0,表示没有限制。\\n 如需更多详情,请参阅 Ansible 文档。\"],\"RIcSTA\":[\"过期于\"],\"RIeAlp\":[\"每次使用此清单运行作业时,请在执行作业任务之前刷新选定来源的清单。\"],\"RK1gDV\":[\"使用 Azure AD 登陆\"],\"RMdd1C\":[\"无(运行一次)\"],\"RO9G1f\":[\"此字段必须大于 0\"],\"RPnV2o\":[\"搜索过滤器没有产生任何结果…\"],\"RThfvh\":[\"解除关联相关的团队?\"],\"R_mzhp\":[\"用户令牌失败。\"],\"RbIaa9\":[\"未找到令牌\"],\"RdLvW9\":[\"重新启动作业\"],\"Rguqao\":[\"选择要删除的行\"],\"RhOukN\":[[\"interval\"],\" hour\"],\"RiQMUh\":[\"运行中\"],\"RjIKOw\":[\"无法更改主机上的清单\"],\"RjkhdY\":[\"字段以值开头。\"],\"RkXlPZ\":[\"GitHub\"],\"RlsPz7\":[\"您确定要从删除这个链接吗?\"],\"Rm1iI_\":[\"启动时提示输入变量。\"],\"Roaswv\":[\"User Guide\"],\"RpKSl3\":[\"成功复制的凭证\"],\"RsZ4BA\":[\"滚动到最后\"],\"RtKKbA\":[\"最后\"],\"Ru59oZ\":[\"为此模板启用 webhook。\"],\"RuEWFx\":[\"于日期\"],\"RuiOO0\":[\"删除一个或多个应用程序失败。\"],\"Rw1xwN\":[\"内容加载\"],\"RxzN1M\":[\"启用\"],\"RyPas1\":[\"Cancel selected jobs\"],\"S0kLOH\":[\"ID\"],\"S2nsEw\":[\"大于比较。\"],\"S5gO6Y\":[\"向工作流传递额外的命令行变量。\"],\"S6zj7M\":[\"对于任务模板,选择 run 以执行 playbook。选择 check 仅检查 playbook 语法、测试环境设置并报告问题,而不执行 playbook。\"],\"S7kN8O\":[\"删除一个或多个用户失败。\"],\"S7tNdv\":[\"成功时\"],\"S8FW2i\":[\"要由此源同步的库存文件。您可以从下拉列表中进行选择,也可以在输入内容中输入文件。\"],\"SA-KXq\":[\"向上平移\"],\"SAw-Ux\":[\"您确定要从 \",[\"username\"],\" 中删除 \",[\"0\"],\" 吗?\"],\"SBfnbf\":[\"查看所有执行环境\"],\"SC1Cur\":[\"未知状态\"],\"SDND4q\":[\"没有配置\"],\"SIJDi3\":[\"容量调整\"],\"SJjggI\":[\"更新选项\"],\"SJmHMo\":[\"文档。\"],\"SLm_0U\":[\"IRC 服务器端口\"],\"SODyJ3\":[\"主机异步正常\"],\"SRiPhD\":[\"取消节点删除\"],\"SV5nA1\":[\"前面的一些步骤有错误\"],\"SVG6MY\":[\"将字段恢复到之前保存的值\"],\"SYbJcn\":[\"编辑通知模板\"],\"SZvybZ\":[\"LDAP 默认\"],\"SZw9tS\":[\"查看详情\"],\"SbRHme\":[\"文本区\"],\"Se_E0z\":[\"工作流任务\"],\"Sgr5NW\":[\"选择一个要运行健康检查的实例。\"],\"Sh2XTJ\":[\"通知类型\"],\"SiexHs\":[\"仪表盘(所有活动)\"],\"Sja7f-\":[\"房东/体验达人被删除了多少次\"],\"Sjoj4f\":[\"凭证名称\"],\"SlfejT\":[\"错误\"],\"SoREmD\":[\"应用程序和令牌\"],\"SqA8uD\":[\"作业运行\"],\"SqLEdN\":[\"删除智能清单失败。\"],\"SqYo9m\":[\"返回到实例\"],\"Ssdrw4\":[\"已弃用\"],\"Successful\":[\"成功\"],\"SvPvEX\":[\"工作流批准的消息正文\"],\"Svkela\":[\"进入上一页\"],\"SwJLlZ\":[\"工作流拒绝的消息正文\"],\"SxGqey\":[\"通用 OIDC 设置\"],\"Sxm8rQ\":[\"用户\"],\"SzFxHC\":[\"LDAP 设置\"],\"SzQMpA\":[\"Forks\"],\"T2M20E\":[\"这个\"],\"T2mGOG\":[\"docs.ansible.com\"],\"T2x15z\":[\"切换通知失败。\"],\"T4a4A4\":[\"Webhook 密钥\"],\"T7yEGN\":[\"用户为此应用程序获取令牌时必须使用的授权类型\"],\"T91vKp\":[\"播放\"],\"T9hZ3D\":[\"GitHub Enterprise Team\"],\"TAnffV\":[\"编辑此节点\"],\"TBH48u\":[\"删除团队失败。\"],\"TC32CH\":[\"数据被保留的天数\"],\"TD1APv\":[\"获取订阅\"],\"TFr1UR\":[\"选择提供用于从 vCenter 同步的清单插件的 Ansible 集合。community.vmware 集合已弃用,由更新的 vmware.vmware 集合取代。所选内容通过源变量中的 \\\"plugin\\\" 键应用;如果没有该键,则使用默认集合。\"],\"TJVvMD\":[\"相关的搜索类型\"],\"TLomdD\":[[\"sessionCountdown\",\"plural\",{\"one\":[\"You will be logged out in \",\"#\",\" second due to inactivity\"],\"other\":[\"You will be logged out in \",\"#\",\" seconds due to inactivity\"]}]],\"TMJ39S\":[\"解除关联角色\"],\"TMLAx2\":[\"必需\"],\"TO3h59\":[\"从外部 secret 管理系统填充字段\"],\"TO4OtU\":[\"Insights 凭证\"],\"TOjYb_\":[\"查看已建库存房东详情\"],\"TP9_K5\":[\"令牌\"],\"TRDppN\":[\"Webhook\"],\"TTMvf7\":[\"组类型\"],\"TU6IDa\":[\"用户类型\"],\"TXKmNM\":[\"必须选择一个清单\"],\"TZEuIE\":[\"返回到凭证类型\"],\"T_87By\":[\"参数\"],\"Ta0ts5\":[\"显示更改\"],\"TcnG-2\":[\"创建新执行环境\"],\"TgSxH9\":[\"部署回调 URL\"],\"TkiN8D\":[\"用户详情\"],\"Tmh24b\":[\"如果启用,任务模板将阻止将任何清单或组织实例组添加到要运行的首选实例组列表中。注意:如果启用此设置且您提供了空列表,则将应用全局实例组。\"],\"Tmuvry\":[\"设置类型 typeahead\"],\"ToOoEw\":[\"复制凭证\"],\"Tof7pX\":[\"作业\"],\"Tq71UT\":[\"工作日\"],\"Tx3NMN\":[\"私钥密码\"],\"TxKKED\":[\"查看已建库存明细\"],\"TyaPAx\":[\"系统管理员\"],\"Tz0i8g\":[\"设置\"],\"U-nEJl\":[\"查看 GitHub 设置\"],\"U011Uh\":[\"最后看到\"],\"U7rA2a\":[\"未选中时,将执行合并,将局部变量与外部源上的局部变量相结合。\"],\"UDf-wR\":[\"已消耗的订阅\"],\"UEaj7U\":[\"清单同步失败\"],\"UJpDop\":[\"Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?\"],\"UJsNNk\":[\"源控制修订\"],\"UPasE4\":[\"Azure AD 默认\"],\"UPmrRI\":[\"结尾不区分大小写的版本。\"],\"URmyfc\":[\"详情\"],\"UX2wV1\":[[\"0\",\"plural\",{\"one\":[\"This credential is currently being used by other resources. Are you sure you want to delete it?\"],\"other\":[\"Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?\"]}]],\"UXBCwc\":[\"姓氏\"],\"UY6iPZ\":[\"如果启用,控制节点将自动对等到此实例。如果禁用,实例将仅连接到关联的对等点。\"],\"UYD5ld\":[\"点 Update Revision on Launch\"],\"UYUgdb\":[\"顺序\"],\"U_JUCL\":[\"Red Hat Insights\"],\"Ua-Kc6\":[\"www.json.org\"],\"UbOul8\":[\"您确定要删除:\"],\"UbRKMZ\":[\"待处理\"],\"UbqhuT\":[\"获取完整节点资源对象失败。\"],\"Uc_tSU\":[\"切换工具\"],\"UgFDh3\":[\"其他资源目前正在使用此清单。确定要删除它吗?\"],\"UirGxE\":[\"错误\"],\"UlykKR\":[\"第三\"],\"Uo1S9q\":[\"使用 Azure AD Tenant 登录\"],\"UueF8b\":[\"执行环境缺失或删除。\"],\"UvGjRK\":[\"如果启用,以管理员身份运行此 playbook。\"],\"UwJJCk\":[\"重新启动失败的主机\"],\"UxKoFf\":[\"导航\"],\"UyZ7HQ\":[\"更改消息正文\"],\"V-7saq\":[\"删除 \",[\"pluralizedItemName\"],\"?\"],\"V-rJKF\":[\"Seconds\"],\"V0Xv3_\":[[\"intervalValue\",\"plural\",{\"one\":[\"day\"],\"other\":[\"days\"]}]],\"V0fM4k\":[\"用户分析\"],\"V1EGGU\":[\"名字\"],\"V2-omF\":[[\"0\",\"plural\",{\"one\":[\"在处理最终删除之前,清单将处于待处理状态。\"],\"other\":[\"在处理最终删除之前,清单将处于待处理状态。\"]}]],\"V2RwJr\":[\"侦听器地址\"],\"V2q9w9\":[\"If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode.\"],\"V3z83V\":[\"LDAP 3\"],\"V4WsyL\":[\"添加链接\"],\"V5RUpn\":[\"接收者列表\"],\"V7qsYh\":[\"注意:这些凭据的顺序设置内容同步和查找的优先级。选择多个来启用拖放。\"],\"V9xR6T\":[\"展开部分\"],\"VAI2fh\":[\"创建新容器组\"],\"VAcXNz\":[\"周三\"],\"VEj6_Y\":[\"工作流批准\"],\"VFvVc6\":[\"编辑详情\"],\"VJUm9p\":[\"当前页\"],\"VK2gzi\":[\"执行 playbook 时要使用的并行或同时进程的数量。空值或小于 1 的值将使用 Ansible 默认值,通常为 5。可以通过更改以下内容来覆盖默认的 forks 数量\"],\"VL2WkJ\":[\"最后一个 \",[\"dayOfWeek\"]],\"VLdRt2\":[\"启动同步源\"],\"VNUs2y\":[\"最大分叉数\"],\"VSJ6r5\":[\"调度处于活跃状态\"],\"VSim_H\":[\"删除清单源\"],\"VTDO7X\":[\"事件详情模式\"],\"VU3Nrn\":[\"缺少\"],\"VWL2DK\":[\"GitHub Organization\"],\"VXFjd8\":[\"指标\"],\"VZfXhQ\":[\"Hop(跃点)节点\"],\"VdcFUD\":[\"最终用户许可证协议\"],\"ViDr6F\":[\"添加新组\"],\"VmClsw\":[\"已删除与该节点关联的资源。\"],\"VmvLj9\":[\"根据客户端设备的安全程度设置为 Public 或 Confidential。\"],\"Vqd-tq\":[\"确认全部恢复\"],\"Vqgeac\":[\"Press space or enter to begin dragging,\\n and use the arrow keys to navigate up or down.\\n Press enter to confirm the drag, or any other key to\\n cancel the drag operation.\"],\"Vvbbn2\":[\"删除角色失败。\"],\"Vw8l6h\":[\"发生错误\"],\"VzE_M-\":[\"切换通知失败\"],\"W-O1E9\":[\"复制项目\"],\"W1iIqa\":[\"查看清单组\"],\"W3TNvn\":[\"返回到用户\"],\"W3pOzF\":[\"允许在使用此项目的任务模板中更改源代码控制分支或修订版本。\"],\"W6uTJi\":[\"获取实例失败。\"],\"W7DGsV\":[\"启动者(用户名)\"],\"W9XAF4\":[\"周中日\"],\"W9uQXX\":[\"提示\"],\"WAjFYI\":[\"开始日期\"],\"WD8djW\":[\"确认链接删除\"],\"WL91Ms\":[\"Delete Groups?\"],\"WPM2RV\":[\"回答类型\"],\"WQJduu\":[\"键选择\"],\"WTN9YX\":[\"帐户令牌\"],\"WTV15I\":[\"编辑登录重定向覆写 URL\"],\"WVzGc2\":[\"订阅\"],\"WX9-kf\":[\"IRC Nick\"],\"Wc6m4J\":[\"要获取的 refspec(传递给 Ansible git 模块)。此参数允许通过分支字段访问其他方式无法获得的引用。\"],\"Wdl2f2\":[\"此字段必须至少包含 \",[\"0\"],\" 个字符\"],\"WgsBEi\":[\"请至少输入一个搜索过滤来创建一个新的智能清单\"],\"WhSFGl\":[\"按 \",[\"name\"],\" 过滤\"],\"Wi1pUG\":[[\"numJobsToCancel\",\"plural\",{\"one\":[[\"0\"]],\"other\":[[\"1\"]]}]],\"Wk1rOS\":[\"使图像与可用屏幕大小匹配\"],\"Wm7XbF\":[\"删除一个或多个凭证失败。\"],\"WqaDMq\":[\"字段包含值。\"],\"Wy25yg\":[\"Twilio\"],\"X03-eC\":[\"请输入一个值。\"],\"X5V9DW\":[\"点击下面的编辑按钮重新配置节点。\"],\"X6d3Zy\":[\"删除机构失败。\"],\"X97mbf\":[\"选择作业类型\"],\"XA12d8\":[\"可选的以逗号分隔的主机名列表,除了切片本身的主机之外,还包含在每个任务切片中。当 play 以协调主机(例如 localhost)为目标且所有切片都依赖于它时非常有用。名称与清单主机完全匹配;不支持组和模式。固定主机每个切片运行一次其 play。\"],\"XBROpk\":[\"提供主机模式以进一步限制将由工作流管理或影响的主机列表。\"],\"XCCkju\":[\"编辑节点\"],\"XFRygA\":[\"远程存档源代码控制的示例 URL 包括:\"],\"XHxwBV\":[\"选定日期范围必须至少有 1 个计划发生。\"],\"XILg0L\":[\"电子邮件地址无效\"],\"XJOV1Y\":[\"活动\"],\"XKp83s\":[\"无法复制含有源的清单\"],\"XLMJ7O\":[\"云\"],\"XLpxoj\":[\"电子邮件选项\"],\"XM-gTv\":[\"有关配置文件的详细信息,请参阅 Ansible 文档。\"],\"XOD7tz\":[\"显示更改\"],\"XOaZX3\":[\"分页\"],\"XP6TQ-\":[\"如果指定,则在查看工作流时此字段将显示在节点上,而不是资源名称\"],\"XREJvl\":[\"用于配置库存源的变量。有关如何配置此插件的详细说明,请参阅\"],\"XViLWZ\":[\"失败时\"],\"XWDz5f\":[\"简单键选择\"],\"X_5TsL\":[\"问卷调查切换\"],\"XaxYwV\":[\"提示的值\"],\"XbIM8f\":[\"总库存来源\"],\"XdyHT-\":[\"导入的主机\"],\"XfmfOA\":[\"运行每\"],\"Xg3aVa\":[\"使用 SSL\"],\"XgTa_2\":[\"The inventory will be in a pending status until the final delete is processed.\"],\"XilEsm\":[\"实例组\"],\"Xm7ruy\":[\"5(WinRM 调试)\"],\"XmJfZT\":[\"名称\"],\"XmVvzl\":[\"选择要应用的角色\"],\"XnxCSh\":[\"标准错误\"],\"XozZ38\":[\"删除一个或多个清单源失败。\"],\"Xq9A0U\":[\"未知的工程ID\"],\"Xt4N6V\":[\"提示 | \",[\"0\"]],\"XtpZSU\":[\"作业作业类型\"],\"Xx-ftH\":[\"您已自动针对的主机数量大于订阅所允许的数量。\"],\"XyTWuQ\":[\"请等到拓扑视图被填充...\"],\"XyW2nH\":[[\"0\",\"plural\",{\"one\":[\"您确定要删除下面的组吗?\"],\"other\":[\"您确定要删除下面的组吗?\"]}]],\"XzD7xj\":[\"选择项\"],\"Y1YKad\":[\"类型详情\"],\"Y296GK\":[\"删除角色失败\"],\"Y2ml-n\":[\"已批准 - \",[\"0\"],\"。请参阅活动流以获取更多信息。\"],\"Y5VrmH\":[\"没有为清单同步配置。\"],\"Y5vgVF\":[\"成功拒绝\"],\"Y5xJ7I\":[\"Playbook 名称\"],\"Y60pX3\":[\"添加已建库存\"],\"YA4I45\":[\"选择一个模块\"],\"YFmVSY\":[\"解除关联?\"],\"YJddb4\":[\"实例类型\"],\"YLMfol\":[\"选择将获得新角色的资源类型。例如,如果您想为一组用户添加新角色,请选择用户并点击下一步。您可以选择下一步中的具体资源。\"],\"YM06Nm\":[\"编辑凭证类型\"],\"YMLB2b\":[\"超时到期时是否自动批准或拒绝批准节点。\"],\"YMpSlP\":[\"将库存同步视为最新的时间(以秒为单位)。在作业运行和回调期间,任务系统将评估最新同步的时间戳。如果它早于缓存超时,则不视为当前,并将执行新的库存同步。\"],\"YOOdGq\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 分钟\"],\"other\":[\"#\",\" 分钟\"]}]],\"YOh7Aw\":[\"工作流任务 \",[\"currentPosition\"],\"/\",[\"total\"]],\"YP5KRj\":[\"在保存时会生成一个新的 WEBHOOK url。\"],\"YPDLLX\":[\"返回到执行环境\"],\"YQqM-5\":[\"用于执行的容器镜像。\"],\"Yd45Xn\":[\"主机(按处理器类型)\"],\"Yfw7TK\":[\"通知超时\"],\"YgqgXs\":[[\"intervalValue\",\"plural\",{\"one\":[\"minute\"],\"other\":[\"minutes\"]}]],\"YiQ03p\":[\"删除调度失败。\"],\"YiUAZm\":[\"<0>注意:如果此实例由<1>策略规则管理,则可能会重新与此实例组关联。\"],\"YlGAPh\":[\"作业分片固定主机\"],\"Ym7-mu\":[\"每行一个 Slack 频道。频道需要井号 (#)。\\n 要回复特定消息或对其启动线程,请将父消息 Id 添加到频道,其中父消息 Id 为 16 位数字。必须在第 10 位数字后手动插入点 (.)。例如:#destination-channel, 1231257890.006423。请参阅 Slack\"],\"YmEWZH\":[\"启动模板\"],\"YmjTf2\":[\"置备失败\"],\"YoXjSs\":[\"启动时提示输入清单。\"],\"Yq4Eaf\":[\"此作业的主机状态信息不可用。\"],\"YsN-3o\":[\"查看清单源详情\"],\"Yt-rBv\":[\"其他资源目前正在使用此项目。您确定要删除它吗?\"],\"YuC9dj\":[\"关联\"],\"YxDLmM\":[\"Insights 系统 ID\"],\"Z17FAa\":[\"未知库存\"],\"Z1Vtl5\":[\"取消项目同步失败\"],\"Z25_RC\":[\"选择输入\"],\"Z2hVSb\":[\"混合\"],\"Z40J8D\":[\"启用创建置备回调 URL。使用该 URL,主机可以联系 \",[\"brandName\"],\" 并使用此任务模板请求配置更新。\"],\"Z5HWHd\":[\"开\"],\"Z7ZXbT\":[\"批准\"],\"Z88yEl\":[\"大于或等于比较。\"],\"Z9EFpE\":[\"自动化分析仪表盘\"],\"ZAWGCX\":[[\"0\"],\" 秒\"],\"ZEP8tT\":[\"启动\"],\"ZGDCzb\":[\"未找到实例\"],\"ZJjKDg\":[\"受管的节点\"],\"ZKKnVf\":[\"创建新工作流模板\"],\"ZL3d6Z\":[\"IRC 服务器地址\"],\"ZO4CYH\":[\"运行作业\"],\"ZOLfb2\":[\"此字段不能为空。\"],\"ZWhZbs\":[\"确认节点删除\"],\"ZajTWA\":[\"源电话号码\"],\"Zf6u-6\":[\"解释\"],\"ZfrRb0\":[\"请选择一个清单或者选中“启动时提示”选项\"],\"ZhUwVw\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 周\"],\"other\":[\"#\",\" 周\"]}]],\"ZhxwOq\":[\"错误消息正文\"],\"Zikd-1\":[\"您已自动针对的主机数量低于您的订阅数。\"],\"ZjC8QM\":[\"删除主机失败。\"],\"ZjvPb1\":[\"创建者(用户名)\"],\"Zkh5np\":[\"同行在 \",[\"0\"],\" 上更新。请务必再次运行 \",[\"1\"],\" 的安装包,以便看到更改生效。\"],\"ZpdX6R\":[\"删除令牌时出错\"],\"ZrsGjm\":[\"清单\"],\"ZumtuZ\":[\"复制模板\"],\"ZvVF4C\":[\"删除问卷调查问题\"],\"ZwCTcT\":[\"最近的任务列表标签页\"],\"ZwujDQ\":[\"%y 年\"],\"_-NKbo\":[\"切换调度失败。\"],\"_2LfCe\":[\"要重新调整调查问题的顺序,将问题拖放到所需的位置。\"],\"_4gGIX\":[\"复制到剪贴板\"],\"_5REdR\":[\"为构建的库存插件选择输入库存。\"],\"_Fg1cM\":[\"工作流超时信息正文\"],\"_ITcnz\":[\"日\"],\"_Ia62Q\":[\"构建的库存示例\"],\"_JN1gB\":[\"任务计数\"],\"_K2CvV\":[\"模板\"],\"_LQZpR\":[[\"intervalValue\",\"plural\",{\"one\":[\"year\"],\"other\":[\"years\"]}]],\"_LVfwJ\":[\"构建的库存源同步错误\"],\"_M4FeF\":[\"选择您希望这个命令在内运行的执行环境。\"],\"_MTBwI\":[\"更改信息\"],\"_MdgrM\":[\"在这两个节点间添加新节点\"],\"_PRaan\":[\"删除一个或多个通知模板失败。\"],\"_Pz_QH\":[\"由策略管理\"],\"_W3ZAw\":[[\"selectedItemsCount\",\"plural\",{\"one\":[\"Click to run a health check on the selected instance.\"],\"other\":[\"Click to run a health check on the selected instances.\"]}]],\"_WBq2_\":[\"已拒绝 - \",[\"0\"],\"。请参阅活动流以获取更多信息。\"],\"_Yq4TU\":[\"此组上同时运行的所有作业允许的最大分叉数。\\n 零意味着不会强制执行任何限制。\"],\"_ZBhqw\":[\"取消清单源同步失败\"],\"_bAUGi\":[\"选择 HTTP 方法\"],\"_bE0AS\":[\"选择一个实例\"],\"_cV6Mf\":[\"浏览...\"],\"_cq4Aa\":[\"未找到工作流批准。\"],\"_ereyb\":[\"TACACS+\"],\"_gCD76\":[\"编辑实例组\"],\"_ismew\":[\"工件密钥\"],\"_kYJq6\":[\"保留数据的天数\"],\"_khNCh\":[\"作业模板的默认凭证必须替换为相同类型的凭证。请为以下类型选择一个凭证以继续: \",[\"0\"]],\"_oeZtS\":[\"主机轮询\"],\"_rCRcH\":[\"高级搜索文档\"],\"_vI8Rx\":[\"Delete Group?\"],\"a02Xjc\":[\"IRC 服务器地址\"],\"a3AD0M\":[\"确认编辑登录重定向\"],\"a5zD9f\":[\"更改\"],\"a6E-_p\":[\"包含不区分大小写的版本\"],\"a8AgQY\":[\"查看主机详情\"],\"a8nooQ\":[\"第四\"],\"a9BTUD\":[\"周末日\"],\"aBgwis\":[\"范围\"],\"aLlb3-\":[\"布尔\"],\"aNxqSL\":[\"删除执行环境\"],\"aQ4XJX\":[\"单独启用日志系统跟踪事实\"],\"aSuBiU\":[\"Microsoft Azure Resource Manager\"],\"aTK0Fh\":[\"于日\"],\"aUNPq3\":[\"执行节点\"],\"aVoVcG\":[\"多选\"],\"aXBrSq\":[\"Red Hat Virtualization\"],\"a_vlog\":[\"删除 \",[\"0\"],\" 芯片\"],\"adPhRK\":[\"此主机要属于的清单。\"],\"adjqlB\":[[\"0\"],\"(已删除)\"],\"aht2s_\":[\"通知颜色\"],\"aiejXq\":[\"添加资源类型\"],\"ajDpGH\":[\"状态:\"],\"anfIXl\":[\"用户详情\"],\"aqqAbL\":[\"如果启用,则该清单将阻止将任何机构实例组添加到运行相关作业模板的首选实例组列表中。注:如果启用了此设置,且提供了空列表,则会应用全局实例组。\"],\"ar5AA2\":[\"更多信息。\"],\"ataY5Z\":[\"作业删除错误\"],\"ax6e8j\":[\"请在编辑主机过滤器前选择机构\"],\"az8lvo\":[\"关\"],\"b1CAkh\":[\"管理作业\"],\"b2Z0Zq\":[\"取消链路更改\"],\"b433OF\":[\"编辑组\"],\"b4SLah\":[\"在左侧查看错误\"],\"b9Y4up\":[\"客户端 ID\"],\"bDa_hW\":[\"选择此清单源同步应在其上运行的实例组。如果未设置,同步将在清单或其机构的实例组上运行。\"],\"bE4zYn\":[\"选择接收器将侦听传入连接的端口,例如27199。\"],\"bHXYoC\":[\"HTTP 方法\"],\"bKR18T\":[\"订阅清单是 Red Hat 订阅的导出。要生成订阅清单,请转到 <0>access.redhat.com。有关更多信息,请参阅<1>用户指南。\"],\"bLt_0J\":[\"工作流\"],\"bPq357\":[\"启用的值\"],\"bQZByw\":[\"每行使用一个注解标签,不带逗号。\"],\"bTu5jX\":[\"用户名/密码\"],\"bWr6j5\":[\"此字段必须至少包含 \",[\"min\"],\" 个字符\"],\"bY8C86\":[\"查看所有用户。\"],\"bYXbel\":[\"工作流作业模板 webhook 密钥\"],\"baP8gx\":[\"4(连接调试)\"],\"baqrhc\":[\"HTTP 标头\"],\"bbJ-VR\":[\"缩小\"],\"bcyJXs\":[\"项正常\"],\"bd1Kuw\":[\"图标 URL\"],\"bf7UKi\":[\"更新缓存超时\"],\"bfgr_e\":[\"问题\"],\"bgjTnp\":[\"0(普通)\"],\"bgq1rW\":[\"搜索提交按钮\"],\"bhxnLH\":[\"您没有权限删除以下组: \",[\"itemsUnableToDelete\"]],\"bkPO0d\":[\"通知类型\"],\"bpECfE\":[\"取消链接删除\"],\"bpnj1H\":[\"加载此内容时出错。请重新加载页面。\"],\"bwRvnp\":[\"操作\"],\"bx2rrL\":[\"智能清单\"],\"bxaVlf\":[\"创建新凭证类型\"],\"byXCTu\":[\"发生次数\"],\"bznJUg\":[\"选择包含您希望此工作流管理的主机的清单。\"],\"bzv8Dv\":[\"删除错误\"],\"c-xCSz\":[\"True\"],\"c0n4p3\":[\"事实存储\"],\"c1Rsz1\":[\"查看工作流批准详情\"],\"c3XJ18\":[\"帮助\"],\"c4kHK7\":[\"关闭订阅模态\"],\"c6IFRs\":[\"服务账户 JSON 文件\"],\"c6u6gk\":[\"选择要运行此机构的实例组。\"],\"c7-Adk\":[\"同步清单源失败。\"],\"c8HyJq\":[\"选择要运行此清单的实例组。\"],\"c8sV0t\":[\"这个功能已被弃用并将在以后的发行版本中被删除。\"],\"c9V3Yo\":[\"主机故障\"],\"c9iw51\":[\"运行任务\"],\"c9pF61\":[\"客户端标识符\"],\"cFC8w7\":[\"依赖该清单源的其他资源目前正在使用此清单源。确定要删除它吗?\"],\"cFCKYZ\":[\"拒绝\"],\"cFOXv9\":[\"通用 OIDC\"],\"cGRiaP\":[\"查看详情\"],\"cIdUma\":[\"\\n \",[\"project_base_dir\"],\" 中没有可用的 playbook 目录。\\n 该目录为空,或者所有内容都已\\n 分配给其他项目。请在那里创建一个新目录,并确保\\n playbook 文件可以由「awx」系统用户读取,\\n 或者让 \",[\"brandName\"],\" 使用上面的源控制类型选项\\n 直接从源控制中检索您的 playbook。\"],\"cNsIJf\":[\"已更改\"],\"cPTnDL\":[\"项目同步\"],\"cQIQa2\":[\"选择组\"],\"cQlPDN\":[\"读取\"],\"cUKLzq\":[\"编辑顺序\"],\"cYir0h\":[\"选择选项\"],\"c_PGsA\":[\"工作流作业详情\"],\"cbSPfq\":[\"此工作流已进行\"],\"ccA_Bz\":[\"变量名称的建议格式为小写并\\n 以下划线分隔(例如 foo_bar、user_id、host_name\\n 等)。不允许使用带空格的变量名称。\"],\"cdm6_X\":[\"使用的容量\"],\"chbm2W\":[\"实例过滤器\"],\"ci3mwY\":[\"此字段不能为空\"],\"cit9TY\":[\"父节点通过 set_stats 生成的工件的名称。仅当父作业与所选结果匹配且条件为真时才会遵循该链接。缺失的密钥永远不匹配。\"],\"cj1KTQ\":[\"查看所有清单。\"],\"cjJXKx\":[\"主机同步故障\"],\"ckH3fT\":[\"就绪\"],\"ckdiAB\":[\"删除通知\"],\"cmWTxn\":[\"小于或等于比较。\"],\"cnGeoo\":[\"删除\"],\"cnnWD0\":[\"By default, we collect and transmit analytics data on the service usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>\",[\"0\"],\". Uncheck the following boxes to disable this feature.\"],\"ct_Puj\":[\"此字段将使用指定的凭证从外部 secret 管理系统检索。\"],\"cucDBz\":[\"上下文模板\"],\"cucG_7\":[\"没有可用的YAML\"],\"cxjfgY\":[\"无法在跃点节点上运行健康检查。\"],\"cy3yJa\":[\"已建立\"],\"d-F6q9\":[\"创建\"],\"d-zGjA\":[\"此操作将删除以下内容:\"],\"d1BVnY\":[\"A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>\",[\"0\"],\".\"],\"d5zxa4\":[\"本地\"],\"d6in1T\":[\"选择包含您希望此任务管理的主机的清单。\"],\"d73flf\":[\"警报模式\"],\"d75lEw\":[\"设置类型\"],\"d7VUIS\":[\"删除节点 \",[\"nodeName\"]],\"d8B-tr\":[\"作业状态图标签页\"],\"dAZObA\":[\"重定向 URI\"],\"dBNZkl\":[\"查看智能清单主机详情\"],\"dCcO-F\":[\"获取配置失败。\"],\"dELxuP\":[\"未找到清单。\"],\"dEgA5A\":[\"取消\"],\"dH6aQY\":[\"Azure AD Tenant\"],\"dIb9tv\":[\"查看所有应用程序。\"],\"dJcvVX\":[\"智能主机过滤器\"],\"dNAHKF\":[\"作业分片\"],\"dOjocz\":[\"趋同选择\"],\"dPGRd8\":[\"如果启用,在受支持的情况下显示 Ansible 任务所做的更改。这等同于 Ansible 的 --diff 模式。\"],\"dPY1x1\":[\"更多信息。\"],\"dQFAgv\":[\"此项目需要被更新\"],\"dQjRO3\":[\"启动同步进程\"],\"dbWo0h\":[\"使用 Google 登录\"],\"dcGoCm\":[\"清单文件\"],\"ddIcfH\":[\"进入最后页\"],\"dfWFox\":[\"主机计数\"],\"dk7qNl\":[\"控制节点\"],\"dkGxGj\":[\"Subversion\"],\"dlHFy7\":[\"删除一个或多个执行环境失败\"],\"dnCwNB\":[\"成功复制至剪贴板!\"],\"dov9kY\":[\"此字段必须是数字,且值介于 \",[\"0\"],\" 和 \",[\"1\"],\" 之间\"],\"dqxQzB\":[\"词典\"],\"dzQfDY\":[\"10 月\"],\"e0NrBM\":[\"项目\"],\"e3pQqT\":[\"选择通知类型\"],\"e4GHWP\":[\"拉取\"],\"e5CMOi\":[\"用于指定凭证类型可注入值的环境变量或额外变量。\"],\"e5VbKq\":[\"工作流作业模板\"],\"e6BtDv\":[\"<0>\",[\"0\"],\"<1>\",[\"1\"],\"\"],\"e70-_3\":[\"切换图例\"],\"e8GyQg\":[\"指标\"],\"e8U63Z\":[\"仅当推送的引用与此模式匹配时才同步项目,例如 refs/heads/main 或 refs/heads/release-*。留空以在任何推送或标签事件时同步。\"],\"e91aLH\":[\"查看所有凭证类型\"],\"e9k5zp\":[\"请添加一个调度来填充此列表。调度可以添加到模板、项目或清单源中。\"],\"eAR1n4\":[\"相关的搜索类型 typeahead\"],\"eD_0Fo\":[\"删除一个或多个团队失败。\"],\"eDjsWq\":[\"创建新通知模板\"],\"eGkahQ\":[\"删除作业模板\"],\"eHx-29\":[\"源详情\"],\"ePK91l\":[\"编辑\"],\"ePS9As\":[\"RADIUS 设置\"],\"eQkgKV\":[\"已安装\"],\"eRV9Z3\":[\"未指定超时\"],\"eRlz2Q\":[\"目标 SMS 号码\"],\"eSXF_i\":[\"删除应用程序失败。\"],\"eTsJYJ\":[\"描述\"],\"eVJ2lo\":[\"浮点值\"],\"eXOp7I\":[\"您没有删除实例的权限:\",[\"itemsUnableToremove\"]],\"eXWuGz\":[\"最近模板列表标签页\"],\"eYJ4TK\":[\"未找到构建的库存。\"],\"eeke40\":[\"自动化分析\"],\"ekUnNJ\":[\"选择标签\"],\"el9nUc\":[\"调度处于非活跃状态\"],\"emqNXf\":[\"Playbook 检查\"],\"eqiT7d\":[\"设置此实例在网格拓扑中扮演的角色。默认为 \\\"execution\\\"。\"],\"espHeZ\":[\"防止实例组 Fallback:如果启用,则该清单将阻止将任何机构实例组添加到运行相关作业模板的首选实例组列表中。\"],\"etQEqZ\":[\"删除此链接将会孤立分支的剩余部分,并导致它在启动时立即执行。\"],\"ewSXyG\":[\"软删除\"],\"f-fQK9\":[\"Grafana API 密钥\"],\"f2o-xB\":[\"确认取消\"],\"f6Hub0\":[\"排序\"],\"f9yJNM\":[\"等于\"],\"fCZSgU\":[\"查看所有实例组\"],\"fDzxi_\":[\"不保存退出\"],\"fE2kOY\":[\"日期运算符选择\"],\"fGEOCn\":[\"作业状态\"],\"fGLpQj\":[\"源控制分支/标签/提交\"],\"fGQ9Ug\":[\"选择用于访问此任务将针对其运行的节点的凭证。每种类型只能选择一个凭证。对于计算机凭证 (SSH),在不选择凭证的情况下勾选“启动时提示”将要求您在运行时选择计算机凭证。如果您选择凭证并勾选“启动时提示”,则所选凭证将成为可在运行时更新的默认值。\"],\"fJ9xam\":[\"启用实例\"],\"fKew5B\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"取消作业\"],\"other\":[\"取消作业\"]}]],\"fL7WXr\":[\"应用程序\"],\"fMUEsk\":[\"第 \",[\"0\"],\" 天\"],\"fMulwN\":[\"重新刷新项目修订版本\"],\"fOAyP5\":[\"搜索文本输入\"],\"fODqV4\":[\"未找到该值。请输入或选择一个有效值。\"],\"fQCM-p\":[\"查看机构详情\"],\"fQGOXc\":[\"错误!\"],\"fR8DDt\":[\"确认删除所有节点\"],\"fVjyJ4\":[\"确认解除关联\"],\"f_Xpp2\":[\"此操作将解除以下关联:\"],\"fcTDCh\":[\"在下面提供您的 Red Hat 或 Red Hat Satellite 凭证,\\n 您可以从可用订阅列表中进行选择。\\n 您使用的凭证将被存储以供将来\\n 检索续订或扩展的订阅时使用。\"],\"ff_JYN\":[\"按嵌套组名称筛选\"],\"fgrmWn\":[\"启动时提示输入差异模式。\"],\"fhFmMp\":[\"客户端标识符\"],\"fjX9i5\":[\"未找到智能清单。\"],\"fk1WEw\":[\"已加密\"],\"fld-O4\":[\"所有作业\"],\"fnbZWe\":[\"(可选)选择用于将状态更新发送回 webhook 服务的凭证。\"],\"foItBN\":[\"周末日\"],\"fp4RS1\":[\"content-loading-in-progress\"],\"fpMgHS\":[\"周一\"],\"fqSfXY\":[\"替换\"],\"fqmP_m\":[\"主机无法访问\"],\"fthJP1\":[\"Webhook 服务可以通过向此 URL 发出 POST 请求来使用此工作流任务模板启动任务。\"],\"fwX7gC\":[\"VMware vCenter\"],\"g4o5Lr\":[\"详细\"],\"g6ekO4\":[\"切换主机失败。\"],\"g7CZ-8\":[\"使用 GitHub Enterprise Organizations 登录\"],\"g9d3sF\":[\"开始消息正文\"],\"gALXcv\":[\"删除此节点\"],\"gBnBJa\":[\"源工作流作业\"],\"gDx5MG\":[\"编辑链接\"],\"gIGcbR\":[\"在此组上同时运行的最大作业数。零意味着不会强制执行任何限制。\"],\"gJccsJ\":[\"工作流批准的消息\"],\"gK06zh\":[\"添加作业模板\"],\"gM3pS9\":[\"执行环境\"],\"gN3aF4\":[\"LDAP5\"],\"gSVH9P\":[\"同步所有源\"],\"gUaMtt\":[\"超时时\"],\"gVYePj\":[\"创建新团队\"],\"gWlcwd\":[\"最后的作业状态\"],\"gYWK-5\":[\"查看用户界面设置\"],\"gZXc5U\":[\"在工作流继续之前必须批准的不同用户数。单次拒绝始终会拒绝该节点。\"],\"gZaMqy\":[\"使用 GitHub Teams 登录\"],\"gZkstf\":[\"如果启用,这将存储收集的事实,以便可以在主机级别查看它们。事实会被持久化并在运行时注入到事实缓存中。\"],\"gcFnpl\":[\"作业状态\"],\"geTfDb\":[\"查看作业详情\"],\"ged_ZE\":[\"Oragnization\"],\"gezukD\":[\"选择要取消的作业\"],\"gfyddN\":[\"上传一个 .zip 文件\"],\"gh06VD\":[\"输出\"],\"ghJsq8\":[\"滚动到第一\"],\"gmB6oO\":[\"调度\"],\"gmBQqV\":[\"项目更新\"],\"gnveFZ\":[\"标准错误标签页\"],\"goVc-x\":[\"编辑凭证插件配置\"],\"go_DGX\":[\"添加团队角色\"],\"gpKdxJ\":[\"选择要删除的问题\"],\"gpmbqk\":[\"变量\"],\"gpnvle\":[\"删除错误\"],\"gsj32g\":[\"取消项目同步\"],\"gtB4z-\":[[\"interval\",\"plural\",{\"one\":[\"#\",\" 小时\"],\"other\":[\"#\",\" 小时\"]}]],\"gwKtbI\":[\"在文档和\"],\"h25sKn\":[\"订阅管理\"],\"h51QFW\":[\"YAML\"],\"h8DugX\":[\"标签\"],\"hAjDQy\":[\"选择状态\"],\"hBHRCF\":[\"当新实例上线时将自动分配给此组的\\n 最小实例数。\"],\"hEBjSg\":[\"Red Hat Satellite 6\"],\"hEnNCI\":[\"删除与 ansible 事实相关的当前搜索,以启用使用此键的另一个搜索。\"],\"hG89Ed\":[\"镜像\"],\"hHKoQD\":[\"选择对等地址\"],\"hLDu5N\":[\"编辑应用\"],\"hNudM0\":[\"为这个字段设置值\"],\"hPa_zN\":[\"机构(名称)\"],\"hQ0dMQ\":[\"添加新主机\"],\"hQRttt\":[\"提交\"],\"hVPa4O\":[\"选择一个选项\"],\"hX8KyU\":[\"此作业失败,且没有输出。\"],\"hXDKWN\":[\"频率详情\"],\"hXzOVo\":[\"下一\"],\"hYH0cE\":[\"您确定要提交取消此任务的请求吗?\"],\"hYgDIe\":[\"创建\"],\"hZ6znB\":[\"端口\"],\"hZke6f\":[\"您确定要禁用本地身份验证吗?这样做可能会影响用户登录的能力,以及系统管理员撤销此更改的能力。\"],\"hc_ufD\":[\"作业标签\"],\"hdyeZ0\":[\"删除作业\"],\"he3ygx\":[\"复制\"],\"heqHpI\":[\"项目基本路径\"],\"hg6l4j\":[\"3 月\"],\"hgJ0FN\":[\"执行搜索以定义主机过滤器\"],\"hgr8eo\":[\"项\"],\"hgvbYY\":[\"9 月\"],\"hhzh14\":[\"我们无法找到与这个帐户关联的许可证。\"],\"hi1n6B\":[\"更新 \",[\"brandName\"],\" 中与作业相关的设置\"],\"hiDMCa\":[\"置备\"],\"hjsbgA\":[\"额外变量\"],\"hjwN_s\":[\"资源名称\"],\"hlbQEq\":[\"内容签名验证凭证\"],\"hmEecN\":[\"管理作业\"],\"hmjNLv\":[\"首选主题\"],\"hty0d5\":[\"周一\"],\"hvs-Js\":[\"应用程序信息\"],\"i0VMLn\":[\"工作流拒绝的消息\"],\"i2izXk\":[\"调度缺少规则\"],\"i4_LY_\":[\"写入\"],\"i9sC0B\":[\"添加团队权限\"],\"iASwqf\":[\"This action will cancel the following job:\"],\"iCFhEl\":[\"源电话号码\"],\"iDNBZe\":[\"通知\"],\"iDWfOR\":[\"审批一个或多个工作流审批失败。\"],\"iDjyID\":[\"查看凭证详情\"],\"iE1s1P\":[\"启动工作流\"],\"iEUzMn\":[\"系统\"],\"iH8pgl\":[\"返回\"],\"iI4bLJ\":[\"最近登陆\"],\"iIVceM\":[\"复制错误\"],\"iJWOeZ\":[\"没有可用的 JSON\"],\"iJiCFw\":[\"组详情\"],\"iLO3nG\":[\"play 数量\"],\"iMaC2H\":[\"实例组\"],\"iPp22p\":[\"此调度使用 UI 中不支持的复杂规则。\\n 请使用 API 来管理此调度。\"],\"iQdYL_\":[\"添加智能清单\"],\"iRWxmA\":[\"禁用 SSL 验证\"],\"iTylMl\":[\"模板\"],\"iWKCzl\":[\"从在项目基本路径中找到的目录列表中选择。基本路径和 playbook 目录一起提供用于定位 playbook 的完整路径。\"],\"iXmHtI\":[\"选择作业类型\"],\"iZBwau\":[\"这一步包含错误\"],\"i_CDGy\":[\"允许分支覆写\"],\"i_Kv21\":[\"创建新源\"],\"ifckL-\":[\"行选择\"],\"ifdViT\":[\"查看清单脚本\"],\"ig0q8s\":[\"此清单会应用到在这个工作流 (\",[\"0\"],\") 中的所有作业模板,它会提示输入一个清单。\"],\"inP0J5\":[\"订阅详情\"],\"isRobC\":[\"新\"],\"itlxml\":[\"管理作业\"],\"ittbfT\":[\"根据 ansible_facts 搜索需要特殊的语法。请参阅\"],\"itu2NQ\":[\"链接状态类型\"],\"j1a5f1\":[\"编辑主机\"],\"j6gqC6\":[\"任务运行中要使用的分支。如果为空,则使用项目默认值。仅当项目的 allow_override 字段设置为 true 时才允许。\"],\"j7zAEo\":[\"工作流状态\"],\"j8QfHv\":[\"编辑主机\"],\"jAxdt7\":[\"取消删除\"],\"jBGh4u\":[\"嵌套组清单定义:\"],\"jCVu9g\":[\"Cancel selected job\"],\"jEJtMA\":[\"等待工作流批准\"],\"jEw0Mr\":[\"请输入有效的 URL\"],\"jFaaUJ\":[\"规范\"],\"jGUu_G\":[\"所需批准\"],\"jIaeJK\":[\"问卷调查\"],\"jJdwCB\":[\"恢复\"],\"jKibyt\":[\"重新设置缩放\"],\"jMyq_x\":[\"Workflow Job 1/\",[\"0\"]],\"jaUa4e\":[\"此数据用于增强\\n Tower 软件的未来版本,并帮助\\n 简化客户体验和成功。\"],\"jc86YO\":[\"启动时提示输入限制。\"],\"ji-8F7\":[\"其他资源目前正在使用此凭证。确定要删除它吗?\"],\"jiE6Vn\":[\"机构\"],\"jifz9m\":[\"无(运行一次)\"],\"jkQOCm\":[\"添加例外\"],\"jljuYN\":[\"将接受 webhook 请求的来源服务。\"],\"jluR-N\":[\"警告:\",[\"selectedValue\"],\" 是指向 \",[\"0\"],\" 的链接,并将保存为该链接。\"],\"joAQQS\":[\"The inventories will be in a pending status until the final delete is processed.\"],\"jqVo_k\":[\"此处。\"],\"jqzUyM\":[\"不可用\"],\"jrkyDn\":[\"Play 已启动\"],\"jrsFB3\":[\"输出标签页\"],\"jsz-PY\":[\"未知完成日期\"],\"jwmkq1\":[\"机器凭证\"],\"jzD-D6\":[\"当您有一个大型 playbook 并且想要跳过 play 或任务的特定部分时,跳过标签非常有用。使用逗号分隔多个标签。有关标签用法的详细信息,请参阅文档。\"],\"k020kO\":[\"活动流\"],\"k2dzu3\":[\"在 UTC 过期\"],\"k30JvV\":[\"选择的类别\"],\"k5nHqi\":[\"启动此任务模板时将使用的执行环境。可以通过为此任务模板显式分配不同的执行环境来覆盖解析的执行环境。\"],\"k6OGfu\":[\"Select the Ansible collection providing the inventory plugin used to sync from vCenter. The community.vmware collection is deprecated in favor of the newer vmware.vmware collection. The selection is saved as the \\\"plugin\\\" key in the source variables.\"],\"kALwhk\":[\"seconds\"],\"kDWprA\":[\"这些参数与指定的模块一起使用。\"],\"kEhyki\":[\"字段以值结尾。\"],\"kLja4m\":[\"启动者\"],\"kLk5bG\":[\"开始消息\"],\"kNUkGV\":[\"查找类型\"],\"kNfXib\":[\"模块名称\"],\"kODvZJ\":[\"名\"],\"kOVkPY\":[\"切换实例\"],\"kP-3Hw\":[\"返回到清单\"],\"kQerRU\":[\"此字段不得包含空格\"],\"kX-GZH\":[\"重新启动作业\"],\"kXzl6Z\":[\"源变量\"],\"kYDvK4\":[\"包含文件\"],\"kah1PX\":[\"在以下位置查看YAML示例:\"],\"kaux7o\":[\"从远程清单源覆盖本地组和主机\"],\"kgtWJ0\":[\"选择此任务模板要在其上运行的实例组。\"],\"kiMHN-\":[\"系统审核员\"],\"kjrq_8\":[\"更多信息\"],\"kkDQ8m\":[\"周四\"],\"kkc8HD\":[\"为您的 \",[\"brandName\"],\" 应用启用简化的登录\"],\"kpRn7y\":[\"删除问题\"],\"kpnWnY\":[\"在每个 SCM 修订版更改带来的工程项目更新后, 在执行作业任务之前, 请刷新所选源的资源清单。这适用于静态内容, 例如使用 .ini 文件格式的 Ansible 资源清单。\"],\"ks-HYT\":[\"添加用户权限\"],\"ks71ra\":[\"例外\"],\"kt8V8M\":[\"为工作流选择一个分支。\"],\"ktPOqw\":[\"请参阅\"],\"kuIbuV\":[\"运行状况检查只能在执行节点上运行。\"],\"ku__5b\":[\"秒\"],\"kyAi7k\":[\"实例\"],\"kyHUFI\":[\"Vault 密码 | \",[\"credId\"]],\"kyfr2I\":[\"如果选中,则以前存在于外部源但现在已删除的任何主机和组都将从清单中删除。不受清单源管理的主机和组将被提升到下一个手动创建的组,或者如果没有手动创建的组可将其提升到其中,它们将保留在清单的默认「all」组中。\"],\"kz7G1W\":[\"您确定要从 \",[\"1\"],\" 中删除访问 \",[\"0\"],\" 吗?这样做会影响团队所有成员。\"],\"l4MzBY\":[[\"update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" 秒\"],\"other\":[\"#\",\" 秒\"]}]],\"l4k9lc\":[\"第一个节点\"],\"l5XUoS\":[\"Webhook 凭证\"],\"l75CjT\":[\"是\"],\"l9ZmWD\":[[\"scm_update_cache_timeout\",\"plural\",{\"one\":[\"#\",\" 秒\"],\"other\":[\"#\",\" 秒\"]}]],\"lCF0wC\":[\"刷新\"],\"lJFsGr\":[\"创建新实例组\"],\"lKxoCA\":[\"扩展作业事件\"],\"lM9cbX\":[\"请注意,如果房东/体验达人也是该组的子级成员,则在取消关联后,您仍可能在列表中看到该组。此列表显示房东直接或间接关联的所有群组。\"],\"lURfHJ\":[\"折叠部分\"],\"lWkKSO\":[\"分钟\"],\"lWmv3p\":[\"清单源\"],\"lYDyXS\":[\"智能清单\"],\"l_jRvf\":[\"Playbook 完成\"],\"lfoFSg\":[\"删除主机\"],\"lgm7y2\":[\"编辑\"],\"lgphOX\":[\"预期值\"],\"lhgU4l\":[\"未找到模板。\"],\"lhkaAC\":[\"试用\"],\"ljGeYw\":[\"普通用户\"],\"lk5WJ7\":[\"host-name-\",[\"0\"]],\"lkgIYt\":[\"Pagerduty\"],\"lo-rJO\":[\"向下平移\"],\"ltvmAF\":[\"未找到应用程序。\"],\"lu2qW5\":[\"任何\"],\"lucaxq\":[\"如果不提供日志聚合器主机和日志聚合器类型,则无法启用日志聚合器。\"],\"luxcrf\":[[\"label\"],\" 的更多信息\"],\"lyjq5X\":[\"Slack\"],\"m-eV2_\":[\"未找到容器组。\"],\"m16xKo\":[\"添加\"],\"m1tKEz\":[\"系统管理员对所有资源的访问权限是不受限制的。\"],\"m2ErDa\":[\"失败\"],\"m3k6kn\":[\"取消构建的库存源同步失败\"],\"m5MOUX\":[\"返回到主机\"],\"mGJIOu\":[\"此构建的库存输入\\n 为两个类别创建一个组,并使用\\n 限制(主机模式)仅返回位于这两个组\\n 交集中的主机。\"],\"mNBZ1R\":[\"注意:此字段假定远程名称为 “origin”。\"],\"mOFgdC\":[\"最大值\"],\"mPiYpP\":[\"节点状态类型\"],\"mSv_7k\":[\"过去三年\"],\"mXRKES\":[\"LDAP4\"],\"mXfNlE\":[\"此调度缺少所需的调查值\"],\"mYGY3B\":[\"日期\"],\"mZiQNk\":[\"权限提升:如果启用,以管理员身份运行此 playbook。\"],\"m_tELA\":[\"取消删除\"],\"ma7cO9\":[\"删除组 \",[\"0\"],\" 失败。\"],\"mahPLs\":[\"权限升级密码\"],\"mcGG2z\":[[\"minutes\"],\" 分 \",[\"seconds\"],\" 秒\"],\"mdNruY\":[\"API 令牌\"],\"mgJ1oe\":[\"确认删除\"],\"mgjN5u\":[\"从实例组中解除关联实例?\"],\"mhg7Av\":[\"运行临时命令\"],\"mi9ffh\":[\"类型详情\"],\"mk4anB\":[\"浏览器默认\"],\"mlDUq3\":[\"修改者(用户名)\"],\"mnm1rs\":[\"GitHub Default\"],\"moZ0VP\":[\"同步状态\"],\"momgZ_\":[\"工作流作业模板的名称。\"],\"mqAOoN\":[\"选择 Playbook 目录\"],\"n-37ya\":[\"确认禁用本地授权\"],\"n-LISx\":[\"保存工作流时出错。\"],\"n-ZioH\":[\"获取更新的项目时出错\"],\"n-qmM7\":[\"选择一个 JSON 格式的服务帐户密钥来自动填充以下字段。\"],\"n12Go4\":[\"加载相关组失败。\"],\"n60kiJ\":[\"* 此字段将使用指定的凭证从外部 secret 管理系统检索。\"],\"n6mYYY\":[\"工作流超时信息\"],\"n9Idrk\":[\"(限制为前 10)\"],\"n9lz4A\":[\"失败的作业\"],\"nBAIS_\":[\"查看事件详情\"],\"nC35Na\":[\"Are you sure you want delete the group below?\"],\"nCU-1E\":[\"启用置备回调 URL 的创建。\\n 使用该 URL,主机可以联系 \",[\"brandName\"],\"\\n 并使用此作业模板请求配置\\n 更新\"],\"nCY9IL\":[\"主机已跳过\"],\"nDjIzD\":[\"查看项目详情\"],\"nGbNEN\":[\"将项目视为最新的时间(以秒为单位)。在任务运行和回调期间,任务系统将评估最新项目更新的时间戳。如果它早于缓存超时,则不将其视为最新,并将执行新的项目更新。\"],\"nI54lc\":[\"在同步前删除项目\"],\"nJPBvA\":[\"文件、目录或脚本\"],\"nJTOTZ\":[\"用于本机构内作业的执行环境。当项目、作业模板或工作流没有显式分配执行环境时,则会使用它。\"],\"nLGsp4\":[\"为此工作流作业模板启用调查。\"],\"nMiE53\":[\"启用的变量\"],\"nOhz3x\":[\"退出\"],\"nPH1Cr\":[\"这些执行环境可能被依赖它们的其他资源使用。您确定要删除它们吗?\"],\"nQOwDS\":[[\"0\",\"selectordinal\",{\"3\":[\"The third \",[\"dayOfWeek\"]],\"4\":[\"The fourth \",[\"dayOfWeek\"]],\"5\":[\"The fifth \",[\"dayOfWeek\"]],\"one\":[\"The first \",[\"dayOfWeek\"]],\"two\":[\"The second \",[\"dayOfWeek\"]]}]],\"nRXCOn\":[\"失败的主机计数\"],\"nSTT11\":[\"重新启动自:\"],\"nTENWI\":[\"返回到订阅管理。\"],\"nU16mp\":[\"缓存超时\"],\"nZPX7r\":[\"警告:未保存的更改\"],\"nZW6P0\":[\"本地时区\"],\"nZYB4j\":[\"没有状态\"],\"nZYxse\":[\"从组中解除关联主机?\"],\"n_qDNz\":[\"Switch to dark mode\"],\"naCW6Z\":[\"4 月\"],\"ncxIQL\":[\"解除关联一个或多个实例失败。\"],\"neiOWk\":[\"在此处查看构建的库存文档\"],\"nfnm9D\":[\"机构名称\"],\"ng00aZ\":[\"主机过滤器\"],\"nhxAdQ\":[\"关键字\"],\"nlsWzF\":[\"请添加问卷调查问题。\"],\"nnY7VU\":[\"Pagerduty 子域\"],\"noGZlf\":[\"缓存超时(秒)\"],\"npGo-z\":[\"使用 \",[\"label\"],\" 登陆\"],\"nuh_Wq\":[\"Webhook URL\"],\"nvUq8j\":[\"1(详细)\"],\"nzozOC\":[\"删除用户\"],\"nzr1qE\":[\"上传文件被拒绝。请选择单个 .json 文件。\"],\"o-JPE2\":[\"没有找到问卷调查问题。\"],\"o0RwAq\":[\"使用 GitHub Enterprise 登录\"],\"o0x5-R\":[\"为这个字段选择一个值\"],\"o4NRE0\":[\"高级搜索值输入\"],\"o5J6dR\":[\"指定应该执行此节点的条件\"],\"o9R2tO\":[\"SSL 连接\"],\"oABS9f\":[\"为这个字段输入值或者选择「启动时提示」选项。\"],\"oB5EwG\":[\"外部 Secret 管理系统\"],\"oBmCtD\":[\"Are you sure you want delete the groups below?\"],\"oC5JSb\":[\"获取更新的项目数据失败。\"],\"oCKCYp\":[\"发送通知成功\"],\"oEijQ7\":[\"开头不区分大小写的版本。\"],\"oFtmtl\":[\"Select the inventory containing the hosts\\n you want this job to manage.\"],\"oGKq12\":[\"构建2组,限制在交叉点\"],\"oH1Qle\":[\"此工作流作业模板的 Webhook URL。\"],\"oHOOxn\":[\"默认情况下,我们会收集有关服务使用情况的分析数据并将其传输给 Red Hat。该服务收集两类数据。有关更多信息,请参阅<0>此 Tower 文档页面。取消选中以下复选框可禁用此功能。\"],\"oII7vS\":[\"GitHub 设置\"],\"oKMFX4\":[\"永不更新\"],\"oKbBFU\":[\"# source with sync failures.\"],\"oNOjE7\":[\"结束日期/时间\"],\"oNZQUQ\":[\"使用 Kubernetes 或 OpenShift 进行身份验证的凭证\"],\"oQqtoP\":[\"返回到管理作业\"],\"oRt7Uv\":[[\"interval\"],\" years\"],\"oTDA5P\":[[\"0\",\"plural\",{\"one\":[\"此实例当前正被其他资源使用。确定要删除它吗?\"],\"other\":[\"取消置备这些实例可能会影响依赖它们的其他资源。确定仍要删除吗?\"]}]],\"oWvSIB\":[\"发件人电子邮件\"],\"oX_mCH\":[\"项目同步错误\"],\"oZvDsd\":[[\"interval\"],\" hours\"],\"ocUvR-\":[\"false\"],\"ofO19Q\":[\"使用 GitHub Enterprise Teams 登录\"],\"ofcQVG\":[\"未保存的修改 modal\"],\"olEUh2\":[\"成功\"],\"opS--k\":[\"返回到实例组\"],\"orh4t6\":[\"主机正常\"],\"osCeRO\":[\"查看 Azure AD 设置\"],\"ot7qsv\":[\"清除所有过滤器\"],\"ovBPCi\":[\"默认\"],\"owBGkJ\":[\"结束与预期值不匹配 (\",[\"0\"],\")\"],\"owQ8JH\":[\"添加实例组\"],\"ozbhWy\":[\"删除错误\"],\"p-nfFx\":[\"把文件拖放在这里或浏览以上传\"],\"p-ngUo\":[\"未追随\"],\"p-pp9U\":[\"字符串\"],\"p2LEhJ\":[\"个人访问令牌\"],\"p2_GCq\":[\"确认密码\"],\"p3PM8G\":[\"从第一个节点重新启动\"],\"p6-JME\":[\"第一个获取所有引用。第二个获取 Github 拉取请求编号 62,在此示例中分支需要为 “pull/62/head”。\"],\"pAtylB\":[\"未找到\"],\"pCCQER\":[\"全局可用\"],\"pH8j40\":[\"先前已删除的活跃房东\"],\"pHyx6k\":[\"多项选择(单选)\"],\"pKQcta\":[\"自定义 Pod 规格\"],\"pOJNDA\":[\"命令\"],\"pOd3wA\":[\"按 'Enter' 添加更多回答选择。每行一个回答选择。\"],\"pOhwkU\":[\"此操作将从 \",[\"0\"],\" 中解除以下角色关联:\"],\"pRZ6hs\":[\"运行于\"],\"pSypIG\":[\"显示描述\"],\"pYENvg\":[\"授权授予类型\"],\"pZJ0-s\":[\"此组上同时运行的所有作业允许的最大分叉数。零意味着不会强制执行任何限制。\"],\"pa1SrG\":[[\"interval\"],\" days\"],\"peCAyQ\":[\"查看 RADIUS 设置\"],\"pfw0Wr\":[\"所有\"],\"pguZh2\":[\"从 jinja2 表达式创建变量。如果您定义的\\n 构建的组不包含预期的主机,这会很有用。\\n 这可用于从表达式添加 hostvars,以便\\n 您知道这些表达式的结果值是什么。\"],\"phTgAm\":[\"很难为 Ansible 事实的清单提供\\n 规格,因为要填充系统事实,您需要\\n 针对具有 `gather_facts: true` 的清单运行\\n playbook。实际事实\\n 会因系统而异。\"],\"pkY73W\":[\"Rocket.Chat\"],\"pn7Xy3\":[\"请参阅 Django\"],\"poMgBa\":[\"启动时提示输入 SCM 分支。\"],\"ppcQy0\":[\"将缩放设置为 100% 和中心图\"],\"prydaE\":[\"项目同步失败\"],\"pw2VDK\":[[\"month\"],\"的最后一个 \",[\"weekday\"]],\"q-Uk_P\":[\"删除一个或多个凭证类型失败。\"],\"q-hNag\":[\"集合\"],\"q45OlW\":[\"区域\"],\"q5tQBE\":[\"为相关搜索字段模糊搜索设置类型禁用\"],\"q67y3T\":[\"没有找到通知模板。\"],\"qAlZNb\":[\"您无法对以下工作流审批采取行动: \",[\"itemsUnableToDeny\"]],\"qCUUnr\":[\"没有剩余主机\"],\"qChjCy\":[\"首次运行\"],\"qD-pvR\":[\"仪表盘 ID(可选)\"],\"qEMgTP\":[\"清单源同步错误\"],\"qJK-de\":[\"使用 OIDC 登陆\"],\"qS0GhO\":[\"缺少执行环境\"],\"qSSVmd\":[\"目标频道或用户\"],\"qSSg1L\":[\"链接到可用节点\"],\"qWD0iN\":[\"此数据用于增强\\n 软件的未来版本,并提供\\n Automation Analytics。\"],\"qXRYa2\":[\"跟踪分支中的最新提交\"],\"qYkrfg\":[\"置备回调详情\"],\"qZ2MTC\":[\"这些是 \",[\"brandName\"],\" 支持运行命令的模块。\"],\"qgjtIt\":[\"趋同\"],\"qlhQw_\":[\"清单同步\"],\"qliDbL\":[\"远程归档\"],\"qlwLcm\":[\"故障排除\"],\"qmBmJJ\":[\"这是唯一显示客户端 secret 的时间。\"],\"qmYgP7\":[\"批准\"],\"qqeAJM\":[\"永不\"],\"qtFFSS\":[\"启动时更新修订\"],\"qtaMu8\":[\"清单(名称)\"],\"qvCD_i\":[\"示例包括:\"],\"qwaCoN\":[\"源控制更新\"],\"qxZ5RX\":[\"主机\"],\"qznBkw\":[\"工作流链接模式\"],\"r6Aglb\":[\"使用 JSON 或 YAML 语法输入注入程序。示例语法请参阅 Ansible 控制器文档。\"],\"r6y-jM\":[\"警告\"],\"r6zgGo\":[\"12 月\"],\"r8ojWq\":[\"确认删除\"],\"r8oq0Y\":[\"过去 24 小时\"],\"rBdPPP\":[\"删除 \",[\"name\"],\" 失败。\"],\"rE95l8\":[\"客户端类型\"],\"rG3WVm\":[\"选择\"],\"rHK_Sg\":[\"自定义虚拟环境 \",[\"virtualEnvironment\"],\" 必须替换为执行环境。有关迁移到执行环境的更多信息,请参阅<0>文档。\"],\"rK7UBZ\":[\"重新启动所有主机\"],\"rKS_55\":[\"事实存储:如果启用,这将存储收集的事实,以便可以在主机级别查看它们。事实会被持久化并在运行时注入到事实缓存中。\"],\"rKTFNB\":[\"删除凭证类型\"],\"rLznGJ\":[\"创建批准时使用上游 set_stats 工件呈现的 Jinja2 模板。使用它向批准者显示先前作业步骤的相关上下文。可用变量来自父节点的 set_stats 数据。\"],\"rMrKOB\":[\"同步项目失败。\"],\"rOZRCa\":[\"工作流链接\"],\"rSYkIY\":[\"此字段必须是数字\"],\"rXhu41\":[\"2(调试)\"],\"rYHzDr\":[\"每页的项\"],\"r_IfWZ\":[\"编辑清单\"],\"rdUucN\":[\"预览\"],\"rfYaVc\":[\"回答变量名称\"],\"rfpIXM\":[\"启动时提示输入实例组。\"],\"rfx2oA\":[\"工作流待处理信息正文\"],\"riBcU5\":[\"IRC Nick\"],\"rjVfy3\":[\"工作流文档\"],\"rjyWPb\":[\"1 月\"],\"rmb2GE\":[\"由 \",[\"0\"],\" 拒绝 - \",[\"1\"]],\"rmt9Tu\":[\"主机总数\"],\"ruhGSG\":[\"取消清单源同步\"],\"rvia3m\":[\"其它身份验证\"],\"rw1pRJ\":[\"下载捆绑包\"],\"rwWNpy\":[\"清单\"],\"s-MGs7\":[\"资源\"],\"s2xYUy\":[\"从远程清单源覆盖本地变量\"],\"s3KtlK\":[\"由于所选的例外,此计划没有发生。\"],\"s4Qnj2\":[\"执行环境\"],\"s4fge-\":[\"过去一个月\"],\"s5aIEB\":[\"删除工作流作业模板\"],\"s5mACA\":[\"实例详情\"],\"s5r5nt\":[[\"0\",\"plural\",{\"one\":[\"此实例组当前正被其他资源使用。您确定要删除它吗?\"],\"other\":[\"删除这些实例组可能会影响依赖它们的其他资源。您确定仍要删除吗?\"]}]],\"s6F6Ks\":[\"没有为该作业找到输出。\"],\"s70SJY\":[\"日志设置\"],\"s8hQty\":[\"查看所有作业\"],\"s9EKbs\":[\"禁用 SSL 验证\"],\"sAz1tZ\":[\"确认解除关联\"],\"sBJ5MF\":[\"源\"],\"sCEb_0\":[\"查看所有清单主机。\"],\"sGodAp\":[\"Pod 规格覆写\"],\"sMDRa_\":[\"返回到组\"],\"sOMf4x\":[\"最近模板\"],\"sSFxX6\":[\"启动作业时更新修订\"],\"sTkKoT\":[\"选择要拒绝的行\"],\"sUyFTB\":[\"重定向到仪表盘\"],\"sV3kNp\":[\"其他资源目前正在此实例组中。确定要删除它吗?\"],\"sVh4-e\":[\"删除此链接\"],\"sW5OjU\":[\"必填\"],\"sZif4m\":[\"解除关联相关的组?\"],\"s_XkZs\":[\"开始\"],\"s_r4Az\":[\"此字段必须是整数\"],\"sesAIn\":[\"使用自定义消息来更改作业启动、成功或失败时\\n 发送的通知内容。使用\\n 花括号来访问有关作业的信息:\"],\"sgRZMG\":[\"混合节点\"],\"siJgSI\":[\"未找到用户。\"],\"sjMCOP\":[\"最后修改\"],\"sjVfrA\":[\"命令\"],\"smFRaX\":[\"已启动一个作业\"],\"sqMsvU\":[[\"0\",\"plural\",{\"one\":[\"#\",\" 个源存在同步失败。\"],\"other\":[\"#\",\" 个源存在同步失败。\"]}]],\"sr4LMa\":[\"清单源\"],\"svR3aM\":[\"OpenStack\"],\"svy2x9\":[\"返回满足此过滤器或任何其他过滤器的结果。\"],\"sxkWRg\":[\"高级\"],\"syupn5\":[\"品牌图像\"],\"syyeb9\":[\"第一\"],\"t-R8-P\":[\"执行\"],\"t2q1xO\":[\"编辑调度\"],\"t4v_7X\":[\"选择节点类型\"],\"t9QlBd\":[\"11 月\"],\"tRm9qR\":[\"当您有一个大型 playbook 并且想要运行 play 或任务的特定部分时,标签非常有用。使用逗号分隔多个标签。有关标签用法的详细信息,请参阅文档。\"],\"tVEot_\":[[\"0\",\"plural\",{\"one\":[\"This template is currently being used by some workflow nodes. Are you sure you want to delete it?\"],\"other\":[\"Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?\"]}]],\"tXkhj_\":[\"开始\"],\"t_YqKh\":[\"删除\"],\"tbSVlt\":[\"删除用户访问\"],\"tfDRzk\":[\"保存\"],\"tfh2eq\":[\"点击以创建到此节点的新链接。\"],\"tgPwON\":[\"运算符\"],\"tgSBSE\":[\"删除链接\"],\"tgWuMB\":[\"修改\"],\"thJljW\":[\"警告: \"],\"toJdZA\":[\"Reorder\"],\"tpCmSt\":[\"policy rules.\"],\"tqlcfo\":[\"取消置备\"],\"trjiIV\":[\"无法关联对等点。\"],\"tst44n\":[\"事件\"],\"twE5a9\":[\"删除凭证失败。\"],\"txNbrI\":[\"源控制分支\"],\"ty2DZX\":[\"这个机构目前由其他资源使用。您确定要删除它吗?\"],\"tzgOKK\":[\"此已操作\"],\"u-sh8m\":[\"/ (project root)\"],\"u4ex5r\":[\"7 月\"],\"u4n8Fm\":[\"删除对等项失败。\"],\"u4x6Jy\":[\"返回到作业\"],\"u5AJST\":[\"执行 playbook 时使用的并行或同步进程数量。如果不输入值,则将使用 ansible 配置文件中的默认值。您可以找到更多信息\"],\"u7f6WK\":[\"查看所有工作流批准。\"],\"u84wS1\":[\"作业取消错误\"],\"uAQUqI\":[\"状态\"],\"uAhZbx\":[\"出现故障的库存源\"],\"uCjD1h\":[\"您的会话已过期。请登录以继续使用会话过期前所在的位置。\"],\"uImfEm\":[\"工作流待处理信息\"],\"uJz8NJ\":[\"作业运行时会禁用搜索\"],\"uPRp5U\":[\"取消查找\"],\"uTDtiS\":[\"第五\"],\"uUehLT\":[\"等待\"],\"uVu1Yt\":[\"设置类型选项\"],\"uYtvvN\":[\"在编辑执行环境前选择一个项目。\"],\"ucSTeu\":[\"创建者(用户名)\"],\"ucgZ0o\":[\"机构(Organization)\"],\"ugZpot\":[\"测试外部凭据\"],\"ulRNXw\":[\"Dragging cancelled. List is unchanged.\"],\"upC07l\":[\"Survey Disabled\"],\"uuPCEU\":[\"If you want the Inventory Source to update on launch , click on Update on Launch, and also go to \"],\"uyJsf6\":[\"关于\"],\"uzTiFQ\":[\"返回到调度\"],\"v-CZEv\":[\"启动时提示\"],\"v-EbDj\":[\"故障修复设置\"],\"v-M-LP\":[\"启动模板\"],\"v0urVb\":[\"如果您没有订阅,可以访问\\n Red Hat 以获取试用订阅。\"],\"v1kQyJ\":[\"Webhook\"],\"v2dMHj\":[\"使用主机参数重新启动\"],\"v2gmVS\":[\"此操作将软删除以下内容:\"],\"v45yUL\":[\"解除关联\"],\"v7vAuj\":[\"作业总数\"],\"vCS_TJ\":[\"删除清单源 \",[\"name\"],\" 失败。\"],\"vEr6TL\":[\"这些参数与指定的模块一起使用。您可以通过点击以下内容找到有关 \",[\"0\"],\" 的信息: \"],\"vF82C6\":[\"当父节点具有成功状态时执行。\"],\"vFKI2e\":[\"调度规则\"],\"vFVhzc\":[\"社交\"],\"vGVmd5\":[\"除非设置了启用的变量,否则此字段会被忽略。如果启用的变量与这个值匹配,则会在导入时启用主机。\"],\"vGjmyl\":[\"已删除\"],\"vHAaZi\":[\"跳过每个\"],\"vIb3RK\":[\"创建新调度\"],\"vKRQJB\":[\"用于传递自定义 Kubernetes 或 OpenShift Pod 规格的字段。\"],\"vLyv1R\":[\"隐藏\"],\"vPrMqH\":[\"修订号 #\"],\"vQHUI6\":[\"如果选中,子组和主机的所有变量将被删除并替换为在外部源上找到的变量。\"],\"vTL8gi\":[\"结束时间\"],\"vUOn9d\":[\"返回\"],\"vYFWsi\":[\"选择团队\"],\"vYuE8q\":[\"作业运行所经过的时间\"],\"vZbIkJ\":[\"GitLab\"],\"vcH-SH\":[\"Bitbucket数据中心\"],\"ve_jRy\":[\"按条件\"],\"vgwVkd\":[\"UTC\"],\"vlHGDw\":[\"向 playbook 传递额外的命令行变量。这是 ansible-playbook 的 -e 或 --extra-vars 命令行参数。使用 YAML 或 JSON 提供键/值对。有关语法示例,请参阅文档。\"],\"voRH7M\":[\"示例:\"],\"vq1XXv\":[\"使用应用的过滤器创建新智能清单\"],\"vq2WxD\":[\"周二\"],\"vq9gg6\":[\"您无法对以下工作流审批采取行动: \",[\"itemsUnableToApprove\"]],\"vqAmQC\":[\"模块\"],\"vvY8pz\":[\"启动时提示输入跳过标记。\"],\"vye-ip\":[\"启动时提示输入超时。\"],\"vzsN_5\":[[\"interval\"],\" day\"],\"w07pgp\":[\"启动时提示输入详细程度。\"],\"w0kTk8\":[\"从失败的节点重新启动\"],\"w14eW4\":[\"查看所有令牌。\"],\"w1RiT6\":[[\"0\",\"plural\",{\"one\":[\"此清单源当前正被依赖它的其他资源使用。您确定要删除它吗?\"],\"other\":[\"删除这些清单源可能会影响依赖它们的其他资源。您确定仍要删除它们吗?\"]}]],\"w2VTLB\":[\"小于比较。\"],\"w3EE8S\":[\"自动的主机\"],\"w4j7js\":[\"查看团队详情\"],\"w6zx64\":[\"使用浏览器默认\"],\"wCnaTT\":[\"使用新值替换项\"],\"wF-BAU\":[\"添加清单\"],\"wFnb77\":[\"清单 ID\"],\"wKEfMu\":[\"事件处理完成。\"],\"wO29qX\":[\"未找到机构。\"],\"wW08QA\":[\"不等于\"],\"wX6sAX\":[\"过去两年\"],\"wXAVe-\":[\"模块参数\"],\"wXB7k5\":[\"指定通知颜色。可接受的颜色是十六进制\\n 颜色代码(例如:#3af 或 #789abc)。\"],\"waFx9W\":[\"受管\"],\"wdxz7K\":[\"源\"],\"wgNoIs\":[\"选择所有\"],\"wkgHlv\":[\"添加新令牌\"],\"wlQNTg\":[\"成员\"],\"wnizTi\":[\"导入一个订阅\"],\"wpT1VN\":[\"条件\"],\"wpt6vB\":[\"LDAP2\"],\"wqXiR2\":[\"传递额外的命令行更改。有两个 ansible 命令行参数: \"],\"wsggVq\":[\"如果未选中,在外部源上未找到的本地子主机和组将保持不受库存更新过程的影响。\"],\"x-a4Mr\":[\"Webhook 凭证\"],\"x02hbg\":[\"置备回调:启用创建置备回调 URL。使用该 URL,主机可以联系 Ansible AWX 并使用此任务模板请求配置更新。\"],\"x4Xp3c\":[\"已更新\"],\"x5DnMs\":[\"最后修改\"],\"x6_dAC\":[\"联邦库存\"],\"x6oT_o\":[\"可用主机\"],\"x7PDL5\":[\"日志记录\"],\"x8uKc7\":[\"实例状态\"],\"x9WS62\":[\"取消 \",[\"0\"]],\"xAYSEs\":[\"开始时间\"],\"xAqth4\":[\"查看 Google OAuth 2.0 设置\"],\"xC9EVu\":[\"已取消的节点\"],\"xCJdfg\":[\"清除\"],\"xDr_ct\":[\"结束\"],\"xESTou\":[\"删除作业失败。\"],\"xF5tnT\":[\"Vault 密码\"],\"xGQZwx\":[\"添加容器组\"],\"xGVfLh\":[\"继续\"],\"xHZS6u\":[\"成功的作业\"],\"xHokxV\":[[\"0\",\"plural\",{\"one\":[\"The selected job cannot be deleted due to insufficient permission or a running job status\"],\"other\":[\"The selected jobs cannot be deleted due to insufficient permissions or a running job status\"]}]],\"xHt036\":[\"个人访问令牌\"],\"xKQRBr\":[\"最大长度\"],\"xM01Pk\":[\"默认回答\"],\"xONDaO\":[\"Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?\"],\"xOl1yT\":[\"对名称字段进行精确搜索。\"],\"xPO5w7\":[\"使用 GitHub 登陆\"],\"xPpkbX\":[\"Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway\"],\"xPxMOJ\":[\"时间格式无效\"],\"xQioPk\":[\"在有多个父对象时运行此节点的先决条件。请参阅\"],\"xSytdh\":[\"完成:\"],\"xUhTCP\":[\"选择一个源\"],\"xVhQZV\":[\"周五\"],\"xY9DEq\":[\"用于将字段保留为清单中的目标主机的模式。留空、所有和 * 将针对清单中的所有主机。您可以找到有关 Ansible 主机模式的更多信息\"],\"xY9s5E\":[\"超时\"],\"x_Ej3K\":[\"选择您希望作为用户提示的答案类型或格式。\\n 有关每个选项的更多信息,请参阅 Ascender 文档。\"],\"x_ugm_\":[\"团体总数\"],\"xa7N9Z\":[\"编辑登录重定向覆写 URL\"],\"xcaG5l\":[\"编辑工作流\"],\"xd2LI3\":[\"到期时间 \",[\"0\"]],\"xdA_-p\":[\"工具\"],\"xe5RvT\":[\"YAML选项卡\"],\"xefC7k\":[\"IRC 服务器端口\"],\"xeiujy\":[\"文本\"],\"xg771-\":[\"LDAP1\"],\"xhj1Rt\":[\"您请求的页面无法找到。\"],\"xi4nE2\":[\"错误消息\"],\"xnSIXG\":[\"删除一个或多个主机失败。\"],\"xoCdYY\":[\"检查给定字段的值是否出现在提供的列表中;需要一个以逗号分隔的项目列表。\"],\"xoXoBo\":[\"删除错误\"],\"xrG8k4\":[\"Google Compute Engine\"],\"xtRU96\":[\"GitHub Enterprise Organization\"],\"xuYTJb\":[\"删除作业模板失败。\"],\"xw06rt\":[\"设置与工厂默认匹配。\"],\"xxTtJH\":[\"仅导入主机名与这个正则表达式匹配的主机。该过滤器在应用任何清单插件过滤器后作为后步骤使用。\"],\"y11WBZ\":[[\"numJobsToCancel\",\"plural\",{\"one\":[\"取消所选作业\"],\"other\":[\"取消所选作业\"]}]],\"y8ibKI\":[\"删除实例\"],\"yCCaoF\":[\"更新实例失败。\"],\"yDeNnS\":[\"创建新建库存\"],\"yDifzB\":[\"确认选择\"],\"yGS9cI\":[\"健康\"],\"yGUKlf\":[\"管理作业\"],\"yGfW7Y\":[\"部署 \",[\"brandName\"],\" 时更改 PROJECTS_ROOT 以更改此位置。\"],\"yMIahh\":[\"欢迎使用 Red Hat Ansible Automation Platform!\\n 请完成以下步骤来激活您的订阅。\"],\"yMYuDg\":[\"Automation Controller 版本\"],\"yMfU4O\":[\"发件人电子邮件\"],\"yNcGa2\":[\"访问令牌过期\"],\"yOXgbH\":[\"注意:为 GitHub 或 Bitbucket 使用 SSH 协议时,请仅输入 SSH 密钥,不要输入用户名(git 除外)。此外,GitHub 和 Bitbucket 在使用 SSH 时不支持密码身份验证。GIT 只读协议 (git://) 不使用用户名或密码信息。\"],\"yQE2r9\":[\"正在加载\"],\"yRiHPB\":[\"请运行一个作业来填充此列表。\"],\"yRkqG9\":[\"限制\"],\"yRsSBw\":[\"批准\"],\"yUlffE\":[\"重新启动\"],\"yVgnJA\":[\"允许此机构管理的最大主机数。\\n 值默认为 0,表示没有限制。如需更多详情,请参阅 Ansible\\n 文档。\"],\"yX3qAQ\":[\"工作流作业模板节点\"],\"yaG1CX\":[\"LDAP\"],\"yaX9sM\":[\"工作流模板\"],\"yb_fjw\":[\"批准\"],\"ydoZpB\":[\"未找到团队。\"],\"ydw9CW\":[\"失败的主机\"],\"yfG3F2\":[\"直接密钥\"],\"yjwMJ8\":[\"房东/体验达人被自动处理了多少次\"],\"yjyGja\":[\"展开输入\"],\"ylXj1N\":[\"已选择\"],\"yq6OqI\":[\"这是唯一显示令牌值和关联刷新令牌值的时间。\"],\"yqiwAW\":[\"取消工作流\"],\"yrUyDQ\":[\"设置此实例的当前生命周期阶段。默认为\\\"installed\\\"。\"],\"yrwl2P\":[\"合规\"],\"yuXsFE\":[\"无法删除一个或多个工作流批准。\"],\"yuvDX_\":[[\"intervalValue\",\"plural\",{\"one\":[\"month\"],\"other\":[\"months\"]}]],\"ywSBEn\":[\"关联角色错误\"],\"yxDqcD\":[\"授权代码过期\"],\"yy1cWw\":[\"自定义消息…\"],\"yz7wBu\":[\"关闭\"],\"yzQhLU\":[\"策略实例最小值\"],\"yzdDia\":[\"删除问卷调查\"],\"z-BNGk\":[\"删除用户令牌\"],\"z0DcIS\":[\"加密\"],\"z3XA1I\":[\"主机重试\"],\"z409y8\":[\"Webhook 服务\"],\"z7NLxJ\":[\"如果您只想删除这个特定用户的访问,请将其从团队中删除。\"],\"z8mwbl\":[\"当新实例上线时,将自动分配给此组的所有实例的最小百分比。\"],\"zBO1TV\":[[\"numOccurrences\",\"plural\",{\"one\":[\"#\",\" 次出现后\"],\"other\":[\"#\",\" 次出现后\"]}]],\"zHcXAG\":[\"将此字段留空以使执行环境全局可用。\"],\"zICM7E\":[\"在同步前丢弃本地更改\"],\"zJY4Uj\":[\"Playbook\"],\"zKJMiH\":[\"Playbook 目录\"],\"zK_63z\":[\"无效的用户名或密码。请重试。\"],\"zLsDix\":[\"LDAP 用户\"],\"zMKkOk\":[\"返回到机构\"],\"zN0nhk\":[\"提供您的 Red Hat 或 Red Hat Satellite 凭证以启用 Automation Analytics。\"],\"zQRgi-\":[\"切换通知开始\"],\"zTediT\":[\"此字段必须是数字,且值介于 \",[\"min\"],\" 和 \",[\"max\"],\" 之间\"],\"zUIPys\":[\"根据Jinja2条件将房东添加到群组中。\"],\"z_PZxu\":[\"删除工作流批准失败。\"],\"zbLCH1\":[\"清单类型\"],\"zcQj5X\":[\"首先,选择一个密钥\"],\"zdl7YZ\":[\"选择源路径\"],\"zeEQd_\":[\"6 月\"],\"zf7FzC\":[\"与 Kubernetes 或 OpenShift 进行身份验证的凭证。必须为“Kubernetes/OpenShift API Bearer Token”类型。如果留空,底层 Pod 的服务帐户会被使用。\"],\"zfZydd\":[\"问卷调查预览模态\"],\"zfsBaJ\":[\"了解更多有关 Automation Analytics 的信息\"],\"zgInnV\":[\"工作流节点查看模式\"],\"zga9sT\":[\"确定\"],\"zhPLvU\":[\"关联失败。\"],\"zhrjek\":[\"组\"],\"zi_YNm\":[\"取消 \",[\"0\"],\" 失败\"],\"zmu4-P\":[\"帐户 SID\"],\"znG7ed\":[\"选择一个 playbook\"],\"znTz5r\":[\"未找到调度。\"],\"znuW_M\":[\"如果是,则将无效条目视为致命错误,否则跳过并\\n 继续。\"],\"zq0gmb\":[\"选择周期\"],\"ztOzCj\":[\"启动时更新\"],\"ztw2L3\":[\"至少一个输入中必须有值\"],\"zvfXp0\":[\"切换通知批准\"],\"zx4BuL\":[\"周\"],\"zzDlyQ\":[\"成功\"],\"{count, plural, one {# fork} other {# forks}}\":[[\"count\",\"plural\",{\"one\":[\"#\",\" fork\"],\"other\":[\"#\",\" forks\"]}]]}")}; \ No newline at end of file diff --git a/awx/ui/src/locales/zh/messages.po b/awx/ui/src/locales/zh/messages.po index 5af76bec..c4d2027c 100644 --- a/awx/ui/src/locales/zh/messages.po +++ b/awx/ui/src/locales/zh/messages.po @@ -57,7 +57,7 @@ msgid "TACACS+" msgstr "TACACS+" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:637 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:232 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:251 msgid "Workflow timed out message body" msgstr "工作流超时信息正文" @@ -115,6 +115,10 @@ msgstr "选择您希望这个命令在内运行的执行环境。" msgid "Add a new node between these two nodes" msgstr "在这两个节点间添加新节点" +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:170 +msgid "Changed message" +msgstr "更改信息" + #: screens/Job/JobOutput/JobOutputSearch.js:120 msgid "Host Polling" msgstr "主机轮询" @@ -148,7 +152,7 @@ msgid "Maximum number of forks to allow across all jobs running concurrently on msgstr "此组上同时运行的所有作业允许的最大分叉数。\n" " 零意味着不会强制执行任何限制。" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:341 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:349 #: screens/Inventory/InventorySources/InventorySourceListItem.js:89 msgid "Failed to cancel Inventory Source Sync" msgstr "取消清单源同步失败" @@ -332,8 +336,8 @@ msgstr "要检出的分支。除了分支之外,您还可以输入标签、提 #: components/JobList/JobList.js:265 #: components/JobList/JobListItem.js:109 #: components/Lookup/ProjectLookup.js:134 -#: components/NotificationList/NotificationList.js:219 -#: components/NotificationList/NotificationListItem.js:34 +#: components/NotificationList/NotificationList.js:230 +#: components/NotificationList/NotificationListItem.js:36 #: components/PromptDetail/PromptDetail.js:125 #: components/RelatedTemplateList/RelatedTemplateList.js:200 #: components/TemplateList/TemplateList.js:219 @@ -433,7 +437,7 @@ msgstr "点击以查看作业详情" msgid "Sync Project" msgstr "同步项目" -#: components/NotificationList/NotificationList.js:194 +#: components/NotificationList/NotificationList.js:205 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:135 msgid "Grafana" msgstr "Grafana" @@ -513,7 +517,7 @@ msgstr "事件" msgid "Repeat Frequency" msgstr "重复频率" -#: screens/Inventory/shared/Inventory.helptext.js:171 +#: screens/Inventory/shared/Inventory.helptext.js:172 msgid "Variables used to configure the constructed inventory plugin. For a detailed description of how to configure this plugin, see" msgstr "用于配置构建的清单插件的变量。有关如何配置此插件的详细说明,请参阅" @@ -575,8 +579,8 @@ msgstr "容器组" msgid "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" msgstr "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" -#: components/NotificationList/NotificationList.js:220 -#: components/NotificationList/NotificationListItem.js:35 +#: components/NotificationList/NotificationList.js:231 +#: components/NotificationList/NotificationListItem.js:38 #: screens/Credential/shared/TypeInputsSubForm.js:46 #: screens/InstanceGroup/shared/ContainerGroupForm.js:79 #: screens/Instances/Shared/InstanceForm.js:95 @@ -600,7 +604,7 @@ msgid "You cannot select multiple vault credentials with the same vault ID. Doin msgstr "您不能选择具有相同 vault ID 的多个 vault 凭证。这样做会自动取消选择具有相同的 vault ID 的另一个凭证。" #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:334 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:342 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:350 #: screens/Project/ProjectDetail/ProjectDetail.js:354 msgid "Cancel Sync" msgstr "取消同步" @@ -713,8 +717,8 @@ msgstr "指标" msgid "Create new credential Type" msgstr "创建新凭证类型" -#: screens/Inventory/shared/Inventory.helptext.js:103 -#: screens/Inventory/shared/Inventory.helptext.js:118 +#: screens/Inventory/shared/Inventory.helptext.js:104 +#: screens/Inventory/shared/Inventory.helptext.js:119 msgid "If you want the Inventory Source to update on launch, click on Update on Launch, and also go to " msgstr "如果您希望清单源在启动时更新,请点击「启动时更新」,并转到 " @@ -732,7 +736,7 @@ msgid "Start Time" msgstr "开始时间" #: screens/Inventory/shared/Inventory.helptext.js:48 -#: screens/Inventory/shared/Inventory.helptext.js:184 +#: screens/Inventory/shared/Inventory.helptext.js:185 msgid "Variables must be in JSON or YAML syntax. Use the radio button to toggle between the two." msgstr "变量需要是 JSON 或 YAML 语法格式。使用单选按钮在两者之间切换。" @@ -748,7 +752,7 @@ msgstr "文件差异" msgid "Relaunch from canceled node" msgstr "从已取消的节点重新启动" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:271 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:279 msgid "Cache timeout" msgstr "缓存超时" @@ -828,7 +832,7 @@ msgstr "请输入事件发生的值。" msgid "Fuzzy search on name field." msgstr "模糊搜索名称字段。" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:106 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:107 msgid "Ansible Controller Documentation." msgstr "Ansible 控制器文档。" @@ -836,7 +840,7 @@ msgstr "Ansible 控制器文档。" msgid "The Instance Groups to which this instance belongs." msgstr "此实例所属的实例组。" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:97 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:98 msgid "You may apply a number of possible variables in the\n" " message. For more information, refer to the" msgstr "您可以在消息中应用多个可能的变量。\n" @@ -885,7 +889,7 @@ msgstr "工作流节点" msgid "Overwrite" msgstr "覆盖" -#: components/NotificationList/NotificationList.js:195 +#: components/NotificationList/NotificationList.js:206 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:136 msgid "Hipchat" msgstr "HipChat" @@ -920,7 +924,7 @@ msgstr "源控制分支" msgid "Tabs" msgstr "制表符" -#: screens/Template/Template.js:273 +#: screens/Template/Template.js:274 #: screens/Template/WorkflowJobTemplate.js:286 msgid "View Template Details" msgstr "查看模板详情" @@ -966,7 +970,7 @@ msgstr "{interval, plural, one {# 年} other {# 年}}" msgid "Inventory Source Sync" msgstr "清单源同步" -#: screens/Inventory/shared/Inventory.helptext.js:146 +#: screens/Inventory/shared/Inventory.helptext.js:147 msgid "Inventory Plugins" msgstr "清单插件." @@ -1036,7 +1040,7 @@ msgstr "1(信息)" msgid "Set the instance enabled or disabled. If disabled, jobs will not be assigned to this instance." msgstr "设置实例被启用或禁用。如果禁用,则不会将作业分配给此实例。" -#: screens/Inventory/shared/Inventory.helptext.js:105 +#: screens/Inventory/shared/Inventory.helptext.js:106 msgid "and click on Update Revision on Launch." msgstr "然后单击启动时更新修订版本。" @@ -1525,8 +1529,8 @@ msgstr "删除一个或多个作业失败。" msgid "Run Command" msgstr "运行命令" -#: screens/Inventory/shared/Inventory.helptext.js:156 -#: screens/Inventory/shared/Inventory.helptext.js:179 +#: screens/Inventory/shared/Inventory.helptext.js:157 +#: screens/Inventory/shared/Inventory.helptext.js:180 msgid "plugin configuration guide." msgstr "插件配置指南。" @@ -1637,9 +1641,9 @@ msgstr "创建新联邦库存" #: components/Lookup/OrganizationLookup.js:141 #: components/Lookup/ProjectLookup.js:129 #: components/Lookup/ProjectLookup.js:159 -#: components/NotificationList/NotificationList.js:181 -#: components/NotificationList/NotificationList.js:218 -#: components/NotificationList/NotificationListItem.js:29 +#: components/NotificationList/NotificationList.js:192 +#: components/NotificationList/NotificationList.js:229 +#: components/NotificationList/NotificationListItem.js:31 #: components/OptionsList/OptionsList.js:48 #: components/PaginatedTable/PaginatedTable.js:76 #: components/PromptDetail/PromptDetail.js:115 @@ -1753,14 +1757,14 @@ msgstr "创建新联邦库存" #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:182 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:197 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:238 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:204 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:205 #: screens/Inventory/InventorySources/InventorySourceList.js:212 #: screens/Inventory/InventorySources/InventorySourceListItem.js:60 #: screens/Inventory/shared/ConstructedInventoryForm.js:66 #: screens/Inventory/shared/FederatedInventoryForm.js:56 #: screens/Inventory/shared/InventoryForm.js:50 #: screens/Inventory/shared/InventoryGroupForm.js:33 -#: screens/Inventory/shared/InventorySourceForm.js:133 +#: screens/Inventory/shared/InventorySourceForm.js:139 #: screens/Inventory/shared/SmartInventoryForm.js:46 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:98 #: screens/ManagementJob/ManagementJobList/ManagementJobList.js:91 @@ -1883,7 +1887,7 @@ msgstr "{automatedInstancesCount} 自 {automatedInstancesSinceDateTime}" msgid "No job data available" msgstr "没有可用作业数据" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:309 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:317 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:22 msgid "Source variables" msgstr "源变量" @@ -2020,7 +2024,7 @@ msgid "Confirm" msgstr "确认" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:526 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:142 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:143 msgid "Success message body" msgstr "成功消息正文" @@ -2295,7 +2299,7 @@ msgstr "失败的主机" msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?" msgstr "其他资源目前正在使用此执行环境。确定要删除它吗?" -#: components/NotificationList/NotificationList.js:196 +#: components/NotificationList/NotificationList.js:207 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:137 msgid "IRC" msgstr "IRC" @@ -2499,7 +2503,7 @@ msgstr "启用外部日志记录" #: components/Sparkline/Sparkline.js:30 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:51 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:181 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:182 #: screens/Inventory/InventorySources/InventorySourceListItem.js:31 #: screens/Project/ProjectDetail/ProjectDetail.js:134 #: screens/Project/ProjectList/ProjectListItem.js:56 @@ -2539,7 +2543,7 @@ msgstr "单独启用日志系统跟踪事实" msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" msgstr "在创建或编辑节点时无法选择具有提示密码凭证的作业模板" -#: screens/Inventory/shared/Inventory.helptext.js:193 +#: screens/Inventory/shared/Inventory.helptext.js:194 msgid "If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on. Note: If this setting is enabled and you provided an empty list, the global instance groups will be applied." msgstr "如果启用,则该清单将阻止将任何机构实例组添加到运行相关作业模板的首选实例组列表中。注:如果启用了此设置,且提供了空列表,则会应用全局实例组。" @@ -2676,7 +2680,7 @@ msgstr "解除关联一个或多个主机失败。" #: components/Sparkline/Sparkline.js:27 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:48 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:178 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:179 #: screens/Inventory/InventorySources/InventorySourceListItem.js:28 #: screens/Project/ProjectDetail/ProjectDetail.js:131 #: screens/Project/ProjectList/ProjectListItem.js:53 @@ -2763,7 +2767,7 @@ msgstr "项正常" msgid "Icon URL" msgstr "图标 URL" -#: screens/Inventory/shared/InventorySourceForm.js:159 +#: screens/Inventory/shared/InventorySourceForm.js:165 msgid "Select the Instance Groups this inventory source sync should run on. If unset, the sync runs on the instance groups of the inventory or its organization." msgstr "选择此清单源同步应在其上运行的实例组。如果未设置,同步将在清单或其机构的实例组上运行。" @@ -2772,7 +2776,7 @@ msgid "Select the port that Receptor will listen on for incoming connections, e. msgstr "选择接收器将侦听传入连接的端口,例如27199。" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:517 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:133 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:134 msgid "Success message" msgstr "成功信息" @@ -2829,7 +2833,7 @@ msgstr "HTTP 方法" msgid "The execution environment that will be used for jobs inside of this organization. This will be used as a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." msgstr "将用于此组织内作业的执行环境。当未在项目、作业模板或工作流级别显式分配执行环境时,将用作回退。" -#: components/NotificationList/NotificationList.js:190 +#: components/NotificationList/NotificationList.js:201 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:131 msgid "Notification type" msgstr "通知类型" @@ -2863,7 +2867,7 @@ msgstr "取消链接删除" msgid "There was an error loading this content. Please reload the page." msgstr "加载此内容时出错。请重新加载页面。" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:292 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:300 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:135 msgid "Enabled Value" msgstr "启用的值" @@ -3176,7 +3180,7 @@ msgstr "< 0 >注意:如果实例由< 1 >策略规则管理,则可以将其 msgid "Timeout minutes" msgstr "超时分钟" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:353 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:361 msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" msgstr "依赖该清单源的其他资源目前正在使用此清单源。确定要删除它吗?" @@ -3331,7 +3335,7 @@ msgstr "小于或等于比较。" #: screens/Inventory/FederatedInventoryDetail/FederatedInventoryDetail.js:187 #: screens/Inventory/InventoryDetail/InventoryDetail.js:185 #: screens/Inventory/InventoryGroups/InventoryGroupsList.js:102 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:356 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:364 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:67 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:71 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:76 @@ -3354,6 +3358,7 @@ msgstr "小于或等于比较。" msgid "Delete" msgstr "删除" +#: components/NotificationList/NotificationListItem.js:105 #: components/StatusLabel/StatusLabel.js:53 #: screens/Job/JobOutput/shared/HostStatusBar.js:43 msgid "Changed" @@ -3485,7 +3490,7 @@ msgstr "GitHub Team" #: screens/Inventory/InventoryDetail/InventoryDetail.js:157 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:43 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:78 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:317 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:325 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:133 #: screens/Job/JobDetail/JobDetail.js:578 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:425 @@ -3859,7 +3864,7 @@ msgstr "默认执行环境" #: components/PromptDetail/PromptJobTemplateDetail.js:122 #: components/PromptDetail/PromptJobTemplateDetail.js:130 #: components/TemplateList/TemplateListItem.js:263 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:245 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:246 #: screens/Job/JobDetail/JobDetail.js:180 #: screens/Job/JobDetail/JobDetail.js:214 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:216 @@ -3980,7 +3985,7 @@ msgstr "拓扑视图" msgid "Syncing" msgstr "同步" -#: screens/Inventory/shared/InventorySourceForm.js:192 +#: screens/Inventory/shared/InventorySourceForm.js:198 msgid "Source details" msgstr "源详情" @@ -4072,7 +4077,7 @@ msgstr "删除凭证" #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:56 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:61 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:100 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:332 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:340 #: screens/Inventory/InventorySources/InventorySourceListItem.js:105 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:148 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:450 @@ -4154,7 +4159,7 @@ msgstr "未指定超时" msgid "On Timeout" msgstr "超时时" -#: screens/Inventory/shared/Inventory.helptext.js:196 +#: screens/Inventory/shared/Inventory.helptext.js:197 msgid "Prevent Instance Group Fallback: If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on." msgstr "防止实例组 Fallback:如果启用,则该清单将阻止将任何机构实例组添加到运行相关作业模板的首选实例组列表中。" @@ -4496,7 +4501,7 @@ msgstr "content-loading-in-progress" msgid "Mon" msgstr "周一" -#: screens/Organization/Organization.js:239 +#: screens/Organization/Organization.js:240 msgid "View Organization Details" msgstr "查看机构详情" @@ -4509,7 +4514,7 @@ msgstr "查看机构详情" #: components/JobList/JobList.js:345 #: components/LaunchButton/LaunchButton.js:248 #: components/LaunchPrompt/LaunchPrompt.js:99 -#: components/NotificationList/NotificationList.js:246 +#: components/NotificationList/NotificationList.js:259 #: components/PaginatedTable/ToolbarDeleteButton.js:148 #: components/RelatedTemplateList/RelatedTemplateList.js:254 #: components/ResourceAccessList/ResourceAccessList.js:249 @@ -4553,7 +4558,7 @@ msgstr "查看机构详情" #: screens/Inventory/InventoryHosts/InventoryHostList.js:204 #: screens/Inventory/InventoryList/InventoryList.js:300 #: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:270 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:363 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:371 #: screens/Inventory/InventorySources/InventorySourceList.js:240 #: screens/Inventory/InventorySources/InventorySourceList.js:252 #: screens/Inventory/shared/InventoryGroupsDeleteModal.js:155 @@ -4705,11 +4710,11 @@ msgid "Notification Templates" msgstr "通知模板" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:508 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:124 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:125 msgid "Start message body" msgstr "开始消息正文" -#: screens/Inventory/shared/Inventory.helptext.js:128 +#: screens/Inventory/shared/Inventory.helptext.js:129 msgid "Branch to use on inventory sync. Project default used if blank. Only allowed if project allow_override field is set to true." msgstr "用于库存同步的分支。如果为空,则使用项目默认值。仅当项目allow_override字段设置为true时才允许。" @@ -4818,7 +4823,7 @@ msgid "Failed to delete one or more user tokens." msgstr "删除一个或多个用户令牌失败。" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:553 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:169 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:188 msgid "Workflow approved message" msgstr "工作流批准的消息" @@ -4999,12 +5004,12 @@ msgstr "超时时" msgid "Create New Team" msgstr "创建新团队" -#: screens/Inventory/shared/Inventory.helptext.js:148 +#: screens/Inventory/shared/Inventory.helptext.js:149 msgid "in the documentation and the" msgstr "在文档和" #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:152 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:206 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:207 #: screens/Project/ProjectDetail/ProjectDetail.js:160 msgid "Last Job Status" msgstr "最后的作业状态" @@ -5336,7 +5341,7 @@ msgid "Preferred Theme" msgstr "首选主题" #: screens/Instances/Shared/InstanceForm.js:31 -#: screens/Inventory/shared/InventorySourceForm.js:92 +#: screens/Inventory/shared/InventorySourceForm.js:98 #: screens/Project/shared/ProjectForm.js:121 msgid "Set a value for this field" msgstr "为这个字段设置值" @@ -5469,7 +5474,7 @@ msgid "Download Bundle" msgstr "下载捆绑包" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:577 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:187 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:206 msgid "Workflow denied message" msgstr "工作流拒绝的消息" @@ -5522,7 +5527,7 @@ msgstr "节点类型" msgid "View Credential Details" msgstr "查看凭证详情" -#: components/NotificationList/NotificationList.js:177 +#: components/NotificationList/NotificationList.js:188 #: routeConfig.js:140 #: screens/Inventory/Inventories.js:119 #: screens/Inventory/InventorySource/InventorySource.js:101 @@ -5742,7 +5747,7 @@ msgstr "测试通知" #: screens/Credential/CredentialDetail/CredentialDetail.js:262 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:234 #: screens/Inventory/InventoryDetail/InventoryDetail.js:122 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:305 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:313 #: screens/Project/ProjectDetail/ProjectDetail.js:333 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:357 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:193 @@ -5791,7 +5796,7 @@ msgstr "源控制分支" #: screens/Instances/InstanceDetail/InstanceDetail.js:248 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:225 #: screens/Inventory/InventoryDetail/InventoryDetail.js:107 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:239 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:240 #: screens/Organization/OrganizationDetail/OrganizationDetail.js:116 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:418 #: util/getRelatedResourceDeleteDetails.js:282 @@ -6121,7 +6126,7 @@ msgid "View YAML examples at" msgstr "在以下位置查看YAML示例:" #: components/PromptDetail/PromptInventorySourceDetail.js:35 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:142 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:143 msgid "Overwrite local groups and hosts from remote inventory source" msgstr "从远程清单源覆盖本地组和主机" @@ -6130,7 +6135,7 @@ msgid "Resource deleted" msgstr "资源已删除" #: screens/Inventory/shared/Inventory.helptext.js:54 -#: screens/Inventory/shared/Inventory.helptext.js:187 +#: screens/Inventory/shared/Inventory.helptext.js:188 msgid "YAML:" msgstr "YAML:" @@ -6217,7 +6222,7 @@ msgid "Initiated By" msgstr "启动者" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:499 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:115 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:116 msgid "Start message" msgstr "开始消息" @@ -6281,7 +6286,7 @@ msgstr "切换实例" msgid "Back to Inventories" msgstr "返回到清单" -#: screens/Inventory/shared/Inventory.helptext.js:113 +#: screens/Inventory/shared/Inventory.helptext.js:114 msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format." msgstr "在每个 SCM 修订版更改带来的工程项目更新后, 在执行作业任务之前, 请刷新所选源的资源清单。这适用于静态内容, 例如使用 .ini 文件格式的 Ansible 资源清单。" @@ -6375,7 +6380,7 @@ msgstr "实例" msgid "Including File" msgstr "包含文件" -#: screens/Inventory/shared/Inventory.helptext.js:81 +#: screens/Inventory/shared/Inventory.helptext.js:82 msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." msgstr "如果选中,则以前存在于外部源但现在已删除的任何主机和组都将从清单中删除。不受清单源管理的主机和组将被提升到下一个手动创建的组,或者如果没有手动创建的组可将其提升到其中,它们将保留在清单的默认「all」组中。" @@ -6412,7 +6417,7 @@ msgstr "详情标签页" #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:100 #: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:72 #: screens/InstanceGroup/shared/ContainerGroupForm.js:50 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:298 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:306 #: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:39 #: screens/Inventory/shared/InventorySourceSubForms/ControllerSubForm.js:38 #: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:38 @@ -6423,7 +6428,7 @@ msgstr "详情标签页" #: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:117 #: screens/Inventory/shared/InventorySourceSubForms/TerraformSubForm.js:38 #: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:39 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:39 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:44 msgid "Credential" msgstr "凭证" @@ -6432,7 +6437,7 @@ msgid "First node" msgstr "第一个节点" #: components/PromptDetail/PromptInventorySourceDetail.js:97 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:273 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:281 msgid "{update_cache_timeout, plural, one {# second} other {# seconds}}" msgstr "{update_cache_timeout, plural, one {# 秒} other {# 秒}}" @@ -6496,7 +6501,7 @@ msgstr "查看作业设置" #: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:122 #: screens/Instances/InstanceDetail/InstanceDetail.js:349 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:96 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:329 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:337 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:145 #: screens/Project/ProjectDetail/ProjectDetail.js:340 #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:229 @@ -6550,7 +6555,7 @@ msgstr "普通用户" msgid "host-name-{0}" msgstr "host-name-{0}" -#: components/NotificationList/NotificationList.js:198 +#: components/NotificationList/NotificationList.js:209 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:139 msgid "Pagerduty" msgstr "Pagerduty" @@ -6609,7 +6614,7 @@ msgstr "新实例上线时将自动分配给此组的最小实例数。" msgid "Launch | {0}" msgstr "启动 | {0}" -#: components/NotificationList/NotificationListItem.js:79 +#: components/NotificationList/NotificationListItem.js:84 msgid "Toggle notification success" msgstr "切换通知成功" @@ -6702,7 +6707,7 @@ msgstr "启用并发作业" msgid "Smart Inventory" msgstr "智能清单" -#: components/NotificationList/NotificationList.js:200 +#: components/NotificationList/NotificationList.js:211 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:141 msgid "Slack" msgstr "Slack" @@ -6738,7 +6743,7 @@ msgstr "添加" msgid "System administrators have unrestricted access to all resources." msgstr "系统管理员对所有资源的访问权限是不受限制的。" -#: components/NotificationList/NotificationListItem.js:86 +#: components/NotificationList/NotificationListItem.js:91 msgid "Failure" msgstr "失败" @@ -6883,7 +6888,7 @@ msgstr "关注" #: components/Lookup/MultiCredentialsLookup.js:205 #: components/Lookup/OrganizationLookup.js:135 #: components/Lookup/ProjectLookup.js:149 -#: components/NotificationList/NotificationList.js:210 +#: components/NotificationList/NotificationList.js:221 #: components/RelatedTemplateList/RelatedTemplateList.js:183 #: components/Schedule/ScheduleList/ScheduleList.js:205 #: components/TemplateList/TemplateList.js:235 @@ -7095,7 +7100,7 @@ msgstr "此字段必须是数字,且值大于 {min}" msgid "All" msgstr "所有" -#: screens/Inventory/shared/Inventory.helptext.js:177 +#: screens/Inventory/shared/Inventory.helptext.js:178 msgid "constructed inventory" msgstr "已建库存" @@ -7109,7 +7114,7 @@ msgid "Confirm Delete" msgstr "确认删除" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:625 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:223 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:242 msgid "Workflow timed out message" msgstr "工作流超时信息" @@ -7205,7 +7210,7 @@ msgstr "永不" msgid "Organization Name" msgstr "机构名称" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:282 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:290 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:149 msgid "Host Filter" msgstr "主机过滤器" @@ -7257,7 +7262,7 @@ msgstr "{pluralizedItemName} 列表" msgid "Please add survey questions." msgstr "请添加问卷调查问题。" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:287 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:295 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:121 msgid "Enabled Variable" msgstr "启用的变量" @@ -7369,7 +7374,7 @@ msgstr "同步" #: components/Lookup/ApplicationLookup.js:128 #: components/Lookup/HostFilterLookup.js:439 #: components/Lookup/HostListItem.js:10 -#: components/NotificationList/NotificationList.js:186 +#: components/NotificationList/NotificationList.js:197 #: components/PromptDetail/PromptDetail.js:120 #: components/Schedule/ScheduleDetail/ScheduleDetail.js:337 #: components/Schedule/ScheduleList/ScheduleList.js:197 @@ -7404,13 +7409,13 @@ msgstr "同步" #: screens/Inventory/InventoryHosts/InventoryHostList.js:125 #: screens/Inventory/InventoryHosts/InventoryHostList.js:141 #: screens/Inventory/InventoryList/InventoryList.js:215 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:221 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:222 #: screens/Inventory/shared/ConstructedInventoryForm.js:74 #: screens/Inventory/shared/ConstructedInventoryHint.js:63 #: screens/Inventory/shared/FederatedInventoryForm.js:64 #: screens/Inventory/shared/InventoryForm.js:58 #: screens/Inventory/shared/InventoryGroupForm.js:41 -#: screens/Inventory/shared/InventorySourceForm.js:141 +#: screens/Inventory/shared/InventorySourceForm.js:147 #: screens/Inventory/shared/SmartInventoryForm.js:54 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:104 #: screens/Job/JobOutput/HostEventModal.js:118 @@ -7555,7 +7560,7 @@ msgstr "使用 GitHub Enterprise 登录" #: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130 #: screens/Inventory/shared/InventorySourceSubForms/TerraformSubForm.js:46 #: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:47 -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:47 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:52 #: screens/Inventory/shared/SmartInventoryForm.js:66 #: screens/NotificationTemplate/shared/NotificationTemplateForm.js:29 #: screens/NotificationTemplate/shared/NotificationTemplateForm.js:66 @@ -7588,7 +7593,7 @@ msgstr "使用 SAML {samlIDP} 登陆" msgid "Browse" msgstr "浏览" -#: components/NotificationList/NotificationList.js:193 +#: components/NotificationList/NotificationList.js:204 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:134 #: screens/User/shared/UserForm.js:104 #: screens/User/UserDetail/UserDetail.js:71 @@ -8011,7 +8016,7 @@ msgid "Sat" msgstr "周六" #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:46 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:176 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:177 #: screens/Inventory/InventorySources/InventorySourceListItem.js:26 #: screens/Project/ProjectDetail/ProjectDetail.js:129 #: screens/Project/ProjectList/ProjectListItem.js:51 @@ -8048,7 +8053,7 @@ msgid "Specify HTTP Headers in JSON format. Refer to\n" msgstr "以 JSON 格式指定 HTTP 标头。有关示例语法,\n" " 请参阅 Ansible Controller 文档。" -#: components/NotificationList/NotificationList.js:199 +#: components/NotificationList/NotificationList.js:210 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:140 msgid "Rocket.Chat" msgstr "Rocket.Chat" @@ -8106,7 +8111,7 @@ msgstr "将缩放设置为 100% 和中心图" msgid "Revert all to default" msgstr "全部恢复为默认值" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:255 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:256 #: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:135 msgid "Inventory file" msgstr "清单文件" @@ -8183,6 +8188,11 @@ msgstr "防止实例组 Fallback" msgid "Maximum number of forks to allow across all jobs running concurrently on this group. Zero means no limit will be enforced." msgstr "此组上同时运行的所有作业允许的最大分叉数。零意味着不会强制执行任何限制。" +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:263 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:56 +msgid "Collection" +msgstr "集合" + #: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:207 msgid "Failed to delete one or more credential types." msgstr "删除一个或多个凭证类型失败。" @@ -8197,7 +8207,7 @@ msgstr "区域" #: components/WorkflowOutputNavigation/WorkflowOutputNavigation.js:148 msgid "Workflow Jobs ({total})" -msgstr "" +msgstr "工作流任务 ({total})" #: components/Search/AdvancedSearch.js:315 msgid "Set type disabled for related search field fuzzy searches" @@ -8233,11 +8243,11 @@ msgstr "没有剩余主机" msgid "ID of the dashboard (optional)" msgstr "仪表盘 ID(可选)" -#: screens/Inventory/shared/Inventory.helptext.js:127 +#: screens/Inventory/shared/Inventory.helptext.js:128 msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'" msgstr "从给定的主机变量字典中检索启用状态。启用的变量可以使用点符号指定,例如: 'foo.bar'" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:339 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:347 #: screens/Inventory/InventorySources/InventorySourceListItem.js:88 msgid "Inventory Source Sync Error" msgstr "清单源同步错误" @@ -8264,14 +8274,14 @@ msgstr "" #: components/VerbositySelectField/VerbositySelectField.js:35 #: components/VerbositySelectField/VerbositySelectField.js:45 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:217 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:261 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:269 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:47 #: screens/Job/JobDetail/JobDetail.js:369 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:257 msgid "Verbosity" msgstr "详细程度" -#: components/NotificationList/NotificationList.js:197 +#: components/NotificationList/NotificationList.js:208 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:138 msgid "Mattermost" msgstr "Mattermost" @@ -8498,6 +8508,10 @@ msgstr "返回到工作流批准" msgid "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Controller documentation for example syntax." msgstr "使用 JSON 或 YAML 语法输入注入程序。示例语法请参阅 Ansible 控制器文档。" +#: components/NotificationList/NotificationListItem.js:112 +msgid "Toggle notification changed" +msgstr "切换通知更改" + #: components/Workflow/WorkflowLegend.js:122 #: screens/Job/JobOutput/JobOutputSearch.js:140 msgid "Warning" @@ -8566,7 +8580,7 @@ msgid "Prompt for instance groups on launch." msgstr "启动时提示输入实例组。" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:613 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:214 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:233 msgid "Workflow pending message body" msgstr "工作流待处理信息正文" @@ -8608,7 +8622,7 @@ msgstr "IRC Nick" msgid "Expires on" msgstr "过期于" -#: screens/Inventory/shared/Inventory.helptext.js:98 +#: screens/Inventory/shared/Inventory.helptext.js:99 msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." msgstr "每次使用此清单运行作业时,请在执行作业任务之前刷新选定来源的清单。" @@ -8733,7 +8747,7 @@ msgstr "为此模板启用 webhook。" msgid "On date" msgstr "于日期" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:340 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:348 #: screens/Inventory/InventorySources/InventorySourceListItem.js:90 msgid "Cancel Inventory Source Sync" msgstr "取消清单源同步" @@ -8810,7 +8824,7 @@ msgid "Greater than comparison." msgstr "大于比较。" #: components/PromptDetail/PromptInventorySourceDetail.js:40 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:148 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:149 msgid "Overwrite local variables from remote inventory source" msgstr "从远程清单源覆盖本地变量" @@ -8882,7 +8896,7 @@ msgstr "删除一个或多个用户失败。" msgid "On Success" msgstr "成功时" -#: screens/Inventory/shared/Inventory.helptext.js:192 +#: screens/Inventory/shared/Inventory.helptext.js:193 msgid "The inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." msgstr "要由此源同步的库存文件。您可以从下拉列表中进行选择,也可以在输入内容中输入文件。" @@ -8947,7 +8961,7 @@ msgstr "没有配置" msgid "Workflow Job" msgstr "工作流任务" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:82 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:83 msgid "Use custom messages to change the content of\n" " notifications sent when a job starts, succeeds, or fails. Use\n" " curly braces to access information about the job:" @@ -9151,7 +9165,7 @@ msgid "Go to previous page" msgstr "进入上一页" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:565 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:178 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:197 msgid "Workflow approved message body" msgstr "工作流批准的消息正文" @@ -9168,7 +9182,7 @@ msgid "required" msgstr "必填" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:589 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:196 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:215 msgid "Workflow denied message body" msgstr "工作流拒绝的消息正文" @@ -9270,7 +9284,7 @@ msgstr "docs.ansible.com" msgid "Edit Schedule" msgstr "编辑调度" -#: components/NotificationList/NotificationList.js:250 +#: components/NotificationList/NotificationList.js:263 msgid "Failed to toggle notification." msgstr "切换通知失败。" @@ -9359,6 +9373,10 @@ msgstr "保存" msgid "Click to create a new link to this node." msgstr "点击以创建到此节点的新链接。" +#: screens/Inventory/shared/Inventory.helptext.js:78 +msgid "Select the Ansible collection providing the inventory plugin used to sync from vCenter. The community.vmware collection is deprecated in favor of the newer vmware.vmware collection. The selection is applied via the \"plugin\" key in the source variables; when the key is absent, the default collection is used." +msgstr "选择提供用于从 vCenter 同步的清单插件的 Ansible 集合。community.vmware 集合已弃用,由更新的 vmware.vmware 集合取代。所选内容通过源变量中的 \"plugin\" 键应用;如果没有该键,则使用默认集合。" + #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:167 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:136 msgid "Operator" @@ -9476,7 +9494,7 @@ msgid "Deprovisioning" msgstr "取消置备" #: components/DetailList/LaunchedByDetail.js:27 -#: components/NotificationList/NotificationList.js:202 +#: components/NotificationList/NotificationList.js:213 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:143 msgid "Webhook" msgstr "Webhook" @@ -9517,7 +9535,7 @@ msgstr "删除凭证失败。" msgid "Private key passphrase" msgstr "私钥密码" -#: components/NotificationList/NotificationListItem.js:58 +#: components/NotificationList/NotificationListItem.js:63 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:47 #: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:53 msgid "Start" @@ -9537,7 +9555,7 @@ msgstr "必须选择一个清单" #: components/PromptDetail/PromptProjectDetail.js:100 #: components/PromptDetail/PromptWFJobTemplateDetail.js:81 #: components/Schedule/ScheduleDetail/ScheduleDetail.js:477 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:266 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:274 #: screens/Job/JobDetail/JobDetail.js:345 #: screens/Project/ProjectDetail/ProjectDetail.js:229 #: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 @@ -9591,7 +9609,7 @@ msgstr "Red Hat Insights" msgid "View GitHub Settings" msgstr "查看 GitHub 设置" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:257 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:258 msgid "/ (project root)" msgstr "/ (project root)" @@ -9620,7 +9638,7 @@ msgstr "执行 playbook 时使用的并行或同步进程数量。如果不输 msgid "View all Workflow Approvals." msgstr "查看所有工作流批准。" -#: screens/Inventory/shared/Inventory.helptext.js:92 +#: screens/Inventory/shared/Inventory.helptext.js:93 msgid "When not checked, a merge will be performed, combining local variables with those found on the external source." msgstr "未选中时,将执行合并,将局部变量与外部源上的局部变量相结合。" @@ -9714,7 +9732,7 @@ msgstr "切换工具" #: screens/Inventory/InventoryList/InventoryList.js:211 #: screens/Inventory/InventoryList/InventoryList.js:241 #: screens/Inventory/InventoryList/InventoryListItem.js:121 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:225 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:226 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:107 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:153 #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:163 @@ -9765,7 +9783,7 @@ msgid "Test External Credential" msgstr "测试外部凭据" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:601 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:205 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:224 msgid "Workflow pending message" msgstr "工作流待处理信息" @@ -9948,7 +9966,7 @@ msgstr "导航" msgid "If enabled, control nodes will peer to this instance automatically. If disabled, instance will be connected only to associated peers." msgstr "如果启用,控制节点将自动对等到此实例。如果禁用,实例将仅连接到关联的对等点。" -#: screens/Inventory/shared/Inventory.helptext.js:120 +#: screens/Inventory/shared/Inventory.helptext.js:121 msgid "and click on Update Revision on Launch" msgstr "点 Update Revision on Launch" @@ -9967,6 +9985,10 @@ msgstr "在编辑执行环境前选择一个项目。" msgid "Order" msgstr "顺序" +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:179 +msgid "Changed message body" +msgstr "更改消息正文" + #: components/Schedule/Schedule.js:65 msgid "Back to Schedules" msgstr "返回到调度" @@ -10085,7 +10107,7 @@ msgstr "创建新容器组" msgid "Bitbucket Data Center" msgstr "Bitbucket数据中心" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:367 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:375 msgid "Failed to delete inventory source {name}." msgstr "删除清单源 {name} 失败。" @@ -10151,7 +10173,7 @@ msgstr "编辑详情" msgid "Deleted" msgstr "已删除" -#: screens/Inventory/shared/Inventory.helptext.js:129 +#: screens/Inventory/shared/Inventory.helptext.js:130 msgid "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import." msgstr "除非设置了启用的变量,否则此字段会被忽略。如果启用的变量与这个值匹配,则会在导入时启用主机。" @@ -10250,11 +10272,11 @@ msgstr "模块" msgid "Confirm revert all" msgstr "确认全部恢复" -#: screens/Inventory/shared/Inventory.helptext.js:89 +#: screens/Inventory/shared/Inventory.helptext.js:90 msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source." msgstr "如果选中,子组和主机的所有变量将被删除并替换为在外部源上找到的变量。" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:350 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:358 msgid "Delete inventory source" msgstr "删除清单源" @@ -10325,7 +10347,7 @@ msgstr "作业运行所经过的时间" msgid "GitLab" msgstr "GitLab" -#: components/NotificationList/NotificationListItem.js:93 +#: components/NotificationList/NotificationListItem.js:98 msgid "Toggle notification failure" msgstr "切换通知失败" @@ -10426,8 +10448,8 @@ msgstr "此字段必须至少包含 {0} 个字符" #: components/JobList/JobListItem.js:197 #: components/PromptDetail/PromptInventorySourceDetail.js:78 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:222 -#: screens/Inventory/shared/InventorySourceForm.js:162 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:223 +#: screens/Inventory/shared/InventorySourceForm.js:168 #: screens/Job/JobDetail/JobDetail.js:180 #: screens/Job/JobDetail/JobDetail.js:332 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:93 @@ -10511,7 +10533,7 @@ msgstr "键选择" msgid "Pass extra command line changes. There are two ansible command line parameters: " msgstr "传递额外的命令行更改。有两个 ansible 命令行参数: " -#: screens/Inventory/shared/Inventory.helptext.js:84 +#: screens/Inventory/shared/Inventory.helptext.js:85 msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process." msgstr "如果未选中,在外部源上未找到的本地子主机和组将保持不受库存更新过程的影响。" @@ -10554,7 +10576,7 @@ msgid "Specify a notification color. Acceptable colors are hex\n" msgstr "指定通知颜色。可接受的颜色是十六进制\n" " 颜色代码(例如:#3af 或 #789abc)。" -#: components/NotificationList/NotificationList.js:201 +#: components/NotificationList/NotificationList.js:212 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:142 msgid "Twilio" msgstr "Twilio" @@ -10594,7 +10616,7 @@ msgid "updated" msgstr "已更新" #: screens/Inventory/AdvancedInventoryHostDetail/AdvancedInventoryHostDetail.js:50 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:320 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:328 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:135 #: screens/Project/ProjectList/ProjectListItem.js:274 #: screens/TopologyView/Tooltip.js:347 @@ -10795,7 +10817,7 @@ msgid "Successful jobs" msgstr "成功的作业" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:535 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:151 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:152 msgid "Error message" msgstr "错误消息" @@ -10924,7 +10946,7 @@ msgstr "未知的工程ID" msgid "Preconditions for running this node when there are multiple parents. Refer to the" msgstr "在有多个父对象时运行此节点的先决条件。请参阅" -#: screens/Inventory/shared/Inventory.helptext.js:140 +#: screens/Inventory/shared/Inventory.helptext.js:141 msgid "Variables used to configure the inventory source. For a detailed description of how to configure this plugin, see" msgstr "用于配置库存源的变量。有关如何配置此插件的详细说明,请参阅" @@ -10934,7 +10956,7 @@ msgstr "Google Compute Engine" #: components/Sparkline/Sparkline.js:34 #: screens/Inventory/ConstructedInventoryDetail/ConstructedInventoryDetail.js:55 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:185 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:186 #: screens/Inventory/InventorySources/InventorySourceListItem.js:35 #: screens/Project/ProjectDetail/ProjectDetail.js:138 #: screens/Project/ProjectList/ProjectListItem.js:60 @@ -10956,7 +10978,7 @@ msgstr "作业作业类型" msgid "GitHub Enterprise Organization" msgstr "GitHub Enterprise Organization" -#: screens/Inventory/shared/InventorySourceForm.js:170 +#: screens/Inventory/shared/InventorySourceForm.js:176 msgid "Choose a source" msgstr "选择一个源" @@ -10990,7 +11012,7 @@ msgstr "简单键选择" msgid "You have automated against more hosts than your subscription allows." msgstr "您已自动针对的主机数量大于订阅所允许的数量。" -#: screens/Inventory/shared/Inventory.helptext.js:130 +#: screens/Inventory/shared/Inventory.helptext.js:131 msgid "Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied." msgstr "仅导入主机名与这个正则表达式匹配的主机。该过滤器在应用任何清单插件过滤器后作为后步骤使用。" @@ -11116,7 +11138,7 @@ msgstr "LDAP" msgid "Workflow Template" msgstr "工作流模板" -#: components/NotificationList/NotificationListItem.js:40 +#: components/NotificationList/NotificationListItem.js:45 #: components/Workflow/WorkflowLegend.js:118 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:76 msgid "Approval" @@ -11278,7 +11300,7 @@ msgstr "置备失败" msgid "Whether the approval node is automatically approved or denied when the timeout expires." msgstr "超时到期时是否自动批准或拒绝批准节点。" -#: screens/Inventory/shared/Inventory.helptext.js:125 +#: screens/Inventory/shared/Inventory.helptext.js:126 msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed." msgstr "将库存同步视为最新的时间(以秒为单位)。在作业运行和回调期间,任务系统将评估最新同步的时间戳。如果它早于缓存超时,则不视为当前,并将执行新的库存同步。" @@ -11292,7 +11314,7 @@ msgstr "访问令牌过期" #: components/WorkflowOutputNavigation/WorkflowOutputNavigation.js:147 msgid "Workflow Job {currentPosition}/{total}" -msgstr "" +msgstr "工作流任务 {currentPosition}/{total}" #: components/Schedule/ScheduleDetail/FrequencyDetails.js:69 msgid "{interval, plural, one {# minute} other {# minutes}}" @@ -11436,7 +11458,7 @@ msgstr "Insights 系统 ID" msgid "Authorization Code Expiration" msgstr "授权代码过期" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:69 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:70 msgid "Customize messages…" msgstr "自定义消息…" @@ -11662,7 +11684,7 @@ msgid "{interval, plural, one {# week} other {# weeks}}" msgstr "{interval, plural, one {# 周} other {# 周}}" #: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:544 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:160 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:161 msgid "Error message body" msgstr "错误消息正文" @@ -11705,7 +11727,7 @@ msgstr "受管的节点" #: components/Lookup/MultiCredentialsLookup.js:201 #: components/Lookup/OrganizationLookup.js:131 #: components/Lookup/ProjectLookup.js:153 -#: components/NotificationList/NotificationList.js:206 +#: components/NotificationList/NotificationList.js:217 #: components/RelatedTemplateList/RelatedTemplateList.js:179 #: components/Schedule/ScheduleList/ScheduleList.js:201 #: components/TemplateList/TemplateList.js:231 @@ -11821,7 +11843,7 @@ msgstr "删除令牌时出错" msgid "Select period" msgstr "选择周期" -#: components/NotificationList/NotificationListItem.js:65 +#: components/NotificationList/NotificationListItem.js:70 msgid "Toggle notification start" msgstr "切换通知开始" @@ -11869,7 +11891,7 @@ msgid "This field must be a number and have a value between {min} and {max}" msgstr "此字段必须是数字,且值介于 {min} 和 {max} 之间" #: components/PromptDetail/PromptInventorySourceDetail.js:45 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:154 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:155 #: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:93 msgid "Update on launch" msgstr "启动时更新" @@ -11886,7 +11908,7 @@ msgstr "根据Jinja2条件将房东添加到群组中。" msgid "Copy Template" msgstr "复制模板" -#: components/NotificationList/NotificationListItem.js:51 +#: components/NotificationList/NotificationListItem.js:56 msgid "Toggle notification approvals" msgstr "切换通知批准" @@ -11914,7 +11936,7 @@ msgstr "%y 年" msgid "Week" msgstr "周" -#: components/NotificationList/NotificationListItem.js:72 +#: components/NotificationList/NotificationListItem.js:77 #: components/StatusLabel/StatusLabel.js:39 msgid "Success" msgstr "成功" diff --git a/awx/ui/src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.js b/awx/ui/src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.js index 6ec4b779..36b06a1e 100644 --- a/awx/ui/src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.js +++ b/awx/ui/src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.js @@ -31,6 +31,7 @@ import getDocsBaseUrl from 'util/getDocsBaseUrl'; import InventorySourceSyncButton from '../shared/InventorySourceSyncButton'; import useWsInventorySourcesDetails from '../shared/useWsInventorySourcesDetails'; import getHelpText from '../shared/Inventory.helptext'; +import { getVmwarePlugin } from '../shared/utils'; function InventorySourceDetail({ inventorySource }) { const { t, i18n } = useLingui(); @@ -257,6 +258,13 @@ function InventorySourceDetail({ inventorySource }) { value={source_path === '' ? t`/ (project root)` : source_path} /> ) : null} + {source === 'vmware' ? ( + + ) : null} diff --git a/awx/ui/src/screens/Inventory/shared/InventorySourceForm.js b/awx/ui/src/screens/Inventory/shared/InventorySourceForm.js index 5ed7b6f7..f6f9ea37 100644 --- a/awx/ui/src/screens/Inventory/shared/InventorySourceForm.js +++ b/awx/ui/src/screens/Inventory/shared/InventorySourceForm.js @@ -36,6 +36,11 @@ import { VMwareSubForm, VirtualizationSubForm, } from './InventorySourceSubForms'; +import { + VMWARE_DEFAULT_PLUGIN, + getVmwarePlugin, + mergeVmwarePlugin, +} from './utils'; const buildSourceChoiceOptions = (options) => { const sourceChoices = options.actions.GET.source.choices.map( @@ -61,6 +66,7 @@ const getSourceDefaults = (sourceType) => { enabled_var: '', enabled_value: '', host_filter: '', + vmware_plugin: VMWARE_DEFAULT_PLUGIN, }; const sourceSpecificDefaults = { @@ -307,6 +313,10 @@ const InventorySourceForm = ({ host_filter: source?.host_filter || '', execution_environment: source?.summary_fields?.execution_environment || null, + vmware_plugin: + source?.source === 'vmware' + ? getVmwarePlugin(source?.source_vars) + : VMWARE_DEFAULT_PLUGIN, }; const { @@ -338,7 +348,14 @@ const InventorySourceForm = ({ { - onSubmit(values); + const { vmware_plugin, ...submitValues } = values; + if (submitValues.source === 'vmware') { + submitValues.source_vars = mergeVmwarePlugin( + submitValues.source_vars, + vmware_plugin + ); + } + onSubmit(submitValues); }} > {(formik) => ( diff --git a/awx/ui/src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js b/awx/ui/src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js index 1824d02d..e2821df6 100644 --- a/awx/ui/src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js +++ b/awx/ui/src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js @@ -1,10 +1,14 @@ import React, { useCallback } from 'react'; import { useField, useFormikContext } from 'formik'; import { useLingui } from '@lingui/react/macro'; +import { FormGroup } from '@patternfly/react-core'; import { useConfig } from 'contexts/Config'; import getDocsBaseUrl from 'util/getDocsBaseUrl'; +import AnsibleSelect from 'components/AnsibleSelect'; import CredentialLookup from 'components/Lookup/CredentialLookup'; +import Popover from 'components/Popover'; import { required } from 'util/validators'; +import { VMWARE_PLUGIN_OPTIONS } from '../utils'; import { OptionsField, SourceVarsField, @@ -21,6 +25,7 @@ const VMwareSubForm = ({ autoPopulateCredential }) => { const { setFieldValue, setFieldTouched } = useFormikContext(); const [credentialField, credentialMeta, credentialHelpers] = useField('credential'); + const [pluginField, , pluginHelpers] = useField('vmware_plugin'); const config = useConfig(); const handleCredentialUpdate = useCallback( (value) => { @@ -46,6 +51,18 @@ const VMwareSubForm = ({ autoPopulateCredential }) => { autoPopulate={autoPopulateCredential} validate={required(t`Select a value for this field`)} /> + } + > + pluginHelpers.setValue(value)} + /> + diff --git a/awx/ui/src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.test.js b/awx/ui/src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.test.js index b7fb16a7..72eeeea2 100644 --- a/awx/ui/src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.test.js +++ b/awx/ui/src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.test.js @@ -18,6 +18,7 @@ const initialValues = { update_cache_timeout: 0, update_on_launch: true, verbosity: 1, + vmware_plugin: 'community.vmware.vmware_vm_inventory', }; const mockSourceOptions = { @@ -49,6 +50,9 @@ describe('', () => { const { getByText } = renderForm(); await waitFor(() => expect(CredentialsAPI.read).toHaveBeenCalled()); expect(getByText('Credential')).toBeInTheDocument(); + expect(getByText('Collection')).toBeInTheDocument(); + expect(getByText('community.vmware')).toBeInTheDocument(); + expect(getByText('vmware.vmware')).toBeInTheDocument(); expect(getByText('Verbosity')).toBeInTheDocument(); expect(getByText('Update options')).toBeInTheDocument(); expect(getByText('Cache timeout (seconds)')).toBeInTheDocument(); diff --git a/awx/ui/src/screens/Inventory/shared/utils.js b/awx/ui/src/screens/Inventory/shared/utils.js index 78e10ddc..7a980318 100644 --- a/awx/ui/src/screens/Inventory/shared/utils.js +++ b/awx/ui/src/screens/Inventory/shared/utils.js @@ -1,3 +1,5 @@ +import { isJsonString, jsonToYaml, parseVariableField } from 'util/yaml'; + const parseHostFilter = (value) => { if (value.host_filter && value.host_filter.includes('host_filter=')) { return { @@ -19,3 +21,52 @@ export function getInventoryPath(inventory) { }; return url[inventory.kind]; } + +// The vmware source supports two inventory plugins: the deprecated +// community.vmware collection (the default) and its vmware.vmware +// replacement. The choice is carried in the `plugin` key of source_vars. +export const VMWARE_DEFAULT_PLUGIN = 'community.vmware.vmware_vm_inventory'; +export const VMWARE_PLUGIN_OPTIONS = [ + { + value: VMWARE_DEFAULT_PLUGIN, + key: 'community.vmware', + label: 'community.vmware', + }, + { + value: 'vmware.vmware.vms', + key: 'vmware.vmware', + label: 'vmware.vmware', + }, +]; + +export function getVmwarePlugin(sourceVars) { + let plugin; + try { + ({ plugin } = parseVariableField(sourceVars || '---')); + } catch (error) { + return VMWARE_DEFAULT_PLUGIN; + } + return VMWARE_PLUGIN_OPTIONS.some(({ value }) => value === plugin) + ? plugin + : VMWARE_DEFAULT_PLUGIN; +} + +export function mergeVmwarePlugin(sourceVars, plugin) { + let parsed; + try { + parsed = parseVariableField(sourceVars || '---'); + } catch (error) { + // let the API report the unparseable source_vars rather than clobber them + return sourceVars; + } + if ( + parsed.plugin === plugin || + (plugin === VMWARE_DEFAULT_PLUGIN && parsed.plugin === undefined) + ) { + return sourceVars; + } + const merged = { ...parsed, plugin }; + return isJsonString(sourceVars) + ? JSON.stringify(merged, null, 2) + : jsonToYaml(JSON.stringify(merged)); +} diff --git a/awx/ui/src/screens/Inventory/shared/utils.test.js b/awx/ui/src/screens/Inventory/shared/utils.test.js index ccbf44af..8fa6bca9 100644 --- a/awx/ui/src/screens/Inventory/shared/utils.test.js +++ b/awx/ui/src/screens/Inventory/shared/utils.test.js @@ -1,4 +1,9 @@ -import parseHostFilter, { getInventoryPath } from './utils'; +import parseHostFilter, { + getInventoryPath, + getVmwarePlugin, + mergeVmwarePlugin, + VMWARE_DEFAULT_PLUGIN, +} from './utils'; describe('parseHostFilter', () => { test('parse host filter', () => { @@ -37,3 +42,59 @@ describe('getInventoryPath', () => { ); }); }); + +describe('getVmwarePlugin', () => { + test('defaults to community.vmware when no plugin key is set', () => { + expect(getVmwarePlugin('---\nhostnames:\n - config.name')).toEqual( + VMWARE_DEFAULT_PLUGIN + ); + expect(getVmwarePlugin('')).toEqual(VMWARE_DEFAULT_PLUGIN); + expect(getVmwarePlugin(undefined)).toEqual(VMWARE_DEFAULT_PLUGIN); + }); + test('returns supported plugin values', () => { + expect(getVmwarePlugin('plugin: vmware.vmware.vms')).toEqual( + 'vmware.vmware.vms' + ); + expect( + getVmwarePlugin('plugin: community.vmware.vmware_vm_inventory') + ).toEqual(VMWARE_DEFAULT_PLUGIN); + }); + test('falls back to the default for unsupported or unparseable values', () => { + expect(getVmwarePlugin('plugin: some.other.plugin')).toEqual( + VMWARE_DEFAULT_PLUGIN + ); + expect(getVmwarePlugin('this: is: not: yaml')).toEqual( + VMWARE_DEFAULT_PLUGIN + ); + }); +}); + +describe('mergeVmwarePlugin', () => { + test('leaves source vars untouched when default is selected and no plugin set', () => { + const vars = '---\nhostnames:\n - config.name'; + expect(mergeVmwarePlugin(vars, VMWARE_DEFAULT_PLUGIN)).toEqual(vars); + }); + test('leaves source vars untouched when plugin already matches', () => { + const vars = '# a comment\nplugin: vmware.vmware.vms'; + expect(mergeVmwarePlugin(vars, 'vmware.vmware.vms')).toEqual(vars); + }); + test('writes the plugin key when the alternate collection is selected', () => { + expect( + mergeVmwarePlugin('---\nhostnames:\n - config.name', 'vmware.vmware.vms') + ).toEqual('hostnames:\n - config.name\nplugin: vmware.vmware.vms\n'); + }); + test('overrides an existing plugin key when switching back to the default', () => { + expect( + mergeVmwarePlugin('plugin: vmware.vmware.vms', VMWARE_DEFAULT_PLUGIN) + ).toEqual(`plugin: ${VMWARE_DEFAULT_PLUGIN}\n`); + }); + test('preserves JSON formatting for JSON source vars', () => { + expect(mergeVmwarePlugin('{"foo": "bar"}', 'vmware.vmware.vms')).toEqual( + JSON.stringify({ foo: 'bar', plugin: 'vmware.vmware.vms' }, null, 2) + ); + }); + test('returns unparseable source vars unchanged', () => { + const vars = 'this: is: not: yaml'; + expect(mergeVmwarePlugin(vars, 'vmware.vmware.vms')).toEqual(vars); + }); +}); diff --git a/docs/docsite/rst/userguide/overview.rst b/docs/docsite/rst/userguide/overview.rst index eae06a35..50c354ec 100644 --- a/docs/docsite/rst/userguide/overview.rst +++ b/docs/docsite/rst/userguide/overview.rst @@ -279,7 +279,7 @@ Updated Ascender to use the following inventory plugins from upstream collection - theforeman.foreman.foreman - openstack.cloud.openstack - ovirt.ovirt.ovirt -- awx.awx.controller +- ctrliq.ascender.controller Secret Management System