2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-16 12:05:53 +00:00

Fix spelling of InvenTree in code base (#8561)

* fix spelling of InvenTree in code

* fix spelling in frontend
This commit is contained in:
Matthias Mair
2024-11-25 22:29:47 +01:00
committed by GitHub
parent 0fa7ed2742
commit 0f194af585
18 changed files with 24 additions and 24 deletions

View File

@ -99,7 +99,7 @@ class ClassProviderMixin:
@classmethod
def get_is_builtin(cls):
"""Is this Class build in the Inventree source code?"""
"""Is this Class build in the InvenTree source code?"""
try:
Path(cls.get_provider_file()).relative_to(settings.BASE_DIR)
return True

View File

@ -1,4 +1,4 @@
"""The DigiKeyPlugin is meant to integrate the DigiKey API into Inventree.
"""The DigiKeyPlugin is meant to integrate the DigiKey API into InvenTree.
This plugin can currently only match DigiKey barcodes to supplier parts.
"""
@ -10,7 +10,7 @@ from plugin.mixins import SettingsMixin, SupplierBarcodeMixin
class DigiKeyPlugin(SupplierBarcodeMixin, SettingsMixin, InvenTreePlugin):
"""Plugin to integrate the DigiKey API into Inventree."""
"""Plugin to integrate the DigiKey API into InvenTree."""
NAME = 'DigiKeyPlugin'
TITLE = _('Supplier Integration - DigiKey')

View File

@ -1,4 +1,4 @@
"""The LCSCPlugin is meant to integrate the LCSC API into Inventree.
"""The LCSCPlugin is meant to integrate the LCSC API into InvenTree.
This plugin can currently only match LCSC barcodes to supplier parts.
"""
@ -12,7 +12,7 @@ from plugin.mixins import SettingsMixin, SupplierBarcodeMixin
class LCSCPlugin(SupplierBarcodeMixin, SettingsMixin, InvenTreePlugin):
"""Plugin to integrate the LCSC API into Inventree."""
"""Plugin to integrate the LCSC API into InvenTree."""
NAME = 'LCSCPlugin'
TITLE = _('Supplier Integration - LCSC')

View File

@ -1,4 +1,4 @@
"""The MouserPlugin is meant to integrate the Mouser API into Inventree.
"""The MouserPlugin is meant to integrate the Mouser API into InvenTree.
This plugin currently only match Mouser barcodes to supplier parts.
"""
@ -10,7 +10,7 @@ from plugin.mixins import SettingsMixin, SupplierBarcodeMixin
class MouserPlugin(SupplierBarcodeMixin, SettingsMixin, InvenTreePlugin):
"""Plugin to integrate the Mouser API into Inventree."""
"""Plugin to integrate the Mouser API into InvenTree."""
NAME = 'MouserPlugin'
TITLE = _('Supplier Integration - Mouser')

View File

@ -1,4 +1,4 @@
"""The TMEPlugin is meant to integrate the TME API into Inventree.
"""The TMEPlugin is meant to integrate the TME API into InvenTree.
This plugin can currently only match TME barcodes to supplier parts.
"""
@ -12,7 +12,7 @@ from plugin.mixins import SettingsMixin, SupplierBarcodeMixin
class TMEPlugin(SupplierBarcodeMixin, SettingsMixin, InvenTreePlugin):
"""Plugin to integrate the TME API into Inventree."""
"""Plugin to integrate the TME API into InvenTree."""
NAME = 'TMEPlugin'
TITLE = _('Supplier Integration - TME')