├── .gitignore ├── .readthedocs.yaml ├── .tx └── config ├── AUTHORS.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── docker-compose.yml ├── image ├── ConfigGenerale.png ├── CycleVieChange.png ├── CycleVieProbleme.png ├── CycleVieTicket-postonly.png ├── CycleVieTicket.png ├── GLPI - accueil.png ├── GLPI-Interface personnalisee.png ├── ItemUsed.png ├── ListeIntitules.png ├── NiveauSla.png ├── Rapport-reseau.png ├── actionKbd.png ├── actionMozilla.png ├── actionS42.png ├── ad_ldap_group.png ├── add.png ├── addUser.png ├── addUserAll.png ├── addUserExt.png ├── addUserLdap.png ├── add_dropdown.png ├── addcriteria.png ├── admin.png ├── aide.png ├── annuaireLdap.png ├── assistance.png ├── assistancePO.png ├── associations.png ├── associationsPO.png ├── authConfig.png ├── bookmark.png ├── cartridge.png ├── categorieTicket.png ├── changements.png ├── checkVersion.png ├── complexe_networkport.png ├── complexe_networkport_1.png ├── config.png ├── configAssistance.png ├── configMatrice.png ├── configparc.png ├── configpc.png ├── configtransfert.png ├── configurationNotification.png ├── connexion_computer.png ├── connexion_monitor.png ├── consumable.png ├── contract.png ├── cout.png ├── critereKbd.png ├── critereMozilla.png ├── critereS42.png ├── delete.png ├── dico.png ├── document_item.png ├── droitHelpdeskPostonly.png ├── fournisseur.png ├── gestion.png ├── importrule.png ├── interface.png ├── interfaceSimplifiee.png ├── interfaceStandard.png ├── intitules.png ├── itemComponent.png ├── itemGroup.png ├── item_debug.png ├── item_notes.png ├── item_reservations.png ├── journaux.png ├── legendedroits.png ├── listeComposants.png ├── listeTags.png ├── mailqueue.png ├── maintenance.png ├── matricepriorite.png ├── menu_add.png ├── menu_addtemplate.png ├── menu_showall.png ├── moins.png ├── notifGroupe.png ├── options_search.png ├── outils.png ├── outilsPO.png ├── parc.png ├── personnalisation.png ├── playrule.png ├── pref-assistance.png ├── pref-cle.png ├── pref-duedate.png ├── priseReseau.png ├── problemeTicket.png ├── probleme_computer.png ├── problemes.png ├── projets.png ├── quicksearch.png ├── regles.png ├── replicat.png ├── reservation-3.png ├── reservation-search.png ├── resultatMozilla.png ├── resumeConsumable.png ├── resumeConsumableExample.png ├── resumeLicence.png ├── searchexample.png ├── stats_item.png ├── suivisTaches.png ├── systemInfo.png ├── systemMaintenance.png ├── systemMdp.png ├── systemProxy.png ├── sytemConfig.png ├── tabChange.png ├── tabElements.png ├── tabElementsGestion.png ├── tabStatistique.png ├── tabTicket.png ├── tache.png ├── testrule.png ├── ticket_computer.png ├── tickets.png ├── traduction.png ├── validations.png └── visibilite.png ├── make.bat ├── requirements.txt └── source ├── _static ├── css │ └── custom.css └── images │ └── glpi.png ├── advanced ├── cache.rst ├── index.rst ├── override-locales.rst └── status.rst ├── cli.rst ├── conf.py ├── first-steps ├── access-glpi.rst ├── conclusion.rst ├── discovery.rst ├── general.rst ├── images │ ├── change_prefs_button.png │ ├── fuzzyglpi.png │ ├── main-ui.png │ ├── save_search.png │ ├── saved_search_alert.png │ ├── saved_search_nonotif.png │ ├── saved_searches.png │ ├── search_example.png │ ├── search_quick.png │ ├── security-messages.png │ ├── simplified-interface.png │ ├── standard-interface.png │ ├── userprefs-custom.png │ └── userprefs-main.png ├── index.rst ├── interfaces.rst ├── manage-your-password.rst ├── navigation-modules.rst ├── preferences.rst ├── saved-searches.rst ├── search.rst └── view.rst ├── glossary.rst ├── index.rst ├── locale ├── de ├── de_DE │ └── LC_MESSAGES │ │ ├── advanced │ │ ├── cache.po │ │ ├── index.po │ │ └── status.po │ │ ├── cli.po │ │ ├── first-steps │ │ ├── access-glpi.po │ │ ├── conclusion.po │ │ ├── discovery.po │ │ ├── general.po │ │ ├── index.po │ │ ├── interfaces.po │ │ ├── manage-your-password.po │ │ ├── navigation-modules.po │ │ ├── preferences.po │ │ ├── saved-searches.po │ │ ├── search.po │ │ └── view.po │ │ ├── glossary.po │ │ ├── index.po │ │ └── modules │ │ ├── administration │ │ ├── dictionnaries.po │ │ ├── entities.po │ │ ├── groups.po │ │ ├── index.po │ │ ├── logs.po │ │ ├── mailqueue.po │ │ ├── profiles │ │ │ ├── administrationtab.po │ │ │ ├── assistancetab.po │ │ │ ├── configurationtab.po │ │ │ ├── profiles.po │ │ │ └── toolstab.po │ │ ├── rules │ │ │ ├── inventorytools.po │ │ │ ├── rulesmanagement.po │ │ │ ├── ticketbusinessrules.po │ │ │ └── userauthorizations.po │ │ └── users │ │ │ ├── users.po │ │ │ └── usersimport.po │ │ ├── assets │ │ ├── cartridges.po │ │ ├── computers.po │ │ ├── consumables.po │ │ ├── displays.po │ │ ├── global.po │ │ ├── index.po │ │ ├── network-equipments.po │ │ ├── peripherals.po │ │ ├── phones.po │ │ ├── printers.po │ │ ├── softwares.po │ │ └── tabs │ │ │ ├── antivirus.po │ │ │ ├── components.po │ │ │ ├── connexions.po │ │ │ ├── links.po │ │ │ ├── network-ports.po │ │ │ ├── os.po │ │ │ ├── softwares.po │ │ │ ├── virtualization.po │ │ │ └── volumes.po │ │ ├── assistance │ │ ├── actors.po │ │ ├── categories.po │ │ ├── changes.po │ │ ├── index.po │ │ ├── lifecyclematrix.po │ │ ├── planning.po │ │ ├── prioritymatrix.po │ │ ├── problems.po │ │ ├── statistics.po │ │ ├── tickets.po │ │ └── tickets │ │ │ ├── recurrentticket.po │ │ │ ├── ticketadvanced.po │ │ │ ├── ticketlifecycle.po │ │ │ ├── ticketmanagement.po │ │ │ └── ticketopening.po │ │ ├── configuration │ │ ├── authentication │ │ │ ├── configuration.po │ │ │ ├── imap.po │ │ │ ├── index.po │ │ │ ├── ldap.po │ │ │ └── other.po │ │ ├── collectors.po │ │ ├── components.po │ │ ├── crontasks.po │ │ ├── dropdowns │ │ │ ├── assistance.po │ │ │ ├── calendar.po │ │ │ ├── general.po │ │ │ ├── index.po │ │ │ ├── internet.po │ │ │ ├── others.po │ │ │ └── tabs │ │ │ │ └── translation.po │ │ ├── external_links.po │ │ ├── fields-unicity.po │ │ ├── general │ │ │ ├── api.po │ │ │ ├── assets.po │ │ │ ├── assistance.po │ │ │ ├── default_values.po │ │ │ ├── general_configuration.po │ │ │ ├── glpi_network.po │ │ │ ├── impact_analysis.po │ │ │ ├── index.po │ │ │ ├── logs_purge.po │ │ │ ├── management.po │ │ │ ├── performances.po │ │ │ ├── security.po │ │ │ ├── sql_replicas.po │ │ │ └── system.po │ │ ├── index.po │ │ ├── notifications │ │ │ ├── alarm_options.po │ │ │ ├── definitions.po │ │ │ ├── email_notifications.po │ │ │ ├── index.po │ │ │ ├── template_example.po │ │ │ └── templates.po │ │ ├── plugins.po │ │ └── service_levels.po │ │ ├── index.po │ │ ├── management │ │ ├── budgets.po │ │ ├── certificates.po │ │ ├── clusters.po │ │ ├── contacts.po │ │ ├── contract.po │ │ ├── data-centers.po │ │ ├── documents.po │ │ ├── domains.po │ │ ├── index.po │ │ ├── licenses.po │ │ ├── lines.po │ │ └── suppliers.po │ │ ├── overview │ │ ├── actions.po │ │ ├── index.po │ │ ├── kanban.po │ │ ├── status.po │ │ └── templates.po │ │ ├── tabs │ │ ├── all.po │ │ ├── changes.po │ │ ├── contacts.po │ │ ├── contracts.po │ │ ├── debug.po │ │ ├── documents.po │ │ ├── elements.po │ │ ├── external-links.po │ │ ├── historical.po │ │ ├── knowledgebase.po │ │ ├── management.po │ │ ├── notes.po │ │ ├── problems.po │ │ ├── suppliers.po │ │ ├── templates.po │ │ └── tickets.po │ │ └── tools │ │ ├── index.po │ │ ├── knowledgebase.po │ │ ├── projects.po │ │ ├── reminders.po │ │ ├── reports.po │ │ ├── reservations.po │ │ └── rssfeed.po ├── en ├── en_GB │ └── LC_MESSAGES │ │ ├── advanced │ │ ├── cache.po │ │ ├── index.po │ │ └── status.po │ │ ├── cli.po │ │ ├── first-steps │ │ ├── access-glpi.po │ │ ├── conclusion.po │ │ ├── discovery.po │ │ ├── general.po │ │ ├── index.po │ │ ├── interfaces.po │ │ ├── manage-your-password.po │ │ ├── navigation-modules.po │ │ ├── preferences.po │ │ ├── saved-searches.po │ │ ├── search.po │ │ └── view.po │ │ ├── glossary.po │ │ ├── index.po │ │ └── modules │ │ ├── administration │ │ ├── dictionnaries.po │ │ ├── entities.po │ │ ├── groups.po │ │ ├── index.po │ │ ├── logs.po │ │ ├── mailqueue.po │ │ ├── profiles │ │ │ ├── administrationtab.po │ │ │ ├── assistancetab.po │ │ │ ├── configurationtab.po │ │ │ ├── profiles.po │ │ │ └── toolstab.po │ │ ├── rules │ │ │ ├── inventorytools.po │ │ │ ├── rulesmanagement.po │ │ │ ├── ticketbusinessrules.po │ │ │ └── userauthorizations.po │ │ └── users │ │ │ ├── users.po │ │ │ └── usersimport.po │ │ ├── assets │ │ ├── cartridges.po │ │ ├── computers.po │ │ ├── consumables.po │ │ ├── displays.po │ │ ├── global.po │ │ ├── index.po │ │ ├── network-equipments.po │ │ ├── peripherals.po │ │ ├── phones.po │ │ ├── printers.po │ │ ├── softwares.po │ │ └── tabs │ │ │ ├── antivirus.po │ │ │ ├── components.po │ │ │ ├── connexions.po │ │ │ ├── links.po │ │ │ ├── network-ports.po │ │ │ ├── os.po │ │ │ ├── softwares.po │ │ │ ├── virtualization.po │ │ │ └── volumes.po │ │ ├── assistance │ │ ├── actors.po │ │ ├── categories.po │ │ ├── changes.po │ │ ├── index.po │ │ ├── lifecyclematrix.po │ │ ├── planning.po │ │ ├── prioritymatrix.po │ │ ├── problems.po │ │ ├── statistics.po │ │ ├── tickets.po │ │ └── tickets │ │ │ ├── recurrentticket.po │ │ │ ├── ticketadvanced.po │ │ │ ├── ticketlifecycle.po │ │ │ ├── ticketmanagement.po │ │ │ └── ticketopening.po │ │ ├── configuration │ │ ├── authentication │ │ │ ├── configuration.po │ │ │ ├── imap.po │ │ │ ├── index.po │ │ │ ├── ldap.po │ │ │ └── other.po │ │ ├── collectors.po │ │ ├── components.po │ │ ├── crontasks.po │ │ ├── dropdowns │ │ │ ├── assistance.po │ │ │ ├── calendar.po │ │ │ ├── general.po │ │ │ ├── index.po │ │ │ ├── internet.po │ │ │ ├── others.po │ │ │ └── tabs │ │ │ │ └── translation.po │ │ ├── external_links.po │ │ ├── fields-unicity.po │ │ ├── general │ │ │ ├── api.po │ │ │ ├── assets.po │ │ │ ├── assistance.po │ │ │ ├── default_values.po │ │ │ ├── general_configuration.po │ │ │ ├── glpi_network.po │ │ │ ├── impact_analysis.po │ │ │ ├── index.po │ │ │ ├── logs_purge.po │ │ │ ├── management.po │ │ │ ├── performances.po │ │ │ ├── security.po │ │ │ ├── sql_replicas.po │ │ │ └── system.po │ │ ├── index.po │ │ ├── notifications │ │ │ ├── alarm_options.po │ │ │ ├── definitions.po │ │ │ ├── email_notifications.po │ │ │ ├── index.po │ │ │ ├── template_example.po │ │ │ └── templates.po │ │ ├── plugins.po │ │ └── service_levels.po │ │ ├── index.po │ │ ├── management │ │ ├── budgets.po │ │ ├── certificates.po │ │ ├── clusters.po │ │ ├── contacts.po │ │ ├── contract.po │ │ ├── data-centers.po │ │ ├── documents.po │ │ ├── domains.po │ │ ├── index.po │ │ ├── licenses.po │ │ ├── lines.po │ │ └── suppliers.po │ │ ├── overview │ │ ├── actions.po │ │ ├── index.po │ │ ├── kanban.po │ │ ├── status.po │ │ └── templates.po │ │ ├── tabs │ │ ├── all.po │ │ ├── changes.po │ │ ├── contacts.po │ │ ├── contracts.po │ │ ├── debug.po │ │ ├── documents.po │ │ ├── elements.po │ │ ├── external-links.po │ │ ├── historical.po │ │ ├── knowledgebase.po │ │ ├── management.po │ │ ├── notes.po │ │ ├── problems.po │ │ ├── suppliers.po │ │ ├── templates.po │ │ └── tickets.po │ │ └── tools │ │ ├── index.po │ │ ├── knowledgebase.po │ │ ├── projects.po │ │ ├── reminders.po │ │ ├── reports.po │ │ ├── reservations.po │ │ └── rssfeed.po ├── en_US │ └── LC_MESSAGES │ │ ├── advanced │ │ ├── cache.po │ │ ├── index.po │ │ └── status.po │ │ ├── cli.po │ │ ├── first-steps │ │ ├── access-glpi.po │ │ ├── conclusion.po │ │ ├── discovery.po │ │ ├── general.po │ │ ├── index.po │ │ ├── interfaces.po │ │ ├── manage-your-password.po │ │ ├── navigation-modules.po │ │ ├── preferences.po │ │ ├── saved-searches.po │ │ ├── search.po │ │ └── view.po │ │ ├── glossary.po │ │ ├── index.po │ │ └── modules │ │ ├── administration │ │ ├── dictionnaries.po │ │ ├── entities.po │ │ ├── groups.po │ │ ├── index.po │ │ ├── logs.po │ │ ├── mailqueue.po │ │ ├── profiles │ │ │ ├── administrationtab.po │ │ │ ├── assistancetab.po │ │ │ ├── configurationtab.po │ │ │ ├── profiles.po │ │ │ └── toolstab.po │ │ ├── rules │ │ │ ├── inventorytools.po │ │ │ ├── rulesmanagement.po │ │ │ ├── ticketbusinessrules.po │ │ │ └── userauthorizations.po │ │ └── users │ │ │ ├── users.po │ │ │ └── usersimport.po │ │ ├── assets │ │ ├── cartridges.po │ │ ├── computers.po │ │ ├── consumables.po │ │ ├── displays.po │ │ ├── global.po │ │ ├── index.po │ │ ├── network-equipments.po │ │ ├── peripherals.po │ │ ├── phones.po │ │ ├── printers.po │ │ ├── softwares.po │ │ └── tabs │ │ │ ├── antivirus.po │ │ │ ├── components.po │ │ │ ├── connexions.po │ │ │ ├── links.po │ │ │ ├── network-ports.po │ │ │ ├── os.po │ │ │ ├── softwares.po │ │ │ ├── virtualization.po │ │ │ └── volumes.po │ │ ├── assistance │ │ ├── actors.po │ │ ├── categories.po │ │ ├── changes.po │ │ ├── index.po │ │ ├── lifecyclematrix.po │ │ ├── planning.po │ │ ├── prioritymatrix.po │ │ ├── problems.po │ │ ├── statistics.po │ │ ├── tickets.po │ │ └── tickets │ │ │ ├── recurrentticket.po │ │ │ ├── ticketadvanced.po │ │ │ ├── ticketlifecycle.po │ │ │ ├── ticketmanagement.po │ │ │ └── ticketopening.po │ │ ├── configuration │ │ ├── authentication │ │ │ ├── configuration.po │ │ │ ├── imap.po │ │ │ ├── index.po │ │ │ ├── ldap.po │ │ │ └── other.po │ │ ├── collectors.po │ │ ├── components.po │ │ ├── crontasks.po │ │ ├── dropdowns │ │ │ ├── assistance.po │ │ │ ├── calendar.po │ │ │ ├── general.po │ │ │ ├── index.po │ │ │ ├── internet.po │ │ │ ├── others.po │ │ │ └── tabs │ │ │ │ └── translation.po │ │ ├── external_links.po │ │ ├── fields-unicity.po │ │ ├── general │ │ │ ├── api.po │ │ │ ├── assets.po │ │ │ ├── assistance.po │ │ │ ├── default_values.po │ │ │ ├── general_configuration.po │ │ │ ├── glpi_network.po │ │ │ ├── impact_analysis.po │ │ │ ├── index.po │ │ │ ├── logs_purge.po │ │ │ ├── management.po │ │ │ ├── performances.po │ │ │ ├── security.po │ │ │ ├── sql_replicas.po │ │ │ └── system.po │ │ ├── index.po │ │ ├── notifications │ │ │ ├── alarm_options.po │ │ │ ├── definitions.po │ │ │ ├── email_notifications.po │ │ │ ├── index.po │ │ │ ├── template_example.po │ │ │ └── templates.po │ │ ├── plugins.po │ │ └── service_levels.po │ │ ├── index.po │ │ ├── management │ │ ├── budgets.po │ │ ├── certificates.po │ │ ├── clusters.po │ │ ├── contacts.po │ │ ├── contract.po │ │ ├── data-centers.po │ │ ├── documents.po │ │ ├── domains.po │ │ ├── index.po │ │ ├── licenses.po │ │ ├── lines.po │ │ └── suppliers.po │ │ ├── overview │ │ ├── actions.po │ │ ├── index.po │ │ ├── kanban.po │ │ ├── status.po │ │ └── templates.po │ │ ├── tabs │ │ ├── all.po │ │ ├── changes.po │ │ ├── contacts.po │ │ ├── contracts.po │ │ ├── debug.po │ │ ├── documents.po │ │ ├── elements.po │ │ ├── external-links.po │ │ ├── historical.po │ │ ├── knowledgebase.po │ │ ├── management.po │ │ ├── notes.po │ │ ├── problems.po │ │ ├── suppliers.po │ │ ├── templates.po │ │ └── tickets.po │ │ └── tools │ │ ├── index.po │ │ ├── knowledgebase.po │ │ ├── projects.po │ │ ├── reminders.po │ │ ├── reports.po │ │ ├── reservations.po │ │ └── rssfeed.po ├── es_419 │ └── LC_MESSAGES │ │ ├── advanced │ │ ├── cache.po │ │ ├── index.po │ │ └── status.po │ │ ├── cli.po │ │ ├── first-steps │ │ ├── access-glpi.po │ │ ├── conclusion.po │ │ ├── discovery.po │ │ ├── general.po │ │ ├── index.po │ │ ├── interfaces.po │ │ ├── manage-your-password.po │ │ ├── navigation-modules.po │ │ ├── preferences.po │ │ ├── saved-searches.po │ │ ├── search.po │ │ └── view.po │ │ ├── glossary.po │ │ ├── index.po │ │ └── modules │ │ ├── administration │ │ ├── dictionnaries.po │ │ ├── entities.po │ │ ├── groups.po │ │ ├── index.po │ │ ├── logs.po │ │ ├── mailqueue.po │ │ ├── profiles │ │ │ ├── administrationtab.po │ │ │ ├── assistancetab.po │ │ │ ├── configurationtab.po │ │ │ ├── profiles.po │ │ │ └── toolstab.po │ │ ├── rules │ │ │ ├── inventorytools.po │ │ │ ├── rulesmanagement.po │ │ │ ├── ticketbusinessrules.po │ │ │ └── userauthorizations.po │ │ └── users │ │ │ ├── users.po │ │ │ └── usersimport.po │ │ ├── assets │ │ ├── cartridges.po │ │ ├── computers.po │ │ ├── consumables.po │ │ ├── displays.po │ │ ├── global.po │ │ ├── index.po │ │ ├── network-equipments.po │ │ ├── peripherals.po │ │ ├── phones.po │ │ ├── printers.po │ │ ├── softwares.po │ │ └── tabs │ │ │ ├── antivirus.po │ │ │ ├── components.po │ │ │ ├── connexions.po │ │ │ ├── links.po │ │ │ ├── network-ports.po │ │ │ ├── os.po │ │ │ ├── softwares.po │ │ │ ├── virtualization.po │ │ │ └── volumes.po │ │ ├── assistance │ │ ├── actors.po │ │ ├── categories.po │ │ ├── changes.po │ │ ├── index.po │ │ ├── lifecyclematrix.po │ │ ├── planning.po │ │ ├── prioritymatrix.po │ │ ├── problems.po │ │ ├── statistics.po │ │ ├── tickets.po │ │ └── tickets │ │ │ ├── recurrentticket.po │ │ │ ├── ticketadvanced.po │ │ │ ├── ticketlifecycle.po │ │ │ ├── ticketmanagement.po │ │ │ └── ticketopening.po │ │ ├── configuration │ │ ├── authentication │ │ │ ├── configuration.po │ │ │ ├── imap.po │ │ │ ├── index.po │ │ │ ├── ldap.po │ │ │ └── other.po │ │ ├── collectors.po │ │ ├── components.po │ │ ├── crontasks.po │ │ ├── dropdowns │ │ │ ├── assistance.po │ │ │ ├── calendar.po │ │ │ ├── general.po │ │ │ ├── index.po │ │ │ ├── internet.po │ │ │ ├── others.po │ │ │ └── tabs │ │ │ │ └── translation.po │ │ ├── external_links.po │ │ ├── fields-unicity.po │ │ ├── general │ │ │ ├── api.po │ │ │ ├── assets.po │ │ │ ├── assistance.po │ │ │ ├── default_values.po │ │ │ ├── general_configuration.po │ │ │ ├── glpi_network.po │ │ │ ├── impact_analysis.po │ │ │ ├── index.po │ │ │ ├── logs_purge.po │ │ │ ├── management.po │ │ │ ├── performances.po │ │ │ ├── security.po │ │ │ ├── sql_replicas.po │ │ │ └── system.po │ │ ├── index.po │ │ ├── notifications │ │ │ ├── alarm_options.po │ │ │ ├── definitions.po │ │ │ ├── email_notifications.po │ │ │ ├── index.po │ │ │ ├── template_example.po │ │ │ └── templates.po │ │ ├── plugins.po │ │ └── service_levels.po │ │ ├── index.po │ │ ├── management │ │ ├── budgets.po │ │ ├── certificates.po │ │ ├── clusters.po │ │ ├── contacts.po │ │ ├── contract.po │ │ ├── data-centers.po │ │ ├── documents.po │ │ ├── domains.po │ │ ├── index.po │ │ ├── licenses.po │ │ ├── lines.po │ │ └── suppliers.po │ │ ├── overview │ │ ├── actions.po │ │ ├── index.po │ │ ├── kanban.po │ │ ├── status.po │ │ └── templates.po │ │ ├── tabs │ │ ├── all.po │ │ ├── changes.po │ │ ├── contacts.po │ │ ├── contracts.po │ │ ├── debug.po │ │ ├── documents.po │ │ ├── elements.po │ │ ├── external-links.po │ │ ├── historical.po │ │ ├── knowledgebase.po │ │ ├── management.po │ │ ├── notes.po │ │ ├── problems.po │ │ ├── suppliers.po │ │ ├── templates.po │ │ └── tickets.po │ │ └── tools │ │ ├── index.po │ │ ├── knowledgebase.po │ │ ├── projects.po │ │ ├── reminders.po │ │ ├── reports.po │ │ ├── reservations.po │ │ └── rssfeed.po ├── fr ├── fr_FR │ └── LC_MESSAGES │ │ ├── advanced │ │ ├── cache.po │ │ ├── index.po │ │ └── status.po │ │ ├── cli.po │ │ ├── first-steps │ │ ├── access-glpi.po │ │ ├── conclusion.po │ │ ├── discovery.po │ │ ├── general.po │ │ ├── index.po │ │ ├── interfaces.po │ │ ├── manage-your-password.po │ │ ├── navigation-modules.po │ │ ├── preferences.po │ │ ├── saved-searches.po │ │ ├── search.po │ │ └── view.po │ │ ├── glossary.po │ │ ├── index.po │ │ └── modules │ │ ├── administration │ │ ├── dictionnaries.po │ │ ├── entities.po │ │ ├── groups.po │ │ ├── index.po │ │ ├── logs.po │ │ ├── mailqueue.po │ │ ├── profiles │ │ │ ├── administrationtab.po │ │ │ ├── assistancetab.po │ │ │ ├── configurationtab.po │ │ │ ├── profiles.po │ │ │ └── toolstab.po │ │ ├── rules │ │ │ ├── inventorytools.po │ │ │ ├── rulesmanagement.po │ │ │ ├── ticketbusinessrules.po │ │ │ └── userauthorizations.po │ │ └── users │ │ │ ├── users.po │ │ │ └── usersimport.po │ │ ├── assets │ │ ├── cartridges.po │ │ ├── computers.po │ │ ├── consumables.po │ │ ├── displays.po │ │ ├── global.po │ │ ├── index.po │ │ ├── network-equipments.po │ │ ├── peripherals.po │ │ ├── phones.po │ │ ├── printers.po │ │ ├── softwares.po │ │ └── tabs │ │ │ ├── antivirus.po │ │ │ ├── components.po │ │ │ ├── connexions.po │ │ │ ├── links.po │ │ │ ├── network-ports.po │ │ │ ├── os.po │ │ │ ├── softwares.po │ │ │ ├── virtualization.po │ │ │ └── volumes.po │ │ ├── assistance │ │ ├── actors.po │ │ ├── categories.po │ │ ├── changes.po │ │ ├── index.po │ │ ├── lifecyclematrix.po │ │ ├── planning.po │ │ ├── prioritymatrix.po │ │ ├── problems.po │ │ ├── statistics.po │ │ ├── tickets.po │ │ └── tickets │ │ │ ├── recurrentticket.po │ │ │ ├── ticketadvanced.po │ │ │ ├── ticketlifecycle.po │ │ │ ├── ticketmanagement.po │ │ │ └── ticketopening.po │ │ ├── configuration │ │ ├── authentication │ │ │ ├── configuration.po │ │ │ ├── imap.po │ │ │ ├── index.po │ │ │ ├── ldap.po │ │ │ └── other.po │ │ ├── collectors.po │ │ ├── components.po │ │ ├── crontasks.po │ │ ├── dropdowns │ │ │ ├── assistance.po │ │ │ ├── calendar.po │ │ │ ├── general.po │ │ │ ├── index.po │ │ │ ├── internet.po │ │ │ ├── others.po │ │ │ └── tabs │ │ │ │ └── translation.po │ │ ├── external_links.po │ │ ├── fields-unicity.po │ │ ├── general │ │ │ ├── api.po │ │ │ ├── assets.po │ │ │ ├── assistance.po │ │ │ ├── default_values.po │ │ │ ├── general_configuration.po │ │ │ ├── glpi_network.po │ │ │ ├── impact_analysis.po │ │ │ ├── index.po │ │ │ ├── logs_purge.po │ │ │ ├── management.po │ │ │ ├── performances.po │ │ │ ├── security.po │ │ │ ├── sql_replicas.po │ │ │ └── system.po │ │ ├── index.po │ │ ├── notifications │ │ │ ├── alarm_options.po │ │ │ ├── definitions.po │ │ │ ├── email_notifications.po │ │ │ ├── index.po │ │ │ ├── template_example.po │ │ │ └── templates.po │ │ ├── plugins.po │ │ └── service_levels.po │ │ ├── index.po │ │ ├── management │ │ ├── budgets.po │ │ ├── certificates.po │ │ ├── clusters.po │ │ ├── contacts.po │ │ ├── contract.po │ │ ├── data-centers.po │ │ ├── documents.po │ │ ├── domains.po │ │ ├── index.po │ │ ├── licenses.po │ │ ├── lines.po │ │ └── suppliers.po │ │ ├── overview │ │ ├── actions.po │ │ ├── index.po │ │ ├── kanban.po │ │ ├── status.po │ │ └── templates.po │ │ ├── tabs │ │ ├── all.po │ │ ├── changes.po │ │ ├── contacts.po │ │ ├── contracts.po │ │ ├── debug.po │ │ ├── documents.po │ │ ├── elements.po │ │ ├── external-links.po │ │ ├── historical.po │ │ ├── knowledgebase.po │ │ ├── management.po │ │ ├── notes.po │ │ ├── problems.po │ │ ├── suppliers.po │ │ ├── templates.po │ │ └── tickets.po │ │ └── tools │ │ ├── index.po │ │ ├── knowledgebase.po │ │ ├── projects.po │ │ ├── reminders.po │ │ ├── reports.po │ │ ├── reservations.po │ │ └── rssfeed.po ├── pt └── pt_BR │ └── LC_MESSAGES │ ├── advanced │ ├── cache.po │ ├── index.po │ └── status.po │ ├── cli.po │ ├── first-steps │ ├── access-glpi.po │ ├── conclusion.po │ ├── discovery.po │ ├── general.po │ ├── index.po │ ├── interfaces.po │ ├── manage-your-password.po │ ├── navigation-modules.po │ ├── preferences.po │ ├── saved-searches.po │ ├── search.po │ └── view.po │ ├── glossary.po │ ├── index.po │ └── modules │ ├── administration │ ├── dictionnaries.po │ ├── entities.po │ ├── groups.po │ ├── index.po │ ├── logs.po │ ├── mailqueue.po │ ├── profiles │ │ ├── administrationtab.po │ │ ├── assistancetab.po │ │ ├── configurationtab.po │ │ ├── profiles.po │ │ └── toolstab.po │ ├── rules │ │ ├── inventorytools.po │ │ ├── rulesmanagement.po │ │ ├── ticketbusinessrules.po │ │ └── userauthorizations.po │ └── users │ │ ├── users.po │ │ └── usersimport.po │ ├── assets │ ├── cartridges.po │ ├── computers.po │ ├── consumables.po │ ├── displays.po │ ├── global.po │ ├── index.po │ ├── network-equipments.po │ ├── peripherals.po │ ├── phones.po │ ├── printers.po │ ├── softwares.po │ └── tabs │ │ ├── antivirus.po │ │ ├── components.po │ │ ├── connexions.po │ │ ├── links.po │ │ ├── network-ports.po │ │ ├── os.po │ │ ├── softwares.po │ │ ├── virtualization.po │ │ └── volumes.po │ ├── assistance │ ├── actors.po │ ├── categories.po │ ├── changes.po │ ├── index.po │ ├── lifecyclematrix.po │ ├── planning.po │ ├── prioritymatrix.po │ ├── problems.po │ ├── statistics.po │ ├── tickets.po │ └── tickets │ │ ├── recurrentticket.po │ │ ├── ticketadvanced.po │ │ ├── ticketlifecycle.po │ │ ├── ticketmanagement.po │ │ └── ticketopening.po │ ├── configuration │ ├── authentication │ │ ├── configuration.po │ │ ├── imap.po │ │ ├── index.po │ │ ├── ldap.po │ │ └── other.po │ ├── collectors.po │ ├── components.po │ ├── crontasks.po │ ├── dropdowns │ │ ├── assistance.po │ │ ├── calendar.po │ │ ├── general.po │ │ ├── index.po │ │ ├── internet.po │ │ ├── others.po │ │ └── tabs │ │ │ └── translation.po │ ├── external_links.po │ ├── fields-unicity.po │ ├── general │ │ ├── api.po │ │ ├── assets.po │ │ ├── assistance.po │ │ ├── default_values.po │ │ ├── general_configuration.po │ │ ├── glpi_network.po │ │ ├── impact_analysis.po │ │ ├── index.po │ │ ├── logs_purge.po │ │ ├── management.po │ │ ├── performances.po │ │ ├── security.po │ │ ├── sql_replicas.po │ │ └── system.po │ ├── index.po │ ├── notifications │ │ ├── alarm_options.po │ │ ├── definitions.po │ │ ├── email_notifications.po │ │ ├── index.po │ │ ├── template_example.po │ │ └── templates.po │ ├── plugins.po │ └── service_levels.po │ ├── index.po │ ├── management │ ├── budgets.po │ ├── certificates.po │ ├── clusters.po │ ├── contacts.po │ ├── contract.po │ ├── data-centers.po │ ├── documents.po │ ├── domains.po │ ├── index.po │ ├── licenses.po │ ├── lines.po │ └── suppliers.po │ ├── overview │ ├── actions.po │ ├── index.po │ ├── kanban.po │ ├── status.po │ └── templates.po │ ├── tabs │ ├── all.po │ ├── changes.po │ ├── contacts.po │ ├── contracts.po │ ├── debug.po │ ├── documents.po │ ├── elements.po │ ├── external-links.po │ ├── historical.po │ ├── knowledgebase.po │ ├── management.po │ ├── notes.po │ ├── problems.po │ ├── suppliers.po │ ├── templates.po │ └── tickets.po │ └── tools │ ├── index.po │ ├── knowledgebase.po │ ├── projects.po │ ├── reminders.po │ ├── reports.po │ ├── reservations.po │ └── rssfeed.po └── modules ├── administration ├── dictionnaries.rst ├── entities.rst ├── groups.rst ├── images │ ├── actionKbd.png │ ├── actionMozilla.png │ ├── actionS42.png │ ├── addUserAll.png │ ├── administration.png │ ├── assets.png │ ├── assistancePO.png │ ├── assistance_general.png │ ├── associations.png │ ├── changes.png │ ├── config.png │ ├── configtransfer.png │ ├── criteriaKbd.png │ ├── criteriaMozilla.png │ ├── criteriaS42.png │ ├── dictionaries.png │ ├── followups_and_tasks.png │ ├── impersonate_banner.png │ ├── impersonate_icon.png │ ├── legend.png │ ├── logs.png │ ├── mailqueue.png │ ├── management.png │ ├── notifGroup.png │ ├── planning.png │ ├── planning_visibility.png │ ├── problems.png │ ├── projects.png │ ├── resultMozilla.png │ ├── rules.png │ ├── tickets.png │ ├── toolsPO.png │ ├── tools_standard.png │ └── validations.png ├── index.rst ├── logs.rst ├── mailqueue.rst ├── profiles │ ├── administrationtab.rst │ ├── assistancetab.rst │ ├── configurationtab.rst │ ├── profiles.rst │ └── toolstab.rst ├── rules │ ├── inventorytools.rst │ ├── rulesmanagement.rst │ ├── ticketbusinessrules.rst │ └── userauthorizations.rst └── users │ ├── users.rst │ └── usersimport.rst ├── assets ├── cartridges.rst ├── computers.rst ├── consumables.rst ├── displays.rst ├── global.rst ├── images │ ├── antivirus.png │ ├── cartridge.png │ ├── component.png │ ├── component_add.png │ ├── component_computer_massives_actions.png │ ├── component_group.png │ ├── component_select_group_left.png │ ├── component_select_group_right.png │ ├── component_update.png │ ├── component_update_link.png │ ├── connections_computer_list.png │ ├── connections_monitor_list.png │ ├── consumable.png │ ├── consumable_summary.png │ ├── links.png │ ├── os.png │ ├── os_dropdown.png │ ├── ports.png │ ├── ports_network_name.png │ ├── ports_vlan.png │ ├── softwares_add.png │ ├── softwares_licence.png │ ├── softwares_licence_add.png │ ├── softwares_licence_list.png │ ├── softwares_list.png │ ├── volumes_add.png │ ├── volumes_list.png │ └── volumes_update.png ├── index.rst ├── network-equipments.rst ├── peripherals.rst ├── phones.rst ├── printers.rst ├── softwares.rst └── tabs │ ├── antivirus.rst │ ├── components.rst │ ├── connexions.rst │ ├── links.rst │ ├── network-ports.rst │ ├── os.rst │ ├── softwares.rst │ ├── virtualization.rst │ └── volumes.rst ├── assistance ├── actors.rst ├── categories.rst ├── changes.rst ├── images │ ├── itilcategory.png │ ├── lifecycle_changes.png │ ├── lifecycle_problems.png │ ├── lifecycle_tickets_simple.png │ ├── lifecycle_tickets_standard.png │ ├── priority_matrix.png │ ├── stats_item.png │ └── ticket_problems.png ├── index.rst ├── lifecyclematrix.rst ├── planning.rst ├── prioritymatrix.rst ├── problems.rst ├── statistics.rst ├── tickets.rst └── tickets │ ├── recurrentticket.rst │ ├── ticketadvanced.rst │ ├── ticketlifecycle.rst │ ├── ticketmanagement.rst │ └── ticketopening.rst ├── configuration ├── authentication │ ├── configuration.rst │ ├── images │ │ ├── authConfig.png │ │ ├── ldap-advanced.png │ │ ├── ldap-groups.png │ │ ├── ldap-users.png │ │ └── ldap.png │ ├── imap.rst │ ├── index.rst │ ├── ldap.rst │ └── other.rst ├── collectors.rst ├── components.rst ├── crontasks.rst ├── dropdowns │ ├── assistance.rst │ ├── calendar.rst │ ├── general.rst │ ├── index.rst │ ├── internet.rst │ ├── others.rst │ └── tabs │ │ └── translation.rst ├── external_links.rst ├── fields-unicity.rst ├── general │ ├── api.rst │ ├── assets.rst │ ├── assistance.rst │ ├── default_values.rst │ ├── general_configuration.rst │ ├── glpi_network.rst │ ├── impact_analysis.rst │ ├── index.rst │ ├── logs_purge.rst │ ├── management.rst │ ├── performances.rst │ ├── security.rst │ ├── sql_replicas.rst │ └── system.rst ├── images │ ├── component_details.png │ ├── component_dropdown.png │ ├── component_elements.png │ ├── component_list.png │ ├── configAssistance.png │ ├── configparc.png │ ├── configpc.png │ ├── default_values_assistance.png │ ├── default_values_dashboards.png │ ├── default_values_duedate.png │ ├── default_values_personalization.png │ ├── dropdown_translation.png │ ├── general_configuration.png │ ├── marketplace_discover.png │ ├── sockets_location.png │ ├── sql_replicas.png │ ├── system_config.png │ ├── system_info.png │ ├── system_maintenance.png │ └── system_proxy.png ├── index.rst ├── notifications │ ├── alarm_options.rst │ ├── definitions.rst │ ├── email_notifications.rst │ ├── images │ │ └── final_result.png │ ├── index.rst │ ├── template_example.rst │ └── templates.rst ├── plugins.rst └── service_levels.rst ├── index.rst ├── management ├── budgets.rst ├── certificates.rst ├── clusters.rst ├── contacts.rst ├── contract.rst ├── data-centers.rst ├── documents.rst ├── domains.rst ├── images │ ├── budgets.png │ ├── certificates-licenses.png │ ├── certificates.png │ ├── child-licenses.png │ ├── clusters.png │ ├── contacts.png │ ├── contract.png │ ├── cost.png │ ├── data-centers.png │ ├── documents.png │ ├── domains.png │ ├── elements-budgets.png │ ├── elements-clusters.png │ ├── elements-licenses.png │ ├── impact-datacenters.png │ ├── licenses.png │ ├── lines.png │ ├── main-budgets.png │ ├── networks-clusters.png │ ├── plan-servers-room.png │ ├── recordsadd-domains.png │ ├── recordslist-domains.png │ ├── servers-room.png │ ├── serversrooms-data-centers.png │ ├── summary-licenses.png │ ├── suppliers-contract.png │ └── suppliers.png ├── index.rst ├── licenses.rst ├── lines.rst └── suppliers.rst ├── overview ├── actions.rst ├── images │ └── autofill_mark.png ├── index.rst ├── kanban.rst ├── status.rst └── templates.rst ├── tabs ├── all.rst ├── changes.rst ├── contacts.rst ├── contracts.rst ├── debug.rst ├── documents.rst ├── elements.rst ├── external-links.rst ├── historical.rst ├── images │ ├── changes.png │ ├── contacts.png │ ├── contract.png │ ├── debug.png │ ├── documents.png │ ├── elements.png │ ├── knowledgebase.png │ ├── management.png │ ├── management_enable.png │ ├── notes.png │ ├── problems.png │ ├── suppliers.png │ └── tickets.png ├── knowledgebase.rst ├── management.rst ├── notes.rst ├── problems.rst ├── suppliers.rst ├── templates.rst └── tickets.rst └── tools ├── images ├── browse-knowledgebase.png ├── comments-knowledgebase.png ├── dashboard-notes.png ├── details-booking.png ├── details-fluxrss.png ├── details-notes.png ├── gantt-project.png ├── itil_objects-project.png ├── kanban-project.png ├── manage-knowledgebase.png ├── planning-booking.png ├── planning-notes.png ├── planningspe-booking.png ├── research-knowledgebase.png ├── revisions-knowledgebase.png ├── subprojects-project.png ├── targets-notes.png ├── task-details-project.png ├── tasks-project.png └── team-project.png ├── index.rst ├── knowledgebase.rst ├── projects.rst ├── reminders.rst ├── reports.rst ├── reservations.rst └── rssfeed.rst /.gitignore: -------------------------------------------------------------------------------- 1 | #generated pages 2 | build/ 3 | # log 4 | docx.log 5 | .vscode/settings.json 6 | #compiled gettext 7 | *.mo 8 | -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- 1 | # .readthedocs.yaml 2 | # Read the Docs configuration file 3 | # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details 4 | 5 | # Required 6 | version: 2 7 | 8 | # Set the version of Python and other tools you might need 9 | build: 10 | os: ubuntu-22.04 11 | tools: 12 | python: "3.11" 13 | 14 | # Build documentation in the docs/ directory with Sphinx 15 | sphinx: 16 | configuration: source/conf.py 17 | 18 | formats: 19 | - htmlzip 20 | - pdf 21 | - epub 22 | 23 | # We recommend specifying your dependencies to enable reproducible builds: 24 | # https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html 25 | python: 26 | install: 27 | - requirements: requirements.txt 28 | -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- 1 | Authors 2 | ======= 3 | 4 | * Nelly Mahu Lasson 5 | * Johan Cwiklinski 6 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM python:3.11-slim 2 | WORKDIR /docs 3 | RUN apt-get update && apt-get install -y make \ 4 | && rm -rf /var/lib/apt/lists/* \ 5 | && pip install --no-cache-dir \ 6 | sphinx \ 7 | sphinx-rtd-theme \ 8 | sphinx-autobuild \ 9 | sphinx-glpi-theme -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The GLPI developper documentation is released under the terms of 2 | the Creative Commons License Attribution-ShareAlike 3.0 France (CC BY-SA 3.0 FR). 3 | 4 | See: https://creativecommons.org/licenses/by-sa/3.0/fr/deed.en 5 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | services: 2 | docs: 3 | build: . 4 | ports: 5 | - "8007:8007" 6 | volumes: 7 | - ./:/docs 8 | environment: 9 | - SPHINXOPTS=--host=0.0.0.0 --port=8007 10 | command: make livehtml 11 | -------------------------------------------------------------------------------- /image/ConfigGenerale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/ConfigGenerale.png -------------------------------------------------------------------------------- /image/CycleVieChange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/CycleVieChange.png -------------------------------------------------------------------------------- /image/CycleVieProbleme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/CycleVieProbleme.png -------------------------------------------------------------------------------- /image/CycleVieTicket-postonly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/CycleVieTicket-postonly.png -------------------------------------------------------------------------------- /image/CycleVieTicket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/CycleVieTicket.png -------------------------------------------------------------------------------- /image/GLPI - accueil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/GLPI - accueil.png -------------------------------------------------------------------------------- /image/GLPI-Interface personnalisee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/GLPI-Interface personnalisee.png -------------------------------------------------------------------------------- /image/ItemUsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/ItemUsed.png -------------------------------------------------------------------------------- /image/ListeIntitules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/ListeIntitules.png -------------------------------------------------------------------------------- /image/NiveauSla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/NiveauSla.png -------------------------------------------------------------------------------- /image/Rapport-reseau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/Rapport-reseau.png -------------------------------------------------------------------------------- /image/actionKbd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/actionKbd.png -------------------------------------------------------------------------------- /image/actionMozilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/actionMozilla.png -------------------------------------------------------------------------------- /image/actionS42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/actionS42.png -------------------------------------------------------------------------------- /image/ad_ldap_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/ad_ldap_group.png -------------------------------------------------------------------------------- /image/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/add.png -------------------------------------------------------------------------------- /image/addUser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/addUser.png -------------------------------------------------------------------------------- /image/addUserAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/addUserAll.png -------------------------------------------------------------------------------- /image/addUserExt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/addUserExt.png -------------------------------------------------------------------------------- /image/addUserLdap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/addUserLdap.png -------------------------------------------------------------------------------- /image/add_dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/add_dropdown.png -------------------------------------------------------------------------------- /image/addcriteria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/addcriteria.png -------------------------------------------------------------------------------- /image/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/admin.png -------------------------------------------------------------------------------- /image/aide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/aide.png -------------------------------------------------------------------------------- /image/annuaireLdap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/annuaireLdap.png -------------------------------------------------------------------------------- /image/assistance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/assistance.png -------------------------------------------------------------------------------- /image/assistancePO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/assistancePO.png -------------------------------------------------------------------------------- /image/associations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/associations.png -------------------------------------------------------------------------------- /image/associationsPO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/associationsPO.png -------------------------------------------------------------------------------- /image/authConfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/authConfig.png -------------------------------------------------------------------------------- /image/bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/bookmark.png -------------------------------------------------------------------------------- /image/cartridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/cartridge.png -------------------------------------------------------------------------------- /image/categorieTicket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/categorieTicket.png -------------------------------------------------------------------------------- /image/changements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/changements.png -------------------------------------------------------------------------------- /image/checkVersion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/checkVersion.png -------------------------------------------------------------------------------- /image/complexe_networkport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/complexe_networkport.png -------------------------------------------------------------------------------- /image/complexe_networkport_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/complexe_networkport_1.png -------------------------------------------------------------------------------- /image/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/config.png -------------------------------------------------------------------------------- /image/configAssistance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/configAssistance.png -------------------------------------------------------------------------------- /image/configMatrice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/configMatrice.png -------------------------------------------------------------------------------- /image/configparc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/configparc.png -------------------------------------------------------------------------------- /image/configpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/configpc.png -------------------------------------------------------------------------------- /image/configtransfert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/configtransfert.png -------------------------------------------------------------------------------- /image/configurationNotification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/configurationNotification.png -------------------------------------------------------------------------------- /image/connexion_computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/connexion_computer.png -------------------------------------------------------------------------------- /image/connexion_monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/connexion_monitor.png -------------------------------------------------------------------------------- /image/consumable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/consumable.png -------------------------------------------------------------------------------- /image/contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/contract.png -------------------------------------------------------------------------------- /image/cout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/cout.png -------------------------------------------------------------------------------- /image/critereKbd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/critereKbd.png -------------------------------------------------------------------------------- /image/critereMozilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/critereMozilla.png -------------------------------------------------------------------------------- /image/critereS42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/critereS42.png -------------------------------------------------------------------------------- /image/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/delete.png -------------------------------------------------------------------------------- /image/dico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/dico.png -------------------------------------------------------------------------------- /image/document_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/document_item.png -------------------------------------------------------------------------------- /image/droitHelpdeskPostonly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/droitHelpdeskPostonly.png -------------------------------------------------------------------------------- /image/fournisseur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/fournisseur.png -------------------------------------------------------------------------------- /image/gestion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/gestion.png -------------------------------------------------------------------------------- /image/importrule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/importrule.png -------------------------------------------------------------------------------- /image/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/interface.png -------------------------------------------------------------------------------- /image/interfaceSimplifiee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/interfaceSimplifiee.png -------------------------------------------------------------------------------- /image/interfaceStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/interfaceStandard.png -------------------------------------------------------------------------------- /image/intitules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/intitules.png -------------------------------------------------------------------------------- /image/itemComponent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/itemComponent.png -------------------------------------------------------------------------------- /image/itemGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/itemGroup.png -------------------------------------------------------------------------------- /image/item_debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/item_debug.png -------------------------------------------------------------------------------- /image/item_notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/item_notes.png -------------------------------------------------------------------------------- /image/item_reservations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/item_reservations.png -------------------------------------------------------------------------------- /image/journaux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/journaux.png -------------------------------------------------------------------------------- /image/legendedroits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/legendedroits.png -------------------------------------------------------------------------------- /image/listeComposants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/listeComposants.png -------------------------------------------------------------------------------- /image/listeTags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/listeTags.png -------------------------------------------------------------------------------- /image/mailqueue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/mailqueue.png -------------------------------------------------------------------------------- /image/maintenance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/maintenance.png -------------------------------------------------------------------------------- /image/matricepriorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/matricepriorite.png -------------------------------------------------------------------------------- /image/menu_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/menu_add.png -------------------------------------------------------------------------------- /image/menu_addtemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/menu_addtemplate.png -------------------------------------------------------------------------------- /image/menu_showall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/menu_showall.png -------------------------------------------------------------------------------- /image/moins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/moins.png -------------------------------------------------------------------------------- /image/notifGroupe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/notifGroupe.png -------------------------------------------------------------------------------- /image/options_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/options_search.png -------------------------------------------------------------------------------- /image/outils.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/outils.png -------------------------------------------------------------------------------- /image/outilsPO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/outilsPO.png -------------------------------------------------------------------------------- /image/parc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/parc.png -------------------------------------------------------------------------------- /image/personnalisation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/personnalisation.png -------------------------------------------------------------------------------- /image/playrule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/playrule.png -------------------------------------------------------------------------------- /image/pref-assistance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/pref-assistance.png -------------------------------------------------------------------------------- /image/pref-cle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/pref-cle.png -------------------------------------------------------------------------------- /image/pref-duedate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/pref-duedate.png -------------------------------------------------------------------------------- /image/priseReseau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/priseReseau.png -------------------------------------------------------------------------------- /image/problemeTicket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/problemeTicket.png -------------------------------------------------------------------------------- /image/probleme_computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/probleme_computer.png -------------------------------------------------------------------------------- /image/problemes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/problemes.png -------------------------------------------------------------------------------- /image/projets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/projets.png -------------------------------------------------------------------------------- /image/quicksearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/quicksearch.png -------------------------------------------------------------------------------- /image/regles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/regles.png -------------------------------------------------------------------------------- /image/replicat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/replicat.png -------------------------------------------------------------------------------- /image/reservation-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/reservation-3.png -------------------------------------------------------------------------------- /image/reservation-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/reservation-search.png -------------------------------------------------------------------------------- /image/resultatMozilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/resultatMozilla.png -------------------------------------------------------------------------------- /image/resumeConsumable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/resumeConsumable.png -------------------------------------------------------------------------------- /image/resumeConsumableExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/resumeConsumableExample.png -------------------------------------------------------------------------------- /image/resumeLicence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/resumeLicence.png -------------------------------------------------------------------------------- /image/searchexample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/searchexample.png -------------------------------------------------------------------------------- /image/stats_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/stats_item.png -------------------------------------------------------------------------------- /image/suivisTaches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/suivisTaches.png -------------------------------------------------------------------------------- /image/systemInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/systemInfo.png -------------------------------------------------------------------------------- /image/systemMaintenance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/systemMaintenance.png -------------------------------------------------------------------------------- /image/systemMdp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/systemMdp.png -------------------------------------------------------------------------------- /image/systemProxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/systemProxy.png -------------------------------------------------------------------------------- /image/sytemConfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/sytemConfig.png -------------------------------------------------------------------------------- /image/tabChange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/tabChange.png -------------------------------------------------------------------------------- /image/tabElements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/tabElements.png -------------------------------------------------------------------------------- /image/tabElementsGestion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/tabElementsGestion.png -------------------------------------------------------------------------------- /image/tabStatistique.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/tabStatistique.png -------------------------------------------------------------------------------- /image/tabTicket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/tabTicket.png -------------------------------------------------------------------------------- /image/tache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/tache.png -------------------------------------------------------------------------------- /image/testrule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/testrule.png -------------------------------------------------------------------------------- /image/ticket_computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/ticket_computer.png -------------------------------------------------------------------------------- /image/tickets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/tickets.png -------------------------------------------------------------------------------- /image/traduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/traduction.png -------------------------------------------------------------------------------- /image/validations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/validations.png -------------------------------------------------------------------------------- /image/visibilite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/image/visibilite.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx 2 | recommonmark 3 | sphinx_glpi_theme 4 | -------------------------------------------------------------------------------- /source/_static/css/custom.css: -------------------------------------------------------------------------------- 1 | .rst-content table .line-block { 2 | margin-bottom: 0px; 3 | } -------------------------------------------------------------------------------- /source/_static/images/glpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/_static/images/glpi.png -------------------------------------------------------------------------------- /source/advanced/index.rst: -------------------------------------------------------------------------------- 1 | Advanced Configuration 2 | ====================== 3 | 4 | .. toctree:: 5 | :maxdepth: 3 6 | 7 | cache 8 | status 9 | override-locales 10 | -------------------------------------------------------------------------------- /source/first-steps/discovery.rst: -------------------------------------------------------------------------------- 1 | Understanding the interface 2 | =========================== 3 | 4 | Depending on the user's profile, some menus and content may differ, but the logic of the interface remains the same. 5 | 6 | The GLPI interface is made up of different areas grouping together the application's functionalities according to their nature. 7 | 8 | .. image:: images/main-ui.png 9 | :alt: General interface of GLPI 10 | :align: center 11 | 12 | #. The user menu allows you to manage your preferences, access help, change the current language, change your current profile and entity, and disconnect. 13 | #. The main menu allows you to navigate through the different modules. 14 | #. The breadcrumb trail allows you to locate the context of use of the main work area. 15 | #. The main working area is the privileged space for interaction with the application. 16 | #. The search box allows you to perform a global search at any time. 17 | -------------------------------------------------------------------------------- /source/first-steps/images/change_prefs_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/first-steps/images/change_prefs_button.png -------------------------------------------------------------------------------- /source/first-steps/images/fuzzyglpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/first-steps/images/fuzzyglpi.png -------------------------------------------------------------------------------- /source/first-steps/images/main-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/first-steps/images/main-ui.png -------------------------------------------------------------------------------- /source/first-steps/images/save_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/first-steps/images/save_search.png -------------------------------------------------------------------------------- /source/first-steps/images/saved_search_alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/first-steps/images/saved_search_alert.png -------------------------------------------------------------------------------- /source/first-steps/images/saved_search_nonotif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/first-steps/images/saved_search_nonotif.png -------------------------------------------------------------------------------- /source/first-steps/images/saved_searches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/first-steps/images/saved_searches.png -------------------------------------------------------------------------------- /source/first-steps/images/search_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/first-steps/images/search_example.png -------------------------------------------------------------------------------- /source/first-steps/images/search_quick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/first-steps/images/search_quick.png -------------------------------------------------------------------------------- /source/first-steps/images/security-messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/first-steps/images/security-messages.png -------------------------------------------------------------------------------- /source/first-steps/images/simplified-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/first-steps/images/simplified-interface.png -------------------------------------------------------------------------------- /source/first-steps/images/standard-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/first-steps/images/standard-interface.png -------------------------------------------------------------------------------- /source/first-steps/images/userprefs-custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/first-steps/images/userprefs-custom.png -------------------------------------------------------------------------------- /source/first-steps/images/userprefs-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/first-steps/images/userprefs-main.png -------------------------------------------------------------------------------- /source/first-steps/index.rst: -------------------------------------------------------------------------------- 1 | First Steps with GLPI 2 | ====================== 3 | 4 | Everything you need to know to get started with GLPI! 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | general 10 | discovery 11 | manage-your-password 12 | preferences 13 | navigation-modules 14 | interfaces 15 | view 16 | search 17 | saved-searches 18 | access-glpi 19 | conclusion -------------------------------------------------------------------------------- /source/first-steps/manage-your-password.rst: -------------------------------------------------------------------------------- 1 | Manage your password 2 | ==================== 3 | 4 | The change password form can be found in :doc:`user preferences `. 5 | 6 | You must enter and confirm your password before validation. The administrator can disable this feature, so the change password area does not appear in this case. 7 | 8 | In the event that the user has forgotten their password, the possibility of resetting it is offered to them from the login page. The link is only present if notifications are enabled. 9 | 10 | Only users with an e-mail address defined in GLPI and not authenticating via an external source (LDAP, mail server, etc.) can use this functionality. Once the renewal request has been made by entering their e-mail address, the user receives an e-mail providing them with a link allowing them to reset their password. 11 | 12 | Passwords must follow the defined security policy. A real-time check of the entered password is then carried out. 13 | -------------------------------------------------------------------------------- /source/locale/de: -------------------------------------------------------------------------------- 1 | de_DE -------------------------------------------------------------------------------- /source/locale/de_DE/LC_MESSAGES/advanced/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:53+0000\n" 13 | "Language-Team: German (Germany) (https://www.transifex.com/glpi/teams/1637/de_DE/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: de_DE\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/advanced/index.rst:2 21 | msgid "Advanced Configuration" 22 | msgstr "" 23 | -------------------------------------------------------------------------------- /source/locale/de_DE/LC_MESSAGES/first-steps/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:55+0000\n" 13 | "Language-Team: German (Germany) (https://www.transifex.com/glpi/teams/1637/de_DE/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: de_DE\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/first-steps/index.rst:2 21 | msgid "First Steps with GLPI" 22 | msgstr "" 23 | 24 | #: ../../source/first-steps/index.rst:4 25 | msgid "Everything you need to know to get started with GLPI!" 26 | msgstr "" 27 | -------------------------------------------------------------------------------- /source/locale/de_DE/LC_MESSAGES/modules/administration/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: German (Germany) (https://www.transifex.com/glpi/teams/1637/de_DE/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: de_DE\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/administration/index.rst:2 21 | msgid "Administration" 22 | msgstr "" 23 | 24 | #: ../../source/modules/administration/index.rst:4 25 | msgid "" 26 | "Administration module allows to administrate users, groups, entities, " 27 | "profiles, rules and dictionnaries." 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /source/locale/de_DE/LC_MESSAGES/modules/assistance/tickets.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: German (Germany) (https://www.transifex.com/glpi/teams/1637/de_DE/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: de_DE\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/assistance/tickets.rst:2 21 | msgid "Tickets" 22 | msgstr "" 23 | -------------------------------------------------------------------------------- /source/locale/de_DE/LC_MESSAGES/modules/configuration/general/glpi_network.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:55+0000\n" 13 | "Language-Team: German (Germany) (https://www.transifex.com/glpi/teams/1637/de_DE/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: de_DE\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/configuration/general/glpi_network.rst:2 21 | msgid "GLPI Network" 22 | msgstr "" 23 | 24 | #: ../../source/modules/configuration/general/glpi_network.rst:4 25 | msgid "Here you can enter your GLPI Network registration key." 26 | msgstr "" 27 | -------------------------------------------------------------------------------- /source/locale/de_DE/LC_MESSAGES/modules/configuration/general/impact_analysis.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:55+0000\n" 13 | "Language-Team: German (Germany) (https://www.transifex.com/glpi/teams/1637/de_DE/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: de_DE\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/configuration/general/impact_analysis.rst:2 21 | msgid "Impact analysis" 22 | msgstr "" 23 | 24 | #: ../../source/modules/configuration/general/impact_analysis.rst:4 25 | msgid "" 26 | "This tab allows you to control which types of items have the Impact analysis" 27 | " feature enabled." 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /source/locale/de_DE/LC_MESSAGES/modules/configuration/general/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:55+0000\n" 13 | "Language-Team: German (Germany) (https://www.transifex.com/glpi/teams/1637/de_DE/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: de_DE\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/configuration/general/index.rst:2 21 | msgid "General configuration" 22 | msgstr "" 23 | 24 | #: ../../source/modules/configuration/general/index.rst:4 25 | msgid "" 26 | "GLPI general configuration allow global GLPI configuration. Some of the " 27 | "parameters can be changed by users in their session." 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /source/locale/de_DE/LC_MESSAGES/modules/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:53+0000\n" 13 | "Language-Team: German (Germany) (https://www.transifex.com/glpi/teams/1637/de_DE/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: de_DE\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/index.rst:2 21 | msgid "Modules" 22 | msgstr "" 23 | -------------------------------------------------------------------------------- /source/locale/de_DE/LC_MESSAGES/modules/management/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:53+0000\n" 13 | "Language-Team: German (Germany) (https://www.transifex.com/glpi/teams/1637/de_DE/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: de_DE\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/management/index.rst:2 21 | msgid "Management" 22 | msgstr "" 23 | 24 | #: ../../source/modules/management/index.rst:4 25 | msgid "The GLPI Management module is used to manage the following items:" 26 | msgstr "" 27 | -------------------------------------------------------------------------------- /source/locale/de_DE/LC_MESSAGES/modules/overview/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:53+0000\n" 13 | "Language-Team: German (Germany) (https://www.transifex.com/glpi/teams/1637/de_DE/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: de_DE\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/overview/index.rst:2 21 | msgid "Overview" 22 | msgstr "" 23 | -------------------------------------------------------------------------------- /source/locale/de_DE/LC_MESSAGES/modules/tabs/all.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: German (Germany) (https://www.transifex.com/glpi/teams/1637/de_DE/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: de_DE\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/tabs/all.rst:2 21 | msgid "All Information" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tabs/all.rst:4 25 | msgid "" 26 | "For an item, all information is displayed on one page from the *All* tab. " 27 | "This shows all of the tabs of an object's form in one view, one below the " 28 | "other." 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /source/locale/de_DE/LC_MESSAGES/modules/tabs/contacts.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: German (Germany) (https://www.transifex.com/glpi/teams/1637/de_DE/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: de_DE\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/tabs/contacts.rst:2 21 | msgid "Associated Contacts" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tabs/contacts.rst:4 25 | msgid "The *Contacts* tab is used to show or add linked contacts." 26 | msgstr "" 27 | 28 | #: ../../source/modules/tabs/contacts.rst-1 29 | msgid "View and add associated contacts" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /source/locale/de_DE/LC_MESSAGES/modules/tabs/elements.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: German (Germany) (https://www.transifex.com/glpi/teams/1637/de_DE/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: de_DE\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/tabs/elements.rst:2 21 | msgid "Associated elements" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tabs/elements.rst:4 25 | msgid "The *Items* tab is used to show or add linked assets." 26 | msgstr "" 27 | 28 | #: ../../source/modules/tabs/elements.rst-1 29 | msgid "Adding and viewing an element" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /source/locale/de_DE/LC_MESSAGES/modules/tabs/notes.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: German (Germany) (https://www.transifex.com/glpi/teams/1637/de_DE/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: de_DE\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/tabs/notes.rst:2 21 | msgid "Notes" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tabs/notes.rst:4 25 | msgid "" 26 | "The *Notes* tab provides a free text field for storing additional " 27 | "information. Notes are displayed in the order of their creation." 28 | msgstr "" 29 | 30 | #: ../../source/modules/tabs/notes.rst-1 31 | msgid "View and enter a note" 32 | msgstr "" 33 | -------------------------------------------------------------------------------- /source/locale/de_DE/LC_MESSAGES/modules/tabs/suppliers.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: German (Germany) (https://www.transifex.com/glpi/teams/1637/de_DE/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: de_DE\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/tabs/suppliers.rst:2 21 | msgid "Suppliers" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tabs/suppliers.rst:4 25 | msgid "The *Suppliers* tab is used to show or add linked suppliers." 26 | msgstr "" 27 | 28 | #: ../../source/modules/tabs/suppliers.rst-1 29 | msgid "Screen for creating a link with a supplier" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /source/locale/de_DE/LC_MESSAGES/modules/tabs/templates.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: German (Germany) (https://www.transifex.com/glpi/teams/1637/de_DE/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: de_DE\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/tabs/templates.rst:2 21 | msgid "" 22 | "It is possible to use :doc:`templates to generate this object " 23 | "<../overview/templates>`." 24 | msgstr "" 25 | -------------------------------------------------------------------------------- /source/locale/de_DE/LC_MESSAGES/modules/tools/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: German (Germany) (https://www.transifex.com/glpi/teams/1637/de_DE/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: de_DE\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/tools/index.rst:2 21 | msgid "Tools" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tools/index.rst:4 25 | msgid "" 26 | "The GLPI Tools module is used to manage projects, reminders, RSS feeds, " 27 | "knowledge base, reservations and to generate reports." 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /source/locale/en: -------------------------------------------------------------------------------- 1 | en_GB -------------------------------------------------------------------------------- /source/locale/en_GB/LC_MESSAGES/advanced/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , 2023. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=utf-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Generated-By: Babel 2.10.1\n" 19 | 20 | #: ../../source/advanced/index.rst:2 21 | msgid "Advanced Configuration" 22 | msgstr "" 23 | 24 | -------------------------------------------------------------------------------- /source/locale/en_GB/LC_MESSAGES/first-steps/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , 2023. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=utf-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Generated-By: Babel 2.10.1\n" 19 | 20 | #: ../../source/first-steps/index.rst:2 21 | msgid "First Steps with GLPI" 22 | msgstr "" 23 | 24 | #: ../../source/first-steps/index.rst:4 25 | msgid "Everything you need to know to get started with GLPI!" 26 | msgstr "" 27 | 28 | -------------------------------------------------------------------------------- /source/locale/en_GB/LC_MESSAGES/modules/administration/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , 2023. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=utf-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Generated-By: Babel 2.10.1\n" 19 | 20 | #: ../../source/modules/administration/index.rst:2 21 | msgid "Administration" 22 | msgstr "" 23 | 24 | #: ../../source/modules/administration/index.rst:4 25 | msgid "" 26 | "Administration module allows to administrate users, groups, entities, " 27 | "profiles, rules and dictionnaries." 28 | msgstr "" 29 | 30 | -------------------------------------------------------------------------------- /source/locale/en_GB/LC_MESSAGES/modules/assistance/tickets.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , 2023. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=utf-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Generated-By: Babel 2.10.1\n" 19 | 20 | #: ../../source/modules/assistance/tickets.rst:2 21 | msgid "Tickets" 22 | msgstr "" 23 | 24 | -------------------------------------------------------------------------------- /source/locale/en_GB/LC_MESSAGES/modules/configuration/general/glpi_network.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , 2023. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=utf-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Generated-By: Babel 2.10.1\n" 19 | 20 | #: ../../source/modules/configuration/general/glpi_network.rst:2 21 | msgid "GLPI Network" 22 | msgstr "" 23 | 24 | #: ../../source/modules/configuration/general/glpi_network.rst:4 25 | msgid "Here you can enter your GLPI Network registration key." 26 | msgstr "" 27 | 28 | -------------------------------------------------------------------------------- /source/locale/en_GB/LC_MESSAGES/modules/configuration/general/impact_analysis.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , 2023. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=utf-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Generated-By: Babel 2.10.1\n" 19 | 20 | #: ../../source/modules/configuration/general/impact_analysis.rst:2 21 | msgid "Impact analysis" 22 | msgstr "" 23 | 24 | #: ../../source/modules/configuration/general/impact_analysis.rst:4 25 | msgid "" 26 | "This tab allows you to control which types of items have the Impact " 27 | "analysis feature enabled." 28 | msgstr "" 29 | 30 | -------------------------------------------------------------------------------- /source/locale/en_GB/LC_MESSAGES/modules/configuration/general/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , 2023. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=utf-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Generated-By: Babel 2.10.1\n" 19 | 20 | #: ../../source/modules/configuration/general/index.rst:2 21 | msgid "General configuration" 22 | msgstr "" 23 | 24 | #: ../../source/modules/configuration/general/index.rst:4 25 | msgid "" 26 | "GLPI general configuration allow global GLPI configuration. Some of the " 27 | "parameters can be changed by users in their session." 28 | msgstr "" 29 | 30 | -------------------------------------------------------------------------------- /source/locale/en_GB/LC_MESSAGES/modules/configuration/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , 2023. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=utf-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Generated-By: Babel 2.10.1\n" 19 | 20 | #: ../../source/modules/configuration/index.rst:2 21 | msgid "Configuration" 22 | msgstr "" 23 | 24 | #: ../../source/modules/configuration/index.rst:4 25 | msgid "" 26 | "Configuration module gives access to all GLPI configuration options such " 27 | "as: - Global configuration - Notifications - Mail Collectors - Automatic " 28 | "actions - Authentication - Plugins - Unicity criteria - External links" 29 | msgstr "" 30 | 31 | -------------------------------------------------------------------------------- /source/locale/en_GB/LC_MESSAGES/modules/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , 2023. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=utf-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Generated-By: Babel 2.10.1\n" 19 | 20 | #: ../../source/modules/index.rst:2 21 | msgid "Modules" 22 | msgstr "" 23 | 24 | -------------------------------------------------------------------------------- /source/locale/en_GB/LC_MESSAGES/modules/management/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , 2023. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=utf-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Generated-By: Babel 2.10.1\n" 19 | 20 | #: ../../source/modules/management/index.rst:2 21 | msgid "Management" 22 | msgstr "" 23 | 24 | #: ../../source/modules/management/index.rst:4 25 | msgid "The GLPI Management module is used to manage the following items:" 26 | msgstr "" 27 | 28 | -------------------------------------------------------------------------------- /source/locale/en_GB/LC_MESSAGES/modules/overview/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , 2023. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=utf-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Generated-By: Babel 2.10.1\n" 19 | 20 | #: ../../source/modules/overview/index.rst:2 21 | msgid "Overview" 22 | msgstr "" 23 | 24 | -------------------------------------------------------------------------------- /source/locale/en_GB/LC_MESSAGES/modules/tabs/all.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , 2023. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=utf-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Generated-By: Babel 2.10.1\n" 19 | 20 | #: ../../source/modules/tabs/all.rst:2 21 | msgid "All Information" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tabs/all.rst:4 25 | msgid "" 26 | "For an item, all information is displayed on one page from the *All* tab." 27 | " This shows all of the tabs of an object's form in one view, one below " 28 | "the other." 29 | msgstr "" 30 | 31 | -------------------------------------------------------------------------------- /source/locale/en_GB/LC_MESSAGES/modules/tabs/contacts.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , 2023. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=utf-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Generated-By: Babel 2.10.1\n" 19 | 20 | #: ../../source/modules/tabs/contacts.rst:2 21 | msgid "Associated Contacts" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tabs/contacts.rst:4 25 | msgid "The *Contacts* tab is used to show or add linked contacts." 26 | msgstr "" 27 | 28 | #: ../../source/modules/tabs/contacts.rst:-1 29 | msgid "View and add associated contacts" 30 | msgstr "" 31 | 32 | -------------------------------------------------------------------------------- /source/locale/en_GB/LC_MESSAGES/modules/tabs/elements.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , 2023. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=utf-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Generated-By: Babel 2.10.1\n" 19 | 20 | #: ../../source/modules/tabs/elements.rst:2 21 | msgid "Associated elements" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tabs/elements.rst:4 25 | msgid "The *Items* tab is used to show or add linked assets." 26 | msgstr "" 27 | 28 | #: ../../source/modules/tabs/elements.rst:-1 29 | msgid "Adding and viewing an element" 30 | msgstr "" 31 | 32 | -------------------------------------------------------------------------------- /source/locale/en_GB/LC_MESSAGES/modules/tabs/knowledgebase.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , 2023. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=utf-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Generated-By: Babel 2.10.1\n" 19 | 20 | #: ../../source/modules/tabs/knowledgebase.rst:2 21 | msgid "Knowledge base" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tabs/knowledgebase.rst:4 25 | msgid "" 26 | "The *Knowledge base* tab is used to show or add linked knowledge base " 27 | "articles." 28 | msgstr "" 29 | 30 | #: ../../source/modules/tabs/knowledgebase.rst:-1 31 | msgid "Viewing or adding a knowledge base entry" 32 | msgstr "" 33 | 34 | -------------------------------------------------------------------------------- /source/locale/en_GB/LC_MESSAGES/modules/tabs/notes.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , 2023. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=utf-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Generated-By: Babel 2.10.1\n" 19 | 20 | #: ../../source/modules/tabs/notes.rst:2 21 | msgid "Notes" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tabs/notes.rst:4 25 | msgid "" 26 | "The *Notes* tab provides a free text field for storing additional " 27 | "information. Notes are displayed in the order of their creation." 28 | msgstr "" 29 | 30 | #: ../../source/modules/tabs/notes.rst:-1 31 | msgid "View and enter a note" 32 | msgstr "" 33 | 34 | -------------------------------------------------------------------------------- /source/locale/en_GB/LC_MESSAGES/modules/tabs/suppliers.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , 2023. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=utf-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Generated-By: Babel 2.10.1\n" 19 | 20 | #: ../../source/modules/tabs/suppliers.rst:2 21 | msgid "Suppliers" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tabs/suppliers.rst:4 25 | msgid "The *Suppliers* tab is used to show or add linked suppliers." 26 | msgstr "" 27 | 28 | #: ../../source/modules/tabs/suppliers.rst:-1 29 | msgid "Screen for creating a link with a supplier" 30 | msgstr "" 31 | 32 | -------------------------------------------------------------------------------- /source/locale/en_GB/LC_MESSAGES/modules/tabs/templates.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , 2023. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=utf-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Generated-By: Babel 2.10.1\n" 19 | 20 | #: ../../source/modules/tabs/templates.rst:2 21 | msgid "" 22 | "It is possible to use :doc:`templates to generate this object " 23 | "<../overview/templates>`." 24 | msgstr "" 25 | 26 | -------------------------------------------------------------------------------- /source/locale/en_GB/LC_MESSAGES/modules/tools/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , 2023. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=utf-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Generated-By: Babel 2.10.1\n" 19 | 20 | #: ../../source/modules/tools/index.rst:2 21 | msgid "Tools" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tools/index.rst:4 25 | msgid "" 26 | "The GLPI Tools module is used to manage projects, reminders, RSS feeds, " 27 | "knowledge base, reservations and to generate reports." 28 | msgstr "" 29 | 30 | -------------------------------------------------------------------------------- /source/locale/en_US/LC_MESSAGES/advanced/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:53+0000\n" 13 | "Language-Team: English (United States) (https://www.transifex.com/glpi/teams/1637/en_US/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: en_US\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/advanced/index.rst:2 21 | msgid "Advanced Configuration" 22 | msgstr "" 23 | -------------------------------------------------------------------------------- /source/locale/en_US/LC_MESSAGES/first-steps/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:55+0000\n" 13 | "Language-Team: English (United States) (https://www.transifex.com/glpi/teams/1637/en_US/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: en_US\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/first-steps/index.rst:2 21 | msgid "First Steps with GLPI" 22 | msgstr "" 23 | 24 | #: ../../source/first-steps/index.rst:4 25 | msgid "Everything you need to know to get started with GLPI!" 26 | msgstr "" 27 | -------------------------------------------------------------------------------- /source/locale/en_US/LC_MESSAGES/modules/administration/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: English (United States) (https://www.transifex.com/glpi/teams/1637/en_US/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: en_US\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/administration/index.rst:2 21 | msgid "Administration" 22 | msgstr "" 23 | 24 | #: ../../source/modules/administration/index.rst:4 25 | msgid "" 26 | "Administration module allows to administrate users, groups, entities, " 27 | "profiles, rules and dictionnaries." 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /source/locale/en_US/LC_MESSAGES/modules/assistance/tickets.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: English (United States) (https://www.transifex.com/glpi/teams/1637/en_US/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: en_US\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/assistance/tickets.rst:2 21 | msgid "Tickets" 22 | msgstr "" 23 | -------------------------------------------------------------------------------- /source/locale/en_US/LC_MESSAGES/modules/configuration/general/glpi_network.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:55+0000\n" 13 | "Language-Team: English (United States) (https://www.transifex.com/glpi/teams/1637/en_US/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: en_US\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/configuration/general/glpi_network.rst:2 21 | msgid "GLPI Network" 22 | msgstr "" 23 | 24 | #: ../../source/modules/configuration/general/glpi_network.rst:4 25 | msgid "Here you can enter your GLPI Network registration key." 26 | msgstr "" 27 | -------------------------------------------------------------------------------- /source/locale/en_US/LC_MESSAGES/modules/configuration/general/impact_analysis.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:55+0000\n" 13 | "Language-Team: English (United States) (https://www.transifex.com/glpi/teams/1637/en_US/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: en_US\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/configuration/general/impact_analysis.rst:2 21 | msgid "Impact analysis" 22 | msgstr "" 23 | 24 | #: ../../source/modules/configuration/general/impact_analysis.rst:4 25 | msgid "" 26 | "This tab allows you to control which types of items have the Impact analysis" 27 | " feature enabled." 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /source/locale/en_US/LC_MESSAGES/modules/configuration/general/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:55+0000\n" 13 | "Language-Team: English (United States) (https://www.transifex.com/glpi/teams/1637/en_US/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: en_US\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/configuration/general/index.rst:2 21 | msgid "General configuration" 22 | msgstr "" 23 | 24 | #: ../../source/modules/configuration/general/index.rst:4 25 | msgid "" 26 | "GLPI general configuration allow global GLPI configuration. Some of the " 27 | "parameters can be changed by users in their session." 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /source/locale/en_US/LC_MESSAGES/modules/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:53+0000\n" 13 | "Language-Team: English (United States) (https://www.transifex.com/glpi/teams/1637/en_US/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: en_US\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/index.rst:2 21 | msgid "Modules" 22 | msgstr "" 23 | -------------------------------------------------------------------------------- /source/locale/en_US/LC_MESSAGES/modules/management/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:53+0000\n" 13 | "Language-Team: English (United States) (https://www.transifex.com/glpi/teams/1637/en_US/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: en_US\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/management/index.rst:2 21 | msgid "Management" 22 | msgstr "" 23 | 24 | #: ../../source/modules/management/index.rst:4 25 | msgid "The GLPI Management module is used to manage the following items:" 26 | msgstr "" 27 | -------------------------------------------------------------------------------- /source/locale/en_US/LC_MESSAGES/modules/overview/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:53+0000\n" 13 | "Language-Team: English (United States) (https://www.transifex.com/glpi/teams/1637/en_US/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: en_US\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/overview/index.rst:2 21 | msgid "Overview" 22 | msgstr "" 23 | -------------------------------------------------------------------------------- /source/locale/en_US/LC_MESSAGES/modules/tabs/all.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: English (United States) (https://www.transifex.com/glpi/teams/1637/en_US/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: en_US\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/tabs/all.rst:2 21 | msgid "All Information" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tabs/all.rst:4 25 | msgid "" 26 | "For an item, all information is displayed on one page from the *All* tab. " 27 | "This shows all of the tabs of an object's form in one view, one below the " 28 | "other." 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /source/locale/en_US/LC_MESSAGES/modules/tabs/contacts.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: English (United States) (https://www.transifex.com/glpi/teams/1637/en_US/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: en_US\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/tabs/contacts.rst:2 21 | msgid "Associated Contacts" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tabs/contacts.rst:4 25 | msgid "The *Contacts* tab is used to show or add linked contacts." 26 | msgstr "" 27 | 28 | #: ../../source/modules/tabs/contacts.rst-1 29 | msgid "View and add associated contacts" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /source/locale/en_US/LC_MESSAGES/modules/tabs/elements.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: English (United States) (https://www.transifex.com/glpi/teams/1637/en_US/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: en_US\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/tabs/elements.rst:2 21 | msgid "Associated elements" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tabs/elements.rst:4 25 | msgid "The *Items* tab is used to show or add linked assets." 26 | msgstr "" 27 | 28 | #: ../../source/modules/tabs/elements.rst-1 29 | msgid "Adding and viewing an element" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /source/locale/en_US/LC_MESSAGES/modules/tabs/notes.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: English (United States) (https://www.transifex.com/glpi/teams/1637/en_US/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: en_US\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/tabs/notes.rst:2 21 | msgid "Notes" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tabs/notes.rst:4 25 | msgid "" 26 | "The *Notes* tab provides a free text field for storing additional " 27 | "information. Notes are displayed in the order of their creation." 28 | msgstr "" 29 | 30 | #: ../../source/modules/tabs/notes.rst-1 31 | msgid "View and enter a note" 32 | msgstr "" 33 | -------------------------------------------------------------------------------- /source/locale/en_US/LC_MESSAGES/modules/tabs/suppliers.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: English (United States) (https://www.transifex.com/glpi/teams/1637/en_US/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: en_US\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/tabs/suppliers.rst:2 21 | msgid "Suppliers" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tabs/suppliers.rst:4 25 | msgid "The *Suppliers* tab is used to show or add linked suppliers." 26 | msgstr "" 27 | 28 | #: ../../source/modules/tabs/suppliers.rst-1 29 | msgid "Screen for creating a link with a supplier" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /source/locale/en_US/LC_MESSAGES/modules/tabs/templates.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: English (United States) (https://www.transifex.com/glpi/teams/1637/en_US/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: en_US\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/tabs/templates.rst:2 21 | msgid "" 22 | "It is possible to use :doc:`templates to generate this object " 23 | "<../overview/templates>`." 24 | msgstr "" 25 | -------------------------------------------------------------------------------- /source/locale/en_US/LC_MESSAGES/modules/tools/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: English (United States) (https://www.transifex.com/glpi/teams/1637/en_US/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: en_US\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: ../../source/modules/tools/index.rst:2 21 | msgid "Tools" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tools/index.rst:4 25 | msgid "" 26 | "The GLPI Tools module is used to manage projects, reminders, RSS feeds, " 27 | "knowledge base, reservations and to generate reports." 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /source/locale/es_419/LC_MESSAGES/advanced/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:53+0000\n" 13 | "Language-Team: Spanish (Latin America) (https://www.transifex.com/glpi/teams/1637/es_419/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: es_419\n" 18 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/advanced/index.rst:2 21 | msgid "Advanced Configuration" 22 | msgstr "" 23 | -------------------------------------------------------------------------------- /source/locale/es_419/LC_MESSAGES/first-steps/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:55+0000\n" 13 | "Language-Team: Spanish (Latin America) (https://www.transifex.com/glpi/teams/1637/es_419/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: es_419\n" 18 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/first-steps/index.rst:2 21 | msgid "First Steps with GLPI" 22 | msgstr "" 23 | 24 | #: ../../source/first-steps/index.rst:4 25 | msgid "Everything you need to know to get started with GLPI!" 26 | msgstr "" 27 | -------------------------------------------------------------------------------- /source/locale/es_419/LC_MESSAGES/modules/administration/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: Spanish (Latin America) (https://www.transifex.com/glpi/teams/1637/es_419/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: es_419\n" 18 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/modules/administration/index.rst:2 21 | msgid "Administration" 22 | msgstr "" 23 | 24 | #: ../../source/modules/administration/index.rst:4 25 | msgid "" 26 | "Administration module allows to administrate users, groups, entities, " 27 | "profiles, rules and dictionnaries." 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /source/locale/es_419/LC_MESSAGES/modules/assistance/tickets.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: Spanish (Latin America) (https://www.transifex.com/glpi/teams/1637/es_419/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: es_419\n" 18 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/modules/assistance/tickets.rst:2 21 | msgid "Tickets" 22 | msgstr "" 23 | -------------------------------------------------------------------------------- /source/locale/es_419/LC_MESSAGES/modules/configuration/general/glpi_network.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:55+0000\n" 13 | "Language-Team: Spanish (Latin America) (https://www.transifex.com/glpi/teams/1637/es_419/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: es_419\n" 18 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/modules/configuration/general/glpi_network.rst:2 21 | msgid "GLPI Network" 22 | msgstr "" 23 | 24 | #: ../../source/modules/configuration/general/glpi_network.rst:4 25 | msgid "Here you can enter your GLPI Network registration key." 26 | msgstr "" 27 | -------------------------------------------------------------------------------- /source/locale/es_419/LC_MESSAGES/modules/configuration/general/impact_analysis.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:55+0000\n" 13 | "Language-Team: Spanish (Latin America) (https://www.transifex.com/glpi/teams/1637/es_419/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: es_419\n" 18 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/modules/configuration/general/impact_analysis.rst:2 21 | msgid "Impact analysis" 22 | msgstr "" 23 | 24 | #: ../../source/modules/configuration/general/impact_analysis.rst:4 25 | msgid "" 26 | "This tab allows you to control which types of items have the Impact analysis" 27 | " feature enabled." 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /source/locale/es_419/LC_MESSAGES/modules/configuration/general/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:55+0000\n" 13 | "Language-Team: Spanish (Latin America) (https://www.transifex.com/glpi/teams/1637/es_419/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: es_419\n" 18 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/modules/configuration/general/index.rst:2 21 | msgid "General configuration" 22 | msgstr "" 23 | 24 | #: ../../source/modules/configuration/general/index.rst:4 25 | msgid "" 26 | "GLPI general configuration allow global GLPI configuration. Some of the " 27 | "parameters can be changed by users in their session." 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /source/locale/es_419/LC_MESSAGES/modules/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:53+0000\n" 13 | "Language-Team: Spanish (Latin America) (https://www.transifex.com/glpi/teams/1637/es_419/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: es_419\n" 18 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/modules/index.rst:2 21 | msgid "Modules" 22 | msgstr "" 23 | -------------------------------------------------------------------------------- /source/locale/es_419/LC_MESSAGES/modules/management/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:53+0000\n" 13 | "Language-Team: Spanish (Latin America) (https://www.transifex.com/glpi/teams/1637/es_419/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: es_419\n" 18 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/modules/management/index.rst:2 21 | msgid "Management" 22 | msgstr "" 23 | 24 | #: ../../source/modules/management/index.rst:4 25 | msgid "The GLPI Management module is used to manage the following items:" 26 | msgstr "" 27 | -------------------------------------------------------------------------------- /source/locale/es_419/LC_MESSAGES/modules/overview/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:53+0000\n" 13 | "Language-Team: Spanish (Latin America) (https://www.transifex.com/glpi/teams/1637/es_419/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: es_419\n" 18 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/modules/overview/index.rst:2 21 | msgid "Overview" 22 | msgstr "" 23 | -------------------------------------------------------------------------------- /source/locale/es_419/LC_MESSAGES/modules/tabs/all.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: Spanish (Latin America) (https://www.transifex.com/glpi/teams/1637/es_419/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: es_419\n" 18 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/modules/tabs/all.rst:2 21 | msgid "All Information" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tabs/all.rst:4 25 | msgid "" 26 | "For an item, all information is displayed on one page from the *All* tab. " 27 | "This shows all of the tabs of an object's form in one view, one below the " 28 | "other." 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /source/locale/es_419/LC_MESSAGES/modules/tabs/contacts.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: Spanish (Latin America) (https://www.transifex.com/glpi/teams/1637/es_419/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: es_419\n" 18 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/modules/tabs/contacts.rst:2 21 | msgid "Associated Contacts" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tabs/contacts.rst:4 25 | msgid "The *Contacts* tab is used to show or add linked contacts." 26 | msgstr "" 27 | 28 | #: ../../source/modules/tabs/contacts.rst-1 29 | msgid "View and add associated contacts" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /source/locale/es_419/LC_MESSAGES/modules/tabs/elements.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: Spanish (Latin America) (https://www.transifex.com/glpi/teams/1637/es_419/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: es_419\n" 18 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/modules/tabs/elements.rst:2 21 | msgid "Associated elements" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tabs/elements.rst:4 25 | msgid "The *Items* tab is used to show or add linked assets." 26 | msgstr "" 27 | 28 | #: ../../source/modules/tabs/elements.rst-1 29 | msgid "Adding and viewing an element" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /source/locale/es_419/LC_MESSAGES/modules/tabs/suppliers.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: Spanish (Latin America) (https://www.transifex.com/glpi/teams/1637/es_419/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: es_419\n" 18 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/modules/tabs/suppliers.rst:2 21 | msgid "Suppliers" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tabs/suppliers.rst:4 25 | msgid "The *Suppliers* tab is used to show or add linked suppliers." 26 | msgstr "" 27 | 28 | #: ../../source/modules/tabs/suppliers.rst-1 29 | msgid "Screen for creating a link with a supplier" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /source/locale/es_419/LC_MESSAGES/modules/tabs/templates.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: Spanish (Latin America) (https://www.transifex.com/glpi/teams/1637/es_419/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: es_419\n" 18 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/modules/tabs/templates.rst:2 21 | msgid "" 22 | "It is possible to use :doc:`templates to generate this object " 23 | "<../overview/templates>`." 24 | msgstr "" 25 | -------------------------------------------------------------------------------- /source/locale/es_419/LC_MESSAGES/modules/tools/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: Spanish (Latin America) (https://www.transifex.com/glpi/teams/1637/es_419/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: es_419\n" 18 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/modules/tools/index.rst:2 21 | msgid "Tools" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tools/index.rst:4 25 | msgid "" 26 | "The GLPI Tools module is used to manage projects, reminders, RSS feeds, " 27 | "knowledge base, reservations and to generate reports." 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /source/locale/fr: -------------------------------------------------------------------------------- 1 | fr_FR -------------------------------------------------------------------------------- /source/locale/fr_FR/LC_MESSAGES/advanced/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:53+0000\n" 13 | "Language-Team: French (France) (https://www.transifex.com/glpi/teams/1637/fr_FR/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: fr_FR\n" 18 | "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/advanced/index.rst:2 21 | msgid "Advanced Configuration" 22 | msgstr "" 23 | -------------------------------------------------------------------------------- /source/locale/fr_FR/LC_MESSAGES/first-steps/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:55+0000\n" 13 | "Language-Team: French (France) (https://www.transifex.com/glpi/teams/1637/fr_FR/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: fr_FR\n" 18 | "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/first-steps/index.rst:2 21 | msgid "First Steps with GLPI" 22 | msgstr "" 23 | 24 | #: ../../source/first-steps/index.rst:4 25 | msgid "Everything you need to know to get started with GLPI!" 26 | msgstr "" 27 | -------------------------------------------------------------------------------- /source/locale/fr_FR/LC_MESSAGES/modules/administration/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: French (France) (https://www.transifex.com/glpi/teams/1637/fr_FR/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: fr_FR\n" 18 | "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/modules/administration/index.rst:2 21 | msgid "Administration" 22 | msgstr "" 23 | 24 | #: ../../source/modules/administration/index.rst:4 25 | msgid "" 26 | "Administration module allows to administrate users, groups, entities, " 27 | "profiles, rules and dictionnaries." 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /source/locale/fr_FR/LC_MESSAGES/modules/assistance/tickets.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: French (France) (https://www.transifex.com/glpi/teams/1637/fr_FR/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: fr_FR\n" 18 | "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/modules/assistance/tickets.rst:2 21 | msgid "Tickets" 22 | msgstr "" 23 | -------------------------------------------------------------------------------- /source/locale/fr_FR/LC_MESSAGES/modules/configuration/general/glpi_network.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:55+0000\n" 13 | "Language-Team: French (France) (https://www.transifex.com/glpi/teams/1637/fr_FR/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: fr_FR\n" 18 | "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/modules/configuration/general/glpi_network.rst:2 21 | msgid "GLPI Network" 22 | msgstr "" 23 | 24 | #: ../../source/modules/configuration/general/glpi_network.rst:4 25 | msgid "Here you can enter your GLPI Network registration key." 26 | msgstr "" 27 | -------------------------------------------------------------------------------- /source/locale/fr_FR/LC_MESSAGES/modules/configuration/general/impact_analysis.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:55+0000\n" 13 | "Language-Team: French (France) (https://www.transifex.com/glpi/teams/1637/fr_FR/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: fr_FR\n" 18 | "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/modules/configuration/general/impact_analysis.rst:2 21 | msgid "Impact analysis" 22 | msgstr "" 23 | 24 | #: ../../source/modules/configuration/general/impact_analysis.rst:4 25 | msgid "" 26 | "This tab allows you to control which types of items have the Impact analysis" 27 | " feature enabled." 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /source/locale/fr_FR/LC_MESSAGES/modules/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:53+0000\n" 13 | "Language-Team: French (France) (https://www.transifex.com/glpi/teams/1637/fr_FR/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: fr_FR\n" 18 | "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/modules/index.rst:2 21 | msgid "Modules" 22 | msgstr "" 23 | -------------------------------------------------------------------------------- /source/locale/fr_FR/LC_MESSAGES/modules/management/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:53+0000\n" 13 | "Language-Team: French (France) (https://www.transifex.com/glpi/teams/1637/fr_FR/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: fr_FR\n" 18 | "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/modules/management/index.rst:2 21 | msgid "Management" 22 | msgstr "" 23 | 24 | #: ../../source/modules/management/index.rst:4 25 | msgid "The GLPI Management module is used to manage the following items:" 26 | msgstr "" 27 | -------------------------------------------------------------------------------- /source/locale/fr_FR/LC_MESSAGES/modules/overview/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:53+0000\n" 13 | "Language-Team: French (France) (https://www.transifex.com/glpi/teams/1637/fr_FR/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: fr_FR\n" 18 | "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/modules/overview/index.rst:2 21 | msgid "Overview" 22 | msgstr "" 23 | -------------------------------------------------------------------------------- /source/locale/fr_FR/LC_MESSAGES/modules/tabs/all.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: French (France) (https://www.transifex.com/glpi/teams/1637/fr_FR/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: fr_FR\n" 18 | "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/modules/tabs/all.rst:2 21 | msgid "All Information" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tabs/all.rst:4 25 | msgid "" 26 | "For an item, all information is displayed on one page from the *All* tab. " 27 | "This shows all of the tabs of an object's form in one view, one below the " 28 | "other." 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /source/locale/fr_FR/LC_MESSAGES/modules/tabs/contacts.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: French (France) (https://www.transifex.com/glpi/teams/1637/fr_FR/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: fr_FR\n" 18 | "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/modules/tabs/contacts.rst:2 21 | msgid "Associated Contacts" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tabs/contacts.rst:4 25 | msgid "The *Contacts* tab is used to show or add linked contacts." 26 | msgstr "" 27 | 28 | #: ../../source/modules/tabs/contacts.rst-1 29 | msgid "View and add associated contacts" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /source/locale/fr_FR/LC_MESSAGES/modules/tabs/elements.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: French (France) (https://www.transifex.com/glpi/teams/1637/fr_FR/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: fr_FR\n" 18 | "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/modules/tabs/elements.rst:2 21 | msgid "Associated elements" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tabs/elements.rst:4 25 | msgid "The *Items* tab is used to show or add linked assets." 26 | msgstr "" 27 | 28 | #: ../../source/modules/tabs/elements.rst-1 29 | msgid "Adding and viewing an element" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /source/locale/fr_FR/LC_MESSAGES/modules/tabs/suppliers.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: French (France) (https://www.transifex.com/glpi/teams/1637/fr_FR/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: fr_FR\n" 18 | "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/modules/tabs/suppliers.rst:2 21 | msgid "Suppliers" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tabs/suppliers.rst:4 25 | msgid "The *Suppliers* tab is used to show or add linked suppliers." 26 | msgstr "" 27 | 28 | #: ../../source/modules/tabs/suppliers.rst-1 29 | msgid "Screen for creating a link with a supplier" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /source/locale/fr_FR/LC_MESSAGES/modules/tabs/templates.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: French (France) (https://www.transifex.com/glpi/teams/1637/fr_FR/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: fr_FR\n" 18 | "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/modules/tabs/templates.rst:2 21 | msgid "" 22 | "It is possible to use :doc:`templates to generate this object " 23 | "<../overview/templates>`." 24 | msgstr "" 25 | -------------------------------------------------------------------------------- /source/locale/fr_FR/LC_MESSAGES/modules/tools/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: GLPI 10.0\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 12 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 13 | "Language-Team: French (France) (https://www.transifex.com/glpi/teams/1637/fr_FR/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: fr_FR\n" 18 | "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 19 | 20 | #: ../../source/modules/tools/index.rst:2 21 | msgid "Tools" 22 | msgstr "" 23 | 24 | #: ../../source/modules/tools/index.rst:4 25 | msgid "" 26 | "The GLPI Tools module is used to manage projects, reminders, RSS feeds, " 27 | "knowledge base, reservations and to generate reports." 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /source/locale/pt: -------------------------------------------------------------------------------- 1 | pt_BR -------------------------------------------------------------------------------- /source/locale/pt_BR/LC_MESSAGES/advanced/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Matheus Rafael, 2023 8 | # 9 | #, fuzzy 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: GLPI 10.0\n" 13 | "Report-Msgid-Bugs-To: \n" 14 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 15 | "PO-Revision-Date: 2023-01-19 09:53+0000\n" 16 | "Last-Translator: Matheus Rafael, 2023\n" 17 | "Language-Team: Portuguese (Brazil) (https://www.transifex.com/glpi/teams/1637/pt_BR/)\n" 18 | "MIME-Version: 1.0\n" 19 | "Content-Type: text/plain; charset=UTF-8\n" 20 | "Content-Transfer-Encoding: 8bit\n" 21 | "Language: pt_BR\n" 22 | "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 23 | 24 | #: ../../source/advanced/index.rst:2 25 | msgid "Advanced Configuration" 26 | msgstr "Configuração Avançada" 27 | -------------------------------------------------------------------------------- /source/locale/pt_BR/LC_MESSAGES/modules/assistance/tickets.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Matheus Rafael, 2023 8 | # 9 | #, fuzzy 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: GLPI 10.0\n" 13 | "Report-Msgid-Bugs-To: \n" 14 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 15 | "PO-Revision-Date: 2023-01-19 09:54+0000\n" 16 | "Last-Translator: Matheus Rafael, 2023\n" 17 | "Language-Team: Portuguese (Brazil) (https://www.transifex.com/glpi/teams/1637/pt_BR/)\n" 18 | "MIME-Version: 1.0\n" 19 | "Content-Type: text/plain; charset=UTF-8\n" 20 | "Content-Transfer-Encoding: 8bit\n" 21 | "Language: pt_BR\n" 22 | "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 23 | 24 | #: ../../source/modules/assistance/tickets.rst:2 25 | msgid "Tickets" 26 | msgstr "Chamados" 27 | -------------------------------------------------------------------------------- /source/locale/pt_BR/LC_MESSAGES/modules/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Matheus Rafael, 2023 8 | # 9 | #, fuzzy 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: GLPI 10.0\n" 13 | "Report-Msgid-Bugs-To: \n" 14 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 15 | "PO-Revision-Date: 2023-01-19 09:53+0000\n" 16 | "Last-Translator: Matheus Rafael, 2023\n" 17 | "Language-Team: Portuguese (Brazil) (https://www.transifex.com/glpi/teams/1637/pt_BR/)\n" 18 | "MIME-Version: 1.0\n" 19 | "Content-Type: text/plain; charset=UTF-8\n" 20 | "Content-Transfer-Encoding: 8bit\n" 21 | "Language: pt_BR\n" 22 | "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 23 | 24 | #: ../../source/modules/index.rst:2 25 | msgid "Modules" 26 | msgstr "Módulos" 27 | -------------------------------------------------------------------------------- /source/locale/pt_BR/LC_MESSAGES/modules/overview/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2016-2023, GLPI Project, Teclib' 3 | # This file is distributed under the same license as the GLPI package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Matheus Rafael, 2023 8 | # 9 | #, fuzzy 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: GLPI 10.0\n" 13 | "Report-Msgid-Bugs-To: \n" 14 | "POT-Creation-Date: 2023-01-19 10:29+0100\n" 15 | "PO-Revision-Date: 2023-01-19 09:53+0000\n" 16 | "Last-Translator: Matheus Rafael, 2023\n" 17 | "Language-Team: Portuguese (Brazil) (https://www.transifex.com/glpi/teams/1637/pt_BR/)\n" 18 | "MIME-Version: 1.0\n" 19 | "Content-Type: text/plain; charset=UTF-8\n" 20 | "Content-Transfer-Encoding: 8bit\n" 21 | "Language: pt_BR\n" 22 | "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 23 | 24 | #: ../../source/modules/overview/index.rst:2 25 | msgid "Overview" 26 | msgstr "Visão geral" 27 | -------------------------------------------------------------------------------- /source/modules/administration/images/actionKbd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/actionKbd.png -------------------------------------------------------------------------------- /source/modules/administration/images/actionMozilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/actionMozilla.png -------------------------------------------------------------------------------- /source/modules/administration/images/actionS42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/actionS42.png -------------------------------------------------------------------------------- /source/modules/administration/images/addUserAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/addUserAll.png -------------------------------------------------------------------------------- /source/modules/administration/images/administration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/administration.png -------------------------------------------------------------------------------- /source/modules/administration/images/assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/assets.png -------------------------------------------------------------------------------- /source/modules/administration/images/assistancePO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/assistancePO.png -------------------------------------------------------------------------------- /source/modules/administration/images/assistance_general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/assistance_general.png -------------------------------------------------------------------------------- /source/modules/administration/images/associations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/associations.png -------------------------------------------------------------------------------- /source/modules/administration/images/changes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/changes.png -------------------------------------------------------------------------------- /source/modules/administration/images/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/config.png -------------------------------------------------------------------------------- /source/modules/administration/images/configtransfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/configtransfer.png -------------------------------------------------------------------------------- /source/modules/administration/images/criteriaKbd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/criteriaKbd.png -------------------------------------------------------------------------------- /source/modules/administration/images/criteriaMozilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/criteriaMozilla.png -------------------------------------------------------------------------------- /source/modules/administration/images/criteriaS42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/criteriaS42.png -------------------------------------------------------------------------------- /source/modules/administration/images/dictionaries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/dictionaries.png -------------------------------------------------------------------------------- /source/modules/administration/images/followups_and_tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/followups_and_tasks.png -------------------------------------------------------------------------------- /source/modules/administration/images/impersonate_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/impersonate_banner.png -------------------------------------------------------------------------------- /source/modules/administration/images/impersonate_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/impersonate_icon.png -------------------------------------------------------------------------------- /source/modules/administration/images/legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/legend.png -------------------------------------------------------------------------------- /source/modules/administration/images/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/logs.png -------------------------------------------------------------------------------- /source/modules/administration/images/mailqueue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/mailqueue.png -------------------------------------------------------------------------------- /source/modules/administration/images/management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/management.png -------------------------------------------------------------------------------- /source/modules/administration/images/notifGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/notifGroup.png -------------------------------------------------------------------------------- /source/modules/administration/images/planning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/planning.png -------------------------------------------------------------------------------- /source/modules/administration/images/planning_visibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/planning_visibility.png -------------------------------------------------------------------------------- /source/modules/administration/images/problems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/problems.png -------------------------------------------------------------------------------- /source/modules/administration/images/projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/projects.png -------------------------------------------------------------------------------- /source/modules/administration/images/resultMozilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/resultMozilla.png -------------------------------------------------------------------------------- /source/modules/administration/images/rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/rules.png -------------------------------------------------------------------------------- /source/modules/administration/images/tickets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/tickets.png -------------------------------------------------------------------------------- /source/modules/administration/images/toolsPO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/toolsPO.png -------------------------------------------------------------------------------- /source/modules/administration/images/tools_standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/tools_standard.png -------------------------------------------------------------------------------- /source/modules/administration/images/validations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/administration/images/validations.png -------------------------------------------------------------------------------- /source/modules/administration/index.rst: -------------------------------------------------------------------------------- 1 | Administration 2 | ============== 3 | 4 | Administration module allows to administrate users, groups, entities, profiles, rules and dictionnaries. 5 | 6 | .. toctree:: 7 | :maxdepth: 1 8 | 9 | users/users 10 | groups 11 | entities 12 | rules/rulesmanagement 13 | dictionnaries 14 | profiles/profiles 15 | mailqueue 16 | logs 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /source/modules/administration/logs.rst: -------------------------------------------------------------------------------- 1 | Logs 2 | ==== 3 | 4 | This menu allows to display and sort logs. 5 | 6 | The logs page displays type of modified information (computer, reservation, ticket...), the modification date, GLPI service (inventory, configuration, tickets...) and a message detailing the event. 7 | 8 | .. note:: 9 | 10 | * Log level can be parameterized in field **Log Level** of tab **System** of general configuration. 11 | * Log retention period can be parameterized in automatic actions. 12 | 13 | .. figure:: images/logs.png 14 | :alt: A log display 15 | :align: center 16 | -------------------------------------------------------------------------------- /source/modules/administration/profiles/configurationtab.rst: -------------------------------------------------------------------------------- 1 | .. not included in any toctree, but "included" with link 2 | 3 | :orphan: 4 | 5 | .. |options_search| image:: ../images/options_search.png 6 | 7 | Setup permissions 8 | ----------------- 9 | 10 | The 7 standard permissions will not be listed (see :doc:`Permissions description `). 11 | 12 | All Configuration Permissions 13 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 14 | 15 | .. figure:: ../images/config.png 16 | :alt: All Configuration Permissions 17 | :align: center 18 | 19 | All Configuration Permissions 20 | 21 | The **Search result display** permission allows to configure the displayed columns in the GLPI search engine.. 22 | 23 | * **User Display**: display a *Personal view* tab allowing display customization for the user, the customization being done object by object. 24 | 25 | * **Default Display**: allows to modify standard display that will apply to each user not having a personal view. 26 | -------------------------------------------------------------------------------- /source/modules/assets/global.rst: -------------------------------------------------------------------------------- 1 | Global search 2 | ============= 3 | 4 | Menu `Asset > Global` allows to perform a global search on default view columns for allowed elements. This search is limited to following assets: 5 | 6 | * Computer, 7 | * Contact, 8 | * Contract, 9 | * Document, 10 | * Monitor, 11 | * NetworkEquipment, 12 | * Peripheral, 13 | * Phone, 14 | * Printer, 15 | * Software, 16 | * SoftwareLicense, 17 | * Ticket, 18 | * Problem, 19 | * Change', 20 | * User, 21 | * Group, 22 | * Project, 23 | * Supplier', 24 | * Budget, 25 | * Certificate, 26 | * Line, 27 | * Datacenter, 28 | * DCRoom, 29 | * Enclosure, 30 | * PDU, 31 | * Rack, 32 | * Cluster, 33 | * Domain 34 | 35 | This search allows for instance to perform a query by status, IP or MAC address. 36 | -------------------------------------------------------------------------------- /source/modules/assets/images/antivirus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/antivirus.png -------------------------------------------------------------------------------- /source/modules/assets/images/cartridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/cartridge.png -------------------------------------------------------------------------------- /source/modules/assets/images/component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/component.png -------------------------------------------------------------------------------- /source/modules/assets/images/component_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/component_add.png -------------------------------------------------------------------------------- /source/modules/assets/images/component_computer_massives_actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/component_computer_massives_actions.png -------------------------------------------------------------------------------- /source/modules/assets/images/component_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/component_group.png -------------------------------------------------------------------------------- /source/modules/assets/images/component_select_group_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/component_select_group_left.png -------------------------------------------------------------------------------- /source/modules/assets/images/component_select_group_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/component_select_group_right.png -------------------------------------------------------------------------------- /source/modules/assets/images/component_update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/component_update.png -------------------------------------------------------------------------------- /source/modules/assets/images/component_update_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/component_update_link.png -------------------------------------------------------------------------------- /source/modules/assets/images/connections_computer_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/connections_computer_list.png -------------------------------------------------------------------------------- /source/modules/assets/images/connections_monitor_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/connections_monitor_list.png -------------------------------------------------------------------------------- /source/modules/assets/images/consumable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/consumable.png -------------------------------------------------------------------------------- /source/modules/assets/images/consumable_summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/consumable_summary.png -------------------------------------------------------------------------------- /source/modules/assets/images/links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/links.png -------------------------------------------------------------------------------- /source/modules/assets/images/os.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/os.png -------------------------------------------------------------------------------- /source/modules/assets/images/os_dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/os_dropdown.png -------------------------------------------------------------------------------- /source/modules/assets/images/ports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/ports.png -------------------------------------------------------------------------------- /source/modules/assets/images/ports_network_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/ports_network_name.png -------------------------------------------------------------------------------- /source/modules/assets/images/ports_vlan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/ports_vlan.png -------------------------------------------------------------------------------- /source/modules/assets/images/softwares_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/softwares_add.png -------------------------------------------------------------------------------- /source/modules/assets/images/softwares_licence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/softwares_licence.png -------------------------------------------------------------------------------- /source/modules/assets/images/softwares_licence_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/softwares_licence_add.png -------------------------------------------------------------------------------- /source/modules/assets/images/softwares_licence_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/softwares_licence_list.png -------------------------------------------------------------------------------- /source/modules/assets/images/softwares_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/softwares_list.png -------------------------------------------------------------------------------- /source/modules/assets/images/volumes_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/volumes_add.png -------------------------------------------------------------------------------- /source/modules/assets/images/volumes_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/volumes_list.png -------------------------------------------------------------------------------- /source/modules/assets/images/volumes_update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assets/images/volumes_update.png -------------------------------------------------------------------------------- /source/modules/assets/tabs/antivirus.rst: -------------------------------------------------------------------------------- 1 | Antivirus 2 | ~~~~~~~~~ 3 | 4 | This tab, named `Antivirus` and visible in a `Computer` entry, allows to manage the antivirus running on a computer. 5 | 6 | .. image:: /modules/assets/images/antivirus.png 7 | :alt: Antivirus screen 8 | :align: center 9 | 10 | An antivirus is characterized by: 11 | 12 | * name 13 | * active/non active 14 | * vendor 15 | * update status 16 | * antivirus version 17 | * signature database version 18 | * expiration date 19 | 20 | .. note:: 21 | 22 | Every deletion or addition of an antivirus is recorded in the history of the computer. 23 | 24 | .. note:: 25 | 26 | If using native inventory or third-party inventory tool, the antivirus information can be automatically imported and updated. 27 | -------------------------------------------------------------------------------- /source/modules/assets/tabs/links.rst: -------------------------------------------------------------------------------- 1 | :orphan: 2 | 3 | External links 4 | ~~~~~~~~~~~~~~ 5 | 6 | This tab allows to manage external links. 7 | 8 | For some elements, the external links are managed from the menu `Setup > External links`. See :doc:`Manage external links `. 9 | 10 | .. image:: /modules/assets/images/links.png 11 | :alt: Links screen 12 | :align: center 13 | -------------------------------------------------------------------------------- /source/modules/assets/tabs/os.rst: -------------------------------------------------------------------------------- 1 | Operating systems 2 | ~~~~~~~~~~~~~~~~~ 3 | 4 | The information on operating systems for a computer are visible in tabs `Operating system` for a Computer entry. 5 | 6 | .. image:: /modules/assets/images/os.png 7 | :alt: Screen presenting an operating system 8 | :align: center 9 | 10 | An operating system is associated with the following elements: 11 | 12 | * Name 13 | * Version 14 | * Architecture 15 | * Service Pack 16 | * Kernel 17 | * Edition 18 | * Product ID 19 | * Serial number 20 | 21 | .. note:: 22 | 23 | The creation and management of the titles for operating systems is located in the menu `Setup > Drop-downs > Operating systems`. 24 | 25 | .. image:: /modules/assets/images/os_dropdown.png 26 | :alt: Screen of titles definition for operating systems 27 | :align: center 28 | 29 | .. note:: 30 | 31 | A deletion or addition of an operating system is recorded in the history of the computer. 32 | 33 | 34 | .. note:: 35 | 36 | If using native inventory or third-party inventory tool, the operation system information can be automatically imported and updated. 37 | -------------------------------------------------------------------------------- /source/modules/assets/tabs/virtualization.rst: -------------------------------------------------------------------------------- 1 | Virtualization 2 | ~~~~~~~~~~~~~~ 3 | 4 | This tab displays the virtualization systems (virtual machines, containers, jails....) associated to a host. 5 | 6 | 7 | The available information vary from one system to another: for a virtual machine for instance, it includes name, virtualization system, virtualization model, state, allocated memory, number of logical processors... as well as the name of the physical machine (the host). 8 | 9 | GLPI establishes the link between a host and a virtual machine based on the unique identifier (UUID). In some case, it is possible that the UUID is different inside the physical machine and the virtual machine; it is therefore impossible to make the link automatically. 10 | 11 | The only way to link manually a virtual machine to a physical machine is to attribute the *same* UUID to the virtual machine declared on the host and to the virtual machine inside GLPI. 12 | 13 | .. note:: 14 | 15 | If using native inventory or third-party inventory tool, the virtualization information can be automatically imported and updated. 16 | -------------------------------------------------------------------------------- /source/modules/assistance/images/itilcategory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assistance/images/itilcategory.png -------------------------------------------------------------------------------- /source/modules/assistance/images/lifecycle_changes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assistance/images/lifecycle_changes.png -------------------------------------------------------------------------------- /source/modules/assistance/images/lifecycle_problems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assistance/images/lifecycle_problems.png -------------------------------------------------------------------------------- /source/modules/assistance/images/lifecycle_tickets_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assistance/images/lifecycle_tickets_simple.png -------------------------------------------------------------------------------- /source/modules/assistance/images/lifecycle_tickets_standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assistance/images/lifecycle_tickets_standard.png -------------------------------------------------------------------------------- /source/modules/assistance/images/priority_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assistance/images/priority_matrix.png -------------------------------------------------------------------------------- /source/modules/assistance/images/stats_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assistance/images/stats_item.png -------------------------------------------------------------------------------- /source/modules/assistance/images/ticket_problems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/assistance/images/ticket_problems.png -------------------------------------------------------------------------------- /source/modules/assistance/index.rst: -------------------------------------------------------------------------------- 1 | Assistance 2 | ========== 3 | 4 | Assistance module allows users to create, follow and process tickets. Plannings, statistics and recurrent tickets are also available. 5 | 6 | Depending on profile permissions, it is possible as well to create, follow and process problems and changes. 7 | 8 | GLPI assistance module is compliant with ITIL best practises guide and integrates therefore some fields normalization. However, following ITIL best practises is recommanded but not mandatory and it is perfectly feasible, thanks to module's flexibility, to implement an assistance service tailored to the organization's needs. 9 | 10 | .. toctree:: 11 | :maxdepth: 2 12 | 13 | actors 14 | prioritymatrix 15 | tickets 16 | problems 17 | changes 18 | lifecyclematrix 19 | planning 20 | statistics 21 | categories 22 | 23 | Tickets, Changes and Problems can be viewed globally in a Kanban view. 24 | For more information about the Kanban feature, please refer to the :doc:`full documentation `. 25 | -------------------------------------------------------------------------------- /source/modules/assistance/tickets.rst: -------------------------------------------------------------------------------- 1 | Tickets 2 | ======= 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | tickets/ticketopening 8 | tickets/ticketlifecycle 9 | tickets/ticketmanagement 10 | tickets/recurrentticket 11 | tickets/ticketadvanced 12 | -------------------------------------------------------------------------------- /source/modules/configuration/authentication/images/authConfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/configuration/authentication/images/authConfig.png -------------------------------------------------------------------------------- /source/modules/configuration/authentication/images/ldap-advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/configuration/authentication/images/ldap-advanced.png -------------------------------------------------------------------------------- /source/modules/configuration/authentication/images/ldap-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/configuration/authentication/images/ldap-groups.png -------------------------------------------------------------------------------- /source/modules/configuration/authentication/images/ldap-users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/configuration/authentication/images/ldap-users.png -------------------------------------------------------------------------------- /source/modules/configuration/authentication/images/ldap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/configuration/authentication/images/ldap.png -------------------------------------------------------------------------------- /source/modules/configuration/authentication/imap.rst: -------------------------------------------------------------------------------- 1 | Authenticate from IMAP 2 | ====================== 3 | 4 | The interfacing of GLPI with mail servers as a source of authentication. 5 | 6 | This authentication source is configured from the menu `Setup > Authentication > Mail servers`. 7 | 8 | This ability can compensate for the absence of directory or of CAS server. 9 | However, contrary to what is possible with other sources of other authentication sources, no mass import is available. 10 | A user is authenticated by GLPI if the server of mail server has authenticated him beforehand. 11 | 12 | The connection to the mail server uses the IMAP or POP protocols. 13 | The options of SSL and TLS encryption are available. 14 | The distinction is made between the mail domain which is the part of the of the mail address that follows the asterisk character, and the fully qualified name of the mail server, which can serve several mail domains. -------------------------------------------------------------------------------- /source/modules/configuration/dropdowns/tabs/translation.rst: -------------------------------------------------------------------------------- 1 | Translation 2 | ~~~~~~~~~~~ 3 | 4 | This tab is reserved for names and only appears if the translation of dropdown names has been enabled in the general configuration. 5 | 6 | .. image:: ../images/dropdown_translation.png 7 | :alt: Dropdown translation tab 8 | :align: center 9 | :scale: 50% 10 | 11 | This tab lists all current translations of the dropdown name and allows you to add new ones. 12 | -------------------------------------------------------------------------------- /source/modules/configuration/general/api.rst: -------------------------------------------------------------------------------- 1 | API 2 | === 3 | 4 | API configuration parameters and access limitations. 5 | 6 | Here you can see/set the URL for the API. 7 | This should match your GLPI URL with `/apirest.php` at the end. 8 | 9 | There is also a link for the API documentation. 10 | 11 | Authentication 12 | -------------- 13 | 14 | There two methods of logging in to the API that can be individually enabled. 15 | - Credentials - Allows the use of a user's login and password 16 | - External token - Allows the use of a personal token which can be found on the user's personal page (Only visible to them) 17 | 18 | You can also manage the registered API clients from this tab. 19 | Each client is comprised of a name, a logging method (historical, logs, or none) and an application token at least. 20 | You may also configure an IP range to limit access to specific clients. -------------------------------------------------------------------------------- /source/modules/configuration/general/glpi_network.rst: -------------------------------------------------------------------------------- 1 | GLPI Network 2 | ============ 3 | 4 | Here you can enter your GLPI Network registration key. -------------------------------------------------------------------------------- /source/modules/configuration/general/impact_analysis.rst: -------------------------------------------------------------------------------- 1 | Impact analysis 2 | =============== 3 | 4 | This tab allows you to control which types of items have the Impact analysis feature enabled. -------------------------------------------------------------------------------- /source/modules/configuration/general/index.rst: -------------------------------------------------------------------------------- 1 | General configuration 2 | ===================== 3 | 4 | GLPI general configuration allow global GLPI configuration. 5 | Some of the parameters can be changed by users in their session. 6 | 7 | .. toctree:: 8 | :maxdepth: 2 9 | 10 | general_configuration 11 | default_values 12 | assets 13 | assistance 14 | management 15 | logs_purge 16 | system 17 | security 18 | performances 19 | api 20 | impact_analysis 21 | sql_replicas 22 | glpi_network 23 | 24 | -------------------------------------------------------------------------------- /source/modules/configuration/general/logs_purge.rst: -------------------------------------------------------------------------------- 1 | Logs purge 2 | ========== 3 | 4 | Log purge configuration. 5 | 6 | Configure how long to keep historical log entries base on the type of the entry or globally. 7 | 8 | The log purge is done by the `PurgeLogs` automatic action. -------------------------------------------------------------------------------- /source/modules/configuration/general/management.rst: -------------------------------------------------------------------------------- 1 | Management 2 | ========== 3 | 4 | The only configuration parameter available on this page is the size limit for uploaded documents. 5 | 6 | .. note:: 7 | 8 | If the `upload_max_filesize` PHP directive is lower than what is set here, then `upload_max_filesize` will be the limiting factor. 9 | You may also need to ensure the `post_max_size` directive is set at least a little above `upload_max_filesize`. -------------------------------------------------------------------------------- /source/modules/configuration/general/performances.rst: -------------------------------------------------------------------------------- 1 | Performances 2 | ============ 3 | 4 | Displays information related to the different caching systems used by GLPI including: 5 | 6 | - PHP opcode cache - Improves performance of the PHP engine when interpreting the different PHP files. 7 | - User data cache - General-purpose cache used by GLPI. 8 | - Translation cache - Cache used for translations to avoid having to read the locale files for all translations. 9 | 10 | You also have the ability to clear the different caches from here. 11 | 12 | The cache systems for user data and translations can be changed or configured from the `cache:configure` CLI command. -------------------------------------------------------------------------------- /source/modules/configuration/general/security.rst: -------------------------------------------------------------------------------- 1 | Security 2 | ======== 3 | 4 | Security related parameters such as the password security policy and password expiration policy. 5 | 6 | Password security policy 7 | ------------------------ 8 | 9 | The following options can be configured as part of the password security policy: 10 | 11 | - Password security policy validation - The security policy is only enforced if this is enabled 12 | - Password minimum length 13 | - Password need digit 14 | - Password need uppercase character 15 | - Password need lowercase character 16 | - Password need symbol 17 | 18 | Password expiration policy 19 | -------------------------- 20 | 21 | The following options can be configured as part of the password expiration policy: 22 | 23 | - Password expiration delay (in days) - Can be set to never to disable password expiration 24 | - Password expiration notice time (in days) 25 | - Delay before account deactivation (in days) -------------------------------------------------------------------------------- /source/modules/configuration/images/component_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/configuration/images/component_details.png -------------------------------------------------------------------------------- /source/modules/configuration/images/component_dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/configuration/images/component_dropdown.png -------------------------------------------------------------------------------- /source/modules/configuration/images/component_elements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/configuration/images/component_elements.png -------------------------------------------------------------------------------- /source/modules/configuration/images/component_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/configuration/images/component_list.png -------------------------------------------------------------------------------- /source/modules/configuration/images/configAssistance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/configuration/images/configAssistance.png -------------------------------------------------------------------------------- /source/modules/configuration/images/configparc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/configuration/images/configparc.png -------------------------------------------------------------------------------- /source/modules/configuration/images/configpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/configuration/images/configpc.png -------------------------------------------------------------------------------- /source/modules/configuration/images/default_values_assistance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/configuration/images/default_values_assistance.png -------------------------------------------------------------------------------- /source/modules/configuration/images/default_values_dashboards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/configuration/images/default_values_dashboards.png -------------------------------------------------------------------------------- /source/modules/configuration/images/default_values_duedate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/configuration/images/default_values_duedate.png -------------------------------------------------------------------------------- /source/modules/configuration/images/default_values_personalization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/configuration/images/default_values_personalization.png -------------------------------------------------------------------------------- /source/modules/configuration/images/dropdown_translation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/configuration/images/dropdown_translation.png -------------------------------------------------------------------------------- /source/modules/configuration/images/general_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/configuration/images/general_configuration.png -------------------------------------------------------------------------------- /source/modules/configuration/images/marketplace_discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/configuration/images/marketplace_discover.png -------------------------------------------------------------------------------- /source/modules/configuration/images/sockets_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/configuration/images/sockets_location.png -------------------------------------------------------------------------------- /source/modules/configuration/images/sql_replicas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/configuration/images/sql_replicas.png -------------------------------------------------------------------------------- /source/modules/configuration/images/system_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/configuration/images/system_config.png -------------------------------------------------------------------------------- /source/modules/configuration/images/system_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/configuration/images/system_info.png -------------------------------------------------------------------------------- /source/modules/configuration/images/system_maintenance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/configuration/images/system_maintenance.png -------------------------------------------------------------------------------- /source/modules/configuration/images/system_proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/configuration/images/system_proxy.png -------------------------------------------------------------------------------- /source/modules/configuration/index.rst: -------------------------------------------------------------------------------- 1 | Configuration 2 | ============= 3 | 4 | Configuration module gives access to all GLPI configuration options such as: 5 | - Global configuration 6 | - Notifications 7 | - Receivers 8 | - Automatic actions 9 | - Authentication 10 | - Plugins 11 | - Unicity criteria 12 | - External links 13 | 14 | .. toctree:: 15 | :maxdepth: 2 16 | 17 | authentication/index 18 | dropdowns/index 19 | components 20 | collectors 21 | notifications/index 22 | crontasks 23 | fields-unicity 24 | service_levels 25 | general/index 26 | external_links 27 | plugins 28 | -------------------------------------------------------------------------------- /source/modules/configuration/notifications/images/final_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/configuration/notifications/images/final_result.png -------------------------------------------------------------------------------- /source/modules/index.rst: -------------------------------------------------------------------------------- 1 | Modules 2 | ======= 3 | 4 | .. toctree:: 5 | :maxdepth: 3 6 | 7 | overview/index 8 | assets/index 9 | management/index 10 | tools/index 11 | assistance/index 12 | administration/index 13 | configuration/index 14 | -------------------------------------------------------------------------------- /source/modules/management/contacts.rst: -------------------------------------------------------------------------------- 1 | Contacts 2 | ======== 3 | 4 | GLPI users are the persons having an authentication for the GLPI application. External persons, usually associated with contracts, are known to GLPI as `Contacts`. 5 | 6 | A contact is characterized by usual identity informations as well as title, phone number, mail address... Defining a list of contact types allows to sort contacts by types. It is also possible to export a contact in vCard format. 7 | 8 | .. image:: images/contacts.png 9 | :alt: A contact in GLPI 10 | :align: center 11 | 12 | .. note:: 13 | The list of possible titles for a contact is the same as the list of possible titles for users. 14 | 15 | 16 | The different tabs 17 | ------------------ 18 | 19 | .. include:: ../tabs/suppliers.rst 20 | 21 | .. include:: ../tabs/documents.rst 22 | 23 | .. include:: ../tabs/external-links.rst 24 | 25 | .. include:: ../tabs/notes.rst 26 | 27 | .. include:: ../tabs/historical.rst 28 | 29 | .. include:: ../tabs/all.rst 30 | -------------------------------------------------------------------------------- /source/modules/management/images/budgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/management/images/budgets.png -------------------------------------------------------------------------------- /source/modules/management/images/certificates-licenses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/management/images/certificates-licenses.png -------------------------------------------------------------------------------- /source/modules/management/images/certificates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/management/images/certificates.png -------------------------------------------------------------------------------- /source/modules/management/images/child-licenses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/management/images/child-licenses.png -------------------------------------------------------------------------------- /source/modules/management/images/clusters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/management/images/clusters.png -------------------------------------------------------------------------------- /source/modules/management/images/contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/management/images/contacts.png -------------------------------------------------------------------------------- /source/modules/management/images/contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/management/images/contract.png -------------------------------------------------------------------------------- /source/modules/management/images/cost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/management/images/cost.png -------------------------------------------------------------------------------- /source/modules/management/images/data-centers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/management/images/data-centers.png -------------------------------------------------------------------------------- /source/modules/management/images/documents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/management/images/documents.png -------------------------------------------------------------------------------- /source/modules/management/images/domains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/management/images/domains.png -------------------------------------------------------------------------------- /source/modules/management/images/elements-budgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/management/images/elements-budgets.png -------------------------------------------------------------------------------- /source/modules/management/images/elements-clusters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/management/images/elements-clusters.png -------------------------------------------------------------------------------- /source/modules/management/images/elements-licenses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/management/images/elements-licenses.png -------------------------------------------------------------------------------- /source/modules/management/images/impact-datacenters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/management/images/impact-datacenters.png -------------------------------------------------------------------------------- /source/modules/management/images/licenses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/management/images/licenses.png -------------------------------------------------------------------------------- /source/modules/management/images/lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/management/images/lines.png -------------------------------------------------------------------------------- /source/modules/management/images/main-budgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/management/images/main-budgets.png -------------------------------------------------------------------------------- /source/modules/management/images/networks-clusters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/management/images/networks-clusters.png -------------------------------------------------------------------------------- /source/modules/management/images/plan-servers-room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/management/images/plan-servers-room.png -------------------------------------------------------------------------------- /source/modules/management/images/recordsadd-domains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/management/images/recordsadd-domains.png -------------------------------------------------------------------------------- /source/modules/management/images/recordslist-domains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/management/images/recordslist-domains.png -------------------------------------------------------------------------------- /source/modules/management/images/servers-room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/management/images/servers-room.png -------------------------------------------------------------------------------- /source/modules/management/images/serversrooms-data-centers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/management/images/serversrooms-data-centers.png -------------------------------------------------------------------------------- /source/modules/management/images/summary-licenses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/management/images/summary-licenses.png -------------------------------------------------------------------------------- /source/modules/management/images/suppliers-contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/management/images/suppliers-contract.png -------------------------------------------------------------------------------- /source/modules/management/images/suppliers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/management/images/suppliers.png -------------------------------------------------------------------------------- /source/modules/management/index.rst: -------------------------------------------------------------------------------- 1 | Management 2 | ========== 3 | 4 | The GLPI Management module is used to manage the following items: 5 | 6 | .. toctree:: 7 | :maxdepth: 1 8 | 9 | licenses 10 | budgets 11 | certificates 12 | suppliers 13 | contacts 14 | contract 15 | documents 16 | lines 17 | data-centers 18 | clusters 19 | domains 20 | -------------------------------------------------------------------------------- /source/modules/management/lines.rst: -------------------------------------------------------------------------------- 1 | Phone lines 2 | =========== 3 | 4 | Phone lines management in GLPI allows to: 5 | 6 | * Create an inventory of all organization's phone lines; 7 | * Follow information on each phone line; 8 | * Include phone lines in GLPI financial management. 9 | 10 | .. image:: images/lines.png 11 | :alt: A phone line in GLPI 12 | :align: center 13 | 14 | 15 | The different tabs 16 | ---------------------- 17 | 18 | .. include:: ../tabs/management.rst 19 | 20 | .. include:: ../tabs/contracts.rst 21 | 22 | .. include:: ../tabs/documents.rst 23 | 24 | .. include:: ../tabs/notes.rst 25 | 26 | .. include:: ../tabs/historical.rst 27 | 28 | .. include:: ../tabs/all.rst 29 | -------------------------------------------------------------------------------- /source/modules/overview/images/autofill_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/overview/images/autofill_mark.png -------------------------------------------------------------------------------- /source/modules/overview/index.rst: -------------------------------------------------------------------------------- 1 | Overview 2 | ======== 3 | 4 | .. toctree:: 5 | :maxdepth: 3 6 | 7 | actions 8 | templates 9 | status 10 | kanban -------------------------------------------------------------------------------- /source/modules/overview/status.rst: -------------------------------------------------------------------------------- 1 | Status in GLPI, specific view 2 | ----------------------------- 3 | 4 | Status information is frequently used to sort hardware that is disposed, available, assigned... It is possible to create new status values specific to the information system managed by GLPI. 5 | 6 | Defining new status and the object types they will be used for is under GLPI administrator's responsibility, see :doc:`dropdown configuration `. These defined status can be recursive, in order to ease management. 7 | 8 | Modifying an element's status can be done either from the element's form or using mass actions. 9 | 10 | A :ref:`report ` can display a summary of statuses sorted by asset types. :ref:`Global search on inventory ` allows to query inventory elements by status. 11 | -------------------------------------------------------------------------------- /source/modules/tabs/all.rst: -------------------------------------------------------------------------------- 1 | All Information 2 | ~~~~~~~~~~~~~~~ 3 | 4 | For an item, all information is displayed on one page from the *All* tab. This shows all of the tabs of an object's form in one view, one below the other. 5 | -------------------------------------------------------------------------------- /source/modules/tabs/changes.rst: -------------------------------------------------------------------------------- 1 | Changes 2 | ~~~~~~~ 3 | 4 | The *Changes* tab is used to create a change associated with the current object. It also lists the changes already linked to the object. 5 | 6 | This summary table includes the following fields for each object: 7 | 8 | * Status 9 | * Date (opening or expiry date, resolution or closing date depending on the status of the change) 10 | * Priority 11 | * Requestor(s) and assigned technician(s) 12 | * Associated elements 13 | * Category 14 | * Name 15 | * Number of scheduled tasks 16 | 17 | .. image:: /modules/tabs/images/changes.png 18 | :alt: Creation and list of associated changes 19 | :align: center 20 | 21 | .. note:: 22 | A second table lists the changes attached to the related elements 23 | 24 | .. note:: 25 | Any deletion or addition of a change is recorded in the history. 26 | -------------------------------------------------------------------------------- /source/modules/tabs/contacts.rst: -------------------------------------------------------------------------------- 1 | Associated Contacts 2 | ~~~~~~~~~~~~~~~~~~~ 3 | 4 | The *Contacts* tab is used to show or add linked contacts. 5 | 6 | .. image:: /modules/tabs/images/contacts.png 7 | :alt: View and add associated contacts 8 | :align: center 9 | -------------------------------------------------------------------------------- /source/modules/tabs/contracts.rst: -------------------------------------------------------------------------------- 1 | Associated Contracts 2 | ~~~~~~~~~~~~~~~~~~~~ 3 | 4 | The *Contracts* tab is used to show or add linked contracts. 5 | 6 | 7 | .. image:: /modules/tabs/images/contract.png 8 | :alt: Contract display screen 9 | :align: center 10 | 11 | For each associated contract, the name, number, contract type, supplier, start date and initial duration of the contract are listed. In the last field, the end date of the contract is also shown with a red display if the date is earlier than the current date. 12 | 13 | Refer to :doc:`contract management ` for more information. 14 | -------------------------------------------------------------------------------- /source/modules/tabs/debug.rst: -------------------------------------------------------------------------------- 1 | Debugging information 2 | ~~~~~~~~~~~~~~~~~~~~~ 3 | 4 | If you have `Debug` mode enabled in your preferences, a *Debug* tab will appear before the *All* tab. This tab offers information to help you resolve an issue. 5 | 6 | For example, for a computer, you have one or more tables depending on the affected object (financial information, reservations...) listing the notifications that will be triggered on this computer with: 7 | 8 | * Triggering event 9 | * Recipient(s) 10 | * Notification model used 11 | * Recipient(s) email address 12 | 13 | .. image:: /modules/tabs/images/debug.png 14 | :alt: Debugging page 15 | :align: center 16 | -------------------------------------------------------------------------------- /source/modules/tabs/documents.rst: -------------------------------------------------------------------------------- 1 | Documents 2 | ~~~~~~~~~ 3 | 4 | Additional information is stored in the form of external documents which are files uploaded into GLPI. In the *Documents* tab, documents can be associated and unlinked with the selected item. The :doc:`management of the documents themselves ` is dealt with in another chapter. 5 | 6 | It is also possible to quickly create a document via this tab by specifying the desired file and optionally the field in which the new document is to be placed. The name of the created document will be based on the name of the added file. 7 | 8 | .. image:: /modules/tabs/images/documents.png 9 | :alt: Document creation screen 10 | :align: center 11 | 12 | .. note:: 13 | 14 | When you delete a document from this tab via mass actions, you only remove the link between the object and the document; the document itself is still present. 15 | -------------------------------------------------------------------------------- /source/modules/tabs/elements.rst: -------------------------------------------------------------------------------- 1 | Associated elements 2 | ~~~~~~~~~~~~~~~~~~~ 3 | 4 | The *Items* tab is used to show or add linked assets. 5 | 6 | .. image:: /modules/tabs/images/elements.png 7 | :alt: Adding and viewing an element 8 | :align: center 9 | -------------------------------------------------------------------------------- /source/modules/tabs/external-links.rst: -------------------------------------------------------------------------------- 1 | Associated External Links 2 | ~~~~~~~~~~~~~~~~~~~~~~~~~ 3 | 4 | The *External links* tab is used to show associated external links. 5 | 6 | For some items, external links are managed from the menu **Setup > External links**. 7 | 8 | These links can use object fields such as IP, name, etc. See :doc:`Configure protocol external links `. 9 | 10 | Examples: 11 | 12 | * A web link: http://192.168.0.1 (IP retrieved from the network port of the hardware) ; 13 | * A RDP link for remote access: glpi://MSTSC.EXE,pc001 (name "pc001" retrieved from the hardware). 14 | -------------------------------------------------------------------------------- /source/modules/tabs/historical.rst: -------------------------------------------------------------------------------- 1 | History 2 | ~~~~~~~ 3 | 4 | The *History* tab is used to show any changes made to an item. The following information about the changes is available: 5 | 6 | * ID of the change. 7 | * Date and time the change was made. 8 | * User who made the change. If this field is not filled, it means that the action was done automatically (For example: automatic inventory update). 9 | * Field that was changed. 10 | * Description of the change that was made. 11 | 12 | The description of the change represents either the difference between the old and the new value (For example with location field: Change HQ to Remote Office A), or the explanation of the action which was carried out (For example: Uninstallation of a software: "Gimp 2.0"). 13 | 14 | .. note:: 15 | 16 | For dropdowns or objects with a parent/child relationship, the modification of a child will appear in the history of the parent element. 17 | -------------------------------------------------------------------------------- /source/modules/tabs/images/changes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tabs/images/changes.png -------------------------------------------------------------------------------- /source/modules/tabs/images/contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tabs/images/contacts.png -------------------------------------------------------------------------------- /source/modules/tabs/images/contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tabs/images/contract.png -------------------------------------------------------------------------------- /source/modules/tabs/images/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tabs/images/debug.png -------------------------------------------------------------------------------- /source/modules/tabs/images/documents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tabs/images/documents.png -------------------------------------------------------------------------------- /source/modules/tabs/images/elements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tabs/images/elements.png -------------------------------------------------------------------------------- /source/modules/tabs/images/knowledgebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tabs/images/knowledgebase.png -------------------------------------------------------------------------------- /source/modules/tabs/images/management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tabs/images/management.png -------------------------------------------------------------------------------- /source/modules/tabs/images/management_enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tabs/images/management_enable.png -------------------------------------------------------------------------------- /source/modules/tabs/images/notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tabs/images/notes.png -------------------------------------------------------------------------------- /source/modules/tabs/images/problems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tabs/images/problems.png -------------------------------------------------------------------------------- /source/modules/tabs/images/suppliers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tabs/images/suppliers.png -------------------------------------------------------------------------------- /source/modules/tabs/images/tickets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tabs/images/tickets.png -------------------------------------------------------------------------------- /source/modules/tabs/knowledgebase.rst: -------------------------------------------------------------------------------- 1 | Knowledge base 2 | ~~~~~~~~~~~~~~ 3 | 4 | The *Knowledge base* tab is used to show or add linked knowledge base articles. 5 | 6 | .. image:: /modules/tabs/images/knowledgebase.png 7 | :alt: Viewing or adding a knowledge base entry 8 | :align: center 9 | -------------------------------------------------------------------------------- /source/modules/tabs/notes.rst: -------------------------------------------------------------------------------- 1 | Notes 2 | ~~~~~ 3 | 4 | The *Notes* tab provides a free text field for storing additional information. 5 | Notes are displayed in the order of their creation. 6 | 7 | .. image:: /modules/tabs/images/notes.png 8 | :alt: View and enter a note 9 | :align: center 10 | -------------------------------------------------------------------------------- /source/modules/tabs/problems.rst: -------------------------------------------------------------------------------- 1 | Problems 2 | ~~~~~~~~ 3 | 4 | The *Problems* tab is used to create a problem associated with the current object. It also lists the changes already linked to the object. 5 | 6 | This summary table includes for each object: 7 | 8 | * Status 9 | * Date (opening or expiry date, resolution or closing date depending on the status of the problem) 10 | * Priority 11 | * Requestor(s) and assigned technician(s) 12 | * Associated elements 13 | * Category 14 | * Name 15 | * Column indicating the number of scheduled tasks 16 | 17 | .. image:: /modules/tabs/images/problems.png 18 | :alt: Creation and list of associated problems 19 | :align: center 20 | 21 | .. note:: 22 | A second table lists the problems attached to the related elements 23 | 24 | .. note:: 25 | Any deletion or addition of a problem is recorded in the history. 26 | -------------------------------------------------------------------------------- /source/modules/tabs/suppliers.rst: -------------------------------------------------------------------------------- 1 | Suppliers 2 | ~~~~~~~~~ 3 | 4 | The *Suppliers* tab is used to show or add linked suppliers. 5 | 6 | .. image:: /modules/tabs/images/suppliers.png 7 | :alt: Screen for creating a link with a supplier 8 | :align: center 9 | -------------------------------------------------------------------------------- /source/modules/tabs/templates.rst: -------------------------------------------------------------------------------- 1 | .. note:: 2 | It is possible to use :doc:`templates to generate this object <../overview/templates>`. 3 | -------------------------------------------------------------------------------- /source/modules/tabs/tickets.rst: -------------------------------------------------------------------------------- 1 | Tickets 2 | ~~~~~~~ 3 | 4 | The *Tickets* tab is used to create a ticket associated with the current object. It also lists the tickets already linked to the object. 5 | 6 | .. image:: /modules/tabs/images/tickets.png 7 | :alt: Image of the ticket list 8 | :align: center 9 | 10 | .. note:: 11 | A second table lists the tickets attached to the linked elements 12 | 13 | .. note:: 14 | Any deletion or addition of a ticket is recorded in the history. 15 | -------------------------------------------------------------------------------- /source/modules/tools/images/browse-knowledgebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tools/images/browse-knowledgebase.png -------------------------------------------------------------------------------- /source/modules/tools/images/comments-knowledgebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tools/images/comments-knowledgebase.png -------------------------------------------------------------------------------- /source/modules/tools/images/dashboard-notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tools/images/dashboard-notes.png -------------------------------------------------------------------------------- /source/modules/tools/images/details-booking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tools/images/details-booking.png -------------------------------------------------------------------------------- /source/modules/tools/images/details-fluxrss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tools/images/details-fluxrss.png -------------------------------------------------------------------------------- /source/modules/tools/images/details-notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tools/images/details-notes.png -------------------------------------------------------------------------------- /source/modules/tools/images/gantt-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tools/images/gantt-project.png -------------------------------------------------------------------------------- /source/modules/tools/images/itil_objects-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tools/images/itil_objects-project.png -------------------------------------------------------------------------------- /source/modules/tools/images/kanban-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tools/images/kanban-project.png -------------------------------------------------------------------------------- /source/modules/tools/images/manage-knowledgebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tools/images/manage-knowledgebase.png -------------------------------------------------------------------------------- /source/modules/tools/images/planning-booking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tools/images/planning-booking.png -------------------------------------------------------------------------------- /source/modules/tools/images/planning-notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tools/images/planning-notes.png -------------------------------------------------------------------------------- /source/modules/tools/images/planningspe-booking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tools/images/planningspe-booking.png -------------------------------------------------------------------------------- /source/modules/tools/images/research-knowledgebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tools/images/research-knowledgebase.png -------------------------------------------------------------------------------- /source/modules/tools/images/revisions-knowledgebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tools/images/revisions-knowledgebase.png -------------------------------------------------------------------------------- /source/modules/tools/images/subprojects-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tools/images/subprojects-project.png -------------------------------------------------------------------------------- /source/modules/tools/images/targets-notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tools/images/targets-notes.png -------------------------------------------------------------------------------- /source/modules/tools/images/task-details-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tools/images/task-details-project.png -------------------------------------------------------------------------------- /source/modules/tools/images/tasks-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tools/images/tasks-project.png -------------------------------------------------------------------------------- /source/modules/tools/images/team-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/doc/3408db4da2e5f66bc06b6289d886edf98e852f44/source/modules/tools/images/team-project.png -------------------------------------------------------------------------------- /source/modules/tools/index.rst: -------------------------------------------------------------------------------- 1 | Tools 2 | ===== 3 | 4 | The GLPI Tools module is used to manage projects, reminders, RSS feeds, knowledge base, reservations and to generate reports. 5 | 6 | .. toctree:: 7 | :maxdepth: 1 8 | 9 | projects 10 | reminders 11 | reports 12 | reservations 13 | rssfeed 14 | knowledgebase 15 | -------------------------------------------------------------------------------- /source/modules/tools/rssfeed.rst: -------------------------------------------------------------------------------- 1 | Manage RSS feeds 2 | ================ 3 | 4 | GLPI allows to include RSS feeds in tool home page. 5 | 6 | A RSS feed is by default personal and therefore only visible by its creator. 7 | 8 | For a RSS feed to become public and visible by other users, targets must be added to it, a target being either an entity, a group, a profile or a user. 9 | 10 | .. note:: 11 | A public RSS feed is visible by users associated with a profile if this profile has read permission for public RSS feeds. 12 | 13 | .. image:: images/details-fluxrss.png 14 | :alt: Characteristics of a RSS feed 15 | :align: center 16 | 17 | 18 | The different tabs 19 | ------------------ 20 | 21 | Content 22 | ~~~~~~~ 23 | 24 | This tab allows to consult the number of displayed items; this content is the one displayed on home page. 25 | 26 | Targets 27 | ~~~~~~~ 28 | 29 | This tab allows to display and modify the list of targets of the RSS feed. 30 | 31 | .. include:: ../tabs/historical.rst 32 | 33 | .. include:: ../tabs/all.rst 34 | --------------------------------------------------------------------------------