1<?php 2/** 3 * English language file for the config of the phpipam plugin 4 * https://www.dokuwiki.org/devel:configuration#label_in_configuration_manager 5 * https://phpipam.net/api/phpipam-api-clients/ 6 * 7 * note: I had a blank page in the "Configuration Settings/Manager" 8 * i.e. ?do=admin&page=config 9 * After some tries, the problem seems to be the use of many "_" 10 * i.e. xml_tag_o_ul xml_tag_o_tr xml_tag_dl xml_dir_o_en 11 * Same problem with the use of "-" as seen in another plugin. 12 * i.e. xml_tag_o_ul xml_tag_o_tr xml_tag_dl xml_dir_o_en 13 * Finally, the culpirits appear to be options localised strings! 14 * https://www.dokuwiki.org/devel:configuration#parameters 15 */ 16 17$phpipam = "<i>{php}IPAM</i>" ; 18 19// PHPIPAM REST API 20$not_enc = "<br /><small>Not used for encrypted requests.</small>" ; 21$lang['api_url'] = "URL of $phpipam API server.<br /><small>E.g. <samp>http://somehost/phpipam/api/</samp></small>" ; 22$lang['api_app'] = "Application Identifier for $phpipam API.<br /><small>This is set under Administration / API</small>" ; 23$lang['api_key'] = "Application Code for $phpipam API<br /><small>This is generated when security is set to <q>crypt</q>: this will be used to encrypt requests (leave blank when security is set to something else —<q>ssl</q> or <q>none</q>)</small>" ; 24$lang['api_usr'] = "Username of some $phpipam account to use.<br /><small>This is set under Administration / Users</small>$not_enc" ; 25$lang['api_pwd'] = "Password of the $phpipam account to use.$not_enc" ; 26$lang['api_res'] = "Result format type for raw display <br />xml = eXtensible Markup Language <br />json = Javascript Structured Object Notation <br />array = PHP native array <br />object = PHP native object" ; 27$lang['api_taf'] = "Save access token in file, otherwise request it before each effective query.$not_enc" ; 28 29// Output Presentation Options : PHPIPAM 30$no_nest = "<br /><small>From v1.3, be sure the API don't nest custom fields.</small>" ; 31$c_field = "Custom field holdaing link on " ; 32$e_field = "Coma separed extra fields to show for "; 33$lang['opo_cf1'] = "$c_field addresses$no_nest" ; 34$lang['opo_cf2'] = "$c_field hostnames$no_nest" ; 35$lang['opo_cfd'] = "$c_field devices$no_nest" ; 36$lang['opo_efa'] = "$e_field addresses$no_nest" ; 37$lang['opo_efd'] = "$e_field devices$no_nest" ; 38$lang['opo_efs'] = "$e_field networks$no_nest" ; 39$lang['opo_efl'] = "$e_field locations$no_nest" ; 40$lang['opo_efv'] = "$e_field VLANs$no_nest" ; 41$lang['opo_efr'] = "$e_field VRFs$no_nest" ; 42$lang['opo_ef2'] = "$e_field l2 domains$no_nest" ; 43$lang['opo_l10'] = "Output (labels/headers) language" ; 44$lang['opo_l10_o_en'] = "English" ; 45$lang['opo_l10_o_fr'] = "Français" ; 46$lang['opo_mdn'] = "Main domain name.<br /><small>(leave blank if you don't want to strip it from hostnames)</small>" ; 47$lang['opo_url'] = "URL of $phpipam web base.<br /><small>E.g. <samp>http://somehost/phpipam/</samp><br />(leave blank if you don't want to link to subnets page)</small>" ; 48 49// Output Presentation Options : XHTML+CSS 50$lang['opo_dat'] = "Show objects title" ; //= Description field As Title 51$lang['opo_dsc'] = "Display type for objects presentation" ; //= DeSCription 52$lang['opo_dsc_o_ul'] = "bullet list" ; # li ul ol enum item list listo liste items itemise itemize enumerate enumeration 53$lang['opo_dsc_o_tr'] = "grid table" ; # td th tr grid array table grille tabelo tableau 54$lang['opo_dsc_o_dl'] = "definition list" ; # dd dt dl vortaro definition dictionary dictionnaire 55$lang['opo_dsc_o_pre'] = "no formatting" ; # pre raw txt asis code flat text as-is texte texto noformat no-format unformated non-formate preformated sans-format 56$lang['opo_dsc_o_p'] = "paragraphs..." ; # 57$lang['opo_eca'] = "Automatically add colors<br /><small>(avoid if you want to use a custom CSS)</small>" ; //= Extra Colors Auto 58$lang['opo_lst'] = "Display type for addresses/networks list" ; //= LiSTs 59$lang['opo_lst_o_ul'] = "bullet list" ; # li ul ol enum item list listo liste items itemise itemize enumerate enumeration 60$lang['opo_lst_o_tr'] = "grid table" ; # td th tr grid array table grille tabelo tableau 61$lang['opo_lst_o_dl'] = "definition list" ; # dd dt dl vortaro definition dictionary dictionnaire 62$lang['opo_lst_o_p'] = "paragraphs..." ; # 63 64// ex: se ai et ts=4 st=4 bf : 65// vi: se ai et ts=4 st=4 bf : 66// vim: set ai et ts=4 st=4 bf sts=4 cin ff=unix fenc=utf-8 : enc=utf-8 67// atom:set useSoftTabs tabLength=4 lineending=lf encoding=utf-8 68// -*- Mode: tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- 69?> 70