Merge branch 'master' into fix-frontend-vulns

This commit is contained in:
Matthias Mair 2026-06-20 00:14:54 +02:00 committed by GitHub
commit c31b5ba6c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
129 changed files with 35872 additions and 32504 deletions

View File

@ -8,7 +8,7 @@ name: Frontend
on:
push:
branches-ignore: ["l10*"]
branches-ignore: ["l10*", "dependabot/*", "backport/*"]
pull_request:
branches-ignore: ["l10*"]

View File

@ -7,7 +7,7 @@ name: Import / Export
on:
push:
branches-ignore: ["l10*"]
branches-ignore: ["l10*", "dependabot/*", "backport/*"]
pull_request:
branches-ignore: ["l10*"]

View File

@ -4,7 +4,7 @@ name: QC
on:
push:
branches-ignore: ["l10*"]
branches-ignore: ["l10*", "dependabot/*", "backport/*"]
pull_request:
branches-ignore: ["l10*"]

View File

@ -42,6 +42,8 @@ jobs:
id-token: write
contents: write
attestations: write
artifact-metadata: write
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # pin@v6.0.3
with:
@ -73,7 +75,7 @@ jobs:
zip -r ../frontend-build.zip * .vite
- name: Attest Build Provenance
id: attest
uses: actions/attest-build-provenance@a2bbfa25375fe432b6a289bc6b6cd05ecd0c4c32 # pin@v1
uses: actions/attest@59d89421af93a897026c735860bf21b6eb4f7b26 # pin@v4
with:
subject-path: "${{ github.workspace }}/src/backend/InvenTree/web/static/frontend-build.zip"
@ -87,11 +89,15 @@ jobs:
with:
name: frontend-build
path: src/backend/InvenTree/web/static/frontend-build.zip
- name: Rename Attestation Bundle
run: |
mv ${BUNDLE_PATH} src/backend/InvenTree/web/static/frontend-build.intoto.jsonl
env:
BUNDLE_PATH: ${{ steps.attest.outputs.bundle-path}}
- name: Upload Attestation
run: gh release upload ${REF} ${BUNDLE_PATH}#frontend-build.intoto.jsonl
run: gh release upload ${REF} src/backend/InvenTree/web/static/frontend-build.intoto.jsonl#frontend-build.intoto.jsonl
env:
REF: ${{ github.ref_name }}
BUNDLE_PATH: ${{ steps.attest.outputs.bundle-path}}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
docs:
@ -148,12 +154,12 @@ jobs:
- ubuntu:22.04
- ubuntu:24.04
- debian:12
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # pin@v6.0.3
with:
fetch-depth: 0
persist-credentials: false
- name: Get frontend artifact
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # pin@v8.0.1
with:
@ -209,7 +215,7 @@ jobs:
echo "calculate release channel"
pip install --require-hashes -r contrib/dev_reqs/requirements.txt
python3 .github/scripts/version_check.py
- name: Package
- name: Package - current release channel
uses: pkgr/action/package@c5666febcd31750da6428042193fc5b2fb765435 # pin@main
id: package
with:
@ -235,14 +241,6 @@ jobs:
repository: inventree/InvenTree
channel: ${{ env.pkg_channel }}
file: ${{ steps.package.outputs.package_path }}
- name: Publish to go.packager.io - stable release channel
uses: pkgr/action/publish@3bce081ae512c5020856e237d37b3f5479d4aa71 # pin@main
with:
target: ${{ matrix.target }}
token: ${{ secrets.PACKAGER_RELEASE_TOKEN }}
repository: inventree/InvenTree
channel: stable
file: ${{ steps.package.outputs.package_path }}
- name: Publish to artifact
run: gh release upload ${REF} ${PACKAGE_PATH}#${PACKAGE_NAME}
env:
@ -250,3 +248,29 @@ jobs:
PACKAGE_PATH: ${{ steps.package.outputs.package_path }}
PACKAGE_NAME: ${{ matrix.target }}-${{ steps.setup.outputs.version }}.tar.gz
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Package - stable release channel
uses: pkgr/action/package@c5666febcd31750da6428042193fc5b2fb765435 # pin@main
id: package-stable
with:
target: ${{ matrix.target }}
version: ${{ steps.setup.outputs.version }}
debug: true
cache_prefix: ${{ github.ref_name }}
env: |
INVENTREE_DB_ENGINE=sqlite3
INVENTREE_DB_NAME=database.sqlite3
INVENTREE_PLUGINS_ENABLED=true
INVENTREE_MEDIA_ROOT=/opt/inventree/media
INVENTREE_STATIC_ROOT=/opt/inventree/static
INVENTREE_BACKUP_DIR=/opt/inventree/backup
INVENTREE_PLUGIN_FILE=/opt/inventree/plugins.txt
INVENTREE_CONFIG_FILE=/opt/inventree/config.yaml
APP_REPO=inventree/InvenTree
- name: Publish to go.packager.io - stable release channel
uses: pkgr/action/publish@3bce081ae512c5020856e237d37b3f5479d4aa71 # pin@main
with:
target: ${{ matrix.target }}
token: ${{ secrets.PACKAGER_RELEASE_TOKEN }}
repository: inventree/InvenTree
channel: stable
file: ${{ steps.package-stable.outputs.package_path }}

View File

@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- [#12204](https://github.com/inventree/InvenTree/pull/12204) adds new filtering options to PartCategoryTree and StockLocationTree API endpoints, allowing tree data to be fetched dynamically
- [#12165](https://github.com/inventree/InvenTree/pull/12165) adds support for parameters against the PartCategory model
- [#12103](https://github.com/inventree/InvenTree/pull/12103) adds column-based filtering to table views in the user interface. This extends the existing table filtering functionality by allowing users to apply filters directly to individual columns.
- [#12093](https://github.com/inventree/InvenTree/pull/12093) adds "read_only" attribute to PluginSetting API endpoint, which indicates whether a particular plugin setting is read-only (i.e. cannot be modified via the API)
@ -38,6 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- [#12197](https://github.com/inventree/InvenTree/pull/12197) requires staff permissions to restart machines via the API.
- [#12142](https://github.com/inventree/InvenTree/pull/12142) prevents users from printing reports or labels against models for which they do not have adequate permissions. This change improves the security of the system by ensuring that users cannot access or print reports or labels for models they do not have permission to view.
- [#11990](https://github.com/inventree/InvenTree/pull/11990) build output operations performed via the API now offload the work to a background task, and now return a task ID which can be used to monitor the progress of the task. This allows for better performance and responsiveness when performing build output operations, as the work is performed asynchronously in the background.
- [#11825](https://github.com/inventree/InvenTree/pull/11825) adds a new "bom" ruleset and associated permissions for BOM management, separate from the "part" ruleset which remains focused on part management. This allows for more granular control over user permissions, allowing users to have different levels of access to part management and BOM management functionality.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 40 KiB

View File

@ -91,6 +91,18 @@ Click on the navigation tree icon to expand the tree and view the available navi
{{ image("concepts/ui_navigation_tree.png", "Navigation Tree") }}
#### Searching
The navigation tree includes a search bar at the top of the panel. Typing into the search bar filters the tree to show only entries that match the search query. When a search is active, all matching results are expanded and displayed in a flat list. Clearing the search field returns the tree to its normal browsing mode.
#### Highlight Selected Entry
The currently selected entry in the navigation tree is highlighted with a distinct background color, making it easy to identify the active page or section within the hierarchy.
#### Auto-Expand to Selected Entry
When the navigation tree is opened, it automatically expands to reveal the currently selected entry. All ancestor nodes in the hierarchy are expanded so the active entry is immediately visible, without requiring manual navigation through the tree.
## Dashboard
The dashboard provides a customizable landing page for users when they log in to the system. The dashboard can be configured to display a variety of widgets and information panels, providing users with quick access to important data and actions.

View File

@ -23,6 +23,7 @@ from rest_framework.serializers import ValidationError
from rest_framework.views import APIView
import InvenTree.config
import InvenTree.filters
import InvenTree.permissions
import InvenTree.version
from common.settings import get_global_setting
@ -963,3 +964,43 @@ def meta_path(model, lookup_field: str = 'pk', lookup_field_ref: str = 'pk'):
lookup_field_ref=lookup_field_ref,
),
)
class TreeMixin:
"""A mixin class for supporting tree-structured data in the API."""
# Any API view which inherits from this mixin must define a 'model_class' attribute
model_class = None
filter_backends = InvenTree.filters.SEARCH_ORDER_FILTER
search_fields = ['name', 'description']
ordering_fields = ['level', 'name', 'subcategories']
ordering_field_aliases = {'level': ['level', 'name'], 'name': ['name', 'level']}
ordering = ['level']
def filter_queryset(self, queryset):
"""Filter the queryset, and provide extra support for tree-structured data."""
queryset = super().filter_queryset(queryset)
# If a search term is provided, include all ancestors of matched items in the results
if self.request.query_params.get('search', '').strip():
ancestors = self.model_class.objects.get_queryset_ancestors(
queryset, include_self=True
)
queryset = queryset | ancestors
# If a specific ID is provided to "expand_to", include all ancestors and siblings
if expand_to := self.request.query_params.get('expand_to'):
try:
target = self.model_class.objects.get(pk=int(expand_to))
target_ancestors = target.get_ancestors(include_self=True)
queryset = queryset | target_ancestors
# We also want to include the "sibling" nodes of the expanded item
siblings = target.get_siblings(include_self=True)
queryset = queryset | siblings
except (self.model_class.DoesNotExist, ValueError):
pass
return queryset.distinct()

View File

@ -1,11 +1,20 @@
"""InvenTree API version information."""
# InvenTree API version
INVENTREE_API_VERSION = 508
INVENTREE_API_VERSION = 511
"""Increment this API version number whenever there is a significant change to the API that any clients need to know about."""
INVENTREE_API_TEXT = """
v511 -> 2026-06-19 : https://github.com/inventree/InvenTree/pull/12204
- Adds new filtering options to PartCategoryTree and StockLocationTree API endpoints
v510 -> 2026-06-18 : https://github.com/inventree/InvenTree/pull/12197
- Require "staff" access permissions for the machine restart API endpoint
v509 -> 2026-06-17 : https://github.com/inventree/InvenTree/pull/12184
- Adds "completed_row_count_history" and "row_count_history" fields to the DataImportSession model, which store the historic count of completed rows and total rows for a data import session.
v508 -> 2026-06-17 : https://github.com/inventree/InvenTree/pull/11982
- An order's "status_custom_key" can be updated via PATCH API endpoint

View File

@ -188,13 +188,10 @@ class InvenTreeConfig(AppConfig):
@ignore_ready_warning
def add_heartbeat(self):
"""Ensure there is at least one background task in the queue."""
import django_q.models
try:
if django_q.models.OrmQ.objects.count() == 0:
InvenTree.tasks.offload_task(
InvenTree.tasks.heartbeat, force_async=True, group='heartbeat'
)
InvenTree.tasks.offload_task(
InvenTree.tasks.heartbeat, force_async=True, group='heartbeat'
)
except AppRegistryNotReady: # pragma: no cover
pass
except Exception:

View File

@ -568,7 +568,7 @@ class InvenTreeParameterMixin(InvenTreePermissionCheckMixin, models.Model):
if 'parameters_list' in cache:
return cache['parameters_list']
return self.parameters_list.all()
return self.parameters_list.all().prefetch_related('template')
def delete(self, *args, **kwargs):
"""Handle the deletion of a model instance.

View File

@ -438,21 +438,30 @@ def scheduled_task(
@tracer.start_as_current_span('heartbeat')
@scheduled_task(ScheduledTask.MINUTES, 5)
@scheduled_task(ScheduledTask.MINUTES, 1)
def heartbeat():
"""Simple task which runs at 5 minute intervals, so we can determine that the background worker is actually running.
(There is probably a less "hacky" way of achieving this)?
"""
"""Simple task which runs at 1 minute intervals, so we can determine that the background worker is actually running."""
try:
from django_q.models import OrmQ, Success
except AppRegistryNotReady: # pragma: no cover
logger.info('Could not perform heartbeat task - App registry not ready')
return
threshold = timezone.now() - timedelta(minutes=30)
# Write a timestamp file so that health checks can verify worker liveness
# without needing to start a full Django process.
import tempfile
from pathlib import Path
# Delete heartbeat results more than half an hour old,
try:
Path(tempfile.gettempdir()).joinpath('inventree_worker_heartbeat').write_text(
str(timezone.now().timestamp())
)
except Exception:
pass
threshold = timezone.now() - timedelta(minutes=15)
# Delete heartbeat results more than 15 minutes old,
# otherwise they just create extra noise
heartbeats = Success.objects.filter(
func='InvenTree.tasks.heartbeat', started__lte=threshold

View File

@ -395,9 +395,7 @@ class BuildList(
serializer = self.get_serializer(data=self.clean_data(request.data))
serializer.is_valid(raise_exception=True)
build = serializer.save()
build.issued_by = request.user
build.save()
serializer.save(issued_by=request.user)
headers = self.get_success_headers(serializer.data)
return Response(

View File

@ -479,9 +479,7 @@ class NotesImageList(ListCreateAPI):
def perform_create(self, serializer):
"""Create (upload) a new notes image."""
image = serializer.save()
image.user = self.request.user
image.save()
serializer.save(user=self.request.user)
class ProjectCodeList(DataExportViewMixin, ListCreateAPI):
@ -810,9 +808,7 @@ class AttachmentList(AttachmentMixin, BulkDeleteMixin, ListCreateAPI):
def perform_create(self, serializer):
"""Save the user information when a file is uploaded."""
attachment = serializer.save()
attachment.upload_user = self.request.user
attachment.save()
serializer.save(upload_user=self.request.user)
def validate_delete(self, queryset, request) -> None:
"""Ensure that the user has correct permissions for a bulk-delete.

View File

@ -0,0 +1,23 @@
# Generated by Django 5.2.15 on 2026-06-17 05:57
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('importer', '0006_dataimportcolumnmap_lookup_field'),
]
operations = [
migrations.AddField(
model_name='dataimportsession',
name='completed_row_count_history',
field=models.PositiveIntegerField(blank=True, null=True, verbose_name='Completed Row Count History'),
),
migrations.AddField(
model_name='dataimportsession',
name='row_count_history',
field=models.PositiveIntegerField(blank=True, null=True, verbose_name='Row Count History'),
),
]

View File

@ -385,7 +385,13 @@ class DataImportSession(models.Model):
if self.status != DataImportStatusCode.COMPLETE.value:
self.status = DataImportStatusCode.COMPLETE.value
# persist historic count values for reporting purposes
self.completed_row_count_history = self.completed_row_count
self.row_count_history = self.row_count
self.save()
# Clear staging data now that all rows have been imported
self.rows.all().delete()
self.column_mappings.all().delete()
@ -402,6 +408,14 @@ class DataImportSession(models.Model):
"""Return the number of completed rows for this session."""
return self.rows.filter(complete=True).count()
# Historic values for reporting purposes
completed_row_count_history = models.PositiveIntegerField(
blank=True, null=True, verbose_name=_('Completed Row Count History')
)
row_count_history = models.PositiveIntegerField(
blank=True, null=True, verbose_name=_('Row Count History')
)
def available_fields(self):
"""Returns information on the available fields.

View File

@ -62,6 +62,8 @@ class DataImportSessionSerializer(InvenTreeModelSerializer):
'field_filters',
'row_count',
'completed_row_count',
'completed_row_count_history',
'row_count_history',
]
read_only_fields = ['pk', 'user', 'status', 'columns']
@ -220,6 +222,8 @@ class DataImportAcceptRowSerializer(serializers.Serializer):
row.validate(commit=True, request=request)
if session := self.context.get('session', None):
# ensure current state is available
session.refresh_from_db()
session.check_complete()
return rows

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,7 @@
from django.urls import include, path, re_path
from drf_spectacular.utils import extend_schema
from rest_framework import permissions
from rest_framework.exceptions import NotFound
from rest_framework.response import Response
from rest_framework.views import APIView
@ -142,7 +143,10 @@ class MachineRestart(APIView):
- POST: restart machine by pk
"""
permission_classes = [InvenTree.permissions.IsAuthenticatedOrReadScope]
permission_classes = [
permissions.IsAuthenticated,
InvenTree.permissions.IsStaffOrReadOnlyScope,
]
@extend_schema(
request=None, responses={200: MachineSerializers.MachineRestartSerializer()}

View File

@ -287,14 +287,23 @@ class MachineAPITest(TestMachineRegistryMixin, InvenTreeAPITestCase):
active=True,
)
restart_url = reverse('api-machine-restart', kwargs={'pk': machine.pk})
# Non-staff users must not be able to restart a machine
self.user.is_staff = False
self.user.save()
self.post(restart_url, expected_code=403)
# Restore staff access
self.user.is_staff = True
self.user.save()
# verify machine status before restart
response = self.get(reverse('api-machine-detail', kwargs={'pk': machine.pk}))
self.assertEqual(response.data['status_text'], '')
# restart the machine
response = self.post(
reverse('api-machine-restart', kwargs={'pk': machine.pk}), expected_code=200
)
self.post(restart_url, expected_code=200)
# verify machine status after restart
response = self.get(reverse('api-machine-detail', kwargs={'pk': machine.pk}))

View File

@ -103,9 +103,7 @@ class OrderCreateMixin:
serializer = self.get_serializer(data=self.clean_data(request.data))
serializer.is_valid(raise_exception=True)
item = serializer.save()
item.created_by = request.user
item.save()
serializer.save(created_by=request.user)
headers = self.get_success_headers(serializer.data)
return Response(

View File

@ -20,7 +20,7 @@ class SalesOrderEvents(BaseEventEnum):
"""Event enumeration for the SalesOrder models."""
ISSUED = 'salesorder.issued'
HOLD = 'salesorder.onhold'
HOLD = 'salesorder.hold'
COMPLETED = 'salesorder.completed'
CANCELLED = 'salesorder.cancelled'

View File

@ -21,6 +21,7 @@ from InvenTree.api import (
BulkUpdateMixin,
ListCreateDestroyAPIView,
ParameterListMixin,
TreeMixin,
meta_path,
)
from InvenTree.fields import InvenTreeOutputOption, OutputConfiguration
@ -284,25 +285,38 @@ class CategoryDetail(CategoryMixin, OutputOptionsMixin, CustomRetrieveUpdateDest
)
class CategoryTree(ListAPI):
class CategoryTreeFilter(FilterSet):
"""Custom filterset class for the CategoryTree endpoint."""
class Meta:
"""Metaclass options for this filterset."""
model = PartCategory
fields = ['parent', 'tree_id', 'level']
max_level = rest_filters.NumberFilter(
label=_('Max Level'),
method='filter_max_level',
help_text=_('Limit the depth of the category tree'),
)
def filter_max_level(self, queryset, name, value):
"""Filter by the maximum depth of the category tree."""
return queryset.filter(level__lte=value)
class CategoryTree(TreeMixin, ListAPI):
"""API endpoint for accessing a list of PartCategory objects ready for rendering a tree."""
model_class = PartCategory
queryset = PartCategory.objects.all()
serializer_class = part_serializers.CategoryTree
filter_backends = ORDER_FILTER
ordering_fields = ['level', 'name', 'subcategories']
ordering_field_aliases = {'level': ['level', 'name'], 'name': ['name', 'level']}
# Order by tree level (top levels first) and then name
ordering = ['level', 'name']
serializer_class = part_serializers.CategoryTreeSerializer
filterset_class = CategoryTreeFilter
def get_queryset(self, *args, **kwargs):
"""Return an annotated queryset for the CategoryTree endpoint."""
queryset = super().get_queryset(*args, **kwargs)
queryset = part_serializers.CategoryTree.annotate_queryset(queryset)
queryset = part_serializers.CategoryTreeSerializer.annotate_queryset(queryset)
return queryset

View File

@ -181,14 +181,25 @@ class CategorySerializer(
parameters = common.filters.enable_parameters_filter()
class CategoryTree(InvenTree.serializers.InvenTreeModelSerializer):
class CategoryTreeSerializer(InvenTree.serializers.InvenTreeModelSerializer):
"""Serializer for PartCategory tree."""
class Meta:
"""Metaclass defining serializer fields."""
model = PartCategory
fields = ['pk', 'name', 'parent', 'icon', 'structural', 'subcategories']
fields = [
'pk',
'name',
'description',
'pathstring',
'parent',
'tree_id',
'level',
'icon',
'structural',
'subcategories',
]
subcategories = serializers.IntegerField(label=_('Subcategories'), read_only=True)

View File

@ -25,6 +25,7 @@ from pypdf import PdfWriter
import InvenTree.exceptions
import InvenTree.helpers
import InvenTree.models
import InvenTree.ready
import report.helpers
import report.validators
from common.models import DataOutput, RenderChoices, UpdatedUserMixin
@ -578,10 +579,10 @@ class ReportTemplate(TemplateUploadMixin, ReportTemplateBase):
raise ValidationError(msg)
except TemplateSyntaxError as e:
msg = _('Template syntax error')
output.mark_failure(msg)
output.mark_failure(str(e) or msg)
raise ValidationError(f'{msg}: {e!s}')
except ValidationError as e:
output.mark_failure(str(e))
output.mark_failure(','.join(e.messages))
raise e
except Exception as e:
msg = _('Error rendering report')
@ -617,10 +618,10 @@ class ReportTemplate(TemplateUploadMixin, ReportTemplateBase):
raise ValidationError(msg)
except TemplateSyntaxError as e:
msg = _('Template syntax error')
output.mark_failure(error=_('Template syntax error'))
output.mark_failure(error=str(e) or msg)
raise ValidationError(f'{msg}: {e!s}')
except ValidationError as e:
output.mark_failure(str(e))
output.mark_failure(', '.join(e.messages))
raise e
except Exception as e:
msg = _('Error rendering report')
@ -643,6 +644,13 @@ class ReportTemplate(TemplateUploadMixin, ReportTemplateBase):
# Something went wrong during the report generation process
log_report_error('ReportTemplate.print')
# If the error occurred in a worker thread, we do not want to raise an error,
# as this would cause the worker to retry the task indefinitely
if InvenTree.ready.isInWorkerThread():
return
# Raise a ValidationError with the error message
# This will be caught by the caller and displayed to the user
raise ValidationError({
'error': _('Error generating report'),
'detail': str(exc),
@ -677,6 +685,12 @@ class ReportTemplate(TemplateUploadMixin, ReportTemplateBase):
log_report_error('ReportTemplate.print')
msg = _('Error merging report outputs')
output.mark_failure(error=msg)
# If the error occurred in a worker thread, we do not want to raise an error,
# as this would cause the worker to retry the task indefinitely
if InvenTree.ready.isInWorkerThread():
return
raise ValidationError(msg)
# Save the generated report to the database

View File

@ -461,7 +461,7 @@ def part_image(part: Part, preview: bool = False, thumbnail: bool = False, **kwa
TypeError: If provided part is not a Part instance
"""
if not part or not isinstance(part, Part):
raise TypeError(_('part_image tag requires a Part instance'))
raise ValidationError(_('part_image tag requires a Part instance'))
image_filename = InvenTree.helpers.image2name(part.image, preview, thumbnail)
@ -487,28 +487,22 @@ def parameter(
Returns:
A Parameter object, or the provided default value if not found
"""
if instance is None:
raise ValueError('parameter tag requires a valid Model instance')
if instance is None or not isinstance(instance, Model):
raise ValidationError('parameter tag requires a valid Model instance')
if not isinstance(instance, Model) or not hasattr(instance, 'parameters'):
raise TypeError("parameter tag requires a Model with 'parameters' attribute")
if not hasattr(instance, 'parameters'):
raise ValidationError(
"parameter tag requires a Model with 'parameters' attribute"
)
parameters = instance.parameters_list.all().prefetch_related('template')
# First try with exact match
if (
parameter := instance.parameters
.prefetch_related('template')
.filter(template__name=parameter_name)
.first()
):
if parameter := parameters.filter(template__name=parameter_name).first():
return parameter
# Next, try with case-insensitive match
if (
parameter := instance.parameters
.prefetch_related('template')
.filter(template__name__iexact=parameter_name)
.first()
):
if parameter := parameters.filter(template__name__iexact=parameter_name).first():
return parameter
return None

View File

@ -15,7 +15,7 @@ from PIL import Image
from common.models import InvenTreeSetting, Parameter, ParameterTemplate
from InvenTree.unit_test import InvenTreeTestCase
from part.models import Part # TODO fix import: PartParameter, PartParameterTemplate
from part.models import Part
from part.test_api import PartImageTestMixin
from report.templatetags import barcode as barcode_tags
from report.templatetags import report as report_tags
@ -184,7 +184,7 @@ class ReportTagTest(PartImageTestMixin, InvenTreeTestCase):
def test_part_image(self):
"""Unit tests for the 'part_image' tag."""
with self.assertRaises(TypeError):
with self.assertRaises(ValidationError):
report_tags.part_image(None)
obj = Part.objects.create(name='test', description='test')
@ -502,11 +502,11 @@ class ReportTagTest(PartImageTestMixin, InvenTreeTestCase):
self.assertEqual(report_tags.parameter(part, 'Template 1'), parameter)
# Test with a null part
with self.assertRaises(ValueError):
with self.assertRaises(ValidationError):
report_tags.parameter(None, 'name')
# Test with an invalid model type
with self.assertRaises(TypeError):
with self.assertRaises(ValidationError):
report_tags.parameter(parameter, 'name')
def test_render_currency(self):

View File

@ -33,11 +33,11 @@ from InvenTree.api import (
BulkCreateMixin,
BulkUpdateMixin,
ListCreateDestroyAPIView,
TreeMixin,
meta_path,
)
from InvenTree.fields import InvenTreeOutputOption, OutputConfiguration
from InvenTree.filters import (
ORDER_FILTER,
SEARCH_ORDER_FILTER,
InvenTreeDateFilter,
NumberOrNullFilter,
@ -455,20 +455,33 @@ class StockLocationDetail(
)
class StockLocationTree(ListAPI):
class LocationTreeFilter(FilterSet):
"""Custom filterset class for the StockLocationTree endpoint."""
class Meta:
"""Metaclass options for this filterset."""
model = StockLocation
fields = ['parent', 'tree_id', 'level']
max_level = rest_filters.NumberFilter(
label=_('Max Level'),
method='filter_max_level',
help_text=_('Limit the depth of the category tree'),
)
def filter_max_level(self, queryset, name, value):
"""Filter by the maximum depth of the category tree."""
return queryset.filter(level__lte=value)
class StockLocationTree(TreeMixin, ListAPI):
"""API endpoint for accessing a list of StockLocation objects, ready for rendering as a tree."""
model_class = StockLocation
queryset = StockLocation.objects.all()
serializer_class = StockSerializers.LocationTreeSerializer
filter_backends = ORDER_FILTER
ordering_fields = ['level', 'name', 'sublocations']
# Order by tree level (top levels first) and then name
ordering = ['level', 'name']
ordering_field_aliases = {'level': ['level', 'name'], 'name': ['name', 'level']}
filterset_class = LocationTreeFilter
def get_queryset(self, *args, **kwargs):
"""Return annotated queryset for the StockLocationTree endpoint."""
@ -1512,10 +1525,7 @@ class StockItemTestResultList(
Also, check if an attachment was uploaded alongside the test result,
and save it to the database if it were.
"""
# Capture the user information
test_result = serializer.save()
test_result.user = self.request.user
test_result.save()
serializer.save(user=self.request.user)
class StockTrackingDetail(RetrieveAPI):
@ -1664,32 +1674,6 @@ class StockTrackingList(
return Response(data)
def create(self, request, *args, **kwargs):
"""Create a new StockItemTracking object.
Here we override the default 'create' implementation,
to save the user information associated with the request object.
"""
# Clean up input data
data = self.clean_data(request.data)
serializer = self.get_serializer(data=data)
serializer.is_valid(raise_exception=True)
# Record the user who created this Part object
item = serializer.save()
item.user = request.user
item.system = False
# quantity field cannot be explicitly adjusted here
item.quantity = item.item.quantity
item.save()
headers = self.get_success_headers(serializer.data)
return Response(
serializer.data, status=status.HTTP_201_CREATED, headers=headers
)
filter_backends = SEARCH_ORDER_FILTER
ordering = '-date'

View File

@ -1160,7 +1160,18 @@ class LocationTreeSerializer(InvenTree.serializers.InvenTreeModelSerializer):
"""Metaclass options."""
model = StockLocation
fields = ['pk', 'name', 'parent', 'icon', 'structural', 'sublocations']
fields = [
'pk',
'name',
'description',
'pathstring',
'parent',
'tree_id',
'level',
'icon',
'structural',
'sublocations',
]
sublocations = serializers.IntegerField(label=_('Sublocations'), read_only=True)

View File

@ -1707,9 +1707,9 @@ pynacl==1.6.2 \
# via
# -c src/backend/requirements.txt
# paramiko
pypdf==6.13.0 \
--hash=sha256:558683ec9daf6b91c280c322c84c32f5cc216afd3eaa3a37de5ae88ae0c3b787 \
--hash=sha256:de1294ae49d6956edb4e5c41527fb9e8716ddd2b120f2185c68aab784d4ffe60
pypdf==6.13.3 \
--hash=sha256:c6e3f86afb625791510b02ad5480e94b63970bb957df75d44657c282ecc52224 \
--hash=sha256:f3cb822769725f1bac658c406cfc9460399043f3750c2d3e4650e0a85eacabd7
# via
# -c src/backend/requirements.txt
# -r src/backend/requirements.in

View File

@ -1513,9 +1513,9 @@ pynacl==1.6.2 \
--hash=sha256:d29bfe37e20e015a7d8b23cfc8bd6aa7909c92a1b8f41ee416bbb3e79ef182b2 \
--hash=sha256:fe9847ca47d287af41e82be1dd5e23023d3c31a951da134121ab02e42ac218c9
# via paramiko
pypdf==6.13.0 \
--hash=sha256:558683ec9daf6b91c280c322c84c32f5cc216afd3eaa3a37de5ae88ae0c3b787 \
--hash=sha256:de1294ae49d6956edb4e5c41527fb9e8716ddd2b120f2185c68aab784d4ffe60
pypdf==6.13.3 \
--hash=sha256:c6e3f86afb625791510b02ad5480e94b63970bb957df75d44657c282ecc52224 \
--hash=sha256:f3cb822769725f1bac658c406cfc9460399043f3750c2d3e4650e0a85eacabd7
# via -r src/backend/requirements.in
pyphen==0.17.2 \
--hash=sha256:3a07fb017cb2341e1d9ff31b8634efb1ae4dc4b130468c7c39dd3d32e7c3affd \

View File

@ -130,9 +130,13 @@ export default function NewsWidget() {
<NewsItem key={item.pk} item={item} onMarkRead={markRead} />
))
) : (
<Alert color='green' title={t`No News`}>
<Text>{t`There are no unread news items`}</Text>
</Alert>
<Table.Tr>
<Table.Td colSpan={3}>
<Alert color='green' title={t`No News`}>
<Text>{t`There are no unread news items`}</Text>
</Alert>
</Table.Td>
</Table.Tr>
)}
</Table.Tbody>
</Table>

View File

@ -68,9 +68,13 @@ export const PdfPreviewComponent: PreviewAreaComponent = forwardRef(
api
.get(apiUrl(ApiEndpoints.data_output, preview.data.pk))
.then((response) => {
if (response.data.error) {
if (response.data.errors || response.data.error) {
clearInterval(interval);
rej(response.data.error);
rej(
response.data.error ??
response.data.errors?.error ??
t`Process failed`
);
}
if (response.data.complete) {

View File

@ -223,7 +223,7 @@ export function TemplateEditor(props: Readonly<TemplateEditorProps>) {
});
})
.catch((error) => {
const msg = error?.message;
const msg = error?.message || error?.toString();
if (msg) {
if (Array.isArray(msg)) {
@ -272,7 +272,7 @@ export function TemplateEditor(props: Readonly<TemplateEditorProps>) {
return (
<Boundary label='TemplateEditor'>
<Stack style={{ height: '100%', flex: '1' }}>
<Split style={{ gap: '10px' }}>
<Split visible style={{ flex: 1 }}>
<Tabs
value={editorValue}
onChange={async (v) => {
@ -282,7 +282,7 @@ export function TemplateEditor(props: Readonly<TemplateEditorProps>) {
keepMounted={false}
style={{
minWidth: '300px',
flex: '1',
width: '50%',
display: 'flex',
flexDirection: 'column'
}}
@ -348,6 +348,7 @@ export function TemplateEditor(props: Readonly<TemplateEditorProps>) {
keepMounted={false}
style={{
minWidth: '200px',
width: '50%',
display: 'flex',
flexDirection: 'column'
}}

View File

@ -5,28 +5,36 @@ import {
Divider,
Drawer,
Group,
HoverCard,
Loader,
LoadingOverlay,
type RenderTreeNodePayload,
Space,
Stack,
Text,
TextInput,
Tree,
type TreeNodeData,
useTree
} from '@mantine/core';
import { useDebouncedValue } from '@mantine/hooks';
import {
IconChevronDown,
IconChevronRight,
IconExclamationCircle,
IconSitemap
IconSearch,
IconSitemap,
IconX
} from '@tabler/icons-react';
import { useQuery } from '@tanstack/react-query';
import { useCallback, useMemo } from 'react';
import { useCallback, useEffect, useMemo, useState } from 'react';
import { useNavigate } from 'react-router-dom';
import { StylishText } from '@lib/components/StylishText';
import type { ApiEndpoints } from '@lib/enums/ApiEndpoints';
import type { ModelType } from '@lib/enums/ModelType';
import { apiUrl } from '@lib/functions/Api';
import { resolveItem } from '@lib/functions/Conversion';
import {
eventModified,
getDetailUrl,
@ -45,6 +53,7 @@ export default function NavigationTree({
onClose,
selectedId,
modelType,
childIdentifier,
endpoint
}: Readonly<{
title: string;
@ -52,26 +61,136 @@ export default function NavigationTree({
onClose: () => void;
selectedId?: number | null;
modelType: ModelType;
childIdentifier?: string;
endpoint: ApiEndpoints;
}>) {
const api = useApi();
const navigate = useNavigate();
const treeState = useTree();
// Data query to fetch the tree data from server
const [searchValue, setSearchValue] = useState('');
const [debouncedSearch] = useDebouncedValue(searchValue, 300);
// Accumulated flat node list for browse (lazy-load) mode
const [allNodes, setAllNodes] = useState<any[]>([]);
// PKs of nodes whose children are currently being fetched
const [loadingNodes, setLoadingNodes] = useState<Set<number>>(new Set());
// Reset everything when the drawer opens or closes
useEffect(() => {
setSearchValue('');
setAllNodes([]);
setLoadingNodes(new Set());
}, [opened]);
// Data query — browse mode loads root nodes only; search mode loads all matches + ancestors
const query = useQuery({
enabled: opened,
queryKey: [modelType, opened],
queryKey: [modelType, 'tree', opened, debouncedSearch, selectedId],
queryFn: async () =>
api
.get(apiUrl(endpoint), {
data: {
ordering: 'level'
params: {
ordering: 'level',
search: debouncedSearch || undefined,
max_level: debouncedSearch ? undefined : 0,
expand_to: debouncedSearch ? undefined : (selectedId ?? undefined)
}
})
.then((response) => response.data ?? [])
});
// When the browse-mode query settles, reset the node list and expand ancestors of the selection
useEffect(() => {
if (!debouncedSearch && query.data && !query.isFetching) {
setAllNodes(query.data);
setLoadingNodes(new Set());
if (selectedId) {
const nodeMap: Record<number, any> = {};
for (const n of query.data) nodeMap[n.pk] = n;
// Collect every ancestor pk, then apply in one setExpandedState call to
// avoid closure/batching issues that arise from calling expand() in a loop.
const toExpand: Record<string, boolean> = {};
let current = nodeMap[selectedId];
while (current?.parent) {
toExpand[current.parent.toString()] = true;
current = nodeMap[current.parent];
}
if (Object.keys(toExpand).length) {
treeState.setExpandedState({
...treeState.expandedState,
...toExpand
});
}
}
}
}, [debouncedSearch, query.data, query.isFetching, selectedId]);
// Collapse all nodes when the search term changes (switching modes).
// Intentionally omits query.data so it does NOT fire when browse results arrive —
// that would undo the ancestor expansion done above.
useEffect(() => {
treeState.collapseAllNodes();
}, [debouncedSearch]);
// Expand all nodes once search results have fully arrived
useEffect(() => {
if (debouncedSearch && !query.isFetching && query.data?.length) {
treeState.expandAllNodes();
}
}, [debouncedSearch, query.data, query.isFetching]);
// Fetch direct children of a node (browse mode only).
// Zeros out the childIdentifier count on success with no results so the node
// is treated as a leaf and won't be re-fetched on subsequent clicks.
const fetchChildren = useCallback(
async (nodeValue: string) => {
const pk = Number.parseInt(nodeValue);
if (loadingNodes.has(pk)) return;
const nodeInfo = allNodes.find((n) => n.pk === pk);
if (!nodeInfo) return;
setLoadingNodes((prev) => new Set([...prev, pk]));
try {
const response = await api.get(apiUrl(endpoint), {
params: {
ordering: 'level',
parent: pk,
max_level: nodeInfo.level + 1
}
});
const children: any[] = response.data ?? [];
setAllNodes((prev) => {
if (children.length === 0 && childIdentifier) {
// No children returned — zero out the count so this node is treated
// as a leaf and won't trigger another fetch on the next click.
return prev.map((n) =>
n.pk === pk ? { ...n, [childIdentifier]: 0 } : n
);
}
const existing = new Set(prev.map((n) => n.pk));
return [...prev, ...children.filter((n) => !existing.has(n.pk))];
});
if (children.length > 0) {
treeState.expand(nodeValue);
}
} finally {
setLoadingNodes((prev) => {
const next = new Set(prev);
next.delete(pk);
return next;
});
}
},
[loadingNodes, allNodes, api, endpoint, childIdentifier]
);
const follow = useCallback(
(node: TreeNodeData, event?: any) => {
const url = getDetailUrl(modelType, node.value);
@ -85,107 +204,156 @@ export default function NavigationTree({
[modelType, navigate]
);
// Map returned query to a "tree" structure
const data: TreeNodeData[] = useMemo(() => {
/*
* Reconstruct the navigation tree from the provided data.
* It is required (and assumed) that the data is first sorted by level.
*/
// In search mode use the query results directly; in browse mode use the accumulated lazy-load list
const sourceNodes: any[] = useMemo(
() => (debouncedSearch ? (query.data ?? []) : allNodes),
[debouncedSearch, query.data, allNodes]
);
// Map flat node list to a nested tree structure (parents must precede children)
const data: TreeNodeData[] = useMemo(() => {
const nodes: Record<number, any> = {};
const tree: TreeNodeData[] = [];
if (!query || !query?.data?.length) {
return [];
}
if (!sourceNodes.length) return [];
for (let ii = 0; ii < query.data.length; ii++) {
// Sort by level so parents are always inserted before their children,
// regardless of the order the API returns items (e.g. after ancestor union in search mode).
const sorted = [...sourceNodes].sort((a, b) => a.level - b.level);
for (const raw of sorted) {
const node = {
...query.data[ii],
...raw,
children: [],
label: (
<Group gap='xs'>
<ApiIcon name={query.data[ii].icon} />
{query.data[ii].name}
<ApiIcon name={raw.icon} />
<Text>{raw.name}</Text>
</Group>
),
value: query.data[ii].pk.toString(),
selected: query.data[ii].pk === selectedId
value: raw.pk.toString(),
selected: raw.pk === selectedId
};
const pk: number = node.pk;
const parent: number | null = node.parent;
if (!parent) {
// This is a top level node
tree.push(node);
} else {
// This is *not* a top level node, so the parent *must* already exist
nodes[parent]?.children.push(node);
}
// Finally, add this node
nodes[pk] = node;
if (pk === selectedId) {
// Expand all parents
let parent = nodes[node.parent];
while (parent) {
parent.expanded = true;
parent = nodes[parent.parent];
}
}
}
return tree;
}, [selectedId, query.data]);
}, [selectedId, sourceNodes]);
const renderNode = useCallback(
(payload: RenderTreeNodePayload) => {
const nodeInfo = payload.node as any;
const pk = Number.parseInt(payload.node.value);
const isLoading = loadingNodes.has(pk);
// A node has children if they are already in the tree, or if the server-side
// count (childIdentifier) says so and they haven't been loaded yet.
const childrenLoaded = nodeInfo.children.length > 0;
const needsFetch =
!isLoading &&
!debouncedSearch &&
!childrenLoaded &&
!!(childIdentifier && resolveItem(payload.node, childIdentifier));
const hasChildren = childrenLoaded || needsFetch;
const isSelected = nodeInfo.selected === true;
return (
<Group
p={3}
gap='xs'
gap={5}
justify='left'
key={payload.node.value}
wrap='nowrap'
bg={isSelected ? 'var(--mantine-primary-color-light)' : undefined}
style={{ borderRadius: 'var(--mantine-radius-sm)' }}
onClick={() => {
if (payload.hasChildren) {
if (isLoading || !hasChildren) return;
if (needsFetch) {
fetchChildren(payload.node.value);
} else {
treeState.toggleExpanded(payload.node.value);
}
}}
>
<Space w={10 * (payload.level - 1)} />
<ActionIcon
size='sm'
variant='transparent'
aria-label={`nav-tree-toggle-${payload.node.value}}`}
<Space w={25 * (payload.level - 1)} />
{(isLoading || hasChildren || payload.expanded) && (
<ActionIcon
size='sm'
variant='transparent'
aria-label={`nav-tree-toggle-${payload.node.value}}`}
>
{isLoading ? (
<Loader size='xs' />
) : hasChildren ? (
payload.expanded ? (
<IconChevronDown />
) : (
<IconChevronRight />
)
) : null}
</ActionIcon>
)}
<HoverCard
width={260}
shadow='md'
withArrow
closeDelay={100}
openDelay={500}
position='top-end'
>
{payload.hasChildren ? (
payload.expanded ? (
<IconChevronDown />
) : (
<IconChevronRight />
)
) : null}
</ActionIcon>
<Anchor
onClick={(event: any) => follow(payload.node, event)}
aria-label={`nav-tree-item-${payload.node.value}`}
c='var(--mantine-color-text)'
>
{payload.node.label}
</Anchor>
<HoverCard.Target>
<Anchor
onClick={(event: any) => follow(payload.node, event)}
aria-label={`nav-tree-item-${payload.node.value}`}
c='var(--mantine-color-text)'
>
{payload.node.label}
</Anchor>
</HoverCard.Target>
<HoverCard.Dropdown>
<Stack gap={4}>
<Group gap='xs' wrap='nowrap'>
{nodeInfo.icon && <ApiIcon name={nodeInfo.icon} />}
<Text fw={600} size='sm'>
{nodeInfo.name}
</Text>
</Group>
{nodeInfo.description && (
<Text size='sm' c='dimmed'>
{nodeInfo.description}
</Text>
)}
</Stack>
</HoverCard.Dropdown>
</HoverCard>
</Group>
);
},
[treeState]
[
treeState,
childIdentifier,
follow,
loadingNodes,
fetchChildren,
debouncedSearch
]
);
return (
<Drawer
opened={opened}
size='md'
size='lg'
position='left'
onClose={onClose}
withCloseButton={true}
@ -205,14 +373,43 @@ export default function NavigationTree({
}
>
<Stack gap='xs'>
<TextInput
aria-label='nav-tree-search'
placeholder={t`Search...`}
value={searchValue}
onChange={(event) => setSearchValue(event.currentTarget.value)}
leftSection={<IconSearch size={16} />}
rightSection={
searchValue ? (
<ActionIcon
size='sm'
variant='transparent'
onClick={() => setSearchValue('')}
aria-label={t`Clear search`}
>
<IconX size={14} />
</ActionIcon>
) : null
}
/>
<Divider />
<LoadingOverlay visible={query.isFetching || query.isLoading} />
{query.isError ? (
<Alert color='red' title={t`Error`} icon={<IconExclamationCircle />}>
{t`Error loading navigation tree.`}
</Alert>
) : !query.isFetching && !query.isLoading && data.length === 0 ? (
<Alert color='blue' icon={<IconSearch />}>
{t`No results found`}
</Alert>
) : (
<Tree data={data} tree={treeState} renderNode={renderNode} />
<Tree
data={data}
tree={treeState}
renderNode={renderNode}
withLines
levelOffset={25}
/>
)}
</Stack>
</Drawer>

View File

@ -19,7 +19,7 @@ export function RenderBuildOrder(
primary={instance.reference}
secondary={instance.title}
suffix={StatusRenderer({
status: instance.status_custom_key,
status: instance.status_custom_key || instance.status,
type: ModelType.build
})}
image={instance.part_detail?.thumbnail || instance.part_detail?.image}

View File

@ -22,7 +22,7 @@ export function RenderPurchaseOrder(
primary={instance.reference}
secondary={instance.description}
suffix={StatusRenderer({
status: instance.status_custom_key,
status: instance.status_custom_key || instance.status,
type: ModelType.purchaseorder
})}
image={supplier.thumbnail || supplier.image}
@ -50,7 +50,7 @@ export function RenderReturnOrder(
primary={instance.reference}
secondary={instance.description}
suffix={StatusRenderer({
status: instance.status_custom_key,
status: instance.status_custom_key || instance.status,
type: ModelType.returnorder
})}
image={customer.thumbnail || customer.image}
@ -95,7 +95,7 @@ export function RenderSalesOrder(
primary={instance.reference}
secondary={instance.description}
suffix={StatusRenderer({
status: instance.status_custom_key,
status: instance.status_custom_key || instance.status,
type: ModelType.salesorder
})}
image={customer.thumbnail || customer.image}
@ -138,7 +138,7 @@ export function RenderTransferOrder(
primary={instance.reference}
secondary={instance.description}
suffix={StatusRenderer({
status: instance.status_custom_key,
status: instance.status_custom_key || instance.status,
type: ModelType.transferorder
})}
url={

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ar\n"
"Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-06-14 02:15\n"
"PO-Revision-Date: 2026-06-17 22:14\n"
"Last-Translator: \n"
"Language-Team: Arabic\n"
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
@ -56,7 +56,7 @@ msgstr "تعديل"
#: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247
#: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete"
msgstr "حذف"
@ -163,10 +163,10 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137
#: src/pages/part/CategoryDetail.tsx:284
#: src/pages/part/CategoryDetail.tsx:339
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893
msgid "Parts"
msgstr ""
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr ""
#: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87
#: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template"
msgstr ""
#: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates"
msgstr ""
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr ""
#: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496
msgid "Part Category"
msgstr ""
#: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:372
#: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories"
msgstr ""
@ -273,7 +274,7 @@ msgstr ""
#: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217
#: src/pages/part/CategoryDetail.tsx:313
#: src/pages/part/CategoryDetail.tsx:314
#: src/pages/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr ""
#: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44
#: src/tables/settings/ImportSessionTable.tsx:78
#: src/tables/settings/ImportSessionTable.tsx:82
#: src/tables/stock/StockTrackingTable.tsx:237
#: src/tables/stock/StockTrackingTable.tsx:285
msgid "User"
@ -640,7 +641,7 @@ msgstr ""
#: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215
#: src/components/importer/ImporterColumnSelector.tsx:278
#: src/components/importer/ImporterColumnSelector.tsx:330
#: src/components/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr ""
#: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210
#: src/tables/plugin/PluginListTable.tsx:212
msgid "Update"
msgstr ""
@ -1982,7 +1983,7 @@ msgstr ""
#: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19
#: src/pages/part/CategoryDetail.tsx:93
#: src/pages/part/CategoryDetail.tsx:94
#: src/pages/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr ""
#: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127
#: src/tables/plugin/PluginListTable.tsx:129
msgid "Version"
msgstr ""
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:56
#: src/components/importer/ImporterColumnSelector.tsx:247
#: src/components/importer/ImporterColumnSelector.tsx:299
#: src/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60
#: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr ""
#~ msgid "Imported Column Name"
#~ msgstr "Imported Column Name"
#: src/components/importer/ImporterColumnSelector.tsx:253
#: src/components/importer/ImporterColumnSelector.tsx:202
msgid "Auto"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:305
msgid "Ignore this field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:267
#: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:272
#: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:285
#: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:286
#: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:287
#: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:288
#: src/components/importer/ImporterColumnSelector.tsx:340
msgid "Lookup Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:341
msgid "Default Value"
msgstr ""
@ -3131,7 +3140,7 @@ msgstr ""
#: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150
#: src/pages/part/CategoryDetail.tsx:113
#: src/pages/part/CategoryDetail.tsx:114
#: src/pages/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr ""
#: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110
#: src/tables/plugin/PluginListTable.tsx:112
msgid "Description"
msgstr ""
@ -3172,7 +3181,7 @@ msgstr ""
#: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96
#: src/tables/plugin/PluginListTable.tsx:420
#: src/tables/plugin/PluginListTable.tsx:422
#: src/tables/purchasing/SupplierPartTable.tsx:139
#: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140
#: src/tables/plugin/PluginListTable.tsx:142
msgid "Website"
msgstr ""
@ -3198,8 +3207,8 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101
#: src/tables/plugin/PluginListTable.tsx:425
#: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin"
msgstr ""
@ -3364,7 +3373,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78
#: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category"
msgstr ""
@ -4823,7 +4832,7 @@ msgstr ""
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95
#: src/tables/settings/ImportSessionTable.tsx:118
#: src/tables/settings/ImportSessionTable.tsx:129
#: src/tables/stock/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status"
@ -4995,7 +5004,7 @@ msgstr ""
#: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129
#: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr ""
#~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters"
msgstr ""
@ -7698,7 +7706,7 @@ msgstr ""
#~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94
#: src/pages/part/CategoryDetail.tsx:291
#: src/pages/part/CategoryDetail.tsx:292
#: src/pages/purchasing/PurchasingIndex.tsx:103
#: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr ""
#: src/pages/build/BuildIndex.tsx:106
#: src/pages/part/CategoryDetail.tsx:305
#: src/pages/part/CategoryDetail.tsx:306
#: src/pages/purchasing/PurchasingIndex.tsx:115
#: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr ""
#~ msgid "Basic user"
#~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105
#: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr ""
msgid "Path"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:121
#: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:144
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:151
#: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:157
#: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:164
#: src/pages/part/CategoryDetail.tsx:165
msgid "Default location"
msgstr ""
@ -8018,48 +8026,48 @@ msgstr ""
#~ msgid "Top level part category"
#~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181
#: src/pages/part/CategoryDetail.tsx:249
#: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:190
#: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:194
#: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:202
#: src/pages/part/CategoryDetail.tsx:254
#: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:205
#: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:212
#: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:213
#: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:245
#: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:271
#: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details"
msgstr ""
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr ""
#: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320
#: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone"
msgstr ""
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr ""
#: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112
#: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type"
msgstr ""
@ -11402,16 +11410,16 @@ msgstr ""
msgid "Add Part Category"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:49
#: src/tables/part/PartCategoryTemplateTable.tsx:143
#: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:57
#: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:65
#: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter"
msgstr ""
@ -11419,6 +11427,14 @@ msgstr ""
#~ msgid "[{0}]"
#~ msgstr "[{0}]"
#: src/tables/part/PartCategoryTemplateTable.tsx:167
msgid "Part Category Parameters Templates"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:170
msgid "Parts which are created within this category will inherit the default values specified here."
msgstr ""
#: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr ""
#~ msgid "An error occurred while fetching plugin details"
#~ msgstr "An error occurred while fetching plugin details"
#: src/tables/plugin/PluginListTable.tsx:106
#: src/tables/plugin/PluginListTable.tsx:430
#: src/tables/plugin/PluginListTable.tsx:108
#: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory"
msgstr ""
@ -11847,7 +11863,7 @@ msgstr ""
#~ msgid "Plugin with id {id} not found"
#~ msgstr "Plugin with id {id} not found"
#: src/tables/plugin/PluginListTable.tsx:120
#: src/tables/plugin/PluginListTable.tsx:122
msgid "Description not available"
msgstr ""
@ -11869,11 +11885,11 @@ msgstr ""
#~ msgid "Reload"
#~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159
#: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:160
#: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation"
msgstr ""
@ -11881,15 +11897,15 @@ msgstr ""
#~ msgid "Package information"
#~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165
#: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:166
#: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:184
#: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate"
msgstr ""
@ -11897,44 +11913,44 @@ msgstr ""
#~ msgid "Plugin settings"
#~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198
#: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:199
#: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:211
#: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:229
#: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:230
#: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:248
#: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271
#: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:272
#: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated"
msgstr ""
@ -11942,20 +11958,20 @@ msgstr ""
#~ msgid "Install plugin"
#~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285
#: src/tables/plugin/PluginListTable.tsx:377
#: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:298
#: src/tables/plugin/PluginListTable.tsx:300
msgid "Install"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:299
#: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:304
#: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin"
msgstr ""
@ -11963,31 +11979,31 @@ msgstr ""
#~ msgid "This action cannot be undone."
#~ msgstr "This action cannot be undone."
#: src/tables/plugin/PluginListTable.tsx:316
#: src/tables/plugin/PluginListTable.tsx:318
msgid "Confirm plugin uninstall"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:319
#: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled."
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:324
#: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:332
#: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:333
#: src/tables/plugin/PluginListTable.tsx:335
msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:346
#: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:347
#: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully"
msgstr ""
@ -11999,7 +12015,7 @@ msgstr ""
#~ msgid "The following plugin will be deactivated"
#~ msgstr "The following plugin will be deactivated"
#: src/tables/plugin/PluginListTable.tsx:370
#: src/tables/plugin/PluginListTable.tsx:372
msgid "Reload Plugins"
msgstr ""
@ -12015,7 +12031,7 @@ msgstr ""
#~ msgid "Plugin updated"
#~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393
#: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail"
msgstr ""
@ -12023,11 +12039,11 @@ msgstr ""
#~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435
#: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:440
#: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248
msgid "Installed"
msgstr ""
@ -12660,29 +12676,29 @@ msgstr ""
msgid "Add Group"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:37
#: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:43
#: src/tables/settings/ImportSessionTable.tsx:130
#: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:73
#: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:84
#: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:113
#: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:119
#: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: bg\n"
"Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-06-14 02:15\n"
"PO-Revision-Date: 2026-06-17 22:14\n"
"Last-Translator: \n"
"Language-Team: Bulgarian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -56,7 +56,7 @@ msgstr ""
#: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247
#: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete"
msgstr ""
@ -163,10 +163,10 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137
#: src/pages/part/CategoryDetail.tsx:284
#: src/pages/part/CategoryDetail.tsx:339
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893
msgid "Parts"
msgstr ""
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr ""
#: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87
#: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template"
msgstr ""
#: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates"
msgstr ""
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr ""
#: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496
msgid "Part Category"
msgstr ""
#: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:372
#: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories"
msgstr ""
@ -273,7 +274,7 @@ msgstr ""
#: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217
#: src/pages/part/CategoryDetail.tsx:313
#: src/pages/part/CategoryDetail.tsx:314
#: src/pages/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr ""
#: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44
#: src/tables/settings/ImportSessionTable.tsx:78
#: src/tables/settings/ImportSessionTable.tsx:82
#: src/tables/stock/StockTrackingTable.tsx:237
#: src/tables/stock/StockTrackingTable.tsx:285
msgid "User"
@ -640,7 +641,7 @@ msgstr ""
#: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215
#: src/components/importer/ImporterColumnSelector.tsx:278
#: src/components/importer/ImporterColumnSelector.tsx:330
#: src/components/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr ""
#: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210
#: src/tables/plugin/PluginListTable.tsx:212
msgid "Update"
msgstr ""
@ -1982,7 +1983,7 @@ msgstr ""
#: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19
#: src/pages/part/CategoryDetail.tsx:93
#: src/pages/part/CategoryDetail.tsx:94
#: src/pages/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr ""
#: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127
#: src/tables/plugin/PluginListTable.tsx:129
msgid "Version"
msgstr ""
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:56
#: src/components/importer/ImporterColumnSelector.tsx:247
#: src/components/importer/ImporterColumnSelector.tsx:299
#: src/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60
#: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr ""
#~ msgid "Imported Column Name"
#~ msgstr "Imported Column Name"
#: src/components/importer/ImporterColumnSelector.tsx:253
#: src/components/importer/ImporterColumnSelector.tsx:202
msgid "Auto"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:305
msgid "Ignore this field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:267
#: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:272
#: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:285
#: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:286
#: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:287
#: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:288
#: src/components/importer/ImporterColumnSelector.tsx:340
msgid "Lookup Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:341
msgid "Default Value"
msgstr ""
@ -3131,7 +3140,7 @@ msgstr ""
#: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150
#: src/pages/part/CategoryDetail.tsx:113
#: src/pages/part/CategoryDetail.tsx:114
#: src/pages/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr ""
#: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110
#: src/tables/plugin/PluginListTable.tsx:112
msgid "Description"
msgstr ""
@ -3172,7 +3181,7 @@ msgstr ""
#: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96
#: src/tables/plugin/PluginListTable.tsx:420
#: src/tables/plugin/PluginListTable.tsx:422
#: src/tables/purchasing/SupplierPartTable.tsx:139
#: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140
#: src/tables/plugin/PluginListTable.tsx:142
msgid "Website"
msgstr ""
@ -3198,8 +3207,8 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101
#: src/tables/plugin/PluginListTable.tsx:425
#: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin"
msgstr ""
@ -3364,7 +3373,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78
#: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category"
msgstr ""
@ -4823,7 +4832,7 @@ msgstr ""
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95
#: src/tables/settings/ImportSessionTable.tsx:118
#: src/tables/settings/ImportSessionTable.tsx:129
#: src/tables/stock/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status"
@ -4995,7 +5004,7 @@ msgstr ""
#: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129
#: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr ""
#~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters"
msgstr ""
@ -7698,7 +7706,7 @@ msgstr ""
#~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94
#: src/pages/part/CategoryDetail.tsx:291
#: src/pages/part/CategoryDetail.tsx:292
#: src/pages/purchasing/PurchasingIndex.tsx:103
#: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr ""
#: src/pages/build/BuildIndex.tsx:106
#: src/pages/part/CategoryDetail.tsx:305
#: src/pages/part/CategoryDetail.tsx:306
#: src/pages/purchasing/PurchasingIndex.tsx:115
#: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr ""
#~ msgid "Basic user"
#~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105
#: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr ""
msgid "Path"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:121
#: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:144
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:151
#: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:157
#: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:164
#: src/pages/part/CategoryDetail.tsx:165
msgid "Default location"
msgstr ""
@ -8018,48 +8026,48 @@ msgstr ""
#~ msgid "Top level part category"
#~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181
#: src/pages/part/CategoryDetail.tsx:249
#: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:190
#: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:194
#: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:202
#: src/pages/part/CategoryDetail.tsx:254
#: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:205
#: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:212
#: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:213
#: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:245
#: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:271
#: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details"
msgstr ""
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr ""
#: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320
#: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone"
msgstr ""
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr ""
#: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112
#: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type"
msgstr ""
@ -11402,16 +11410,16 @@ msgstr ""
msgid "Add Part Category"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:49
#: src/tables/part/PartCategoryTemplateTable.tsx:143
#: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:57
#: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:65
#: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter"
msgstr ""
@ -11419,6 +11427,14 @@ msgstr ""
#~ msgid "[{0}]"
#~ msgstr "[{0}]"
#: src/tables/part/PartCategoryTemplateTable.tsx:167
msgid "Part Category Parameters Templates"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:170
msgid "Parts which are created within this category will inherit the default values specified here."
msgstr ""
#: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr ""
#~ msgid "An error occurred while fetching plugin details"
#~ msgstr "An error occurred while fetching plugin details"
#: src/tables/plugin/PluginListTable.tsx:106
#: src/tables/plugin/PluginListTable.tsx:430
#: src/tables/plugin/PluginListTable.tsx:108
#: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory"
msgstr ""
@ -11847,7 +11863,7 @@ msgstr ""
#~ msgid "Plugin with id {id} not found"
#~ msgstr "Plugin with id {id} not found"
#: src/tables/plugin/PluginListTable.tsx:120
#: src/tables/plugin/PluginListTable.tsx:122
msgid "Description not available"
msgstr ""
@ -11869,11 +11885,11 @@ msgstr ""
#~ msgid "Reload"
#~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159
#: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:160
#: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation"
msgstr ""
@ -11881,15 +11897,15 @@ msgstr ""
#~ msgid "Package information"
#~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165
#: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:166
#: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:184
#: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate"
msgstr ""
@ -11897,44 +11913,44 @@ msgstr ""
#~ msgid "Plugin settings"
#~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198
#: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:199
#: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:211
#: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:229
#: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:230
#: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:248
#: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271
#: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:272
#: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated"
msgstr ""
@ -11942,20 +11958,20 @@ msgstr ""
#~ msgid "Install plugin"
#~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285
#: src/tables/plugin/PluginListTable.tsx:377
#: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:298
#: src/tables/plugin/PluginListTable.tsx:300
msgid "Install"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:299
#: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:304
#: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin"
msgstr ""
@ -11963,31 +11979,31 @@ msgstr ""
#~ msgid "This action cannot be undone."
#~ msgstr "This action cannot be undone."
#: src/tables/plugin/PluginListTable.tsx:316
#: src/tables/plugin/PluginListTable.tsx:318
msgid "Confirm plugin uninstall"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:319
#: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled."
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:324
#: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:332
#: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:333
#: src/tables/plugin/PluginListTable.tsx:335
msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:346
#: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:347
#: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully"
msgstr ""
@ -11999,7 +12015,7 @@ msgstr ""
#~ msgid "The following plugin will be deactivated"
#~ msgstr "The following plugin will be deactivated"
#: src/tables/plugin/PluginListTable.tsx:370
#: src/tables/plugin/PluginListTable.tsx:372
msgid "Reload Plugins"
msgstr ""
@ -12015,7 +12031,7 @@ msgstr ""
#~ msgid "Plugin updated"
#~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393
#: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail"
msgstr ""
@ -12023,11 +12039,11 @@ msgstr ""
#~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435
#: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:440
#: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248
msgid "Installed"
msgstr ""
@ -12660,29 +12676,29 @@ msgstr ""
msgid "Add Group"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:37
#: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:43
#: src/tables/settings/ImportSessionTable.tsx:130
#: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:73
#: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:84
#: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:113
#: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:119
#: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: cs\n"
"Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-06-14 02:15\n"
"PO-Revision-Date: 2026-06-17 22:14\n"
"Last-Translator: \n"
"Language-Team: Czech\n"
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
@ -56,7 +56,7 @@ msgstr "Upravit"
#: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247
#: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete"
msgstr "Odstranit"
@ -163,10 +163,10 @@ msgstr "Díl"
#: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137
#: src/pages/part/CategoryDetail.tsx:284
#: src/pages/part/CategoryDetail.tsx:339
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893
msgid "Parts"
msgstr "Díly"
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr "Parametry"
#: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87
#: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template"
msgstr "Šablona parametru"
#: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates"
msgstr "Šablony parametru"
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr "Díly výrobce"
#: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496
msgid "Part Category"
msgstr "Kategorie dílu"
#: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:372
#: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories"
msgstr "Kategorie dílů"
@ -273,7 +274,7 @@ msgstr "Skladová položka"
#: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217
#: src/pages/part/CategoryDetail.tsx:313
#: src/pages/part/CategoryDetail.tsx:314
#: src/pages/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr "Správci"
#: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44
#: src/tables/settings/ImportSessionTable.tsx:78
#: src/tables/settings/ImportSessionTable.tsx:82
#: src/tables/stock/StockTrackingTable.tsx:237
#: src/tables/stock/StockTrackingTable.tsx:285
msgid "User"
@ -640,7 +641,7 @@ msgstr "Výběr záznamů"
#: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215
#: src/components/importer/ImporterColumnSelector.tsx:278
#: src/components/importer/ImporterColumnSelector.tsx:330
#: src/components/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr "Existují chyby pro jedno nebo více polí formuláře"
#: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210
#: src/tables/plugin/PluginListTable.tsx:212
msgid "Update"
msgstr "Aktualizovat"
@ -1982,7 +1983,7 @@ msgstr "Server"
#: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19
#: src/pages/part/CategoryDetail.tsx:93
#: src/pages/part/CategoryDetail.tsx:94
#: src/pages/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr "Server"
#: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127
#: src/tables/plugin/PluginListTable.tsx:129
msgid "Version"
msgstr "Verze"
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr "Zpracovávání dat"
#: src/components/importer/ImporterColumnSelector.tsx:56
#: src/components/importer/ImporterColumnSelector.tsx:247
#: src/components/importer/ImporterColumnSelector.tsx:299
#: src/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60
#: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr "Vyberte sloupec, nebo ponechte prázdné pro ignorování tohoto pole."
#~ msgid "Imported Column Name"
#~ msgstr "Imported Column Name"
#: src/components/importer/ImporterColumnSelector.tsx:253
#: src/components/importer/ImporterColumnSelector.tsx:202
msgid "Auto"
msgstr "Automaticky"
#: src/components/importer/ImporterColumnSelector.tsx:305
msgid "Ignore this field"
msgstr "Ignorovat toto pole"
#: src/components/importer/ImporterColumnSelector.tsx:267
#: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields"
msgstr "Mapování datových sloupců do databázových polí"
#: src/components/importer/ImporterColumnSelector.tsx:272
#: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping"
msgstr "Přijmout mapování sloupců"
#: src/components/importer/ImporterColumnSelector.tsx:285
#: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field"
msgstr "Databázové pole"
#: src/components/importer/ImporterColumnSelector.tsx:286
#: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description"
msgstr "Popis pole:"
#: src/components/importer/ImporterColumnSelector.tsx:287
#: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column"
msgstr "Importovaný sloupec"
#: src/components/importer/ImporterColumnSelector.tsx:288
#: src/components/importer/ImporterColumnSelector.tsx:340
msgid "Lookup Field"
msgstr "Vyhledávací pole"
#: src/components/importer/ImporterColumnSelector.tsx:341
msgid "Default Value"
msgstr "Výchozí hodnota"
@ -2989,7 +2998,7 @@ msgstr "Chyba při načítání oznámení."
#: src/components/nav/PageDetail.tsx:263
msgid "Primary Action"
msgstr ""
msgstr "Primární akce"
#: src/components/nav/SearchDrawer.tsx:111
msgid "No Overview Available"
@ -3094,7 +3103,7 @@ msgstr "Máte neuložené změny, jste si jisti, že chcete opustit tento panel?
#. placeholder {0}: panel.name
#: src/components/panels/PanelGroup.tsx:349
msgid "Navigate to panel {0}"
msgstr ""
msgstr "Přejít na panel {0}"
#: src/components/panels/PanelGroup.tsx:409
msgid "Collapse panels"
@ -3131,7 +3140,7 @@ msgstr "Informace o pluginu"
#: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150
#: src/pages/part/CategoryDetail.tsx:113
#: src/pages/part/CategoryDetail.tsx:114
#: src/pages/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr "Informace o pluginu"
#: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110
#: src/tables/plugin/PluginListTable.tsx:112
msgid "Description"
msgstr "Popis"
@ -3172,7 +3181,7 @@ msgstr "Datum"
#: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96
#: src/tables/plugin/PluginListTable.tsx:420
#: src/tables/plugin/PluginListTable.tsx:422
#: src/tables/purchasing/SupplierPartTable.tsx:139
#: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr "Aktivní"
#: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140
#: src/tables/plugin/PluginListTable.tsx:142
msgid "Website"
msgstr "Webová stránka"
@ -3198,8 +3207,8 @@ msgstr "Instalační cesta"
#: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101
#: src/tables/plugin/PluginListTable.tsx:425
#: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin"
msgstr "Vestavěný"
@ -3364,7 +3373,7 @@ msgstr "Detaily"
#: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78
#: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category"
msgstr "Kategorie"
@ -4503,7 +4512,7 @@ msgstr "Stroje"
#: src/defaults/actions.tsx:243
msgid "Manage machines and machine types"
msgstr ""
msgstr "Správa strojů a strojních typů"
#: src/defaults/actions.tsx:253
msgid "Manage report templates"
@ -4823,7 +4832,7 @@ msgstr "Množství k dokončení"
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95
#: src/tables/settings/ImportSessionTable.tsx:118
#: src/tables/settings/ImportSessionTable.tsx:129
#: src/tables/stock/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status"
@ -4995,7 +5004,7 @@ msgstr "Vyberte kód projektu pro tuto položku"
#: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129
#: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr "Vlastní jednotky"
#~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters"
msgstr "Parametry kategorie"
@ -7698,7 +7706,7 @@ msgstr "Zrušit objednávku"
#~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94
#: src/pages/part/CategoryDetail.tsx:291
#: src/pages/part/CategoryDetail.tsx:292
#: src/pages/purchasing/PurchasingIndex.tsx:103
#: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr "Zobrazení kalendáře"
#: src/pages/build/BuildIndex.tsx:106
#: src/pages/part/CategoryDetail.tsx:305
#: src/pages/part/CategoryDetail.tsx:306
#: src/pages/purchasing/PurchasingIndex.tsx:115
#: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr "Běžný uživatel"
#~ msgid "Basic user"
#~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105
#: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr "Běžný uživatel"
msgid "Path"
msgstr "Cesta"
#: src/pages/part/CategoryDetail.tsx:121
#: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category"
msgstr "Nadřazená kategorie"
#: src/pages/part/CategoryDetail.tsx:144
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories"
msgstr "Podkategorie"
#: src/pages/part/CategoryDetail.tsx:151
#: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural"
msgstr "Strukturální"
#: src/pages/part/CategoryDetail.tsx:157
#: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location"
msgstr "Výchozí výchozí umístění nadřazeného zařízení"
#: src/pages/part/CategoryDetail.tsx:164
#: src/pages/part/CategoryDetail.tsx:165
msgid "Default location"
msgstr "Výchozí umístění"
@ -8018,48 +8026,48 @@ msgstr "Výchozí umístění"
#~ msgid "Top level part category"
#~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181
#: src/pages/part/CategoryDetail.tsx:249
#: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category"
msgstr "Upravit kategorii dílu"
#: src/pages/part/CategoryDetail.tsx:190
#: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category"
msgstr "Přesunout položky do nadřazené kategorie"
#: src/pages/part/CategoryDetail.tsx:194
#: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items"
msgstr "Odstranit položky"
#: src/pages/part/CategoryDetail.tsx:202
#: src/pages/part/CategoryDetail.tsx:254
#: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category"
msgstr "Odstranit kategorii dílu"
#: src/pages/part/CategoryDetail.tsx:205
#: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action"
msgstr "Akce s položkou"
#: src/pages/part/CategoryDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category"
msgstr "Akce pro položky v této kategorii"
#: src/pages/part/CategoryDetail.tsx:212
#: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action"
msgstr "Akce pro podkategorie"
#: src/pages/part/CategoryDetail.tsx:213
#: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category"
msgstr "Akce pro podkategorie v této kategorii"
#: src/pages/part/CategoryDetail.tsx:245
#: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions"
msgstr "Akce kategorie."
#: src/pages/part/CategoryDetail.tsx:271
#: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details"
msgstr "Podrobnosti o kategorii"
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr "Jste si jisti, že chcete odstranit vybrané položky?"
#: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320
#: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone"
msgstr "Tuto akci nelze vrátit zpět"
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr "Zobrazit povolené šablony"
#: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112
#: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type"
msgstr "Typ modelu"
@ -11402,16 +11410,16 @@ msgstr "Nastavit nadřazenou kategorii pro vybrané položky"
msgid "Add Part Category"
msgstr "Přidat kategorii dílu"
#: src/tables/part/PartCategoryTemplateTable.tsx:49
#: src/tables/part/PartCategoryTemplateTable.tsx:143
#: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter"
msgstr "Přidat kategorii parametru"
#: src/tables/part/PartCategoryTemplateTable.tsx:57
#: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter"
msgstr "Upravit kategorii parametru"
#: src/tables/part/PartCategoryTemplateTable.tsx:65
#: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter"
msgstr "Odstranit kategorii parametru"
@ -11419,6 +11427,14 @@ msgstr "Odstranit kategorii parametru"
#~ msgid "[{0}]"
#~ msgstr "[{0}]"
#: src/tables/part/PartCategoryTemplateTable.tsx:167
msgid "Part Category Parameters Templates"
msgstr "Šablony parametru kategorie dílu"
#: src/tables/part/PartCategoryTemplateTable.tsx:170
msgid "Parts which are created within this category will inherit the default values specified here."
msgstr "Díly vytvořené v této kategorii zdědí výchozí hodnoty zadané zde."
#: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr "Plugin"
#~ msgid "An error occurred while fetching plugin details"
#~ msgstr "An error occurred while fetching plugin details"
#: src/tables/plugin/PluginListTable.tsx:106
#: src/tables/plugin/PluginListTable.tsx:430
#: src/tables/plugin/PluginListTable.tsx:108
#: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory"
msgstr "Povinné"
@ -11847,7 +11863,7 @@ msgstr "Povinné"
#~ msgid "Plugin with id {id} not found"
#~ msgstr "Plugin with id {id} not found"
#: src/tables/plugin/PluginListTable.tsx:120
#: src/tables/plugin/PluginListTable.tsx:122
msgid "Description not available"
msgstr "Popis není k dispozici"
@ -11869,11 +11885,11 @@ msgstr "Popis není k dispozici"
#~ msgid "Reload"
#~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159
#: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation"
msgstr "Potvrdit aktivaci pluginu"
#: src/tables/plugin/PluginListTable.tsx:160
#: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation"
msgstr "Potvrdit deaktivaci pluginu"
@ -11881,15 +11897,15 @@ msgstr "Potvrdit deaktivaci pluginu"
#~ msgid "Package information"
#~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165
#: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated"
msgstr "Vybraný plugin bude aktivován"
#: src/tables/plugin/PluginListTable.tsx:166
#: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated"
msgstr "Vybraný plugin bude deaktivován"
#: src/tables/plugin/PluginListTable.tsx:184
#: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate"
msgstr "Deaktivovat"
@ -11897,44 +11913,44 @@ msgstr "Deaktivovat"
#~ msgid "Plugin settings"
#~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198
#: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate"
msgstr "Aktivovat"
#: src/tables/plugin/PluginListTable.tsx:199
#: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin"
msgstr "Aktivovat vybraný plugin"
#: src/tables/plugin/PluginListTable.tsx:211
#: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin"
msgstr "Aktualizovat vybraný plugin"
#: src/tables/plugin/PluginListTable.tsx:229
#: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall"
msgstr "Odinstalovat"
#: src/tables/plugin/PluginListTable.tsx:230
#: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin"
msgstr "Odinstalovat vybraný plugin"
#: src/tables/plugin/PluginListTable.tsx:248
#: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration"
msgstr "Odstranit vybranou konfiguraci pluginu"
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin"
msgstr "Aktivovat plugin"
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin"
msgstr "Deaktivovat plugin"
#: src/tables/plugin/PluginListTable.tsx:271
#: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated"
msgstr "Plugin byl aktivován"
#: src/tables/plugin/PluginListTable.tsx:272
#: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated"
msgstr "Plugin byl deaktivován"
@ -11942,20 +11958,20 @@ msgstr "Plugin byl deaktivován"
#~ msgid "Install plugin"
#~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285
#: src/tables/plugin/PluginListTable.tsx:377
#: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin"
msgstr "Instalovat plugin"
#: src/tables/plugin/PluginListTable.tsx:298
#: src/tables/plugin/PluginListTable.tsx:300
msgid "Install"
msgstr "Instalovat"
#: src/tables/plugin/PluginListTable.tsx:299
#: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully"
msgstr "Plugin byl úspěšně nainstalován"
#: src/tables/plugin/PluginListTable.tsx:304
#: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin"
msgstr "Odinstalovat plugin"
@ -11963,31 +11979,31 @@ msgstr "Odinstalovat plugin"
#~ msgid "This action cannot be undone."
#~ msgstr "This action cannot be undone."
#: src/tables/plugin/PluginListTable.tsx:316
#: src/tables/plugin/PluginListTable.tsx:318
msgid "Confirm plugin uninstall"
msgstr "Potvrdit odinstalaci pluginu"
#: src/tables/plugin/PluginListTable.tsx:319
#: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled."
msgstr "Vybraný plugin bude odinstalován."
#: src/tables/plugin/PluginListTable.tsx:324
#: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully"
msgstr "Plugin byl úspěšně odinstalován"
#: src/tables/plugin/PluginListTable.tsx:332
#: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin"
msgstr "Odstranit plugin"
#: src/tables/plugin/PluginListTable.tsx:333
#: src/tables/plugin/PluginListTable.tsx:335
msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr "Smazání této konfigurace pluginu odstraní všechna související nastavení a data. Jste si jisti, že chcete odstranit tento plugin?"
#: src/tables/plugin/PluginListTable.tsx:346
#: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded"
msgstr "Pluginy znovu načteny"
#: src/tables/plugin/PluginListTable.tsx:347
#: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully"
msgstr "Pluginy byly úspěšně znovu načteny"
@ -11999,7 +12015,7 @@ msgstr "Pluginy byly úspěšně znovu načteny"
#~ msgid "The following plugin will be deactivated"
#~ msgstr "The following plugin will be deactivated"
#: src/tables/plugin/PluginListTable.tsx:370
#: src/tables/plugin/PluginListTable.tsx:372
msgid "Reload Plugins"
msgstr "Znovu načíst pluginy"
@ -12015,7 +12031,7 @@ msgstr "Znovu načíst pluginy"
#~ msgid "Plugin updated"
#~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393
#: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail"
msgstr "Detail Pluginu"
@ -12023,11 +12039,11 @@ msgstr "Detail Pluginu"
#~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435
#: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample"
msgstr "Příklad"
#: src/tables/plugin/PluginListTable.tsx:440
#: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248
msgid "Installed"
msgstr "Nainstalováno"
@ -12660,29 +12676,29 @@ msgstr "Upravit skupinu"
msgid "Add Group"
msgstr "Přidat skupinu"
#: src/tables/settings/ImportSessionTable.tsx:37
#: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session"
msgstr "Smazat relaci importu"
#: src/tables/settings/ImportSessionTable.tsx:43
#: src/tables/settings/ImportSessionTable.tsx:130
#: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session"
msgstr "Vytvořit relaci importu"
#: src/tables/settings/ImportSessionTable.tsx:73
#: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded"
msgstr "Nahráno"
#: src/tables/settings/ImportSessionTable.tsx:84
#: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows"
msgstr "Importované řádky"
#: src/tables/settings/ImportSessionTable.tsx:113
#: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type"
msgstr "Filtrovat podle typu cílového modelu"
#: src/tables/settings/ImportSessionTable.tsx:119
#: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status"
msgstr "Filtrovat podle stavu importované relace"
@ -12724,31 +12740,31 @@ msgstr "Další spuštění"
#: src/tables/settings/SelectionListDrawer.tsx:64
msgid "Add Selection Entry"
msgstr ""
msgstr "Přidat výběr záznamu"
#: src/tables/settings/SelectionListDrawer.tsx:77
msgid "Edit Selection Entry"
msgstr ""
msgstr "Upravit výběr záznamu"
#: src/tables/settings/SelectionListDrawer.tsx:84
msgid "Delete Selection Entry"
msgstr ""
msgstr "Odebrat výběr záznamu"
#: src/tables/settings/SelectionListDrawer.tsx:94
msgid "Add Entry"
msgstr ""
msgstr "Přidat záznam"
#: src/tables/settings/SelectionListDrawer.tsx:174
msgid "This selection list is locked and cannot be edited."
msgstr ""
msgstr "Tento seznam výběru je uzamčen a nemůže být upraven."
#: src/tables/settings/SelectionListDrawer.tsx:180
msgid "Selection List Details"
msgstr ""
msgstr "Detaily seznamu výběru"
#: src/tables/settings/SelectionListDrawer.tsx:204
msgid "Selection List Entries"
msgstr ""
msgstr "Záznamy seznamu výběru"
#: src/tables/settings/SelectionListTable.tsx:67
#: src/tables/settings/SelectionListTable.tsx:109

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: da\n"
"Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-06-14 02:16\n"
"PO-Revision-Date: 2026-06-17 22:14\n"
"Last-Translator: \n"
"Language-Team: Danish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -56,7 +56,7 @@ msgstr "Rediger"
#: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247
#: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete"
msgstr "Slet"
@ -163,10 +163,10 @@ msgstr "Del"
#: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137
#: src/pages/part/CategoryDetail.tsx:284
#: src/pages/part/CategoryDetail.tsx:339
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893
msgid "Parts"
msgstr "Dele"
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr "Parameter"
#: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87
#: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template"
msgstr "Parameter Skabelon"
#: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates"
msgstr "Parameter Skabeloner"
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr "Producent Dele"
#: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496
msgid "Part Category"
msgstr "Del Kategori"
#: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:372
#: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories"
msgstr "Del Kategorier"
@ -273,7 +274,7 @@ msgstr "Lagervarer"
#: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217
#: src/pages/part/CategoryDetail.tsx:313
#: src/pages/part/CategoryDetail.tsx:314
#: src/pages/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr "Ejer"
#: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44
#: src/tables/settings/ImportSessionTable.tsx:78
#: src/tables/settings/ImportSessionTable.tsx:82
#: src/tables/stock/StockTrackingTable.tsx:237
#: src/tables/stock/StockTrackingTable.tsx:285
msgid "User"
@ -640,7 +641,7 @@ msgstr ""
#: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215
#: src/components/importer/ImporterColumnSelector.tsx:278
#: src/components/importer/ImporterColumnSelector.tsx:330
#: src/components/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr "Fejl findes i et eller flere formularfelter"
#: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210
#: src/tables/plugin/PluginListTable.tsx:212
msgid "Update"
msgstr "Opdater"
@ -1982,7 +1983,7 @@ msgstr "Vært"
#: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19
#: src/pages/part/CategoryDetail.tsx:93
#: src/pages/part/CategoryDetail.tsx:94
#: src/pages/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr "Server"
#: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127
#: src/tables/plugin/PluginListTable.tsx:129
msgid "Version"
msgstr "Version"
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr "Behandler Data"
#: src/components/importer/ImporterColumnSelector.tsx:56
#: src/components/importer/ImporterColumnSelector.tsx:247
#: src/components/importer/ImporterColumnSelector.tsx:299
#: src/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60
#: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr "Vælg kolonne, eller efterlad blank for at ignorere dette felt."
#~ msgid "Imported Column Name"
#~ msgstr "Imported Column Name"
#: src/components/importer/ImporterColumnSelector.tsx:253
#: src/components/importer/ImporterColumnSelector.tsx:202
msgid "Auto"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:305
msgid "Ignore this field"
msgstr "Ignorer dette felt"
#: src/components/importer/ImporterColumnSelector.tsx:267
#: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields"
msgstr "Kortlægning af datakolonner til databasefelter"
#: src/components/importer/ImporterColumnSelector.tsx:272
#: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping"
msgstr "Accepter Kolonnekortlægning"
#: src/components/importer/ImporterColumnSelector.tsx:285
#: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field"
msgstr "Databasefelt"
#: src/components/importer/ImporterColumnSelector.tsx:286
#: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description"
msgstr "Feltbeskrivelse"
#: src/components/importer/ImporterColumnSelector.tsx:287
#: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column"
msgstr "Importerede Kolonne"
#: src/components/importer/ImporterColumnSelector.tsx:288
#: src/components/importer/ImporterColumnSelector.tsx:340
msgid "Lookup Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:341
msgid "Default Value"
msgstr "Standardværdi"
@ -3131,7 +3140,7 @@ msgstr "Plugin Information"
#: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150
#: src/pages/part/CategoryDetail.tsx:113
#: src/pages/part/CategoryDetail.tsx:114
#: src/pages/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr "Plugin Information"
#: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110
#: src/tables/plugin/PluginListTable.tsx:112
msgid "Description"
msgstr "Beskrivelse"
@ -3172,7 +3181,7 @@ msgstr "Dato"
#: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96
#: src/tables/plugin/PluginListTable.tsx:420
#: src/tables/plugin/PluginListTable.tsx:422
#: src/tables/purchasing/SupplierPartTable.tsx:139
#: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr "Aktiv"
#: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140
#: src/tables/plugin/PluginListTable.tsx:142
msgid "Website"
msgstr "Hjemmeside"
@ -3198,8 +3207,8 @@ msgstr "Installationssti"
#: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101
#: src/tables/plugin/PluginListTable.tsx:425
#: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin"
msgstr "Indbygget"
@ -3364,7 +3373,7 @@ msgstr "Detaljer"
#: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78
#: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category"
msgstr "Kategori"
@ -4823,7 +4832,7 @@ msgstr "Antal til fuldførelse"
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95
#: src/tables/settings/ImportSessionTable.tsx:118
#: src/tables/settings/ImportSessionTable.tsx:129
#: src/tables/stock/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status"
@ -4995,7 +5004,7 @@ msgstr "Vælg projektkode for dette linjeelement"
#: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129
#: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr ""
#~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters"
msgstr "Kategori Parametre"
@ -7698,7 +7706,7 @@ msgstr "Annuller ordre"
#~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94
#: src/pages/part/CategoryDetail.tsx:291
#: src/pages/part/CategoryDetail.tsx:292
#: src/pages/purchasing/PurchasingIndex.tsx:103
#: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr "Kalender Visning"
#: src/pages/build/BuildIndex.tsx:106
#: src/pages/part/CategoryDetail.tsx:305
#: src/pages/part/CategoryDetail.tsx:306
#: src/pages/purchasing/PurchasingIndex.tsx:115
#: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr ""
#~ msgid "Basic user"
#~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105
#: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr ""
msgid "Path"
msgstr "Sti"
#: src/pages/part/CategoryDetail.tsx:121
#: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category"
msgstr "Overordnet kategori"
#: src/pages/part/CategoryDetail.tsx:144
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories"
msgstr "Underkategorier"
#: src/pages/part/CategoryDetail.tsx:151
#: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural"
msgstr "Strukturelle"
#: src/pages/part/CategoryDetail.tsx:157
#: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location"
msgstr "Overordnet standard lokation"
#: src/pages/part/CategoryDetail.tsx:164
#: src/pages/part/CategoryDetail.tsx:165
msgid "Default location"
msgstr "Standard lokation"
@ -8018,48 +8026,48 @@ msgstr "Standard lokation"
#~ msgid "Top level part category"
#~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181
#: src/pages/part/CategoryDetail.tsx:249
#: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category"
msgstr "Rediger Del Kategori"
#: src/pages/part/CategoryDetail.tsx:190
#: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category"
msgstr "Flyt elementer til overordnet kategori"
#: src/pages/part/CategoryDetail.tsx:194
#: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items"
msgstr "Slet vare"
#: src/pages/part/CategoryDetail.tsx:202
#: src/pages/part/CategoryDetail.tsx:254
#: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category"
msgstr "Slet Del Kategori"
#: src/pages/part/CategoryDetail.tsx:205
#: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action"
msgstr "Dele Handling"
#: src/pages/part/CategoryDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category"
msgstr "Handling for dele i denne kategori"
#: src/pages/part/CategoryDetail.tsx:212
#: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action"
msgstr "Underkategori Handling"
#: src/pages/part/CategoryDetail.tsx:213
#: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category"
msgstr "Handling for underliggende kategorier i denne kategori"
#: src/pages/part/CategoryDetail.tsx:245
#: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions"
msgstr "Kategori Handlinger"
#: src/pages/part/CategoryDetail.tsx:271
#: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details"
msgstr "Kategori Detaljer"
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr "Er du sikker på at du ønsker at slette de valgte varer?"
#: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320
#: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone"
msgstr "Denne handling kan ikke fortrydes"
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr "Vis aktiverede skabeloner"
#: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112
#: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type"
msgstr ""
@ -11402,16 +11410,16 @@ msgstr "Sæt overordnet kategori for de valgte elementer"
msgid "Add Part Category"
msgstr "Tilføj Del Kategori"
#: src/tables/part/PartCategoryTemplateTable.tsx:49
#: src/tables/part/PartCategoryTemplateTable.tsx:143
#: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter"
msgstr "Tilføj Kategori Parameter"
#: src/tables/part/PartCategoryTemplateTable.tsx:57
#: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter"
msgstr "Rediger Kategori Parameter"
#: src/tables/part/PartCategoryTemplateTable.tsx:65
#: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter"
msgstr "Slet Kategori Parameter"
@ -11419,6 +11427,14 @@ msgstr "Slet Kategori Parameter"
#~ msgid "[{0}]"
#~ msgstr "[{0}]"
#: src/tables/part/PartCategoryTemplateTable.tsx:167
msgid "Part Category Parameters Templates"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:170
msgid "Parts which are created within this category will inherit the default values specified here."
msgstr ""
#: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr "Plugin"
#~ msgid "An error occurred while fetching plugin details"
#~ msgstr "An error occurred while fetching plugin details"
#: src/tables/plugin/PluginListTable.tsx:106
#: src/tables/plugin/PluginListTable.tsx:430
#: src/tables/plugin/PluginListTable.tsx:108
#: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory"
msgstr "Obligatorisk"
@ -11847,7 +11863,7 @@ msgstr "Obligatorisk"
#~ msgid "Plugin with id {id} not found"
#~ msgstr "Plugin with id {id} not found"
#: src/tables/plugin/PluginListTable.tsx:120
#: src/tables/plugin/PluginListTable.tsx:122
msgid "Description not available"
msgstr "Beskrivelse ikke tilgængelig"
@ -11869,11 +11885,11 @@ msgstr "Beskrivelse ikke tilgængelig"
#~ msgid "Reload"
#~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159
#: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation"
msgstr "Bekræft aktivering af plugin"
#: src/tables/plugin/PluginListTable.tsx:160
#: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation"
msgstr "Bekræft deaktivering af plugin"
@ -11881,15 +11897,15 @@ msgstr "Bekræft deaktivering af plugin"
#~ msgid "Package information"
#~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165
#: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated"
msgstr "Det valgte plugin vil blive aktiveret"
#: src/tables/plugin/PluginListTable.tsx:166
#: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated"
msgstr "Det valgte plugin vil blive deaktiveret"
#: src/tables/plugin/PluginListTable.tsx:184
#: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate"
msgstr "Deaktiver"
@ -11897,44 +11913,44 @@ msgstr "Deaktiver"
#~ msgid "Plugin settings"
#~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198
#: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate"
msgstr "Aktiver"
#: src/tables/plugin/PluginListTable.tsx:199
#: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin"
msgstr "Aktiver det valgte plugin"
#: src/tables/plugin/PluginListTable.tsx:211
#: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin"
msgstr "Opdater valgte plugin"
#: src/tables/plugin/PluginListTable.tsx:229
#: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall"
msgstr "Afinstaller"
#: src/tables/plugin/PluginListTable.tsx:230
#: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin"
msgstr "Afinstaller det valgte plugin"
#: src/tables/plugin/PluginListTable.tsx:248
#: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration"
msgstr "Slet valgte plugin konfiguration"
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin"
msgstr "Aktiver Plugin"
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271
#: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated"
msgstr "Plugin blev aktiveret"
#: src/tables/plugin/PluginListTable.tsx:272
#: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated"
msgstr "Plugin blev deaktiveret"
@ -11942,20 +11958,20 @@ msgstr "Plugin blev deaktiveret"
#~ msgid "Install plugin"
#~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285
#: src/tables/plugin/PluginListTable.tsx:377
#: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin"
msgstr "Installer plugin"
#: src/tables/plugin/PluginListTable.tsx:298
#: src/tables/plugin/PluginListTable.tsx:300
msgid "Install"
msgstr "Installer"
#: src/tables/plugin/PluginListTable.tsx:299
#: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully"
msgstr "Plugin blev installeret"
#: src/tables/plugin/PluginListTable.tsx:304
#: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin"
msgstr "Afinstaller Plugin"
@ -11963,31 +11979,31 @@ msgstr "Afinstaller Plugin"
#~ msgid "This action cannot be undone."
#~ msgstr "This action cannot be undone."
#: src/tables/plugin/PluginListTable.tsx:316
#: src/tables/plugin/PluginListTable.tsx:318
msgid "Confirm plugin uninstall"
msgstr "Bekræft afinstallation af plugin"
#: src/tables/plugin/PluginListTable.tsx:319
#: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled."
msgstr "Det valgte plugin vil blive afinstalleret."
#: src/tables/plugin/PluginListTable.tsx:324
#: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully"
msgstr "Plugin blev afinstalleret"
#: src/tables/plugin/PluginListTable.tsx:332
#: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin"
msgstr "Slet Plugin"
#: src/tables/plugin/PluginListTable.tsx:333
#: src/tables/plugin/PluginListTable.tsx:335
msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr "Sletning af denne plugin konfiguration vil fjerne alle tilknyttede indstillinger og data. Er du sikker på, at du vil slette dette plugin?"
#: src/tables/plugin/PluginListTable.tsx:346
#: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded"
msgstr "Plugins genindlæst"
#: src/tables/plugin/PluginListTable.tsx:347
#: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully"
msgstr "Plugins blev genindlæst"
@ -11999,7 +12015,7 @@ msgstr "Plugins blev genindlæst"
#~ msgid "The following plugin will be deactivated"
#~ msgstr "The following plugin will be deactivated"
#: src/tables/plugin/PluginListTable.tsx:370
#: src/tables/plugin/PluginListTable.tsx:372
msgid "Reload Plugins"
msgstr "Genindlæs Plugins"
@ -12015,7 +12031,7 @@ msgstr "Genindlæs Plugins"
#~ msgid "Plugin updated"
#~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393
#: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail"
msgstr "Plugin Detaljer"
@ -12023,11 +12039,11 @@ msgstr "Plugin Detaljer"
#~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435
#: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample"
msgstr "Prøve"
#: src/tables/plugin/PluginListTable.tsx:440
#: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248
msgid "Installed"
msgstr "Installeret"
@ -12660,29 +12676,29 @@ msgstr "Rediger Gruppe"
msgid "Add Group"
msgstr "Tilføj gruppe"
#: src/tables/settings/ImportSessionTable.tsx:37
#: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session"
msgstr "Slet import session"
#: src/tables/settings/ImportSessionTable.tsx:43
#: src/tables/settings/ImportSessionTable.tsx:130
#: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session"
msgstr "Opret Import Session"
#: src/tables/settings/ImportSessionTable.tsx:73
#: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded"
msgstr "Uploadet"
#: src/tables/settings/ImportSessionTable.tsx:84
#: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows"
msgstr "Importerede Rækker"
#: src/tables/settings/ImportSessionTable.tsx:113
#: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:119
#: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: de\n"
"Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-06-14 02:16\n"
"PO-Revision-Date: 2026-06-17 22:14\n"
"Last-Translator: \n"
"Language-Team: German\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -56,7 +56,7 @@ msgstr "Bearbeiten"
#: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247
#: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete"
msgstr "Löschen"
@ -163,10 +163,10 @@ msgstr "Teil"
#: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137
#: src/pages/part/CategoryDetail.tsx:284
#: src/pages/part/CategoryDetail.tsx:339
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893
msgid "Parts"
msgstr "Teile"
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr "Parameter"
#: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87
#: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template"
msgstr "Parameter Vorlage"
#: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates"
msgstr "Parameter Vorlagen"
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr "Herstellerteile"
#: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496
msgid "Part Category"
msgstr "Teilkategorie"
#: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:372
#: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories"
msgstr "Teil-Kategorien"
@ -273,7 +274,7 @@ msgstr "Lagerartikel"
#: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217
#: src/pages/part/CategoryDetail.tsx:313
#: src/pages/part/CategoryDetail.tsx:314
#: src/pages/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr "Eigentümer"
#: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44
#: src/tables/settings/ImportSessionTable.tsx:78
#: src/tables/settings/ImportSessionTable.tsx:82
#: src/tables/stock/StockTrackingTable.tsx:237
#: src/tables/stock/StockTrackingTable.tsx:285
msgid "User"
@ -640,7 +641,7 @@ msgstr ""
#: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215
#: src/components/importer/ImporterColumnSelector.tsx:278
#: src/components/importer/ImporterColumnSelector.tsx:330
#: src/components/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr "Fehler für ein oder mehrere Formularfelder vorhanden"
#: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210
#: src/tables/plugin/PluginListTable.tsx:212
msgid "Update"
msgstr "Aktualisieren"
@ -1982,7 +1983,7 @@ msgstr "Adresse"
#: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19
#: src/pages/part/CategoryDetail.tsx:93
#: src/pages/part/CategoryDetail.tsx:94
#: src/pages/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr "Server"
#: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127
#: src/tables/plugin/PluginListTable.tsx:129
msgid "Version"
msgstr "Version"
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr "Daten werden verarbeiten"
#: src/components/importer/ImporterColumnSelector.tsx:56
#: src/components/importer/ImporterColumnSelector.tsx:247
#: src/components/importer/ImporterColumnSelector.tsx:299
#: src/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60
#: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr "Spalte auswählen oder leer lassen, um dieses Feld zu ignorieren."
#~ msgid "Imported Column Name"
#~ msgstr "Imported Column Name"
#: src/components/importer/ImporterColumnSelector.tsx:253
#: src/components/importer/ImporterColumnSelector.tsx:202
msgid "Auto"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:305
msgid "Ignore this field"
msgstr "Dieses Feld ignorieren"
#: src/components/importer/ImporterColumnSelector.tsx:267
#: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields"
msgstr "Spalten zu Datenbankfeldern zuordnen"
#: src/components/importer/ImporterColumnSelector.tsx:272
#: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping"
msgstr "Spaltenzuordnung akzeptieren"
#: src/components/importer/ImporterColumnSelector.tsx:285
#: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field"
msgstr "Datenbankfeld"
#: src/components/importer/ImporterColumnSelector.tsx:286
#: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description"
msgstr "Feldbeschreibung"
#: src/components/importer/ImporterColumnSelector.tsx:287
#: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column"
msgstr "Importierte Spalte"
#: src/components/importer/ImporterColumnSelector.tsx:288
#: src/components/importer/ImporterColumnSelector.tsx:340
msgid "Lookup Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:341
msgid "Default Value"
msgstr "Standard-Wert"
@ -3131,7 +3140,7 @@ msgstr "Plugin-Informationen"
#: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150
#: src/pages/part/CategoryDetail.tsx:113
#: src/pages/part/CategoryDetail.tsx:114
#: src/pages/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr "Plugin-Informationen"
#: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110
#: src/tables/plugin/PluginListTable.tsx:112
msgid "Description"
msgstr "Beschreibung"
@ -3172,7 +3181,7 @@ msgstr "Datum"
#: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96
#: src/tables/plugin/PluginListTable.tsx:420
#: src/tables/plugin/PluginListTable.tsx:422
#: src/tables/purchasing/SupplierPartTable.tsx:139
#: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr "Aktiv"
#: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140
#: src/tables/plugin/PluginListTable.tsx:142
msgid "Website"
msgstr "Webseite"
@ -3198,8 +3207,8 @@ msgstr "Installationspfad"
#: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101
#: src/tables/plugin/PluginListTable.tsx:425
#: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin"
msgstr "Integriert"
@ -3364,7 +3373,7 @@ msgstr "Details"
#: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78
#: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category"
msgstr "Kategorie"
@ -4823,7 +4832,7 @@ msgstr ""
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95
#: src/tables/settings/ImportSessionTable.tsx:118
#: src/tables/settings/ImportSessionTable.tsx:129
#: src/tables/stock/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status"
@ -4995,7 +5004,7 @@ msgstr ""
#: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129
#: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr "Kundenspezifische Einheiten"
#~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters"
msgstr "Kategorie Parameter"
@ -7698,7 +7706,7 @@ msgstr "Bestellung stornieren"
#~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94
#: src/pages/part/CategoryDetail.tsx:291
#: src/pages/part/CategoryDetail.tsx:292
#: src/pages/purchasing/PurchasingIndex.tsx:103
#: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr "Kalenderansicht"
#: src/pages/build/BuildIndex.tsx:106
#: src/pages/part/CategoryDetail.tsx:305
#: src/pages/part/CategoryDetail.tsx:306
#: src/pages/purchasing/PurchasingIndex.tsx:115
#: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr ""
#~ msgid "Basic user"
#~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105
#: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr ""
msgid "Path"
msgstr "Pfad"
#: src/pages/part/CategoryDetail.tsx:121
#: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category"
msgstr "Übergeordnete Kategorie"
#: src/pages/part/CategoryDetail.tsx:144
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories"
msgstr "Unterkategorien"
#: src/pages/part/CategoryDetail.tsx:151
#: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural"
msgstr "Strukturell"
#: src/pages/part/CategoryDetail.tsx:157
#: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location"
msgstr "Übergeordneter Standard-Standort"
#: src/pages/part/CategoryDetail.tsx:164
#: src/pages/part/CategoryDetail.tsx:165
msgid "Default location"
msgstr "Standard-Lagerort"
@ -8018,48 +8026,48 @@ msgstr "Standard-Lagerort"
#~ msgid "Top level part category"
#~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181
#: src/pages/part/CategoryDetail.tsx:249
#: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category"
msgstr "Teilekategorie bearbeiten"
#: src/pages/part/CategoryDetail.tsx:190
#: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category"
msgstr "Elemente in übergeordnete Kategorie verschieben"
#: src/pages/part/CategoryDetail.tsx:194
#: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items"
msgstr "Elemente löschen"
#: src/pages/part/CategoryDetail.tsx:202
#: src/pages/part/CategoryDetail.tsx:254
#: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category"
msgstr "Teile-Kategorie löschen"
#: src/pages/part/CategoryDetail.tsx:205
#: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action"
msgstr "Teile Aktionen"
#: src/pages/part/CategoryDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category"
msgstr "Aktion für Teile in dieser Kategorie"
#: src/pages/part/CategoryDetail.tsx:212
#: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action"
msgstr "Unterkategorien-Aktion"
#: src/pages/part/CategoryDetail.tsx:213
#: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category"
msgstr "Aktion für untergeordnete Kategorien in dieser Kategorie"
#: src/pages/part/CategoryDetail.tsx:245
#: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions"
msgstr "Kategorieaktionen"
#: src/pages/part/CategoryDetail.tsx:271
#: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details"
msgstr "Kategorie-Details"
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr "Möchten Sie die ausgewählten Elemente wirklich löschen?"
#: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320
#: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone"
msgstr "Diese Aktion kann nicht rückgängig gemacht werden"
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr ""
#: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112
#: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type"
msgstr "Modelltyp"
@ -11402,16 +11410,16 @@ msgstr ""
msgid "Add Part Category"
msgstr "Teilekategorie hinzufügen"
#: src/tables/part/PartCategoryTemplateTable.tsx:49
#: src/tables/part/PartCategoryTemplateTable.tsx:143
#: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter"
msgstr "Kategorieparameter hinzufügen"
#: src/tables/part/PartCategoryTemplateTable.tsx:57
#: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter"
msgstr "Kategorieparameter bearbeiten"
#: src/tables/part/PartCategoryTemplateTable.tsx:65
#: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter"
msgstr "Kategorieparameter löschen"
@ -11419,6 +11427,14 @@ msgstr "Kategorieparameter löschen"
#~ msgid "[{0}]"
#~ msgstr "[{0}]"
#: src/tables/part/PartCategoryTemplateTable.tsx:167
msgid "Part Category Parameters Templates"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:170
msgid "Parts which are created within this category will inherit the default values specified here."
msgstr ""
#: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr "Plugin"
#~ msgid "An error occurred while fetching plugin details"
#~ msgstr "An error occurred while fetching plugin details"
#: src/tables/plugin/PluginListTable.tsx:106
#: src/tables/plugin/PluginListTable.tsx:430
#: src/tables/plugin/PluginListTable.tsx:108
#: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory"
msgstr "verpflichtend"
@ -11847,7 +11863,7 @@ msgstr "verpflichtend"
#~ msgid "Plugin with id {id} not found"
#~ msgstr "Plugin with id {id} not found"
#: src/tables/plugin/PluginListTable.tsx:120
#: src/tables/plugin/PluginListTable.tsx:122
msgid "Description not available"
msgstr "描述不可用"
@ -11869,11 +11885,11 @@ msgstr "描述不可用"
#~ msgid "Reload"
#~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159
#: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation"
msgstr "Plugin Aktivierung bestätigen"
#: src/tables/plugin/PluginListTable.tsx:160
#: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation"
msgstr "Plugin Deaktivierung bestätigen"
@ -11881,15 +11897,15 @@ msgstr "Plugin Deaktivierung bestätigen"
#~ msgid "Package information"
#~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165
#: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated"
msgstr "Das ausgewählte Plugin wird aktiviert"
#: src/tables/plugin/PluginListTable.tsx:166
#: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated"
msgstr "Das ausgewählte Plugin wird deaktiviert"
#: src/tables/plugin/PluginListTable.tsx:184
#: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate"
msgstr "Deaktivieren"
@ -11897,44 +11913,44 @@ msgstr "Deaktivieren"
#~ msgid "Plugin settings"
#~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198
#: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate"
msgstr "Aktivieren"
#: src/tables/plugin/PluginListTable.tsx:199
#: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin"
msgstr "Ausgewähltes Plugin aktivieren"
#: src/tables/plugin/PluginListTable.tsx:211
#: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin"
msgstr "Ausgewähltes Plugin aktualisieren"
#: src/tables/plugin/PluginListTable.tsx:229
#: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall"
msgstr "Deinstallieren"
#: src/tables/plugin/PluginListTable.tsx:230
#: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin"
msgstr "Ausgewählten Plugin deinstallieren"
#: src/tables/plugin/PluginListTable.tsx:248
#: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration"
msgstr "Ausgewählte Plugin-Konfiguration löschen"
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin"
msgstr "Plugin aktivieren"
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271
#: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated"
msgstr "Das Plugin wurde aktiviert"
#: src/tables/plugin/PluginListTable.tsx:272
#: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated"
msgstr "Das Plugin wurde deaktiviert"
@ -11942,20 +11958,20 @@ msgstr "Das Plugin wurde deaktiviert"
#~ msgid "Install plugin"
#~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285
#: src/tables/plugin/PluginListTable.tsx:377
#: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin"
msgstr "Plugin installieren"
#: src/tables/plugin/PluginListTable.tsx:298
#: src/tables/plugin/PluginListTable.tsx:300
msgid "Install"
msgstr "Installieren"
#: src/tables/plugin/PluginListTable.tsx:299
#: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully"
msgstr "Plugin erfolgreich installiert"
#: src/tables/plugin/PluginListTable.tsx:304
#: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin"
msgstr "Plugin deinstallieren"
@ -11963,31 +11979,31 @@ msgstr "Plugin deinstallieren"
#~ msgid "This action cannot be undone."
#~ msgstr "This action cannot be undone."
#: src/tables/plugin/PluginListTable.tsx:316
#: src/tables/plugin/PluginListTable.tsx:318
msgid "Confirm plugin uninstall"
msgstr "Plugin deinstallieren bestätigen"
#: src/tables/plugin/PluginListTable.tsx:319
#: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled."
msgstr "Das ausgewählte Plugin wird deinstalliert."
#: src/tables/plugin/PluginListTable.tsx:324
#: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully"
msgstr "Plugin erfolgreich deinstalliert"
#: src/tables/plugin/PluginListTable.tsx:332
#: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin"
msgstr "Plugin löschen"
#: src/tables/plugin/PluginListTable.tsx:333
#: src/tables/plugin/PluginListTable.tsx:335
msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr "Durch das Löschen dieser Plugin-Konfiguration werden alle zugehörigen Einstellungen und Daten entfernt. Soll dieses Plugin gelöscht werden?"
#: src/tables/plugin/PluginListTable.tsx:346
#: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded"
msgstr "Erweiterungen neu geladen"
#: src/tables/plugin/PluginListTable.tsx:347
#: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully"
msgstr "Plugins wurden erfolgreich neu geladen"
@ -11999,7 +12015,7 @@ msgstr "Plugins wurden erfolgreich neu geladen"
#~ msgid "The following plugin will be deactivated"
#~ msgstr "The following plugin will be deactivated"
#: src/tables/plugin/PluginListTable.tsx:370
#: src/tables/plugin/PluginListTable.tsx:372
msgid "Reload Plugins"
msgstr "Plugins neu laden"
@ -12015,7 +12031,7 @@ msgstr "Plugins neu laden"
#~ msgid "Plugin updated"
#~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393
#: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail"
msgstr "Plugin Detail"
@ -12023,11 +12039,11 @@ msgstr "Plugin Detail"
#~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435
#: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample"
msgstr "Beispiel"
#: src/tables/plugin/PluginListTable.tsx:440
#: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248
msgid "Installed"
msgstr "Installiert"
@ -12660,29 +12676,29 @@ msgstr "Gruppe bearbeiten"
msgid "Add Group"
msgstr "Gruppe hinzufügen"
#: src/tables/settings/ImportSessionTable.tsx:37
#: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session"
msgstr "Import-Session löschen"
#: src/tables/settings/ImportSessionTable.tsx:43
#: src/tables/settings/ImportSessionTable.tsx:130
#: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session"
msgstr "Import-Session erstellen"
#: src/tables/settings/ImportSessionTable.tsx:73
#: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded"
msgstr "Hochgeladen"
#: src/tables/settings/ImportSessionTable.tsx:84
#: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows"
msgstr "Importierte Zeilen"
#: src/tables/settings/ImportSessionTable.tsx:113
#: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type"
msgstr "Nach Modelltyp filtern"
#: src/tables/settings/ImportSessionTable.tsx:119
#: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status"
msgstr "Nach Import-Session-Status filtern"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: el\n"
"Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-06-14 02:16\n"
"PO-Revision-Date: 2026-06-17 22:14\n"
"Last-Translator: \n"
"Language-Team: Greek\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -56,7 +56,7 @@ msgstr "Επεξεργασία"
#: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247
#: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete"
msgstr "Διαγραφή"
@ -163,10 +163,10 @@ msgstr "Προϊόν"
#: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137
#: src/pages/part/CategoryDetail.tsx:284
#: src/pages/part/CategoryDetail.tsx:339
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893
msgid "Parts"
msgstr "Προϊόντα"
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr "Παράμετροι"
#: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87
#: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template"
msgstr "Πρότυπο παραμέτρου"
#: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates"
msgstr ""
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr "Προϊόντα Κατασκευαστή"
#: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496
msgid "Part Category"
msgstr "Κατηγορία Προϊόντος"
#: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:372
#: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories"
msgstr "Κατηγορίες Προϊόντων"
@ -273,7 +274,7 @@ msgstr "Προϊόν Αποθέματος"
#: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217
#: src/pages/part/CategoryDetail.tsx:313
#: src/pages/part/CategoryDetail.tsx:314
#: src/pages/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr "Ιδιοκτήτες"
#: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44
#: src/tables/settings/ImportSessionTable.tsx:78
#: src/tables/settings/ImportSessionTable.tsx:82
#: src/tables/stock/StockTrackingTable.tsx:237
#: src/tables/stock/StockTrackingTable.tsx:285
msgid "User"
@ -640,7 +641,7 @@ msgstr ""
#: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215
#: src/components/importer/ImporterColumnSelector.tsx:278
#: src/components/importer/ImporterColumnSelector.tsx:330
#: src/components/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr "Υπάρχουν σφάλματα σε ένα ή περισσότερα
#: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210
#: src/tables/plugin/PluginListTable.tsx:212
msgid "Update"
msgstr "Ενημέρωση"
@ -1982,7 +1983,7 @@ msgstr "Υπολογιστής/Host"
#: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19
#: src/pages/part/CategoryDetail.tsx:93
#: src/pages/part/CategoryDetail.tsx:94
#: src/pages/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr "Διακομιστής"
#: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127
#: src/tables/plugin/PluginListTable.tsx:129
msgid "Version"
msgstr "Έκδοση"
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr "Επεξεργασία δεδομένων"
#: src/components/importer/ImporterColumnSelector.tsx:56
#: src/components/importer/ImporterColumnSelector.tsx:247
#: src/components/importer/ImporterColumnSelector.tsx:299
#: src/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60
#: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr "Επιλέξτε στήλη ή αφήστε κενό για να αγν
#~ msgid "Imported Column Name"
#~ msgstr "Imported Column Name"
#: src/components/importer/ImporterColumnSelector.tsx:253
#: src/components/importer/ImporterColumnSelector.tsx:202
msgid "Auto"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:305
msgid "Ignore this field"
msgstr "Αγνόηση αυτού του πεδίου"
#: src/components/importer/ImporterColumnSelector.tsx:267
#: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields"
msgstr "Αντιστοίχιση στηλών δεδομένων με πεδία βάσης δεδομένων"
#: src/components/importer/ImporterColumnSelector.tsx:272
#: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping"
msgstr "Αποδοχή αντιστοίχισης στηλών"
#: src/components/importer/ImporterColumnSelector.tsx:285
#: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field"
msgstr "Πεδίο βάσης δεδομένων"
#: src/components/importer/ImporterColumnSelector.tsx:286
#: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description"
msgstr "Περιγραφή πεδίου"
#: src/components/importer/ImporterColumnSelector.tsx:287
#: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column"
msgstr "Εισαγόμενη στήλη"
#: src/components/importer/ImporterColumnSelector.tsx:288
#: src/components/importer/ImporterColumnSelector.tsx:340
msgid "Lookup Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:341
msgid "Default Value"
msgstr "Προεπιλεγμένη τιμή"
@ -3131,7 +3140,7 @@ msgstr "Πληροφορίες πρόσθετου"
#: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150
#: src/pages/part/CategoryDetail.tsx:113
#: src/pages/part/CategoryDetail.tsx:114
#: src/pages/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr "Πληροφορίες πρόσθετου"
#: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110
#: src/tables/plugin/PluginListTable.tsx:112
msgid "Description"
msgstr "Περιγραφή"
@ -3172,7 +3181,7 @@ msgstr "Ημερομηνία"
#: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96
#: src/tables/plugin/PluginListTable.tsx:420
#: src/tables/plugin/PluginListTable.tsx:422
#: src/tables/purchasing/SupplierPartTable.tsx:139
#: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr "Ενεργό"
#: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140
#: src/tables/plugin/PluginListTable.tsx:142
msgid "Website"
msgstr "Ιστοσελίδα"
@ -3198,8 +3207,8 @@ msgstr "Μονοπάτι εγκατάστασης"
#: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101
#: src/tables/plugin/PluginListTable.tsx:425
#: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin"
msgstr "Ενσωματωμένο"
@ -3364,7 +3373,7 @@ msgstr "Λεπτομέρειες"
#: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78
#: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category"
msgstr "Κατηγορία"
@ -4823,7 +4832,7 @@ msgstr "Ποσότητα προς ολοκλήρωση"
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95
#: src/tables/settings/ImportSessionTable.tsx:118
#: src/tables/settings/ImportSessionTable.tsx:129
#: src/tables/stock/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status"
@ -4995,7 +5004,7 @@ msgstr "Επιλέξτε κωδικό έργου για αυτό το Προϊό
#: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129
#: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr "Προσαρμοσμένες μονάδες"
#~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters"
msgstr "Παράμετροι Κατηγορίας"
@ -7698,7 +7706,7 @@ msgstr "Ακύρωση παραγγελίας"
#~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94
#: src/pages/part/CategoryDetail.tsx:291
#: src/pages/part/CategoryDetail.tsx:292
#: src/pages/purchasing/PurchasingIndex.tsx:103
#: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr "Προβολή Ημερολογίου"
#: src/pages/build/BuildIndex.tsx:106
#: src/pages/part/CategoryDetail.tsx:305
#: src/pages/part/CategoryDetail.tsx:306
#: src/pages/purchasing/PurchasingIndex.tsx:115
#: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr ""
#~ msgid "Basic user"
#~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105
#: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr ""
msgid "Path"
msgstr "Διαδρομή"
#: src/pages/part/CategoryDetail.tsx:121
#: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category"
msgstr "Γονική Κατηγορία"
#: src/pages/part/CategoryDetail.tsx:144
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories"
msgstr "Υποκατηγορίες"
#: src/pages/part/CategoryDetail.tsx:151
#: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural"
msgstr "Δομικό"
#: src/pages/part/CategoryDetail.tsx:157
#: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location"
msgstr "Προεπιλεγμένη τοποθεσία γονικής"
#: src/pages/part/CategoryDetail.tsx:164
#: src/pages/part/CategoryDetail.tsx:165
msgid "Default location"
msgstr "Προεπιλεγμένη τοποθεσία"
@ -8018,48 +8026,48 @@ msgstr "Προεπιλεγμένη τοποθεσία"
#~ msgid "Top level part category"
#~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181
#: src/pages/part/CategoryDetail.tsx:249
#: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category"
msgstr "Επεξεργασία Κατηγορίας Προϊόντων"
#: src/pages/part/CategoryDetail.tsx:190
#: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category"
msgstr "Μετακίνηση Προϊόντων στη γονική κατηγορία"
#: src/pages/part/CategoryDetail.tsx:194
#: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items"
msgstr "Διαγραφή Προϊόντων"
#: src/pages/part/CategoryDetail.tsx:202
#: src/pages/part/CategoryDetail.tsx:254
#: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category"
msgstr "Διαγραφή Κατηγορίας Προϊόντων"
#: src/pages/part/CategoryDetail.tsx:205
#: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action"
msgstr "Ενέργεια Προϊόντων"
#: src/pages/part/CategoryDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category"
msgstr "Ενέργεια για τα Προϊόντα αυτής της κατηγορίας"
#: src/pages/part/CategoryDetail.tsx:212
#: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action"
msgstr "Ενέργεια Υποκατηγοριών"
#: src/pages/part/CategoryDetail.tsx:213
#: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category"
msgstr "Ενέργεια για τις υποκατηγορίες αυτής της κατηγορίας"
#: src/pages/part/CategoryDetail.tsx:245
#: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions"
msgstr "Ενέργειες Κατηγορίας"
#: src/pages/part/CategoryDetail.tsx:271
#: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details"
msgstr "Στοιχεία Κατηγορίας"
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε τα επιλεγμένα είδη;"
#: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320
#: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone"
msgstr "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί"
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr ""
#: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112
#: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type"
msgstr "Τύπος μοντέλου"
@ -11402,16 +11410,16 @@ msgstr "Ορισμός γονικής κατηγορίας για τα επιλ
msgid "Add Part Category"
msgstr "Προσθήκη κατηγορίας προϊόντων"
#: src/tables/part/PartCategoryTemplateTable.tsx:49
#: src/tables/part/PartCategoryTemplateTable.tsx:143
#: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter"
msgstr "Προσθήκη παραμέτρου κατηγορίας"
#: src/tables/part/PartCategoryTemplateTable.tsx:57
#: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter"
msgstr "Επεξεργασία παραμέτρου κατηγορίας"
#: src/tables/part/PartCategoryTemplateTable.tsx:65
#: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter"
msgstr "Διαγραφή παραμέτρου κατηγορίας"
@ -11419,6 +11427,14 @@ msgstr "Διαγραφή παραμέτρου κατηγορίας"
#~ msgid "[{0}]"
#~ msgstr "[{0}]"
#: src/tables/part/PartCategoryTemplateTable.tsx:167
msgid "Part Category Parameters Templates"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:170
msgid "Parts which are created within this category will inherit the default values specified here."
msgstr ""
#: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr "Plugin"
#~ msgid "An error occurred while fetching plugin details"
#~ msgstr "An error occurred while fetching plugin details"
#: src/tables/plugin/PluginListTable.tsx:106
#: src/tables/plugin/PluginListTable.tsx:430
#: src/tables/plugin/PluginListTable.tsx:108
#: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory"
msgstr "Υποχρεωτικό"
@ -11847,7 +11863,7 @@ msgstr "Υποχρεωτικό"
#~ msgid "Plugin with id {id} not found"
#~ msgstr "Plugin with id {id} not found"
#: src/tables/plugin/PluginListTable.tsx:120
#: src/tables/plugin/PluginListTable.tsx:122
msgid "Description not available"
msgstr "Δεν υπάρχει διαθέσιμη περιγραφή"
@ -11869,11 +11885,11 @@ msgstr "Δεν υπάρχει διαθέσιμη περιγραφή"
#~ msgid "Reload"
#~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159
#: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation"
msgstr "Επιβεβαίωση ενεργοποίησης plugin"
#: src/tables/plugin/PluginListTable.tsx:160
#: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation"
msgstr "Επιβεβαίωση απενεργοποίησης plugin"
@ -11881,15 +11897,15 @@ msgstr "Επιβεβαίωση απενεργοποίησης plugin"
#~ msgid "Package information"
#~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165
#: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated"
msgstr "Το επιλεγμένο plugin θα ενεργοποιηθεί"
#: src/tables/plugin/PluginListTable.tsx:166
#: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated"
msgstr "Το επιλεγμένο plugin θα απενεργοποιηθεί"
#: src/tables/plugin/PluginListTable.tsx:184
#: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate"
msgstr "Απενεργοποίηση"
@ -11897,44 +11913,44 @@ msgstr "Απενεργοποίηση"
#~ msgid "Plugin settings"
#~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198
#: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate"
msgstr "Ενεργοποίηση"
#: src/tables/plugin/PluginListTable.tsx:199
#: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin"
msgstr "Ενεργοποίηση επιλεγμένου plugin"
#: src/tables/plugin/PluginListTable.tsx:211
#: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin"
msgstr "Ενημέρωση επιλεγμένου plugin"
#: src/tables/plugin/PluginListTable.tsx:229
#: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall"
msgstr "Απεγκατάσταση"
#: src/tables/plugin/PluginListTable.tsx:230
#: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin"
msgstr "Απεγκατάσταση επιλεγμένου plugin"
#: src/tables/plugin/PluginListTable.tsx:248
#: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration"
msgstr "Διαγραφή ρυθμίσεων του επιλεγμένου plugin"
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin"
msgstr "Ενεργοποίηση Plugin"
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271
#: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated"
msgstr "Το plugin ενεργοποιήθηκε"
#: src/tables/plugin/PluginListTable.tsx:272
#: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated"
msgstr "Το plugin απενεργοποιήθηκε"
@ -11942,20 +11958,20 @@ msgstr "Το plugin απενεργοποιήθηκε"
#~ msgid "Install plugin"
#~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285
#: src/tables/plugin/PluginListTable.tsx:377
#: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin"
msgstr "Εγκατάσταση Plugin"
#: src/tables/plugin/PluginListTable.tsx:298
#: src/tables/plugin/PluginListTable.tsx:300
msgid "Install"
msgstr "Εγκατάσταση"
#: src/tables/plugin/PluginListTable.tsx:299
#: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully"
msgstr "Το plugin εγκαταστάθηκε με επιτυχία"
#: src/tables/plugin/PluginListTable.tsx:304
#: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin"
msgstr "Απεγκατάσταση Plugin"
@ -11963,31 +11979,31 @@ msgstr "Απεγκατάσταση Plugin"
#~ msgid "This action cannot be undone."
#~ msgstr "This action cannot be undone."
#: src/tables/plugin/PluginListTable.tsx:316
#: src/tables/plugin/PluginListTable.tsx:318
msgid "Confirm plugin uninstall"
msgstr "Επιβεβαίωση απεγκατάστασης plugin"
#: src/tables/plugin/PluginListTable.tsx:319
#: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled."
msgstr "Το επιλεγμένο plugin θα απεγκατασταθεί."
#: src/tables/plugin/PluginListTable.tsx:324
#: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully"
msgstr "Το plugin απεγκαταστάθηκε με επιτυχία"
#: src/tables/plugin/PluginListTable.tsx:332
#: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin"
msgstr "Διαγραφή Plugin"
#: src/tables/plugin/PluginListTable.tsx:333
#: src/tables/plugin/PluginListTable.tsx:335
msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr "Η διαγραφή αυτής της ρύθμισης plugin θα αφαιρέσει όλες τις συνδεδεμένες ρυθμίσεις και δεδομένα. Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτό το plugin;"
#: src/tables/plugin/PluginListTable.tsx:346
#: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded"
msgstr "Τα plugins φορτώθηκαν ξανά"
#: src/tables/plugin/PluginListTable.tsx:347
#: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully"
msgstr "Τα plugins φορτώθηκαν ξανά με επιτυχία"
@ -11999,7 +12015,7 @@ msgstr "Τα plugins φορτώθηκαν ξανά με επιτυχία"
#~ msgid "The following plugin will be deactivated"
#~ msgstr "The following plugin will be deactivated"
#: src/tables/plugin/PluginListTable.tsx:370
#: src/tables/plugin/PluginListTable.tsx:372
msgid "Reload Plugins"
msgstr "Επαναφόρτωση Plugins"
@ -12015,7 +12031,7 @@ msgstr "Επαναφόρτωση Plugins"
#~ msgid "Plugin updated"
#~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393
#: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail"
msgstr "Λεπτομέρειες Plugin"
@ -12023,11 +12039,11 @@ msgstr "Λεπτομέρειες Plugin"
#~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435
#: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample"
msgstr "Δείγμα"
#: src/tables/plugin/PluginListTable.tsx:440
#: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248
msgid "Installed"
msgstr "Εγκατεστημένο"
@ -12660,29 +12676,29 @@ msgstr "Επεξεργασία ομάδας"
msgid "Add Group"
msgstr "Προσθήκη ομάδας"
#: src/tables/settings/ImportSessionTable.tsx:37
#: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session"
msgstr "Διαγραφή συνεδρίας εισαγωγής"
#: src/tables/settings/ImportSessionTable.tsx:43
#: src/tables/settings/ImportSessionTable.tsx:130
#: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session"
msgstr "Δημιουργία συνεδρίας εισαγωγής"
#: src/tables/settings/ImportSessionTable.tsx:73
#: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded"
msgstr "Μεταφορτώθηκε"
#: src/tables/settings/ImportSessionTable.tsx:84
#: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows"
msgstr "Γραμμές που εισήχθησαν"
#: src/tables/settings/ImportSessionTable.tsx:113
#: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type"
msgstr "Φιλτράρισμα κατά τύπο μοντέλου προορισμού"
#: src/tables/settings/ImportSessionTable.tsx:119
#: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status"
msgstr "Φιλτράρισμα κατά κατάσταση συνεδρίας εισαγωγής"

View File

@ -51,7 +51,7 @@ msgstr "Edit"
#: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247
#: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete"
msgstr "Delete"
@ -158,10 +158,10 @@ msgstr "Part"
#: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137
#: src/pages/part/CategoryDetail.tsx:284
#: src/pages/part/CategoryDetail.tsx:339
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893
msgid "Parts"
msgstr "Parts"
@ -189,11 +189,12 @@ msgid "Parameters"
msgstr "Parameters"
#: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87
#: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template"
msgstr "Parameter Template"
#: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates"
msgstr "Parameter Templates"
@ -236,15 +237,15 @@ msgid "Manufacturer Parts"
msgstr "Manufacturer Parts"
#: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496
msgid "Part Category"
msgstr "Part Category"
#: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:372
#: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories"
msgstr "Part Categories"
@ -268,7 +269,7 @@ msgstr "Stock Item"
#: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217
#: src/pages/part/CategoryDetail.tsx:313
#: src/pages/part/CategoryDetail.tsx:314
#: src/pages/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235
@ -533,7 +534,7 @@ msgstr "Owners"
#: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44
#: src/tables/settings/ImportSessionTable.tsx:78
#: src/tables/settings/ImportSessionTable.tsx:82
#: src/tables/stock/StockTrackingTable.tsx:237
#: src/tables/stock/StockTrackingTable.tsx:285
msgid "User"
@ -635,7 +636,7 @@ msgstr "Selection Entries"
#: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215
#: src/components/importer/ImporterColumnSelector.tsx:278
#: src/components/importer/ImporterColumnSelector.tsx:330
#: src/components/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211
@ -1789,7 +1790,7 @@ msgstr "Errors exist for one or more form fields"
#: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210
#: src/tables/plugin/PluginListTable.tsx:212
msgid "Update"
msgstr "Update"
@ -1977,7 +1978,7 @@ msgstr "Host"
#: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19
#: src/pages/part/CategoryDetail.tsx:93
#: src/pages/part/CategoryDetail.tsx:94
#: src/pages/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67
@ -2054,7 +2055,7 @@ msgstr "Server"
#: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127
#: src/tables/plugin/PluginListTable.tsx:129
msgid "Version"
msgstr "Version"
@ -2238,7 +2239,7 @@ msgid "Processing Data"
msgstr "Processing Data"
#: src/components/importer/ImporterColumnSelector.tsx:56
#: src/components/importer/ImporterColumnSelector.tsx:247
#: src/components/importer/ImporterColumnSelector.tsx:299
#: src/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60
#: src/functions/auth.tsx:401
@ -2261,31 +2262,39 @@ msgstr "Select column, or leave blank to ignore this field."
#~ msgid "Imported Column Name"
#~ msgstr "Imported Column Name"
#: src/components/importer/ImporterColumnSelector.tsx:253
#: src/components/importer/ImporterColumnSelector.tsx:202
msgid "Auto"
msgstr "Auto"
#: src/components/importer/ImporterColumnSelector.tsx:305
msgid "Ignore this field"
msgstr "Ignore this field"
#: src/components/importer/ImporterColumnSelector.tsx:267
#: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields"
msgstr "Mapping data columns to database fields"
#: src/components/importer/ImporterColumnSelector.tsx:272
#: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping"
msgstr "Accept Column Mapping"
#: src/components/importer/ImporterColumnSelector.tsx:285
#: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field"
msgstr "Database Field"
#: src/components/importer/ImporterColumnSelector.tsx:286
#: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description"
msgstr "Field Description"
#: src/components/importer/ImporterColumnSelector.tsx:287
#: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column"
msgstr "Imported Column"
#: src/components/importer/ImporterColumnSelector.tsx:288
#: src/components/importer/ImporterColumnSelector.tsx:340
msgid "Lookup Field"
msgstr "Lookup Field"
#: src/components/importer/ImporterColumnSelector.tsx:341
msgid "Default Value"
msgstr "Default Value"
@ -3126,7 +3135,7 @@ msgstr "Plugin Information"
#: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150
#: src/pages/part/CategoryDetail.tsx:113
#: src/pages/part/CategoryDetail.tsx:114
#: src/pages/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3137,7 +3146,7 @@ msgstr "Plugin Information"
#: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110
#: src/tables/plugin/PluginListTable.tsx:112
msgid "Description"
msgstr "Description"
@ -3167,7 +3176,7 @@ msgstr "Date"
#: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96
#: src/tables/plugin/PluginListTable.tsx:420
#: src/tables/plugin/PluginListTable.tsx:422
#: src/tables/purchasing/SupplierPartTable.tsx:139
#: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63
@ -3178,7 +3187,7 @@ msgstr "Active"
#: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140
#: src/tables/plugin/PluginListTable.tsx:142
msgid "Website"
msgstr "Website"
@ -3193,8 +3202,8 @@ msgstr "Installation Path"
#: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101
#: src/tables/plugin/PluginListTable.tsx:425
#: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin"
msgstr "Builtin"
@ -3359,7 +3368,7 @@ msgstr "Details"
#: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78
#: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category"
msgstr "Category"
@ -4818,7 +4827,7 @@ msgstr "Quantity to Complete"
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95
#: src/tables/settings/ImportSessionTable.tsx:118
#: src/tables/settings/ImportSessionTable.tsx:129
#: src/tables/stock/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status"
@ -4990,7 +4999,7 @@ msgstr "Select project code for this line item"
#: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129
#: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143
@ -6994,7 +7003,6 @@ msgstr "Custom Units"
#~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters"
msgstr "Category Parameters"
@ -7693,7 +7701,7 @@ msgstr "Cancel order"
#~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94
#: src/pages/part/CategoryDetail.tsx:291
#: src/pages/part/CategoryDetail.tsx:292
#: src/pages/purchasing/PurchasingIndex.tsx:103
#: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7716,7 +7724,7 @@ msgid "Calendar View"
msgstr "Calendar View"
#: src/pages/build/BuildIndex.tsx:106
#: src/pages/part/CategoryDetail.tsx:305
#: src/pages/part/CategoryDetail.tsx:306
#: src/pages/purchasing/PurchasingIndex.tsx:115
#: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7977,7 +7985,7 @@ msgstr "Normal user"
#~ msgid "Basic user"
#~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105
#: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63
@ -7985,27 +7993,27 @@ msgstr "Normal user"
msgid "Path"
msgstr "Path"
#: src/pages/part/CategoryDetail.tsx:121
#: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category"
msgstr "Parent Category"
#: src/pages/part/CategoryDetail.tsx:144
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories"
msgstr "Subcategories"
#: src/pages/part/CategoryDetail.tsx:151
#: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural"
msgstr "Structural"
#: src/pages/part/CategoryDetail.tsx:157
#: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location"
msgstr "Parent default location"
#: src/pages/part/CategoryDetail.tsx:164
#: src/pages/part/CategoryDetail.tsx:165
msgid "Default location"
msgstr "Default location"
@ -8013,48 +8021,48 @@ msgstr "Default location"
#~ msgid "Top level part category"
#~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181
#: src/pages/part/CategoryDetail.tsx:249
#: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category"
msgstr "Edit Part Category"
#: src/pages/part/CategoryDetail.tsx:190
#: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category"
msgstr "Move items to parent category"
#: src/pages/part/CategoryDetail.tsx:194
#: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items"
msgstr "Delete items"
#: src/pages/part/CategoryDetail.tsx:202
#: src/pages/part/CategoryDetail.tsx:254
#: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category"
msgstr "Delete Part Category"
#: src/pages/part/CategoryDetail.tsx:205
#: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action"
msgstr "Parts Action"
#: src/pages/part/CategoryDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category"
msgstr "Action for parts in this category"
#: src/pages/part/CategoryDetail.tsx:212
#: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action"
msgstr "Child Categories Action"
#: src/pages/part/CategoryDetail.tsx:213
#: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category"
msgstr "Action for child categories in this category"
#: src/pages/part/CategoryDetail.tsx:245
#: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions"
msgstr "Category Actions"
#: src/pages/part/CategoryDetail.tsx:271
#: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details"
msgstr "Category Details"
@ -10025,7 +10033,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr "Are you sure you want to delete the selected items?"
#: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320
#: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone"
msgstr "This action cannot be undone"
@ -11060,7 +11068,7 @@ msgid "Show enabled templates"
msgstr "Show enabled templates"
#: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112
#: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type"
msgstr "Model Type"
@ -11397,16 +11405,16 @@ msgstr "Set parent category for the selected items"
msgid "Add Part Category"
msgstr "Add Part Category"
#: src/tables/part/PartCategoryTemplateTable.tsx:49
#: src/tables/part/PartCategoryTemplateTable.tsx:143
#: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter"
msgstr "Add Category Parameter"
#: src/tables/part/PartCategoryTemplateTable.tsx:57
#: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter"
msgstr "Edit Category Parameter"
#: src/tables/part/PartCategoryTemplateTable.tsx:65
#: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter"
msgstr "Delete Category Parameter"
@ -11414,6 +11422,14 @@ msgstr "Delete Category Parameter"
#~ msgid "[{0}]"
#~ msgstr "[{0}]"
#: src/tables/part/PartCategoryTemplateTable.tsx:167
msgid "Part Category Parameters Templates"
msgstr "Part Category Parameters Templates"
#: src/tables/part/PartCategoryTemplateTable.tsx:170
msgid "Parts which are created within this category will inherit the default values specified here."
msgstr "Parts which are created within this category will inherit the default values specified here."
#: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter"
@ -11833,8 +11849,8 @@ msgstr "Plugin"
#~ msgid "An error occurred while fetching plugin details"
#~ msgstr "An error occurred while fetching plugin details"
#: src/tables/plugin/PluginListTable.tsx:106
#: src/tables/plugin/PluginListTable.tsx:430
#: src/tables/plugin/PluginListTable.tsx:108
#: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory"
msgstr "Mandatory"
@ -11842,7 +11858,7 @@ msgstr "Mandatory"
#~ msgid "Plugin with id {id} not found"
#~ msgstr "Plugin with id {id} not found"
#: src/tables/plugin/PluginListTable.tsx:120
#: src/tables/plugin/PluginListTable.tsx:122
msgid "Description not available"
msgstr "Description not available"
@ -11864,11 +11880,11 @@ msgstr "Description not available"
#~ msgid "Reload"
#~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159
#: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation"
msgstr "Confirm plugin activation"
#: src/tables/plugin/PluginListTable.tsx:160
#: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation"
msgstr "Confirm plugin deactivation"
@ -11876,15 +11892,15 @@ msgstr "Confirm plugin deactivation"
#~ msgid "Package information"
#~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165
#: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated"
msgstr "The selected plugin will be activated"
#: src/tables/plugin/PluginListTable.tsx:166
#: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated"
msgstr "The selected plugin will be deactivated"
#: src/tables/plugin/PluginListTable.tsx:184
#: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate"
msgstr "Deactivate"
@ -11892,44 +11908,44 @@ msgstr "Deactivate"
#~ msgid "Plugin settings"
#~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198
#: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate"
msgstr "Activate"
#: src/tables/plugin/PluginListTable.tsx:199
#: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin"
msgstr "Activate selected plugin"
#: src/tables/plugin/PluginListTable.tsx:211
#: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin"
msgstr "Update selected plugin"
#: src/tables/plugin/PluginListTable.tsx:229
#: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall"
msgstr "Uninstall"
#: src/tables/plugin/PluginListTable.tsx:230
#: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin"
msgstr "Uninstall selected plugin"
#: src/tables/plugin/PluginListTable.tsx:248
#: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration"
msgstr "Delete selected plugin configuration"
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin"
msgstr "Activate Plugin"
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin"
msgstr "Deactivate Plugin"
#: src/tables/plugin/PluginListTable.tsx:271
#: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated"
msgstr "The plugin was activated"
#: src/tables/plugin/PluginListTable.tsx:272
#: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated"
msgstr "The plugin was deactivated"
@ -11937,20 +11953,20 @@ msgstr "The plugin was deactivated"
#~ msgid "Install plugin"
#~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285
#: src/tables/plugin/PluginListTable.tsx:377
#: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin"
msgstr "Install Plugin"
#: src/tables/plugin/PluginListTable.tsx:298
#: src/tables/plugin/PluginListTable.tsx:300
msgid "Install"
msgstr "Install"
#: src/tables/plugin/PluginListTable.tsx:299
#: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully"
msgstr "Plugin installed successfully"
#: src/tables/plugin/PluginListTable.tsx:304
#: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin"
msgstr "Uninstall Plugin"
@ -11958,31 +11974,31 @@ msgstr "Uninstall Plugin"
#~ msgid "This action cannot be undone."
#~ msgstr "This action cannot be undone."
#: src/tables/plugin/PluginListTable.tsx:316
#: src/tables/plugin/PluginListTable.tsx:318
msgid "Confirm plugin uninstall"
msgstr "Confirm plugin uninstall"
#: src/tables/plugin/PluginListTable.tsx:319
#: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled."
msgstr "The selected plugin will be uninstalled."
#: src/tables/plugin/PluginListTable.tsx:324
#: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully"
msgstr "Plugin uninstalled successfully"
#: src/tables/plugin/PluginListTable.tsx:332
#: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin"
msgstr "Delete Plugin"
#: src/tables/plugin/PluginListTable.tsx:333
#: src/tables/plugin/PluginListTable.tsx:335
msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
#: src/tables/plugin/PluginListTable.tsx:346
#: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded"
msgstr "Plugins reloaded"
#: src/tables/plugin/PluginListTable.tsx:347
#: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully"
msgstr "Plugins were reloaded successfully"
@ -11994,7 +12010,7 @@ msgstr "Plugins were reloaded successfully"
#~ msgid "The following plugin will be deactivated"
#~ msgstr "The following plugin will be deactivated"
#: src/tables/plugin/PluginListTable.tsx:370
#: src/tables/plugin/PluginListTable.tsx:372
msgid "Reload Plugins"
msgstr "Reload Plugins"
@ -12010,7 +12026,7 @@ msgstr "Reload Plugins"
#~ msgid "Plugin updated"
#~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393
#: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail"
msgstr "Plugin Detail"
@ -12018,11 +12034,11 @@ msgstr "Plugin Detail"
#~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435
#: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample"
msgstr "Sample"
#: src/tables/plugin/PluginListTable.tsx:440
#: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248
msgid "Installed"
msgstr "Installed"
@ -12655,29 +12671,29 @@ msgstr "Edit Group"
msgid "Add Group"
msgstr "Add Group"
#: src/tables/settings/ImportSessionTable.tsx:37
#: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session"
msgstr "Delete Import Session"
#: src/tables/settings/ImportSessionTable.tsx:43
#: src/tables/settings/ImportSessionTable.tsx:130
#: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session"
msgstr "Create Import Session"
#: src/tables/settings/ImportSessionTable.tsx:73
#: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded"
msgstr "Uploaded"
#: src/tables/settings/ImportSessionTable.tsx:84
#: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows"
msgstr "Imported Rows"
#: src/tables/settings/ImportSessionTable.tsx:113
#: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type"
msgstr "Filter by target model type"
#: src/tables/settings/ImportSessionTable.tsx:119
#: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status"
msgstr "Filter by import session status"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: es\n"
"Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-06-14 02:16\n"
"PO-Revision-Date: 2026-06-17 22:14\n"
"Last-Translator: \n"
"Language-Team: Spanish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -56,7 +56,7 @@ msgstr "Editar"
#: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247
#: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete"
msgstr "Eliminar"
@ -163,10 +163,10 @@ msgstr "Pieza"
#: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137
#: src/pages/part/CategoryDetail.tsx:284
#: src/pages/part/CategoryDetail.tsx:339
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893
msgid "Parts"
msgstr "Piezas"
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr "Parámetros"
#: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87
#: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template"
msgstr "Plantilla de parámetro"
#: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates"
msgstr ""
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr "Piezas del fabricante"
#: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496
msgid "Part Category"
msgstr "Categoría de Pieza"
#: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:372
#: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories"
msgstr "Categorías de Pieza"
@ -273,7 +274,7 @@ msgstr "Artículo de stock"
#: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217
#: src/pages/part/CategoryDetail.tsx:313
#: src/pages/part/CategoryDetail.tsx:314
#: src/pages/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr "Propietarios"
#: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44
#: src/tables/settings/ImportSessionTable.tsx:78
#: src/tables/settings/ImportSessionTable.tsx:82
#: src/tables/stock/StockTrackingTable.tsx:237
#: src/tables/stock/StockTrackingTable.tsx:285
msgid "User"
@ -640,7 +641,7 @@ msgstr ""
#: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215
#: src/components/importer/ImporterColumnSelector.tsx:278
#: src/components/importer/ImporterColumnSelector.tsx:330
#: src/components/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr "Existen errores para uno o más campos del formulario"
#: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210
#: src/tables/plugin/PluginListTable.tsx:212
msgid "Update"
msgstr "Actualizar"
@ -1982,7 +1983,7 @@ msgstr "Servidor"
#: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19
#: src/pages/part/CategoryDetail.tsx:93
#: src/pages/part/CategoryDetail.tsx:94
#: src/pages/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr "Servidor"
#: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127
#: src/tables/plugin/PluginListTable.tsx:129
msgid "Version"
msgstr "Versión"
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr "Procesando datos"
#: src/components/importer/ImporterColumnSelector.tsx:56
#: src/components/importer/ImporterColumnSelector.tsx:247
#: src/components/importer/ImporterColumnSelector.tsx:299
#: src/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60
#: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr "Seleccione la columna o deje en blanco para ignorar este campo."
#~ msgid "Imported Column Name"
#~ msgstr "Imported Column Name"
#: src/components/importer/ImporterColumnSelector.tsx:253
#: src/components/importer/ImporterColumnSelector.tsx:202
msgid "Auto"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:305
msgid "Ignore this field"
msgstr "Ignorar este campo"
#: src/components/importer/ImporterColumnSelector.tsx:267
#: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields"
msgstr "Mapear datos de columnas a campos de la base de datos"
#: src/components/importer/ImporterColumnSelector.tsx:272
#: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping"
msgstr "Aceptar mapeo de columnas"
#: src/components/importer/ImporterColumnSelector.tsx:285
#: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field"
msgstr "Cambo de base de datos"
#: src/components/importer/ImporterColumnSelector.tsx:286
#: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description"
msgstr "Descripción del campo"
#: src/components/importer/ImporterColumnSelector.tsx:287
#: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column"
msgstr "Columna importada"
#: src/components/importer/ImporterColumnSelector.tsx:288
#: src/components/importer/ImporterColumnSelector.tsx:340
msgid "Lookup Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:341
msgid "Default Value"
msgstr "Valor por defecto"
@ -3131,7 +3140,7 @@ msgstr "Información del complemento"
#: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150
#: src/pages/part/CategoryDetail.tsx:113
#: src/pages/part/CategoryDetail.tsx:114
#: src/pages/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr "Información del complemento"
#: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110
#: src/tables/plugin/PluginListTable.tsx:112
msgid "Description"
msgstr "Descripción"
@ -3172,7 +3181,7 @@ msgstr "Fecha"
#: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96
#: src/tables/plugin/PluginListTable.tsx:420
#: src/tables/plugin/PluginListTable.tsx:422
#: src/tables/purchasing/SupplierPartTable.tsx:139
#: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr "Activo"
#: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140
#: src/tables/plugin/PluginListTable.tsx:142
msgid "Website"
msgstr "Sitio Web"
@ -3198,8 +3207,8 @@ msgstr "Ruta de Instalación"
#: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101
#: src/tables/plugin/PluginListTable.tsx:425
#: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin"
msgstr "Integrado"
@ -3364,7 +3373,7 @@ msgstr "Detalles"
#: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78
#: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category"
msgstr "Categoría"
@ -4823,7 +4832,7 @@ msgstr ""
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95
#: src/tables/settings/ImportSessionTable.tsx:118
#: src/tables/settings/ImportSessionTable.tsx:129
#: src/tables/stock/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status"
@ -4995,7 +5004,7 @@ msgstr ""
#: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129
#: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr "Unidades personalizadas"
#~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters"
msgstr "Parámetros de categoría"
@ -7698,7 +7706,7 @@ msgstr "Cancelar pedido"
#~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94
#: src/pages/part/CategoryDetail.tsx:291
#: src/pages/part/CategoryDetail.tsx:292
#: src/pages/purchasing/PurchasingIndex.tsx:103
#: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr ""
#: src/pages/build/BuildIndex.tsx:106
#: src/pages/part/CategoryDetail.tsx:305
#: src/pages/part/CategoryDetail.tsx:306
#: src/pages/purchasing/PurchasingIndex.tsx:115
#: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr ""
#~ msgid "Basic user"
#~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105
#: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr ""
msgid "Path"
msgstr "Ruta"
#: src/pages/part/CategoryDetail.tsx:121
#: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category"
msgstr "Categoría superior"
#: src/pages/part/CategoryDetail.tsx:144
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories"
msgstr "Subcategorías"
#: src/pages/part/CategoryDetail.tsx:151
#: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural"
msgstr "Estructural"
#: src/pages/part/CategoryDetail.tsx:157
#: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location"
msgstr "Ubicación padre por defecto"
#: src/pages/part/CategoryDetail.tsx:164
#: src/pages/part/CategoryDetail.tsx:165
msgid "Default location"
msgstr "Ubicación predeterminada"
@ -8018,48 +8026,48 @@ msgstr "Ubicación predeterminada"
#~ msgid "Top level part category"
#~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181
#: src/pages/part/CategoryDetail.tsx:249
#: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category"
msgstr "Editar categoría de pieza"
#: src/pages/part/CategoryDetail.tsx:190
#: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category"
msgstr "Mover elementos a la categoría padre"
#: src/pages/part/CategoryDetail.tsx:194
#: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items"
msgstr "Eliminar elementos"
#: src/pages/part/CategoryDetail.tsx:202
#: src/pages/part/CategoryDetail.tsx:254
#: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category"
msgstr "Borrar categoría de pieza"
#: src/pages/part/CategoryDetail.tsx:205
#: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action"
msgstr "Acciones de piezas"
#: src/pages/part/CategoryDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category"
msgstr "Acciones de piezas en esta categoría"
#: src/pages/part/CategoryDetail.tsx:212
#: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action"
msgstr "Acción en subcategorías"
#: src/pages/part/CategoryDetail.tsx:213
#: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category"
msgstr "Acción para subcategorías en esta categoría"
#: src/pages/part/CategoryDetail.tsx:245
#: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions"
msgstr "Acciones de categoría"
#: src/pages/part/CategoryDetail.tsx:271
#: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details"
msgstr "Detalles de categoría"
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr "¿Confirma que desea eliminar los elementos seleccionados?"
#: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320
#: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone"
msgstr "Esta acción no se puede deshacer"
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr ""
#: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112
#: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type"
msgstr ""
@ -11402,16 +11410,16 @@ msgstr ""
msgid "Add Part Category"
msgstr "Añadir categoría de pieza"
#: src/tables/part/PartCategoryTemplateTable.tsx:49
#: src/tables/part/PartCategoryTemplateTable.tsx:143
#: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter"
msgstr "Añadir parámetro de Categoría"
#: src/tables/part/PartCategoryTemplateTable.tsx:57
#: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter"
msgstr "Editar parámetro de Categoría"
#: src/tables/part/PartCategoryTemplateTable.tsx:65
#: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter"
msgstr "Eliminar parámetro de Categoría"
@ -11419,6 +11427,14 @@ msgstr "Eliminar parámetro de Categoría"
#~ msgid "[{0}]"
#~ msgstr "[{0}]"
#: src/tables/part/PartCategoryTemplateTable.tsx:167
msgid "Part Category Parameters Templates"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:170
msgid "Parts which are created within this category will inherit the default values specified here."
msgstr ""
#: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr ""
#~ msgid "An error occurred while fetching plugin details"
#~ msgstr "An error occurred while fetching plugin details"
#: src/tables/plugin/PluginListTable.tsx:106
#: src/tables/plugin/PluginListTable.tsx:430
#: src/tables/plugin/PluginListTable.tsx:108
#: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory"
msgstr ""
@ -11847,7 +11863,7 @@ msgstr ""
#~ msgid "Plugin with id {id} not found"
#~ msgstr "Plugin with id {id} not found"
#: src/tables/plugin/PluginListTable.tsx:120
#: src/tables/plugin/PluginListTable.tsx:122
msgid "Description not available"
msgstr ""
@ -11869,11 +11885,11 @@ msgstr ""
#~ msgid "Reload"
#~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159
#: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:160
#: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation"
msgstr ""
@ -11881,15 +11897,15 @@ msgstr ""
#~ msgid "Package information"
#~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165
#: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:166
#: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:184
#: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate"
msgstr ""
@ -11897,44 +11913,44 @@ msgstr ""
#~ msgid "Plugin settings"
#~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198
#: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:199
#: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin"
msgstr "Activar el complemento seleccionado"
#: src/tables/plugin/PluginListTable.tsx:211
#: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin"
msgstr "Actualizar complemento seleccionado"
#: src/tables/plugin/PluginListTable.tsx:229
#: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:230
#: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin"
msgstr "Desinstalar el complemento seleccionado"
#: src/tables/plugin/PluginListTable.tsx:248
#: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration"
msgstr "Eliminar la configuración del complemento seleccionado"
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271
#: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated"
msgstr "El complemento fue activado"
#: src/tables/plugin/PluginListTable.tsx:272
#: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated"
msgstr "El complemento fue desactivado"
@ -11942,20 +11958,20 @@ msgstr "El complemento fue desactivado"
#~ msgid "Install plugin"
#~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285
#: src/tables/plugin/PluginListTable.tsx:377
#: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:298
#: src/tables/plugin/PluginListTable.tsx:300
msgid "Install"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:299
#: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:304
#: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin"
msgstr ""
@ -11963,31 +11979,31 @@ msgstr ""
#~ msgid "This action cannot be undone."
#~ msgstr "This action cannot be undone."
#: src/tables/plugin/PluginListTable.tsx:316
#: src/tables/plugin/PluginListTable.tsx:318
msgid "Confirm plugin uninstall"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:319
#: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled."
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:324
#: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:332
#: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:333
#: src/tables/plugin/PluginListTable.tsx:335
msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:346
#: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:347
#: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully"
msgstr ""
@ -11999,7 +12015,7 @@ msgstr ""
#~ msgid "The following plugin will be deactivated"
#~ msgstr "The following plugin will be deactivated"
#: src/tables/plugin/PluginListTable.tsx:370
#: src/tables/plugin/PluginListTable.tsx:372
msgid "Reload Plugins"
msgstr ""
@ -12015,7 +12031,7 @@ msgstr ""
#~ msgid "Plugin updated"
#~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393
#: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail"
msgstr ""
@ -12023,11 +12039,11 @@ msgstr ""
#~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435
#: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:440
#: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248
msgid "Installed"
msgstr ""
@ -12660,29 +12676,29 @@ msgstr ""
msgid "Add Group"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:37
#: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:43
#: src/tables/settings/ImportSessionTable.tsx:130
#: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:73
#: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:84
#: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows"
msgstr "Filas Importadas"
#: src/tables/settings/ImportSessionTable.tsx:113
#: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:119
#: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: es_MX\n"
"Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-06-14 02:16\n"
"PO-Revision-Date: 2026-06-17 22:14\n"
"Last-Translator: \n"
"Language-Team: Spanish, Mexico\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -56,7 +56,7 @@ msgstr "Editar"
#: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247
#: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete"
msgstr "Eliminar"
@ -163,10 +163,10 @@ msgstr "Pieza"
#: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137
#: src/pages/part/CategoryDetail.tsx:284
#: src/pages/part/CategoryDetail.tsx:339
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893
msgid "Parts"
msgstr "Piezas"
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr "Parámetros"
#: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87
#: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template"
msgstr "Plantilla de parámetro"
#: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates"
msgstr "Plantillas de parámetros"
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr "Piezas del fabricante"
#: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496
msgid "Part Category"
msgstr "Categoría de Pieza"
#: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:372
#: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories"
msgstr "Categorías de Pieza"
@ -273,7 +274,7 @@ msgstr "Artículo de stock"
#: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217
#: src/pages/part/CategoryDetail.tsx:313
#: src/pages/part/CategoryDetail.tsx:314
#: src/pages/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr "Propietarios"
#: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44
#: src/tables/settings/ImportSessionTable.tsx:78
#: src/tables/settings/ImportSessionTable.tsx:82
#: src/tables/stock/StockTrackingTable.tsx:237
#: src/tables/stock/StockTrackingTable.tsx:285
msgid "User"
@ -640,7 +641,7 @@ msgstr ""
#: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215
#: src/components/importer/ImporterColumnSelector.tsx:278
#: src/components/importer/ImporterColumnSelector.tsx:330
#: src/components/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr "Existen errores para uno o más campos del formulario"
#: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210
#: src/tables/plugin/PluginListTable.tsx:212
msgid "Update"
msgstr "Actualizar"
@ -1982,7 +1983,7 @@ msgstr "Servidor"
#: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19
#: src/pages/part/CategoryDetail.tsx:93
#: src/pages/part/CategoryDetail.tsx:94
#: src/pages/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr "Servidor"
#: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127
#: src/tables/plugin/PluginListTable.tsx:129
msgid "Version"
msgstr "Versión"
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr "Procesando datos"
#: src/components/importer/ImporterColumnSelector.tsx:56
#: src/components/importer/ImporterColumnSelector.tsx:247
#: src/components/importer/ImporterColumnSelector.tsx:299
#: src/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60
#: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr "Seleccione la columna o deje en blanco para ignorar este campo."
#~ msgid "Imported Column Name"
#~ msgstr "Imported Column Name"
#: src/components/importer/ImporterColumnSelector.tsx:253
#: src/components/importer/ImporterColumnSelector.tsx:202
msgid "Auto"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:305
msgid "Ignore this field"
msgstr "Ignorar este campo"
#: src/components/importer/ImporterColumnSelector.tsx:267
#: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields"
msgstr "Mapear datos de columnas a campos de la base de datos"
#: src/components/importer/ImporterColumnSelector.tsx:272
#: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping"
msgstr "Aceptar mapeo de columnas"
#: src/components/importer/ImporterColumnSelector.tsx:285
#: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field"
msgstr "Cambo de base de datos"
#: src/components/importer/ImporterColumnSelector.tsx:286
#: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description"
msgstr "Descripción del campo"
#: src/components/importer/ImporterColumnSelector.tsx:287
#: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column"
msgstr "Columna importada"
#: src/components/importer/ImporterColumnSelector.tsx:288
#: src/components/importer/ImporterColumnSelector.tsx:340
msgid "Lookup Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:341
msgid "Default Value"
msgstr "Valor por defecto"
@ -3131,7 +3140,7 @@ msgstr "Información del complemento"
#: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150
#: src/pages/part/CategoryDetail.tsx:113
#: src/pages/part/CategoryDetail.tsx:114
#: src/pages/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr "Información del complemento"
#: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110
#: src/tables/plugin/PluginListTable.tsx:112
msgid "Description"
msgstr "Descripción"
@ -3172,7 +3181,7 @@ msgstr "Fecha"
#: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96
#: src/tables/plugin/PluginListTable.tsx:420
#: src/tables/plugin/PluginListTable.tsx:422
#: src/tables/purchasing/SupplierPartTable.tsx:139
#: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr "Activo"
#: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140
#: src/tables/plugin/PluginListTable.tsx:142
msgid "Website"
msgstr "Sitio web"
@ -3198,8 +3207,8 @@ msgstr "Ruta de instalación"
#: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101
#: src/tables/plugin/PluginListTable.tsx:425
#: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin"
msgstr "Integrado"
@ -3364,7 +3373,7 @@ msgstr "Detalles"
#: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78
#: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category"
msgstr "Categoría"
@ -4823,7 +4832,7 @@ msgstr ""
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95
#: src/tables/settings/ImportSessionTable.tsx:118
#: src/tables/settings/ImportSessionTable.tsx:129
#: src/tables/stock/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status"
@ -4995,7 +5004,7 @@ msgstr ""
#: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129
#: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr "Unidades personalizadas"
#~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters"
msgstr "Parámetros de categoría"
@ -7698,7 +7706,7 @@ msgstr "Cancelar pedido"
#~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94
#: src/pages/part/CategoryDetail.tsx:291
#: src/pages/part/CategoryDetail.tsx:292
#: src/pages/purchasing/PurchasingIndex.tsx:103
#: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr ""
#: src/pages/build/BuildIndex.tsx:106
#: src/pages/part/CategoryDetail.tsx:305
#: src/pages/part/CategoryDetail.tsx:306
#: src/pages/purchasing/PurchasingIndex.tsx:115
#: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr ""
#~ msgid "Basic user"
#~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105
#: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr ""
msgid "Path"
msgstr "Ruta"
#: src/pages/part/CategoryDetail.tsx:121
#: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category"
msgstr "Categoría superior"
#: src/pages/part/CategoryDetail.tsx:144
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories"
msgstr "Subcategorías"
#: src/pages/part/CategoryDetail.tsx:151
#: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural"
msgstr "Estructural"
#: src/pages/part/CategoryDetail.tsx:157
#: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location"
msgstr "Ubicación padre por defecto"
#: src/pages/part/CategoryDetail.tsx:164
#: src/pages/part/CategoryDetail.tsx:165
msgid "Default location"
msgstr "Ubicación predeterminada"
@ -8018,48 +8026,48 @@ msgstr "Ubicación predeterminada"
#~ msgid "Top level part category"
#~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181
#: src/pages/part/CategoryDetail.tsx:249
#: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category"
msgstr "Editar categoría de pieza"
#: src/pages/part/CategoryDetail.tsx:190
#: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category"
msgstr "Mover artículos a la categoría padre"
#: src/pages/part/CategoryDetail.tsx:194
#: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items"
msgstr "Eliminar elementos"
#: src/pages/part/CategoryDetail.tsx:202
#: src/pages/part/CategoryDetail.tsx:254
#: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category"
msgstr "Eliminar categoría de pieza"
#: src/pages/part/CategoryDetail.tsx:205
#: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action"
msgstr "Acciones de piezas"
#: src/pages/part/CategoryDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category"
msgstr "Acciones de piezas en esta categoría"
#: src/pages/part/CategoryDetail.tsx:212
#: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action"
msgstr "Acción en subcategorías"
#: src/pages/part/CategoryDetail.tsx:213
#: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category"
msgstr "Acción para subcategorías en esta categoría"
#: src/pages/part/CategoryDetail.tsx:245
#: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions"
msgstr "Acciones de categoría"
#: src/pages/part/CategoryDetail.tsx:271
#: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details"
msgstr "Detalles de categoría"
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr ""
#: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320
#: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone"
msgstr "Esta acción no se puede deshacer"
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr ""
#: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112
#: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type"
msgstr ""
@ -11402,16 +11410,16 @@ msgstr ""
msgid "Add Part Category"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:49
#: src/tables/part/PartCategoryTemplateTable.tsx:143
#: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:57
#: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:65
#: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter"
msgstr ""
@ -11419,6 +11427,14 @@ msgstr ""
#~ msgid "[{0}]"
#~ msgstr "[{0}]"
#: src/tables/part/PartCategoryTemplateTable.tsx:167
msgid "Part Category Parameters Templates"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:170
msgid "Parts which are created within this category will inherit the default values specified here."
msgstr ""
#: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr ""
#~ msgid "An error occurred while fetching plugin details"
#~ msgstr "An error occurred while fetching plugin details"
#: src/tables/plugin/PluginListTable.tsx:106
#: src/tables/plugin/PluginListTable.tsx:430
#: src/tables/plugin/PluginListTable.tsx:108
#: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory"
msgstr ""
@ -11847,7 +11863,7 @@ msgstr ""
#~ msgid "Plugin with id {id} not found"
#~ msgstr "Plugin with id {id} not found"
#: src/tables/plugin/PluginListTable.tsx:120
#: src/tables/plugin/PluginListTable.tsx:122
msgid "Description not available"
msgstr ""
@ -11869,11 +11885,11 @@ msgstr ""
#~ msgid "Reload"
#~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159
#: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:160
#: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation"
msgstr ""
@ -11881,15 +11897,15 @@ msgstr ""
#~ msgid "Package information"
#~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165
#: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:166
#: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:184
#: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate"
msgstr ""
@ -11897,44 +11913,44 @@ msgstr ""
#~ msgid "Plugin settings"
#~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198
#: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:199
#: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin"
msgstr "Activar el complemento seleccionado"
#: src/tables/plugin/PluginListTable.tsx:211
#: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin"
msgstr "Actualizar complemento seleccionado"
#: src/tables/plugin/PluginListTable.tsx:229
#: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:230
#: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin"
msgstr "Desinstalar el complemento seleccionado"
#: src/tables/plugin/PluginListTable.tsx:248
#: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration"
msgstr "Eliminar la configuración del complemento seleccionado"
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271
#: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated"
msgstr "El complemento fue activado"
#: src/tables/plugin/PluginListTable.tsx:272
#: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated"
msgstr "El complemento fue desactivado"
@ -11942,20 +11958,20 @@ msgstr "El complemento fue desactivado"
#~ msgid "Install plugin"
#~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285
#: src/tables/plugin/PluginListTable.tsx:377
#: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:298
#: src/tables/plugin/PluginListTable.tsx:300
msgid "Install"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:299
#: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:304
#: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin"
msgstr ""
@ -11963,31 +11979,31 @@ msgstr ""
#~ msgid "This action cannot be undone."
#~ msgstr "This action cannot be undone."
#: src/tables/plugin/PluginListTable.tsx:316
#: src/tables/plugin/PluginListTable.tsx:318
msgid "Confirm plugin uninstall"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:319
#: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled."
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:324
#: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:332
#: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:333
#: src/tables/plugin/PluginListTable.tsx:335
msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:346
#: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:347
#: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully"
msgstr ""
@ -11999,7 +12015,7 @@ msgstr ""
#~ msgid "The following plugin will be deactivated"
#~ msgstr "The following plugin will be deactivated"
#: src/tables/plugin/PluginListTable.tsx:370
#: src/tables/plugin/PluginListTable.tsx:372
msgid "Reload Plugins"
msgstr ""
@ -12015,7 +12031,7 @@ msgstr ""
#~ msgid "Plugin updated"
#~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393
#: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail"
msgstr ""
@ -12023,11 +12039,11 @@ msgstr ""
#~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435
#: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:440
#: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248
msgid "Installed"
msgstr ""
@ -12660,29 +12676,29 @@ msgstr ""
msgid "Add Group"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:37
#: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:43
#: src/tables/settings/ImportSessionTable.tsx:130
#: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:73
#: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:84
#: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:113
#: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:119
#: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: et\n"
"Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-06-14 02:16\n"
"PO-Revision-Date: 2026-06-17 22:14\n"
"Last-Translator: \n"
"Language-Team: Estonian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -56,7 +56,7 @@ msgstr "Muuda"
#: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247
#: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete"
msgstr "Kustuta"
@ -163,10 +163,10 @@ msgstr "Osa"
#: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137
#: src/pages/part/CategoryDetail.tsx:284
#: src/pages/part/CategoryDetail.tsx:339
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893
msgid "Parts"
msgstr "Osad"
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr "Parameetrid"
#: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87
#: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template"
msgstr "Parameetri mall"
#: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates"
msgstr "Parameetri mall"
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr ""
#: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496
msgid "Part Category"
msgstr "Osa kategooria"
#: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:372
#: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories"
msgstr "Osa kategooriad"
@ -273,7 +274,7 @@ msgstr ""
#: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217
#: src/pages/part/CategoryDetail.tsx:313
#: src/pages/part/CategoryDetail.tsx:314
#: src/pages/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr "Omanikud"
#: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44
#: src/tables/settings/ImportSessionTable.tsx:78
#: src/tables/settings/ImportSessionTable.tsx:82
#: src/tables/stock/StockTrackingTable.tsx:237
#: src/tables/stock/StockTrackingTable.tsx:285
msgid "User"
@ -640,7 +641,7 @@ msgstr ""
#: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215
#: src/components/importer/ImporterColumnSelector.tsx:278
#: src/components/importer/ImporterColumnSelector.tsx:330
#: src/components/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr "Ühes või mitmes vormiväljas on vigu"
#: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210
#: src/tables/plugin/PluginListTable.tsx:212
msgid "Update"
msgstr "Värskenda"
@ -1982,7 +1983,7 @@ msgstr "Võõrustaja"
#: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19
#: src/pages/part/CategoryDetail.tsx:93
#: src/pages/part/CategoryDetail.tsx:94
#: src/pages/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr "Server"
#: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127
#: src/tables/plugin/PluginListTable.tsx:129
msgid "Version"
msgstr "Versioon"
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr "Andmete töötlemine"
#: src/components/importer/ImporterColumnSelector.tsx:56
#: src/components/importer/ImporterColumnSelector.tsx:247
#: src/components/importer/ImporterColumnSelector.tsx:299
#: src/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60
#: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr "Valige veerg või jätke tühi, et see väli ignoreerida."
#~ msgid "Imported Column Name"
#~ msgstr "Imported Column Name"
#: src/components/importer/ImporterColumnSelector.tsx:253
#: src/components/importer/ImporterColumnSelector.tsx:202
msgid "Auto"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:305
msgid "Ignore this field"
msgstr "Ignoreerige see väli"
#: src/components/importer/ImporterColumnSelector.tsx:267
#: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields"
msgstr "Kaardistage andmepalgid andmebaasi väljadele"
#: src/components/importer/ImporterColumnSelector.tsx:272
#: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping"
msgstr "Võtke vastu veeru kaardistamine"
#: src/components/importer/ImporterColumnSelector.tsx:285
#: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field"
msgstr "Andmebaasi väli"
#: src/components/importer/ImporterColumnSelector.tsx:286
#: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description"
msgstr "Välja kirjeldus"
#: src/components/importer/ImporterColumnSelector.tsx:287
#: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column"
msgstr "Imporditud veerg"
#: src/components/importer/ImporterColumnSelector.tsx:288
#: src/components/importer/ImporterColumnSelector.tsx:340
msgid "Lookup Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:341
msgid "Default Value"
msgstr "Vaikimisi väärtus"
@ -3131,7 +3140,7 @@ msgstr ""
#: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150
#: src/pages/part/CategoryDetail.tsx:113
#: src/pages/part/CategoryDetail.tsx:114
#: src/pages/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr ""
#: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110
#: src/tables/plugin/PluginListTable.tsx:112
msgid "Description"
msgstr "Kirjeldus"
@ -3172,7 +3181,7 @@ msgstr "Kuupäev"
#: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96
#: src/tables/plugin/PluginListTable.tsx:420
#: src/tables/plugin/PluginListTable.tsx:422
#: src/tables/purchasing/SupplierPartTable.tsx:139
#: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr "Aktiivne"
#: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140
#: src/tables/plugin/PluginListTable.tsx:142
msgid "Website"
msgstr "Veebileht"
@ -3198,8 +3207,8 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101
#: src/tables/plugin/PluginListTable.tsx:425
#: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin"
msgstr ""
@ -3364,7 +3373,7 @@ msgstr "Üksikasjad"
#: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78
#: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category"
msgstr "Kategooria"
@ -4823,7 +4832,7 @@ msgstr ""
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95
#: src/tables/settings/ImportSessionTable.tsx:118
#: src/tables/settings/ImportSessionTable.tsx:129
#: src/tables/stock/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status"
@ -4995,7 +5004,7 @@ msgstr ""
#: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129
#: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr "Kohandatud ühikud"
#~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters"
msgstr ""
@ -7698,7 +7706,7 @@ msgstr "Tühista tellimus"
#~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94
#: src/pages/part/CategoryDetail.tsx:291
#: src/pages/part/CategoryDetail.tsx:292
#: src/pages/purchasing/PurchasingIndex.tsx:103
#: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr "Kalendrivaade"
#: src/pages/build/BuildIndex.tsx:106
#: src/pages/part/CategoryDetail.tsx:305
#: src/pages/part/CategoryDetail.tsx:306
#: src/pages/purchasing/PurchasingIndex.tsx:115
#: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr ""
#~ msgid "Basic user"
#~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105
#: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr ""
msgid "Path"
msgstr "Asukoht"
#: src/pages/part/CategoryDetail.tsx:121
#: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category"
msgstr "Ülemkategooria"
#: src/pages/part/CategoryDetail.tsx:144
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories"
msgstr "Alamkategooriad"
#: src/pages/part/CategoryDetail.tsx:151
#: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:157
#: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location"
msgstr "Vanemaluse vaikimisi asukoht"
#: src/pages/part/CategoryDetail.tsx:164
#: src/pages/part/CategoryDetail.tsx:165
msgid "Default location"
msgstr "Vaikimisi asukoht"
@ -8018,48 +8026,48 @@ msgstr "Vaikimisi asukoht"
#~ msgid "Top level part category"
#~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181
#: src/pages/part/CategoryDetail.tsx:249
#: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category"
msgstr "Muuda osa kategooriat"
#: src/pages/part/CategoryDetail.tsx:190
#: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:194
#: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:202
#: src/pages/part/CategoryDetail.tsx:254
#: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:205
#: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category"
msgstr "Tegevus osade jaoks selles kategoorias"
#: src/pages/part/CategoryDetail.tsx:212
#: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action"
msgstr "Alamkategooriate tegevus"
#: src/pages/part/CategoryDetail.tsx:213
#: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category"
msgstr "Tegevus selle kategooria alamkategooriate jaoks"
#: src/pages/part/CategoryDetail.tsx:245
#: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:271
#: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details"
msgstr ""
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr "Kas olete kindel, et soovite kustutada valitud elemendid?"
#: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320
#: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone"
msgstr ""
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr ""
#: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112
#: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type"
msgstr "Mudeli liik"
@ -11402,16 +11410,16 @@ msgstr ""
msgid "Add Part Category"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:49
#: src/tables/part/PartCategoryTemplateTable.tsx:143
#: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:57
#: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter"
msgstr "Muuda kategooria parameetrit"
#: src/tables/part/PartCategoryTemplateTable.tsx:65
#: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter"
msgstr "Kustuta kategooria parameeter"
@ -11419,6 +11427,14 @@ msgstr "Kustuta kategooria parameeter"
#~ msgid "[{0}]"
#~ msgstr "[{0}]"
#: src/tables/part/PartCategoryTemplateTable.tsx:167
msgid "Part Category Parameters Templates"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:170
msgid "Parts which are created within this category will inherit the default values specified here."
msgstr ""
#: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr "Plugin"
#~ msgid "An error occurred while fetching plugin details"
#~ msgstr "An error occurred while fetching plugin details"
#: src/tables/plugin/PluginListTable.tsx:106
#: src/tables/plugin/PluginListTable.tsx:430
#: src/tables/plugin/PluginListTable.tsx:108
#: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory"
msgstr "Kohustuslik"
@ -11847,7 +11863,7 @@ msgstr "Kohustuslik"
#~ msgid "Plugin with id {id} not found"
#~ msgstr "Plugin with id {id} not found"
#: src/tables/plugin/PluginListTable.tsx:120
#: src/tables/plugin/PluginListTable.tsx:122
msgid "Description not available"
msgstr "Kirjeldust pole saadaval"
@ -11869,11 +11885,11 @@ msgstr "Kirjeldust pole saadaval"
#~ msgid "Reload"
#~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159
#: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation"
msgstr "Kinnitage pistikmooduli aktiveerimine"
#: src/tables/plugin/PluginListTable.tsx:160
#: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation"
msgstr "Kinnitage pistikmoodulite deaktiveerimine"
@ -11881,15 +11897,15 @@ msgstr "Kinnitage pistikmoodulite deaktiveerimine"
#~ msgid "Package information"
#~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165
#: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated"
msgstr "Valitud pistiklahendus aktiveeritakse"
#: src/tables/plugin/PluginListTable.tsx:166
#: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated"
msgstr "Valitud pistiklahendus inaktiveeritakse"
#: src/tables/plugin/PluginListTable.tsx:184
#: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate"
msgstr "Lülita välja"
@ -11897,44 +11913,44 @@ msgstr "Lülita välja"
#~ msgid "Plugin settings"
#~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198
#: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate"
msgstr "Aktiveeri"
#: src/tables/plugin/PluginListTable.tsx:199
#: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:211
#: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:229
#: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall"
msgstr "Eemalda"
#: src/tables/plugin/PluginListTable.tsx:230
#: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:248
#: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin"
msgstr "Aktiveeri plugin"
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271
#: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:272
#: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated"
msgstr ""
@ -11942,20 +11958,20 @@ msgstr ""
#~ msgid "Install plugin"
#~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285
#: src/tables/plugin/PluginListTable.tsx:377
#: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin"
msgstr "Paigalda plugin"
#: src/tables/plugin/PluginListTable.tsx:298
#: src/tables/plugin/PluginListTable.tsx:300
msgid "Install"
msgstr "Paigalda"
#: src/tables/plugin/PluginListTable.tsx:299
#: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully"
msgstr "Plugin paigaldamine õnnestus"
#: src/tables/plugin/PluginListTable.tsx:304
#: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin"
msgstr "Eemalda plugin"
@ -11963,31 +11979,31 @@ msgstr "Eemalda plugin"
#~ msgid "This action cannot be undone."
#~ msgstr "This action cannot be undone."
#: src/tables/plugin/PluginListTable.tsx:316
#: src/tables/plugin/PluginListTable.tsx:318
msgid "Confirm plugin uninstall"
msgstr "Kinnita plugina eemaldamine"
#: src/tables/plugin/PluginListTable.tsx:319
#: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled."
msgstr "Valitud pistikprogramm eemaldatakse."
#: src/tables/plugin/PluginListTable.tsx:324
#: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully"
msgstr "Plugin desinstall on õnnestunud"
#: src/tables/plugin/PluginListTable.tsx:332
#: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin"
msgstr "Kustuta plugin"
#: src/tables/plugin/PluginListTable.tsx:333
#: src/tables/plugin/PluginListTable.tsx:335
msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr "Kui kustutate selle pistikprogrammi seadistuse, eemaldatakse kõik seotud sätted ja andmed. Olete kindel, et soovite selle pistikprogrammi kustutada?"
#: src/tables/plugin/PluginListTable.tsx:346
#: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded"
msgstr "Plugin on uuesti laaditud"
#: src/tables/plugin/PluginListTable.tsx:347
#: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully"
msgstr "Pluginid said edukalt taaskäivitatud"
@ -11999,7 +12015,7 @@ msgstr "Pluginid said edukalt taaskäivitatud"
#~ msgid "The following plugin will be deactivated"
#~ msgstr "The following plugin will be deactivated"
#: src/tables/plugin/PluginListTable.tsx:370
#: src/tables/plugin/PluginListTable.tsx:372
msgid "Reload Plugins"
msgstr "Laadi pluginad uuesti"
@ -12015,7 +12031,7 @@ msgstr "Laadi pluginad uuesti"
#~ msgid "Plugin updated"
#~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393
#: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail"
msgstr "Plugina üksikasjad"
@ -12023,11 +12039,11 @@ msgstr "Plugina üksikasjad"
#~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435
#: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample"
msgstr "Näidis"
#: src/tables/plugin/PluginListTable.tsx:440
#: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248
msgid "Installed"
msgstr "Paigaldatud"
@ -12660,29 +12676,29 @@ msgstr ""
msgid "Add Group"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:37
#: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session"
msgstr "Kustuta importimise sessioon"
#: src/tables/settings/ImportSessionTable.tsx:43
#: src/tables/settings/ImportSessionTable.tsx:130
#: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session"
msgstr "Loo importimise sessioon"
#: src/tables/settings/ImportSessionTable.tsx:73
#: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded"
msgstr "Üles laaditud"
#: src/tables/settings/ImportSessionTable.tsx:84
#: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows"
msgstr "Imporditud read"
#: src/tables/settings/ImportSessionTable.tsx:113
#: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type"
msgstr "Filtri sihtmodeli tüübi järgi"
#: src/tables/settings/ImportSessionTable.tsx:119
#: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status"
msgstr "Filtreeri impordi seansi oleku järgi"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: fa\n"
"Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-06-14 02:16\n"
"PO-Revision-Date: 2026-06-17 22:14\n"
"Last-Translator: \n"
"Language-Team: Persian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -56,7 +56,7 @@ msgstr ""
#: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247
#: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete"
msgstr ""
@ -163,10 +163,10 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137
#: src/pages/part/CategoryDetail.tsx:284
#: src/pages/part/CategoryDetail.tsx:339
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893
msgid "Parts"
msgstr ""
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr ""
#: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87
#: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template"
msgstr ""
#: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates"
msgstr ""
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr ""
#: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496
msgid "Part Category"
msgstr ""
#: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:372
#: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories"
msgstr ""
@ -273,7 +274,7 @@ msgstr ""
#: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217
#: src/pages/part/CategoryDetail.tsx:313
#: src/pages/part/CategoryDetail.tsx:314
#: src/pages/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr ""
#: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44
#: src/tables/settings/ImportSessionTable.tsx:78
#: src/tables/settings/ImportSessionTable.tsx:82
#: src/tables/stock/StockTrackingTable.tsx:237
#: src/tables/stock/StockTrackingTable.tsx:285
msgid "User"
@ -640,7 +641,7 @@ msgstr ""
#: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215
#: src/components/importer/ImporterColumnSelector.tsx:278
#: src/components/importer/ImporterColumnSelector.tsx:330
#: src/components/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr ""
#: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210
#: src/tables/plugin/PluginListTable.tsx:212
msgid "Update"
msgstr ""
@ -1982,7 +1983,7 @@ msgstr ""
#: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19
#: src/pages/part/CategoryDetail.tsx:93
#: src/pages/part/CategoryDetail.tsx:94
#: src/pages/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr ""
#: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127
#: src/tables/plugin/PluginListTable.tsx:129
msgid "Version"
msgstr ""
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:56
#: src/components/importer/ImporterColumnSelector.tsx:247
#: src/components/importer/ImporterColumnSelector.tsx:299
#: src/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60
#: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr ""
#~ msgid "Imported Column Name"
#~ msgstr "Imported Column Name"
#: src/components/importer/ImporterColumnSelector.tsx:253
#: src/components/importer/ImporterColumnSelector.tsx:202
msgid "Auto"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:305
msgid "Ignore this field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:267
#: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:272
#: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:285
#: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:286
#: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:287
#: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:288
#: src/components/importer/ImporterColumnSelector.tsx:340
msgid "Lookup Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:341
msgid "Default Value"
msgstr ""
@ -3131,7 +3140,7 @@ msgstr ""
#: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150
#: src/pages/part/CategoryDetail.tsx:113
#: src/pages/part/CategoryDetail.tsx:114
#: src/pages/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr ""
#: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110
#: src/tables/plugin/PluginListTable.tsx:112
msgid "Description"
msgstr ""
@ -3172,7 +3181,7 @@ msgstr ""
#: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96
#: src/tables/plugin/PluginListTable.tsx:420
#: src/tables/plugin/PluginListTable.tsx:422
#: src/tables/purchasing/SupplierPartTable.tsx:139
#: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140
#: src/tables/plugin/PluginListTable.tsx:142
msgid "Website"
msgstr ""
@ -3198,8 +3207,8 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101
#: src/tables/plugin/PluginListTable.tsx:425
#: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin"
msgstr ""
@ -3364,7 +3373,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78
#: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category"
msgstr ""
@ -4823,7 +4832,7 @@ msgstr ""
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95
#: src/tables/settings/ImportSessionTable.tsx:118
#: src/tables/settings/ImportSessionTable.tsx:129
#: src/tables/stock/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status"
@ -4995,7 +5004,7 @@ msgstr ""
#: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129
#: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr ""
#~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters"
msgstr ""
@ -7698,7 +7706,7 @@ msgstr ""
#~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94
#: src/pages/part/CategoryDetail.tsx:291
#: src/pages/part/CategoryDetail.tsx:292
#: src/pages/purchasing/PurchasingIndex.tsx:103
#: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr ""
#: src/pages/build/BuildIndex.tsx:106
#: src/pages/part/CategoryDetail.tsx:305
#: src/pages/part/CategoryDetail.tsx:306
#: src/pages/purchasing/PurchasingIndex.tsx:115
#: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr ""
#~ msgid "Basic user"
#~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105
#: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr ""
msgid "Path"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:121
#: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:144
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:151
#: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:157
#: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:164
#: src/pages/part/CategoryDetail.tsx:165
msgid "Default location"
msgstr ""
@ -8018,48 +8026,48 @@ msgstr ""
#~ msgid "Top level part category"
#~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181
#: src/pages/part/CategoryDetail.tsx:249
#: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:190
#: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:194
#: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:202
#: src/pages/part/CategoryDetail.tsx:254
#: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:205
#: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:212
#: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:213
#: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:245
#: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:271
#: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details"
msgstr ""
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr ""
#: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320
#: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone"
msgstr ""
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr ""
#: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112
#: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type"
msgstr ""
@ -11402,16 +11410,16 @@ msgstr ""
msgid "Add Part Category"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:49
#: src/tables/part/PartCategoryTemplateTable.tsx:143
#: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:57
#: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:65
#: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter"
msgstr ""
@ -11419,6 +11427,14 @@ msgstr ""
#~ msgid "[{0}]"
#~ msgstr "[{0}]"
#: src/tables/part/PartCategoryTemplateTable.tsx:167
msgid "Part Category Parameters Templates"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:170
msgid "Parts which are created within this category will inherit the default values specified here."
msgstr ""
#: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr ""
#~ msgid "An error occurred while fetching plugin details"
#~ msgstr "An error occurred while fetching plugin details"
#: src/tables/plugin/PluginListTable.tsx:106
#: src/tables/plugin/PluginListTable.tsx:430
#: src/tables/plugin/PluginListTable.tsx:108
#: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory"
msgstr ""
@ -11847,7 +11863,7 @@ msgstr ""
#~ msgid "Plugin with id {id} not found"
#~ msgstr "Plugin with id {id} not found"
#: src/tables/plugin/PluginListTable.tsx:120
#: src/tables/plugin/PluginListTable.tsx:122
msgid "Description not available"
msgstr ""
@ -11869,11 +11885,11 @@ msgstr ""
#~ msgid "Reload"
#~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159
#: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:160
#: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation"
msgstr ""
@ -11881,15 +11897,15 @@ msgstr ""
#~ msgid "Package information"
#~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165
#: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:166
#: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:184
#: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate"
msgstr ""
@ -11897,44 +11913,44 @@ msgstr ""
#~ msgid "Plugin settings"
#~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198
#: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:199
#: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:211
#: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:229
#: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:230
#: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:248
#: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271
#: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:272
#: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated"
msgstr ""
@ -11942,20 +11958,20 @@ msgstr ""
#~ msgid "Install plugin"
#~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285
#: src/tables/plugin/PluginListTable.tsx:377
#: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:298
#: src/tables/plugin/PluginListTable.tsx:300
msgid "Install"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:299
#: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:304
#: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin"
msgstr ""
@ -11963,31 +11979,31 @@ msgstr ""
#~ msgid "This action cannot be undone."
#~ msgstr "This action cannot be undone."
#: src/tables/plugin/PluginListTable.tsx:316
#: src/tables/plugin/PluginListTable.tsx:318
msgid "Confirm plugin uninstall"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:319
#: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled."
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:324
#: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:332
#: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:333
#: src/tables/plugin/PluginListTable.tsx:335
msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:346
#: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:347
#: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully"
msgstr ""
@ -11999,7 +12015,7 @@ msgstr ""
#~ msgid "The following plugin will be deactivated"
#~ msgstr "The following plugin will be deactivated"
#: src/tables/plugin/PluginListTable.tsx:370
#: src/tables/plugin/PluginListTable.tsx:372
msgid "Reload Plugins"
msgstr ""
@ -12015,7 +12031,7 @@ msgstr ""
#~ msgid "Plugin updated"
#~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393
#: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail"
msgstr ""
@ -12023,11 +12039,11 @@ msgstr ""
#~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435
#: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:440
#: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248
msgid "Installed"
msgstr ""
@ -12660,29 +12676,29 @@ msgstr ""
msgid "Add Group"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:37
#: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:43
#: src/tables/settings/ImportSessionTable.tsx:130
#: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:73
#: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:84
#: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:113
#: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:119
#: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: fi\n"
"Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-06-14 02:16\n"
"PO-Revision-Date: 2026-06-17 22:14\n"
"Last-Translator: \n"
"Language-Team: Finnish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -56,7 +56,7 @@ msgstr ""
#: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247
#: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete"
msgstr ""
@ -163,10 +163,10 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137
#: src/pages/part/CategoryDetail.tsx:284
#: src/pages/part/CategoryDetail.tsx:339
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893
msgid "Parts"
msgstr ""
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr ""
#: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87
#: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template"
msgstr ""
#: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates"
msgstr ""
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr ""
#: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496
msgid "Part Category"
msgstr ""
#: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:372
#: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories"
msgstr ""
@ -273,7 +274,7 @@ msgstr ""
#: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217
#: src/pages/part/CategoryDetail.tsx:313
#: src/pages/part/CategoryDetail.tsx:314
#: src/pages/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr ""
#: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44
#: src/tables/settings/ImportSessionTable.tsx:78
#: src/tables/settings/ImportSessionTable.tsx:82
#: src/tables/stock/StockTrackingTable.tsx:237
#: src/tables/stock/StockTrackingTable.tsx:285
msgid "User"
@ -640,7 +641,7 @@ msgstr ""
#: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215
#: src/components/importer/ImporterColumnSelector.tsx:278
#: src/components/importer/ImporterColumnSelector.tsx:330
#: src/components/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr ""
#: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210
#: src/tables/plugin/PluginListTable.tsx:212
msgid "Update"
msgstr ""
@ -1982,7 +1983,7 @@ msgstr ""
#: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19
#: src/pages/part/CategoryDetail.tsx:93
#: src/pages/part/CategoryDetail.tsx:94
#: src/pages/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr ""
#: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127
#: src/tables/plugin/PluginListTable.tsx:129
msgid "Version"
msgstr ""
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:56
#: src/components/importer/ImporterColumnSelector.tsx:247
#: src/components/importer/ImporterColumnSelector.tsx:299
#: src/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60
#: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr ""
#~ msgid "Imported Column Name"
#~ msgstr "Imported Column Name"
#: src/components/importer/ImporterColumnSelector.tsx:253
#: src/components/importer/ImporterColumnSelector.tsx:202
msgid "Auto"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:305
msgid "Ignore this field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:267
#: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:272
#: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:285
#: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:286
#: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:287
#: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:288
#: src/components/importer/ImporterColumnSelector.tsx:340
msgid "Lookup Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:341
msgid "Default Value"
msgstr ""
@ -3131,7 +3140,7 @@ msgstr ""
#: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150
#: src/pages/part/CategoryDetail.tsx:113
#: src/pages/part/CategoryDetail.tsx:114
#: src/pages/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr ""
#: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110
#: src/tables/plugin/PluginListTable.tsx:112
msgid "Description"
msgstr ""
@ -3172,7 +3181,7 @@ msgstr ""
#: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96
#: src/tables/plugin/PluginListTable.tsx:420
#: src/tables/plugin/PluginListTable.tsx:422
#: src/tables/purchasing/SupplierPartTable.tsx:139
#: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140
#: src/tables/plugin/PluginListTable.tsx:142
msgid "Website"
msgstr ""
@ -3198,8 +3207,8 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101
#: src/tables/plugin/PluginListTable.tsx:425
#: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin"
msgstr ""
@ -3364,7 +3373,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78
#: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category"
msgstr ""
@ -4823,7 +4832,7 @@ msgstr ""
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95
#: src/tables/settings/ImportSessionTable.tsx:118
#: src/tables/settings/ImportSessionTable.tsx:129
#: src/tables/stock/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status"
@ -4995,7 +5004,7 @@ msgstr ""
#: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129
#: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr ""
#~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters"
msgstr ""
@ -7698,7 +7706,7 @@ msgstr ""
#~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94
#: src/pages/part/CategoryDetail.tsx:291
#: src/pages/part/CategoryDetail.tsx:292
#: src/pages/purchasing/PurchasingIndex.tsx:103
#: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr ""
#: src/pages/build/BuildIndex.tsx:106
#: src/pages/part/CategoryDetail.tsx:305
#: src/pages/part/CategoryDetail.tsx:306
#: src/pages/purchasing/PurchasingIndex.tsx:115
#: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr ""
#~ msgid "Basic user"
#~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105
#: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr ""
msgid "Path"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:121
#: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:144
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:151
#: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:157
#: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:164
#: src/pages/part/CategoryDetail.tsx:165
msgid "Default location"
msgstr ""
@ -8018,48 +8026,48 @@ msgstr ""
#~ msgid "Top level part category"
#~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181
#: src/pages/part/CategoryDetail.tsx:249
#: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:190
#: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:194
#: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:202
#: src/pages/part/CategoryDetail.tsx:254
#: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:205
#: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:212
#: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:213
#: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:245
#: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:271
#: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details"
msgstr ""
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr ""
#: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320
#: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone"
msgstr ""
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr ""
#: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112
#: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type"
msgstr ""
@ -11402,16 +11410,16 @@ msgstr ""
msgid "Add Part Category"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:49
#: src/tables/part/PartCategoryTemplateTable.tsx:143
#: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:57
#: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:65
#: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter"
msgstr ""
@ -11419,6 +11427,14 @@ msgstr ""
#~ msgid "[{0}]"
#~ msgstr "[{0}]"
#: src/tables/part/PartCategoryTemplateTable.tsx:167
msgid "Part Category Parameters Templates"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:170
msgid "Parts which are created within this category will inherit the default values specified here."
msgstr ""
#: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr ""
#~ msgid "An error occurred while fetching plugin details"
#~ msgstr "An error occurred while fetching plugin details"
#: src/tables/plugin/PluginListTable.tsx:106
#: src/tables/plugin/PluginListTable.tsx:430
#: src/tables/plugin/PluginListTable.tsx:108
#: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory"
msgstr ""
@ -11847,7 +11863,7 @@ msgstr ""
#~ msgid "Plugin with id {id} not found"
#~ msgstr "Plugin with id {id} not found"
#: src/tables/plugin/PluginListTable.tsx:120
#: src/tables/plugin/PluginListTable.tsx:122
msgid "Description not available"
msgstr ""
@ -11869,11 +11885,11 @@ msgstr ""
#~ msgid "Reload"
#~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159
#: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:160
#: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation"
msgstr ""
@ -11881,15 +11897,15 @@ msgstr ""
#~ msgid "Package information"
#~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165
#: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:166
#: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:184
#: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate"
msgstr ""
@ -11897,44 +11913,44 @@ msgstr ""
#~ msgid "Plugin settings"
#~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198
#: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:199
#: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:211
#: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:229
#: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:230
#: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:248
#: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271
#: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:272
#: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated"
msgstr ""
@ -11942,20 +11958,20 @@ msgstr ""
#~ msgid "Install plugin"
#~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285
#: src/tables/plugin/PluginListTable.tsx:377
#: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:298
#: src/tables/plugin/PluginListTable.tsx:300
msgid "Install"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:299
#: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:304
#: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin"
msgstr ""
@ -11963,31 +11979,31 @@ msgstr ""
#~ msgid "This action cannot be undone."
#~ msgstr "This action cannot be undone."
#: src/tables/plugin/PluginListTable.tsx:316
#: src/tables/plugin/PluginListTable.tsx:318
msgid "Confirm plugin uninstall"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:319
#: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled."
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:324
#: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:332
#: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:333
#: src/tables/plugin/PluginListTable.tsx:335
msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:346
#: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:347
#: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully"
msgstr ""
@ -11999,7 +12015,7 @@ msgstr ""
#~ msgid "The following plugin will be deactivated"
#~ msgstr "The following plugin will be deactivated"
#: src/tables/plugin/PluginListTable.tsx:370
#: src/tables/plugin/PluginListTable.tsx:372
msgid "Reload Plugins"
msgstr ""
@ -12015,7 +12031,7 @@ msgstr ""
#~ msgid "Plugin updated"
#~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393
#: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail"
msgstr ""
@ -12023,11 +12039,11 @@ msgstr ""
#~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435
#: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:440
#: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248
msgid "Installed"
msgstr ""
@ -12660,29 +12676,29 @@ msgstr ""
msgid "Add Group"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:37
#: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:43
#: src/tables/settings/ImportSessionTable.tsx:130
#: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:73
#: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:84
#: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:113
#: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:119
#: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: fr\n"
"Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-06-14 02:16\n"
"PO-Revision-Date: 2026-06-17 22:14\n"
"Last-Translator: \n"
"Language-Team: French\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
@ -56,7 +56,7 @@ msgstr "Éditer"
#: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247
#: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete"
msgstr "Supprimer"
@ -163,10 +163,10 @@ msgstr "Pièce"
#: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137
#: src/pages/part/CategoryDetail.tsx:284
#: src/pages/part/CategoryDetail.tsx:339
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893
msgid "Parts"
msgstr "Composants"
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr "Paramètres"
#: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87
#: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template"
msgstr "Modèle de paramètre"
#: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates"
msgstr ""
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr "Pièces du fabricant"
#: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496
msgid "Part Category"
msgstr "Catégorie de composant"
#: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:372
#: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories"
msgstr "Catégories de composants"
@ -273,7 +274,7 @@ msgstr "Article en stock"
#: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217
#: src/pages/part/CategoryDetail.tsx:313
#: src/pages/part/CategoryDetail.tsx:314
#: src/pages/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr "Propriétaires"
#: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44
#: src/tables/settings/ImportSessionTable.tsx:78
#: src/tables/settings/ImportSessionTable.tsx:82
#: src/tables/stock/StockTrackingTable.tsx:237
#: src/tables/stock/StockTrackingTable.tsx:285
msgid "User"
@ -640,7 +641,7 @@ msgstr ""
#: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215
#: src/components/importer/ImporterColumnSelector.tsx:278
#: src/components/importer/ImporterColumnSelector.tsx:330
#: src/components/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr "Il existe des erreurs pour un ou plusieurs champs du formulaire"
#: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210
#: src/tables/plugin/PluginListTable.tsx:212
msgid "Update"
msgstr "Mise à jour"
@ -1982,7 +1983,7 @@ msgstr "Serveur"
#: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19
#: src/pages/part/CategoryDetail.tsx:93
#: src/pages/part/CategoryDetail.tsx:94
#: src/pages/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr "Serveur"
#: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127
#: src/tables/plugin/PluginListTable.tsx:129
msgid "Version"
msgstr "Version"
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr "Traitement des données"
#: src/components/importer/ImporterColumnSelector.tsx:56
#: src/components/importer/ImporterColumnSelector.tsx:247
#: src/components/importer/ImporterColumnSelector.tsx:299
#: src/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60
#: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr "Sélectionnez la colonne, ou laissez vide pour ignorer ce champ."
#~ msgid "Imported Column Name"
#~ msgstr "Imported Column Name"
#: src/components/importer/ImporterColumnSelector.tsx:253
#: src/components/importer/ImporterColumnSelector.tsx:202
msgid "Auto"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:305
msgid "Ignore this field"
msgstr "Ignorer ce champ"
#: src/components/importer/ImporterColumnSelector.tsx:267
#: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields"
msgstr "Mappage des colonnes de données aux champs de la base de données"
#: src/components/importer/ImporterColumnSelector.tsx:272
#: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping"
msgstr "Accepter le mappage des colonnes"
#: src/components/importer/ImporterColumnSelector.tsx:285
#: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field"
msgstr "Champ de base de données"
#: src/components/importer/ImporterColumnSelector.tsx:286
#: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description"
msgstr "Description du champ"
#: src/components/importer/ImporterColumnSelector.tsx:287
#: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column"
msgstr "Colonne importée"
#: src/components/importer/ImporterColumnSelector.tsx:288
#: src/components/importer/ImporterColumnSelector.tsx:340
msgid "Lookup Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:341
msgid "Default Value"
msgstr "Valeur par Défaut"
@ -3131,7 +3140,7 @@ msgstr "Informations sur le plugin"
#: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150
#: src/pages/part/CategoryDetail.tsx:113
#: src/pages/part/CategoryDetail.tsx:114
#: src/pages/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr "Informations sur le plugin"
#: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110
#: src/tables/plugin/PluginListTable.tsx:112
msgid "Description"
msgstr "Description"
@ -3172,7 +3181,7 @@ msgstr "Date"
#: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96
#: src/tables/plugin/PluginListTable.tsx:420
#: src/tables/plugin/PluginListTable.tsx:422
#: src/tables/purchasing/SupplierPartTable.tsx:139
#: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr "Actif"
#: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140
#: src/tables/plugin/PluginListTable.tsx:142
msgid "Website"
msgstr "Site web"
@ -3198,8 +3207,8 @@ msgstr "Chemin d'installation"
#: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101
#: src/tables/plugin/PluginListTable.tsx:425
#: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin"
msgstr "Intégré"
@ -3364,7 +3373,7 @@ msgstr "Détails"
#: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78
#: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category"
msgstr "Catégorie"
@ -4823,7 +4832,7 @@ msgstr "Quantité à allouer"
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95
#: src/tables/settings/ImportSessionTable.tsx:118
#: src/tables/settings/ImportSessionTable.tsx:129
#: src/tables/stock/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status"
@ -4995,7 +5004,7 @@ msgstr ""
#: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129
#: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr "Unités personnalisées"
#~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters"
msgstr "Paramètres de catégorie"
@ -7698,7 +7706,7 @@ msgstr "Annuler la commande"
#~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94
#: src/pages/part/CategoryDetail.tsx:291
#: src/pages/part/CategoryDetail.tsx:292
#: src/pages/purchasing/PurchasingIndex.tsx:103
#: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr "Vue du calendrier"
#: src/pages/build/BuildIndex.tsx:106
#: src/pages/part/CategoryDetail.tsx:305
#: src/pages/part/CategoryDetail.tsx:306
#: src/pages/purchasing/PurchasingIndex.tsx:115
#: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr ""
#~ msgid "Basic user"
#~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105
#: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr ""
msgid "Path"
msgstr "Chemin d'accès"
#: src/pages/part/CategoryDetail.tsx:121
#: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category"
msgstr "Catégorie parente"
#: src/pages/part/CategoryDetail.tsx:144
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories"
msgstr "Sous-catégories"
#: src/pages/part/CategoryDetail.tsx:151
#: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural"
msgstr "Structure"
#: src/pages/part/CategoryDetail.tsx:157
#: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location"
msgstr "Emplacement par défaut du parent"
#: src/pages/part/CategoryDetail.tsx:164
#: src/pages/part/CategoryDetail.tsx:165
msgid "Default location"
msgstr "Emplacement par défaut"
@ -8018,48 +8026,48 @@ msgstr "Emplacement par défaut"
#~ msgid "Top level part category"
#~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181
#: src/pages/part/CategoryDetail.tsx:249
#: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category"
msgstr "Modifier la catégorie"
#: src/pages/part/CategoryDetail.tsx:190
#: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category"
msgstr "Déplacer les articles dans la catégorie parent"
#: src/pages/part/CategoryDetail.tsx:194
#: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items"
msgstr "Supprimer lélément"
#: src/pages/part/CategoryDetail.tsx:202
#: src/pages/part/CategoryDetail.tsx:254
#: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category"
msgstr "Supprimer la catégorie"
#: src/pages/part/CategoryDetail.tsx:205
#: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action"
msgstr "Action sur les pièces"
#: src/pages/part/CategoryDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category"
msgstr "Action pour les pièces de cette catégorie"
#: src/pages/part/CategoryDetail.tsx:212
#: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action"
msgstr "Action sur les catégories enfants"
#: src/pages/part/CategoryDetail.tsx:213
#: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category"
msgstr "Action pour les sous-catégories de cette catégorie"
#: src/pages/part/CategoryDetail.tsx:245
#: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions"
msgstr "Paramètres de Catégorie"
#: src/pages/part/CategoryDetail.tsx:271
#: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details"
msgstr "Détails de la catégorie"
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr "Êtes-vous sûr de vouloir supprimer les éléments sélectionnés ?"
#: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320
#: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone"
msgstr "Cette action ne peut pas être annulée"
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr ""
#: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112
#: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type"
msgstr "Type de modèle"
@ -11402,16 +11410,16 @@ msgstr "Définir la catégorie parentale pour les éléments sélectionnés"
msgid "Add Part Category"
msgstr "Ajouter une catégorie de pièces"
#: src/tables/part/PartCategoryTemplateTable.tsx:49
#: src/tables/part/PartCategoryTemplateTable.tsx:143
#: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter"
msgstr "Ajouter un paramètre de catégorie"
#: src/tables/part/PartCategoryTemplateTable.tsx:57
#: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter"
msgstr "Modifier les paramètres de la catégorie"
#: src/tables/part/PartCategoryTemplateTable.tsx:65
#: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter"
msgstr "Supprimer un paramètre de catégorie"
@ -11419,6 +11427,14 @@ msgstr "Supprimer un paramètre de catégorie"
#~ msgid "[{0}]"
#~ msgstr "[{0}]"
#: src/tables/part/PartCategoryTemplateTable.tsx:167
msgid "Part Category Parameters Templates"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:170
msgid "Parts which are created within this category will inherit the default values specified here."
msgstr ""
#: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr "Extension"
#~ msgid "An error occurred while fetching plugin details"
#~ msgstr "An error occurred while fetching plugin details"
#: src/tables/plugin/PluginListTable.tsx:106
#: src/tables/plugin/PluginListTable.tsx:430
#: src/tables/plugin/PluginListTable.tsx:108
#: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory"
msgstr "Obligatoire"
@ -11847,7 +11863,7 @@ msgstr "Obligatoire"
#~ msgid "Plugin with id {id} not found"
#~ msgstr "Plugin with id {id} not found"
#: src/tables/plugin/PluginListTable.tsx:120
#: src/tables/plugin/PluginListTable.tsx:122
msgid "Description not available"
msgstr "Description non disponible"
@ -11869,11 +11885,11 @@ msgstr "Description non disponible"
#~ msgid "Reload"
#~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159
#: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation"
msgstr "Confirmer l'activation du plugin"
#: src/tables/plugin/PluginListTable.tsx:160
#: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation"
msgstr "Confirmer la désactivation du plugin"
@ -11881,15 +11897,15 @@ msgstr "Confirmer la désactivation du plugin"
#~ msgid "Package information"
#~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165
#: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated"
msgstr "Le plugin sélectionné sera activé"
#: src/tables/plugin/PluginListTable.tsx:166
#: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated"
msgstr "Le plugin sélectionné sera désactivé"
#: src/tables/plugin/PluginListTable.tsx:184
#: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate"
msgstr "Désactiver"
@ -11897,44 +11913,44 @@ msgstr "Désactiver"
#~ msgid "Plugin settings"
#~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198
#: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate"
msgstr "Activer"
#: src/tables/plugin/PluginListTable.tsx:199
#: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin"
msgstr "Activer le plugin sélectionné"
#: src/tables/plugin/PluginListTable.tsx:211
#: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin"
msgstr "Mettre à jour le plugin sélectionné"
#: src/tables/plugin/PluginListTable.tsx:229
#: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall"
msgstr "Désinstaller"
#: src/tables/plugin/PluginListTable.tsx:230
#: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin"
msgstr "Désinstaller le plugin sélectionné"
#: src/tables/plugin/PluginListTable.tsx:248
#: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration"
msgstr "Supprimer la configuration du plugin sélectionné"
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin"
msgstr "Activer le plugin"
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271
#: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated"
msgstr "Le plugin a été activé"
#: src/tables/plugin/PluginListTable.tsx:272
#: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated"
msgstr "Le plugin a été désactivé"
@ -11942,20 +11958,20 @@ msgstr "Le plugin a été désactivé"
#~ msgid "Install plugin"
#~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285
#: src/tables/plugin/PluginListTable.tsx:377
#: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin"
msgstr "Installer le plugin"
#: src/tables/plugin/PluginListTable.tsx:298
#: src/tables/plugin/PluginListTable.tsx:300
msgid "Install"
msgstr "Installer"
#: src/tables/plugin/PluginListTable.tsx:299
#: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully"
msgstr "Plugin installé avec succès"
#: src/tables/plugin/PluginListTable.tsx:304
#: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin"
msgstr "Désinstaller le plugin"
@ -11963,31 +11979,31 @@ msgstr "Désinstaller le plugin"
#~ msgid "This action cannot be undone."
#~ msgstr "This action cannot be undone."
#: src/tables/plugin/PluginListTable.tsx:316
#: src/tables/plugin/PluginListTable.tsx:318
msgid "Confirm plugin uninstall"
msgstr "Confirmer la désinstallation du plugin"
#: src/tables/plugin/PluginListTable.tsx:319
#: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled."
msgstr "Le plugin sélectionné sera désinstallé."
#: src/tables/plugin/PluginListTable.tsx:324
#: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully"
msgstr "Plugin désinstallé avec succès"
#: src/tables/plugin/PluginListTable.tsx:332
#: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin"
msgstr "Supprimer le plugin"
#: src/tables/plugin/PluginListTable.tsx:333
#: src/tables/plugin/PluginListTable.tsx:335
msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr "La suppression de cette configuration de plugin supprimera tous les paramètres et données associés. Êtes-vous sûr de vouloir supprimer ce plugin ?"
#: src/tables/plugin/PluginListTable.tsx:346
#: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded"
msgstr "Plugins rechargés"
#: src/tables/plugin/PluginListTable.tsx:347
#: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully"
msgstr "Les plugins ont été rechargés avec succès"
@ -11999,7 +12015,7 @@ msgstr "Les plugins ont été rechargés avec succès"
#~ msgid "The following plugin will be deactivated"
#~ msgstr "The following plugin will be deactivated"
#: src/tables/plugin/PluginListTable.tsx:370
#: src/tables/plugin/PluginListTable.tsx:372
msgid "Reload Plugins"
msgstr "Recharger les plugins"
@ -12015,7 +12031,7 @@ msgstr "Recharger les plugins"
#~ msgid "Plugin updated"
#~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393
#: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail"
msgstr "Détail du plugin"
@ -12023,11 +12039,11 @@ msgstr "Détail du plugin"
#~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435
#: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample"
msgstr "Exemple"
#: src/tables/plugin/PluginListTable.tsx:440
#: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248
msgid "Installed"
msgstr "Installé"
@ -12660,29 +12676,29 @@ msgstr "Modifier le groupe"
msgid "Add Group"
msgstr "Ajouter un groupe"
#: src/tables/settings/ImportSessionTable.tsx:37
#: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session"
msgstr "Supprimer la session d'importation"
#: src/tables/settings/ImportSessionTable.tsx:43
#: src/tables/settings/ImportSessionTable.tsx:130
#: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session"
msgstr "Créer une session d'importation"
#: src/tables/settings/ImportSessionTable.tsx:73
#: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded"
msgstr "Envoyé"
#: src/tables/settings/ImportSessionTable.tsx:84
#: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows"
msgstr "Lignes importées"
#: src/tables/settings/ImportSessionTable.tsx:113
#: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type"
msgstr "Filtrer par type de modèle cible"
#: src/tables/settings/ImportSessionTable.tsx:119
#: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status"
msgstr "Filtrer par statut de session d'importation"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: he\n"
"Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-06-14 02:16\n"
"PO-Revision-Date: 2026-06-17 22:14\n"
"Last-Translator: \n"
"Language-Team: Hebrew\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
@ -56,7 +56,7 @@ msgstr "ערוך"
#: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247
#: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete"
msgstr "מחק"
@ -163,10 +163,10 @@ msgstr "פריט"
#: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137
#: src/pages/part/CategoryDetail.tsx:284
#: src/pages/part/CategoryDetail.tsx:339
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893
msgid "Parts"
msgstr "פריטים"
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr ""
#: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87
#: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template"
msgstr ""
#: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates"
msgstr ""
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr ""
#: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496
msgid "Part Category"
msgstr "קטגוריית פריט"
#: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:372
#: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories"
msgstr "קטגוריית פריטים"
@ -273,7 +274,7 @@ msgstr "פריט במלאי"
#: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217
#: src/pages/part/CategoryDetail.tsx:313
#: src/pages/part/CategoryDetail.tsx:314
#: src/pages/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr "בעלים"
#: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44
#: src/tables/settings/ImportSessionTable.tsx:78
#: src/tables/settings/ImportSessionTable.tsx:82
#: src/tables/stock/StockTrackingTable.tsx:237
#: src/tables/stock/StockTrackingTable.tsx:285
msgid "User"
@ -640,7 +641,7 @@ msgstr ""
#: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215
#: src/components/importer/ImporterColumnSelector.tsx:278
#: src/components/importer/ImporterColumnSelector.tsx:330
#: src/components/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr "קיימות שגיאות עבור שדה טופס אחד או יותר"
#: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210
#: src/tables/plugin/PluginListTable.tsx:212
msgid "Update"
msgstr "עדכן"
@ -1982,7 +1983,7 @@ msgstr "מארח"
#: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19
#: src/pages/part/CategoryDetail.tsx:93
#: src/pages/part/CategoryDetail.tsx:94
#: src/pages/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr "שרת"
#: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127
#: src/tables/plugin/PluginListTable.tsx:129
msgid "Version"
msgstr "גרסה"
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr "מעבד נתונים"
#: src/components/importer/ImporterColumnSelector.tsx:56
#: src/components/importer/ImporterColumnSelector.tsx:247
#: src/components/importer/ImporterColumnSelector.tsx:299
#: src/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60
#: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr "בחר עמודה, או השאר ריק כדי להתעלם משדה ז
#~ msgid "Imported Column Name"
#~ msgstr "Imported Column Name"
#: src/components/importer/ImporterColumnSelector.tsx:253
#: src/components/importer/ImporterColumnSelector.tsx:202
msgid "Auto"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:305
msgid "Ignore this field"
msgstr "התעלם מהשדה הזה"
#: src/components/importer/ImporterColumnSelector.tsx:267
#: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields"
msgstr "מיפוי עמודות נתונים לשדות מסד נתונים"
#: src/components/importer/ImporterColumnSelector.tsx:272
#: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping"
msgstr "קבל מיפוי עמודות"
#: src/components/importer/ImporterColumnSelector.tsx:285
#: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field"
msgstr "שדה מסד נתונים"
#: src/components/importer/ImporterColumnSelector.tsx:286
#: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description"
msgstr "תיאור שדה"
#: src/components/importer/ImporterColumnSelector.tsx:287
#: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column"
msgstr "עמודה מיובאת"
#: src/components/importer/ImporterColumnSelector.tsx:288
#: src/components/importer/ImporterColumnSelector.tsx:340
msgid "Lookup Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:341
msgid "Default Value"
msgstr "ערך ברירת מחדל"
@ -3131,7 +3140,7 @@ msgstr ""
#: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150
#: src/pages/part/CategoryDetail.tsx:113
#: src/pages/part/CategoryDetail.tsx:114
#: src/pages/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr ""
#: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110
#: src/tables/plugin/PluginListTable.tsx:112
msgid "Description"
msgstr ""
@ -3172,7 +3181,7 @@ msgstr ""
#: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96
#: src/tables/plugin/PluginListTable.tsx:420
#: src/tables/plugin/PluginListTable.tsx:422
#: src/tables/purchasing/SupplierPartTable.tsx:139
#: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140
#: src/tables/plugin/PluginListTable.tsx:142
msgid "Website"
msgstr "אתר אינטרנט"
@ -3198,8 +3207,8 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101
#: src/tables/plugin/PluginListTable.tsx:425
#: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin"
msgstr ""
@ -3364,7 +3373,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78
#: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category"
msgstr ""
@ -4823,7 +4832,7 @@ msgstr ""
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95
#: src/tables/settings/ImportSessionTable.tsx:118
#: src/tables/settings/ImportSessionTable.tsx:129
#: src/tables/stock/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status"
@ -4995,7 +5004,7 @@ msgstr ""
#: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129
#: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr ""
#~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters"
msgstr ""
@ -7698,7 +7706,7 @@ msgstr ""
#~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94
#: src/pages/part/CategoryDetail.tsx:291
#: src/pages/part/CategoryDetail.tsx:292
#: src/pages/purchasing/PurchasingIndex.tsx:103
#: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr ""
#: src/pages/build/BuildIndex.tsx:106
#: src/pages/part/CategoryDetail.tsx:305
#: src/pages/part/CategoryDetail.tsx:306
#: src/pages/purchasing/PurchasingIndex.tsx:115
#: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr ""
#~ msgid "Basic user"
#~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105
#: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr ""
msgid "Path"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:121
#: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:144
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:151
#: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:157
#: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:164
#: src/pages/part/CategoryDetail.tsx:165
msgid "Default location"
msgstr ""
@ -8018,48 +8026,48 @@ msgstr ""
#~ msgid "Top level part category"
#~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181
#: src/pages/part/CategoryDetail.tsx:249
#: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:190
#: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:194
#: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:202
#: src/pages/part/CategoryDetail.tsx:254
#: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:205
#: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:212
#: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:213
#: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:245
#: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:271
#: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details"
msgstr ""
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr ""
#: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320
#: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone"
msgstr ""
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr ""
#: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112
#: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type"
msgstr ""
@ -11402,16 +11410,16 @@ msgstr ""
msgid "Add Part Category"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:49
#: src/tables/part/PartCategoryTemplateTable.tsx:143
#: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:57
#: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:65
#: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter"
msgstr ""
@ -11419,6 +11427,14 @@ msgstr ""
#~ msgid "[{0}]"
#~ msgstr "[{0}]"
#: src/tables/part/PartCategoryTemplateTable.tsx:167
msgid "Part Category Parameters Templates"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:170
msgid "Parts which are created within this category will inherit the default values specified here."
msgstr ""
#: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr ""
#~ msgid "An error occurred while fetching plugin details"
#~ msgstr "An error occurred while fetching plugin details"
#: src/tables/plugin/PluginListTable.tsx:106
#: src/tables/plugin/PluginListTable.tsx:430
#: src/tables/plugin/PluginListTable.tsx:108
#: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory"
msgstr ""
@ -11847,7 +11863,7 @@ msgstr ""
#~ msgid "Plugin with id {id} not found"
#~ msgstr "Plugin with id {id} not found"
#: src/tables/plugin/PluginListTable.tsx:120
#: src/tables/plugin/PluginListTable.tsx:122
msgid "Description not available"
msgstr ""
@ -11869,11 +11885,11 @@ msgstr ""
#~ msgid "Reload"
#~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159
#: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:160
#: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation"
msgstr ""
@ -11881,15 +11897,15 @@ msgstr ""
#~ msgid "Package information"
#~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165
#: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:166
#: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:184
#: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate"
msgstr ""
@ -11897,44 +11913,44 @@ msgstr ""
#~ msgid "Plugin settings"
#~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198
#: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:199
#: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:211
#: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:229
#: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:230
#: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:248
#: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271
#: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:272
#: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated"
msgstr ""
@ -11942,20 +11958,20 @@ msgstr ""
#~ msgid "Install plugin"
#~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285
#: src/tables/plugin/PluginListTable.tsx:377
#: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:298
#: src/tables/plugin/PluginListTable.tsx:300
msgid "Install"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:299
#: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:304
#: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin"
msgstr ""
@ -11963,31 +11979,31 @@ msgstr ""
#~ msgid "This action cannot be undone."
#~ msgstr "This action cannot be undone."
#: src/tables/plugin/PluginListTable.tsx:316
#: src/tables/plugin/PluginListTable.tsx:318
msgid "Confirm plugin uninstall"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:319
#: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled."
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:324
#: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:332
#: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:333
#: src/tables/plugin/PluginListTable.tsx:335
msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:346
#: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:347
#: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully"
msgstr ""
@ -11999,7 +12015,7 @@ msgstr ""
#~ msgid "The following plugin will be deactivated"
#~ msgstr "The following plugin will be deactivated"
#: src/tables/plugin/PluginListTable.tsx:370
#: src/tables/plugin/PluginListTable.tsx:372
msgid "Reload Plugins"
msgstr ""
@ -12015,7 +12031,7 @@ msgstr ""
#~ msgid "Plugin updated"
#~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393
#: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail"
msgstr ""
@ -12023,11 +12039,11 @@ msgstr ""
#~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435
#: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:440
#: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248
msgid "Installed"
msgstr ""
@ -12660,29 +12676,29 @@ msgstr ""
msgid "Add Group"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:37
#: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:43
#: src/tables/settings/ImportSessionTable.tsx:130
#: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:73
#: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:84
#: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:113
#: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:119
#: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: hi\n"
"Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-06-14 02:16\n"
"PO-Revision-Date: 2026-06-17 22:14\n"
"Last-Translator: \n"
"Language-Team: Hindi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -56,7 +56,7 @@ msgstr ""
#: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247
#: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete"
msgstr ""
@ -163,10 +163,10 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137
#: src/pages/part/CategoryDetail.tsx:284
#: src/pages/part/CategoryDetail.tsx:339
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893
msgid "Parts"
msgstr ""
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr ""
#: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87
#: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template"
msgstr ""
#: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates"
msgstr ""
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr ""
#: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496
msgid "Part Category"
msgstr ""
#: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:372
#: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories"
msgstr ""
@ -273,7 +274,7 @@ msgstr ""
#: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217
#: src/pages/part/CategoryDetail.tsx:313
#: src/pages/part/CategoryDetail.tsx:314
#: src/pages/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr ""
#: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44
#: src/tables/settings/ImportSessionTable.tsx:78
#: src/tables/settings/ImportSessionTable.tsx:82
#: src/tables/stock/StockTrackingTable.tsx:237
#: src/tables/stock/StockTrackingTable.tsx:285
msgid "User"
@ -640,7 +641,7 @@ msgstr ""
#: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215
#: src/components/importer/ImporterColumnSelector.tsx:278
#: src/components/importer/ImporterColumnSelector.tsx:330
#: src/components/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr ""
#: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210
#: src/tables/plugin/PluginListTable.tsx:212
msgid "Update"
msgstr ""
@ -1982,7 +1983,7 @@ msgstr ""
#: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19
#: src/pages/part/CategoryDetail.tsx:93
#: src/pages/part/CategoryDetail.tsx:94
#: src/pages/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr ""
#: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127
#: src/tables/plugin/PluginListTable.tsx:129
msgid "Version"
msgstr ""
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:56
#: src/components/importer/ImporterColumnSelector.tsx:247
#: src/components/importer/ImporterColumnSelector.tsx:299
#: src/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60
#: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr ""
#~ msgid "Imported Column Name"
#~ msgstr "Imported Column Name"
#: src/components/importer/ImporterColumnSelector.tsx:253
#: src/components/importer/ImporterColumnSelector.tsx:202
msgid "Auto"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:305
msgid "Ignore this field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:267
#: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:272
#: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:285
#: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:286
#: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:287
#: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:288
#: src/components/importer/ImporterColumnSelector.tsx:340
msgid "Lookup Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:341
msgid "Default Value"
msgstr ""
@ -3131,7 +3140,7 @@ msgstr ""
#: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150
#: src/pages/part/CategoryDetail.tsx:113
#: src/pages/part/CategoryDetail.tsx:114
#: src/pages/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr ""
#: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110
#: src/tables/plugin/PluginListTable.tsx:112
msgid "Description"
msgstr ""
@ -3172,7 +3181,7 @@ msgstr ""
#: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96
#: src/tables/plugin/PluginListTable.tsx:420
#: src/tables/plugin/PluginListTable.tsx:422
#: src/tables/purchasing/SupplierPartTable.tsx:139
#: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140
#: src/tables/plugin/PluginListTable.tsx:142
msgid "Website"
msgstr ""
@ -3198,8 +3207,8 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101
#: src/tables/plugin/PluginListTable.tsx:425
#: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin"
msgstr ""
@ -3364,7 +3373,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78
#: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category"
msgstr ""
@ -4823,7 +4832,7 @@ msgstr ""
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95
#: src/tables/settings/ImportSessionTable.tsx:118
#: src/tables/settings/ImportSessionTable.tsx:129
#: src/tables/stock/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status"
@ -4995,7 +5004,7 @@ msgstr ""
#: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129
#: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr ""
#~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters"
msgstr ""
@ -7698,7 +7706,7 @@ msgstr ""
#~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94
#: src/pages/part/CategoryDetail.tsx:291
#: src/pages/part/CategoryDetail.tsx:292
#: src/pages/purchasing/PurchasingIndex.tsx:103
#: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr ""
#: src/pages/build/BuildIndex.tsx:106
#: src/pages/part/CategoryDetail.tsx:305
#: src/pages/part/CategoryDetail.tsx:306
#: src/pages/purchasing/PurchasingIndex.tsx:115
#: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr ""
#~ msgid "Basic user"
#~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105
#: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr ""
msgid "Path"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:121
#: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:144
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:151
#: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:157
#: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:164
#: src/pages/part/CategoryDetail.tsx:165
msgid "Default location"
msgstr ""
@ -8018,48 +8026,48 @@ msgstr ""
#~ msgid "Top level part category"
#~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181
#: src/pages/part/CategoryDetail.tsx:249
#: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:190
#: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:194
#: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:202
#: src/pages/part/CategoryDetail.tsx:254
#: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:205
#: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:212
#: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:213
#: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:245
#: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:271
#: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details"
msgstr ""
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr ""
#: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320
#: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone"
msgstr ""
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr ""
#: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112
#: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type"
msgstr ""
@ -11402,16 +11410,16 @@ msgstr ""
msgid "Add Part Category"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:49
#: src/tables/part/PartCategoryTemplateTable.tsx:143
#: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:57
#: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:65
#: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter"
msgstr ""
@ -11419,6 +11427,14 @@ msgstr ""
#~ msgid "[{0}]"
#~ msgstr "[{0}]"
#: src/tables/part/PartCategoryTemplateTable.tsx:167
msgid "Part Category Parameters Templates"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:170
msgid "Parts which are created within this category will inherit the default values specified here."
msgstr ""
#: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr ""
#~ msgid "An error occurred while fetching plugin details"
#~ msgstr "An error occurred while fetching plugin details"
#: src/tables/plugin/PluginListTable.tsx:106
#: src/tables/plugin/PluginListTable.tsx:430
#: src/tables/plugin/PluginListTable.tsx:108
#: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory"
msgstr ""
@ -11847,7 +11863,7 @@ msgstr ""
#~ msgid "Plugin with id {id} not found"
#~ msgstr "Plugin with id {id} not found"
#: src/tables/plugin/PluginListTable.tsx:120
#: src/tables/plugin/PluginListTable.tsx:122
msgid "Description not available"
msgstr ""
@ -11869,11 +11885,11 @@ msgstr ""
#~ msgid "Reload"
#~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159
#: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:160
#: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation"
msgstr ""
@ -11881,15 +11897,15 @@ msgstr ""
#~ msgid "Package information"
#~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165
#: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:166
#: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:184
#: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate"
msgstr ""
@ -11897,44 +11913,44 @@ msgstr ""
#~ msgid "Plugin settings"
#~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198
#: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:199
#: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:211
#: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:229
#: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:230
#: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:248
#: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271
#: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:272
#: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated"
msgstr ""
@ -11942,20 +11958,20 @@ msgstr ""
#~ msgid "Install plugin"
#~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285
#: src/tables/plugin/PluginListTable.tsx:377
#: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:298
#: src/tables/plugin/PluginListTable.tsx:300
msgid "Install"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:299
#: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:304
#: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin"
msgstr ""
@ -11963,31 +11979,31 @@ msgstr ""
#~ msgid "This action cannot be undone."
#~ msgstr "This action cannot be undone."
#: src/tables/plugin/PluginListTable.tsx:316
#: src/tables/plugin/PluginListTable.tsx:318
msgid "Confirm plugin uninstall"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:319
#: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled."
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:324
#: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:332
#: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:333
#: src/tables/plugin/PluginListTable.tsx:335
msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:346
#: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:347
#: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully"
msgstr ""
@ -11999,7 +12015,7 @@ msgstr ""
#~ msgid "The following plugin will be deactivated"
#~ msgstr "The following plugin will be deactivated"
#: src/tables/plugin/PluginListTable.tsx:370
#: src/tables/plugin/PluginListTable.tsx:372
msgid "Reload Plugins"
msgstr ""
@ -12015,7 +12031,7 @@ msgstr ""
#~ msgid "Plugin updated"
#~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393
#: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail"
msgstr ""
@ -12023,11 +12039,11 @@ msgstr ""
#~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435
#: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:440
#: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248
msgid "Installed"
msgstr ""
@ -12660,29 +12676,29 @@ msgstr ""
msgid "Add Group"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:37
#: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:43
#: src/tables/settings/ImportSessionTable.tsx:130
#: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:73
#: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:84
#: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:113
#: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:119
#: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: hu\n"
"Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-06-14 02:16\n"
"PO-Revision-Date: 2026-06-17 22:14\n"
"Last-Translator: \n"
"Language-Team: Hungarian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -56,7 +56,7 @@ msgstr "Szerkesztés"
#: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247
#: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete"
msgstr "Törlés"
@ -163,10 +163,10 @@ msgstr "Alkatrész"
#: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137
#: src/pages/part/CategoryDetail.tsx:284
#: src/pages/part/CategoryDetail.tsx:339
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893
msgid "Parts"
msgstr "Alkatrészek"
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr "Paraméterek"
#: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87
#: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template"
msgstr "Paraméter Sablon"
#: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates"
msgstr "Paraméter Sablonok"
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr "Gyártói alkatrészek"
#: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496
msgid "Part Category"
msgstr "Alkatrész kategória"
#: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:372
#: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories"
msgstr "Alkatrész kategóriák"
@ -273,7 +274,7 @@ msgstr "Készlet tétel"
#: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217
#: src/pages/part/CategoryDetail.tsx:313
#: src/pages/part/CategoryDetail.tsx:314
#: src/pages/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr "Tulajdonosok"
#: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44
#: src/tables/settings/ImportSessionTable.tsx:78
#: src/tables/settings/ImportSessionTable.tsx:82
#: src/tables/stock/StockTrackingTable.tsx:237
#: src/tables/stock/StockTrackingTable.tsx:285
msgid "User"
@ -640,7 +641,7 @@ msgstr ""
#: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215
#: src/components/importer/ImporterColumnSelector.tsx:278
#: src/components/importer/ImporterColumnSelector.tsx:330
#: src/components/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr "Egy vagy több mező hibát jelez"
#: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210
#: src/tables/plugin/PluginListTable.tsx:212
msgid "Update"
msgstr "Frissítés"
@ -1982,7 +1983,7 @@ msgstr "Kiszolgáló"
#: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19
#: src/pages/part/CategoryDetail.tsx:93
#: src/pages/part/CategoryDetail.tsx:94
#: src/pages/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr "Szerver"
#: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127
#: src/tables/plugin/PluginListTable.tsx:129
msgid "Version"
msgstr "Verzió"
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr "Adatok feldolgozása"
#: src/components/importer/ImporterColumnSelector.tsx:56
#: src/components/importer/ImporterColumnSelector.tsx:247
#: src/components/importer/ImporterColumnSelector.tsx:299
#: src/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60
#: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr "Válasszon oszlopot vagy hagyja üresen a mező figyelmen kívül hagyá
#~ msgid "Imported Column Name"
#~ msgstr "Imported Column Name"
#: src/components/importer/ImporterColumnSelector.tsx:253
#: src/components/importer/ImporterColumnSelector.tsx:202
msgid "Auto"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:305
msgid "Ignore this field"
msgstr "Figyelmen kívül hagyja ezt a mezőt"
#: src/components/importer/ImporterColumnSelector.tsx:267
#: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields"
msgstr "Adatoszlopok hozzárendelése adatbázis mezőkhöz"
#: src/components/importer/ImporterColumnSelector.tsx:272
#: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping"
msgstr "Oszlop hozzárendelés elfogadása"
#: src/components/importer/ImporterColumnSelector.tsx:285
#: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field"
msgstr "Adatbázismező"
#: src/components/importer/ImporterColumnSelector.tsx:286
#: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description"
msgstr "Mező leírás"
#: src/components/importer/ImporterColumnSelector.tsx:287
#: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column"
msgstr "Importált Oszlop"
#: src/components/importer/ImporterColumnSelector.tsx:288
#: src/components/importer/ImporterColumnSelector.tsx:340
msgid "Lookup Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:341
msgid "Default Value"
msgstr "Alapértelmezett érték"
@ -3131,7 +3140,7 @@ msgstr "Plugin információ"
#: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150
#: src/pages/part/CategoryDetail.tsx:113
#: src/pages/part/CategoryDetail.tsx:114
#: src/pages/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr "Plugin információ"
#: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110
#: src/tables/plugin/PluginListTable.tsx:112
msgid "Description"
msgstr "Leírás"
@ -3172,7 +3181,7 @@ msgstr "Dátum"
#: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96
#: src/tables/plugin/PluginListTable.tsx:420
#: src/tables/plugin/PluginListTable.tsx:422
#: src/tables/purchasing/SupplierPartTable.tsx:139
#: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr "Aktív"
#: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140
#: src/tables/plugin/PluginListTable.tsx:142
msgid "Website"
msgstr "Weboldal"
@ -3198,8 +3207,8 @@ msgstr "Telepítési útvonal"
#: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101
#: src/tables/plugin/PluginListTable.tsx:425
#: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin"
msgstr "Beépített"
@ -3364,7 +3373,7 @@ msgstr "Részletek"
#: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78
#: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category"
msgstr "Kategória"
@ -4823,7 +4832,7 @@ msgstr "Teljesítendő mennyiség"
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95
#: src/tables/settings/ImportSessionTable.tsx:118
#: src/tables/settings/ImportSessionTable.tsx:129
#: src/tables/stock/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status"
@ -4995,7 +5004,7 @@ msgstr "Projekt kód kiválasztása ehhez a sortételhez"
#: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129
#: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr "Egyedi mértékegységek"
#~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters"
msgstr "Kategória paraméterek"
@ -7698,7 +7706,7 @@ msgstr "Rendelés törlése"
#~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94
#: src/pages/part/CategoryDetail.tsx:291
#: src/pages/part/CategoryDetail.tsx:292
#: src/pages/purchasing/PurchasingIndex.tsx:103
#: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr "Naptár nézet"
#: src/pages/build/BuildIndex.tsx:106
#: src/pages/part/CategoryDetail.tsx:305
#: src/pages/part/CategoryDetail.tsx:306
#: src/pages/purchasing/PurchasingIndex.tsx:115
#: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr ""
#~ msgid "Basic user"
#~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105
#: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr ""
msgid "Path"
msgstr "Elérési út"
#: src/pages/part/CategoryDetail.tsx:121
#: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category"
msgstr "Szülő Kategória"
#: src/pages/part/CategoryDetail.tsx:144
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories"
msgstr "Alkategóriák"
#: src/pages/part/CategoryDetail.tsx:151
#: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural"
msgstr "Szerkezeti"
#: src/pages/part/CategoryDetail.tsx:157
#: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location"
msgstr "Szülő alapértelmezett készlethely"
#: src/pages/part/CategoryDetail.tsx:164
#: src/pages/part/CategoryDetail.tsx:165
msgid "Default location"
msgstr "Alapértelmezett hely"
@ -8018,48 +8026,48 @@ msgstr "Alapértelmezett hely"
#~ msgid "Top level part category"
#~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181
#: src/pages/part/CategoryDetail.tsx:249
#: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category"
msgstr "Alkatrész kategória szerkesztése"
#: src/pages/part/CategoryDetail.tsx:190
#: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category"
msgstr "Elemek áthelyezése a szülő kategóriába"
#: src/pages/part/CategoryDetail.tsx:194
#: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items"
msgstr "Tételek törlése"
#: src/pages/part/CategoryDetail.tsx:202
#: src/pages/part/CategoryDetail.tsx:254
#: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category"
msgstr "Alkatrész kategória törlése"
#: src/pages/part/CategoryDetail.tsx:205
#: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action"
msgstr "Alkatrész műveletek"
#: src/pages/part/CategoryDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category"
msgstr "Műveletek az ebben a kategóriában lévő alkatrészekhez"
#: src/pages/part/CategoryDetail.tsx:212
#: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action"
msgstr "Alkategória műveletek"
#: src/pages/part/CategoryDetail.tsx:213
#: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category"
msgstr "Műveletek az ebben a kategóriában lévő alkategóriákhoz"
#: src/pages/part/CategoryDetail.tsx:245
#: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions"
msgstr "Kategória műveletek"
#: src/pages/part/CategoryDetail.tsx:271
#: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details"
msgstr "Kategória részletei"
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr "Biztosan törölni kívánja a kiválasztott tételeket?"
#: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320
#: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone"
msgstr "Ez a művelet nem vonható vissza"
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr "Engedélyezett sablonok megjelenítése"
#: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112
#: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type"
msgstr "Modell típusa"
@ -11402,16 +11410,16 @@ msgstr "Szülő kategória beállítása a kiválasztott tételekhez"
msgid "Add Part Category"
msgstr "Alkatrész kategória hozzáadása"
#: src/tables/part/PartCategoryTemplateTable.tsx:49
#: src/tables/part/PartCategoryTemplateTable.tsx:143
#: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter"
msgstr "Kategória paraméter hozzáadása"
#: src/tables/part/PartCategoryTemplateTable.tsx:57
#: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter"
msgstr "Kategória paraméter szerkesztése"
#: src/tables/part/PartCategoryTemplateTable.tsx:65
#: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter"
msgstr "Kategória paraméter törlése"
@ -11419,6 +11427,14 @@ msgstr "Kategória paraméter törlése"
#~ msgid "[{0}]"
#~ msgstr "[{0}]"
#: src/tables/part/PartCategoryTemplateTable.tsx:167
msgid "Part Category Parameters Templates"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:170
msgid "Parts which are created within this category will inherit the default values specified here."
msgstr ""
#: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr "Plugin"
#~ msgid "An error occurred while fetching plugin details"
#~ msgstr "An error occurred while fetching plugin details"
#: src/tables/plugin/PluginListTable.tsx:106
#: src/tables/plugin/PluginListTable.tsx:430
#: src/tables/plugin/PluginListTable.tsx:108
#: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory"
msgstr "Kötelező"
@ -11847,7 +11863,7 @@ msgstr "Kötelező"
#~ msgid "Plugin with id {id} not found"
#~ msgstr "Plugin with id {id} not found"
#: src/tables/plugin/PluginListTable.tsx:120
#: src/tables/plugin/PluginListTable.tsx:122
msgid "Description not available"
msgstr "Leírás nem elérhető"
@ -11869,11 +11885,11 @@ msgstr "Leírás nem elérhető"
#~ msgid "Reload"
#~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159
#: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation"
msgstr "Plugin telepítésének megerősítése"
#: src/tables/plugin/PluginListTable.tsx:160
#: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation"
msgstr "Plugin kikapcsolásának megerősítése"
@ -11881,15 +11897,15 @@ msgstr "Plugin kikapcsolásának megerősítése"
#~ msgid "Package information"
#~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165
#: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated"
msgstr "A kiválasztott bővítmény aktiválva lesz"
#: src/tables/plugin/PluginListTable.tsx:166
#: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated"
msgstr "A kiválasztott bővítmény deaktiválva lesz"
#: src/tables/plugin/PluginListTable.tsx:184
#: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate"
msgstr "Kikapcsolás"
@ -11897,44 +11913,44 @@ msgstr "Kikapcsolás"
#~ msgid "Plugin settings"
#~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198
#: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate"
msgstr "Bekapcsolás"
#: src/tables/plugin/PluginListTable.tsx:199
#: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin"
msgstr "Kiválasztott bővítmény aktiválása"
#: src/tables/plugin/PluginListTable.tsx:211
#: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin"
msgstr "Kiválasztott bővítmény frissítése"
#: src/tables/plugin/PluginListTable.tsx:229
#: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall"
msgstr "Eltávolítás"
#: src/tables/plugin/PluginListTable.tsx:230
#: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin"
msgstr "Kiválasztott bővítmény eltávolítása"
#: src/tables/plugin/PluginListTable.tsx:248
#: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration"
msgstr "Kiválasztott bővítmény konfiguráció törlése"
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin"
msgstr "Plugin aktiválása"
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271
#: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated"
msgstr "A bővítmény aktiválva lett"
#: src/tables/plugin/PluginListTable.tsx:272
#: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated"
msgstr "A bővítmény deaktiválva lett"
@ -11942,20 +11958,20 @@ msgstr "A bővítmény deaktiválva lett"
#~ msgid "Install plugin"
#~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285
#: src/tables/plugin/PluginListTable.tsx:377
#: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin"
msgstr "Bővítmény telepítése"
#: src/tables/plugin/PluginListTable.tsx:298
#: src/tables/plugin/PluginListTable.tsx:300
msgid "Install"
msgstr "Telepítés"
#: src/tables/plugin/PluginListTable.tsx:299
#: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully"
msgstr "A bővítmény sikeresen telepítve"
#: src/tables/plugin/PluginListTable.tsx:304
#: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin"
msgstr "Bővítmény eltávolítása"
@ -11963,31 +11979,31 @@ msgstr "Bővítmény eltávolítása"
#~ msgid "This action cannot be undone."
#~ msgstr "This action cannot be undone."
#: src/tables/plugin/PluginListTable.tsx:316
#: src/tables/plugin/PluginListTable.tsx:318
msgid "Confirm plugin uninstall"
msgstr "Bővítmény eltávolítás megerősítése"
#: src/tables/plugin/PluginListTable.tsx:319
#: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled."
msgstr "A kiválasztott bővítmény el lesz távolítva."
#: src/tables/plugin/PluginListTable.tsx:324
#: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully"
msgstr "A bővítmény sikeresen eltávolítva"
#: src/tables/plugin/PluginListTable.tsx:332
#: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin"
msgstr "Plugin törlése"
#: src/tables/plugin/PluginListTable.tsx:333
#: src/tables/plugin/PluginListTable.tsx:335
msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr "A bővítmény konfiguráció törlése eltávolít minden beállítást és adatot. Biztos benne, hogy törölni akarja ezt a bővítményt?"
#: src/tables/plugin/PluginListTable.tsx:346
#: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded"
msgstr "Bővítmények újratöltve"
#: src/tables/plugin/PluginListTable.tsx:347
#: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully"
msgstr "Bővítmények újratöltése sikeres"
@ -11999,7 +12015,7 @@ msgstr "Bővítmények újratöltése sikeres"
#~ msgid "The following plugin will be deactivated"
#~ msgstr "The following plugin will be deactivated"
#: src/tables/plugin/PluginListTable.tsx:370
#: src/tables/plugin/PluginListTable.tsx:372
msgid "Reload Plugins"
msgstr "Bővítmények újratöltése"
@ -12015,7 +12031,7 @@ msgstr "Bővítmények újratöltése"
#~ msgid "Plugin updated"
#~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393
#: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail"
msgstr "Bővítmény részletek"
@ -12023,11 +12039,11 @@ msgstr "Bővítmény részletek"
#~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435
#: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample"
msgstr "Minta"
#: src/tables/plugin/PluginListTable.tsx:440
#: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248
msgid "Installed"
msgstr "Telepítve"
@ -12660,29 +12676,29 @@ msgstr "Csoport szerkesztése"
msgid "Add Group"
msgstr "Csoport hozzáadása"
#: src/tables/settings/ImportSessionTable.tsx:37
#: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session"
msgstr "Import munkamenet törlése"
#: src/tables/settings/ImportSessionTable.tsx:43
#: src/tables/settings/ImportSessionTable.tsx:130
#: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session"
msgstr "Import munkamenet létrehozása"
#: src/tables/settings/ImportSessionTable.tsx:73
#: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded"
msgstr "Feltöltve"
#: src/tables/settings/ImportSessionTable.tsx:84
#: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows"
msgstr "Importált sorok"
#: src/tables/settings/ImportSessionTable.tsx:113
#: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type"
msgstr "Szűrés cél modell típus szerint"
#: src/tables/settings/ImportSessionTable.tsx:119
#: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status"
msgstr "Szűrés import munkamenet státusz szerint"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: id\n"
"Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-06-14 02:16\n"
"PO-Revision-Date: 2026-06-17 22:14\n"
"Last-Translator: \n"
"Language-Team: Indonesian\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@ -56,7 +56,7 @@ msgstr "Sunting"
#: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247
#: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete"
msgstr "Hapus"
@ -163,10 +163,10 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137
#: src/pages/part/CategoryDetail.tsx:284
#: src/pages/part/CategoryDetail.tsx:339
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893
msgid "Parts"
msgstr ""
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr ""
#: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87
#: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template"
msgstr ""
#: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates"
msgstr ""
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr ""
#: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496
msgid "Part Category"
msgstr ""
#: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:372
#: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories"
msgstr ""
@ -273,7 +274,7 @@ msgstr ""
#: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217
#: src/pages/part/CategoryDetail.tsx:313
#: src/pages/part/CategoryDetail.tsx:314
#: src/pages/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr "Pemilik"
#: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44
#: src/tables/settings/ImportSessionTable.tsx:78
#: src/tables/settings/ImportSessionTable.tsx:82
#: src/tables/stock/StockTrackingTable.tsx:237
#: src/tables/stock/StockTrackingTable.tsx:285
msgid "User"
@ -640,7 +641,7 @@ msgstr ""
#: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215
#: src/components/importer/ImporterColumnSelector.tsx:278
#: src/components/importer/ImporterColumnSelector.tsx:330
#: src/components/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr ""
#: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210
#: src/tables/plugin/PluginListTable.tsx:212
msgid "Update"
msgstr "Pembaruan"
@ -1982,7 +1983,7 @@ msgstr ""
#: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19
#: src/pages/part/CategoryDetail.tsx:93
#: src/pages/part/CategoryDetail.tsx:94
#: src/pages/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr ""
#: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127
#: src/tables/plugin/PluginListTable.tsx:129
msgid "Version"
msgstr "Versi"
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:56
#: src/components/importer/ImporterColumnSelector.tsx:247
#: src/components/importer/ImporterColumnSelector.tsx:299
#: src/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60
#: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr ""
#~ msgid "Imported Column Name"
#~ msgstr "Imported Column Name"
#: src/components/importer/ImporterColumnSelector.tsx:253
#: src/components/importer/ImporterColumnSelector.tsx:202
msgid "Auto"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:305
msgid "Ignore this field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:267
#: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:272
#: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:285
#: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:286
#: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:287
#: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:288
#: src/components/importer/ImporterColumnSelector.tsx:340
msgid "Lookup Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:341
msgid "Default Value"
msgstr ""
@ -3131,7 +3140,7 @@ msgstr ""
#: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150
#: src/pages/part/CategoryDetail.tsx:113
#: src/pages/part/CategoryDetail.tsx:114
#: src/pages/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr ""
#: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110
#: src/tables/plugin/PluginListTable.tsx:112
msgid "Description"
msgstr ""
@ -3172,7 +3181,7 @@ msgstr ""
#: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96
#: src/tables/plugin/PluginListTable.tsx:420
#: src/tables/plugin/PluginListTable.tsx:422
#: src/tables/purchasing/SupplierPartTable.tsx:139
#: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr "Aktif"
#: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140
#: src/tables/plugin/PluginListTable.tsx:142
msgid "Website"
msgstr "Laman"
@ -3198,8 +3207,8 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101
#: src/tables/plugin/PluginListTable.tsx:425
#: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin"
msgstr ""
@ -3364,7 +3373,7 @@ msgstr "Rincian"
#: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78
#: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category"
msgstr ""
@ -4823,7 +4832,7 @@ msgstr ""
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95
#: src/tables/settings/ImportSessionTable.tsx:118
#: src/tables/settings/ImportSessionTable.tsx:129
#: src/tables/stock/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status"
@ -4995,7 +5004,7 @@ msgstr ""
#: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129
#: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr ""
#~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters"
msgstr ""
@ -7698,7 +7706,7 @@ msgstr ""
#~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94
#: src/pages/part/CategoryDetail.tsx:291
#: src/pages/part/CategoryDetail.tsx:292
#: src/pages/purchasing/PurchasingIndex.tsx:103
#: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr ""
#: src/pages/build/BuildIndex.tsx:106
#: src/pages/part/CategoryDetail.tsx:305
#: src/pages/part/CategoryDetail.tsx:306
#: src/pages/purchasing/PurchasingIndex.tsx:115
#: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr ""
#~ msgid "Basic user"
#~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105
#: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr ""
msgid "Path"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:121
#: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:144
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:151
#: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:157
#: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:164
#: src/pages/part/CategoryDetail.tsx:165
msgid "Default location"
msgstr ""
@ -8018,48 +8026,48 @@ msgstr ""
#~ msgid "Top level part category"
#~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181
#: src/pages/part/CategoryDetail.tsx:249
#: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:190
#: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:194
#: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:202
#: src/pages/part/CategoryDetail.tsx:254
#: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:205
#: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:212
#: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:213
#: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:245
#: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:271
#: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details"
msgstr ""
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr ""
#: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320
#: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone"
msgstr ""
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr ""
#: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112
#: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type"
msgstr ""
@ -11402,16 +11410,16 @@ msgstr ""
msgid "Add Part Category"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:49
#: src/tables/part/PartCategoryTemplateTable.tsx:143
#: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:57
#: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:65
#: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter"
msgstr ""
@ -11419,6 +11427,14 @@ msgstr ""
#~ msgid "[{0}]"
#~ msgstr "[{0}]"
#: src/tables/part/PartCategoryTemplateTable.tsx:167
msgid "Part Category Parameters Templates"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:170
msgid "Parts which are created within this category will inherit the default values specified here."
msgstr ""
#: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr ""
#~ msgid "An error occurred while fetching plugin details"
#~ msgstr "An error occurred while fetching plugin details"
#: src/tables/plugin/PluginListTable.tsx:106
#: src/tables/plugin/PluginListTable.tsx:430
#: src/tables/plugin/PluginListTable.tsx:108
#: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory"
msgstr ""
@ -11847,7 +11863,7 @@ msgstr ""
#~ msgid "Plugin with id {id} not found"
#~ msgstr "Plugin with id {id} not found"
#: src/tables/plugin/PluginListTable.tsx:120
#: src/tables/plugin/PluginListTable.tsx:122
msgid "Description not available"
msgstr ""
@ -11869,11 +11885,11 @@ msgstr ""
#~ msgid "Reload"
#~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159
#: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:160
#: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation"
msgstr ""
@ -11881,15 +11897,15 @@ msgstr ""
#~ msgid "Package information"
#~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165
#: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:166
#: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:184
#: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate"
msgstr ""
@ -11897,44 +11913,44 @@ msgstr ""
#~ msgid "Plugin settings"
#~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198
#: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:199
#: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:211
#: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:229
#: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:230
#: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:248
#: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271
#: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:272
#: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated"
msgstr ""
@ -11942,20 +11958,20 @@ msgstr ""
#~ msgid "Install plugin"
#~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285
#: src/tables/plugin/PluginListTable.tsx:377
#: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:298
#: src/tables/plugin/PluginListTable.tsx:300
msgid "Install"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:299
#: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:304
#: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin"
msgstr ""
@ -11963,31 +11979,31 @@ msgstr ""
#~ msgid "This action cannot be undone."
#~ msgstr "This action cannot be undone."
#: src/tables/plugin/PluginListTable.tsx:316
#: src/tables/plugin/PluginListTable.tsx:318
msgid "Confirm plugin uninstall"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:319
#: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled."
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:324
#: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:332
#: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:333
#: src/tables/plugin/PluginListTable.tsx:335
msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:346
#: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:347
#: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully"
msgstr ""
@ -11999,7 +12015,7 @@ msgstr ""
#~ msgid "The following plugin will be deactivated"
#~ msgstr "The following plugin will be deactivated"
#: src/tables/plugin/PluginListTable.tsx:370
#: src/tables/plugin/PluginListTable.tsx:372
msgid "Reload Plugins"
msgstr ""
@ -12015,7 +12031,7 @@ msgstr ""
#~ msgid "Plugin updated"
#~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393
#: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail"
msgstr ""
@ -12023,11 +12039,11 @@ msgstr ""
#~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435
#: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:440
#: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248
msgid "Installed"
msgstr ""
@ -12660,29 +12676,29 @@ msgstr ""
msgid "Add Group"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:37
#: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:43
#: src/tables/settings/ImportSessionTable.tsx:130
#: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:73
#: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:84
#: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:113
#: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:119
#: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: it\n"
"Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-06-14 02:16\n"
"PO-Revision-Date: 2026-06-17 22:14\n"
"Last-Translator: \n"
"Language-Team: Italian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -56,7 +56,7 @@ msgstr "Modifica"
#: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247
#: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete"
msgstr "Elimina"
@ -163,10 +163,10 @@ msgstr "Articolo"
#: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137
#: src/pages/part/CategoryDetail.tsx:284
#: src/pages/part/CategoryDetail.tsx:339
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893
msgid "Parts"
msgstr "Articoli"
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr "Parametri"
#: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87
#: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template"
msgstr "Modello Parametro"
#: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates"
msgstr "Modelli parametro"
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr "Articoli Produttore"
#: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496
msgid "Part Category"
msgstr "Categoria Articolo"
#: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:372
#: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories"
msgstr "Categorie Articolo"
@ -273,7 +274,7 @@ msgstr "Articolo in magazzino"
#: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217
#: src/pages/part/CategoryDetail.tsx:313
#: src/pages/part/CategoryDetail.tsx:314
#: src/pages/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr "Proprietari"
#: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44
#: src/tables/settings/ImportSessionTable.tsx:78
#: src/tables/settings/ImportSessionTable.tsx:82
#: src/tables/stock/StockTrackingTable.tsx:237
#: src/tables/stock/StockTrackingTable.tsx:285
msgid "User"
@ -640,7 +641,7 @@ msgstr ""
#: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215
#: src/components/importer/ImporterColumnSelector.tsx:278
#: src/components/importer/ImporterColumnSelector.tsx:330
#: src/components/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr "Esistono errori per uno o più campi del modulo"
#: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210
#: src/tables/plugin/PluginListTable.tsx:212
msgid "Update"
msgstr "Aggiorna"
@ -1982,7 +1983,7 @@ msgstr "Host"
#: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19
#: src/pages/part/CategoryDetail.tsx:93
#: src/pages/part/CategoryDetail.tsx:94
#: src/pages/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr "Server"
#: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127
#: src/tables/plugin/PluginListTable.tsx:129
msgid "Version"
msgstr "Versione"
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr "Elaborazione dati"
#: src/components/importer/ImporterColumnSelector.tsx:56
#: src/components/importer/ImporterColumnSelector.tsx:247
#: src/components/importer/ImporterColumnSelector.tsx:299
#: src/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60
#: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr "Seleziona la colonna o lascia vuoto per ignorare questo campo."
#~ msgid "Imported Column Name"
#~ msgstr "Imported Column Name"
#: src/components/importer/ImporterColumnSelector.tsx:253
#: src/components/importer/ImporterColumnSelector.tsx:202
msgid "Auto"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:305
msgid "Ignore this field"
msgstr "Ignora questo campo"
#: src/components/importer/ImporterColumnSelector.tsx:267
#: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields"
msgstr "Mappatura colonne di dati ai campi del database"
#: src/components/importer/ImporterColumnSelector.tsx:272
#: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping"
msgstr "Accetta Mappatura Colonna"
#: src/components/importer/ImporterColumnSelector.tsx:285
#: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field"
msgstr "Campo Database"
#: src/components/importer/ImporterColumnSelector.tsx:286
#: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description"
msgstr "Campo descrizione"
#: src/components/importer/ImporterColumnSelector.tsx:287
#: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column"
msgstr "Colonna Importata"
#: src/components/importer/ImporterColumnSelector.tsx:288
#: src/components/importer/ImporterColumnSelector.tsx:340
msgid "Lookup Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:341
msgid "Default Value"
msgstr "Valore Predefinito"
@ -3131,7 +3140,7 @@ msgstr "Informazioni Plugin"
#: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150
#: src/pages/part/CategoryDetail.tsx:113
#: src/pages/part/CategoryDetail.tsx:114
#: src/pages/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr "Informazioni Plugin"
#: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110
#: src/tables/plugin/PluginListTable.tsx:112
msgid "Description"
msgstr "Descrizione"
@ -3172,7 +3181,7 @@ msgstr "Data"
#: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96
#: src/tables/plugin/PluginListTable.tsx:420
#: src/tables/plugin/PluginListTable.tsx:422
#: src/tables/purchasing/SupplierPartTable.tsx:139
#: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr "Attivo"
#: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140
#: src/tables/plugin/PluginListTable.tsx:142
msgid "Website"
msgstr "Sito Web"
@ -3198,8 +3207,8 @@ msgstr "Percorso d'installazione"
#: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101
#: src/tables/plugin/PluginListTable.tsx:425
#: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin"
msgstr "Integrato"
@ -3364,7 +3373,7 @@ msgstr "Dettagli"
#: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78
#: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category"
msgstr "Categoria"
@ -4823,7 +4832,7 @@ msgstr "Quantità da completare"
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95
#: src/tables/settings/ImportSessionTable.tsx:118
#: src/tables/settings/ImportSessionTable.tsx:129
#: src/tables/stock/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status"
@ -4995,7 +5004,7 @@ msgstr "Seleziona il codice progetto per questa voce di riga"
#: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129
#: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr "Unità Personalizzate"
#~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters"
msgstr "Parametri Categoria"
@ -7698,7 +7706,7 @@ msgstr "Annulla ordine"
#~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94
#: src/pages/part/CategoryDetail.tsx:291
#: src/pages/part/CategoryDetail.tsx:292
#: src/pages/purchasing/PurchasingIndex.tsx:103
#: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr "Visualizzazione calendario"
#: src/pages/build/BuildIndex.tsx:106
#: src/pages/part/CategoryDetail.tsx:305
#: src/pages/part/CategoryDetail.tsx:306
#: src/pages/purchasing/PurchasingIndex.tsx:115
#: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr ""
#~ msgid "Basic user"
#~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105
#: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr ""
msgid "Path"
msgstr "Percorso"
#: src/pages/part/CategoryDetail.tsx:121
#: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category"
msgstr "Categoria Superiore"
#: src/pages/part/CategoryDetail.tsx:144
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories"
msgstr "Sottocategorie"
#: src/pages/part/CategoryDetail.tsx:151
#: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural"
msgstr "Struttura"
#: src/pages/part/CategoryDetail.tsx:157
#: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location"
msgstr "Posizione predefinita superiore"
#: src/pages/part/CategoryDetail.tsx:164
#: src/pages/part/CategoryDetail.tsx:165
msgid "Default location"
msgstr "Posizione predefinita"
@ -8018,48 +8026,48 @@ msgstr "Posizione predefinita"
#~ msgid "Top level part category"
#~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181
#: src/pages/part/CategoryDetail.tsx:249
#: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category"
msgstr "Modifica Categoria Articoli"
#: src/pages/part/CategoryDetail.tsx:190
#: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category"
msgstr "Sposta articoli nella categoria superiore"
#: src/pages/part/CategoryDetail.tsx:194
#: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items"
msgstr "Elimina articoli"
#: src/pages/part/CategoryDetail.tsx:202
#: src/pages/part/CategoryDetail.tsx:254
#: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category"
msgstr "Elimina categoria articolo"
#: src/pages/part/CategoryDetail.tsx:205
#: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action"
msgstr "Azioni articolo"
#: src/pages/part/CategoryDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category"
msgstr "Azione articoli in questa categoria"
#: src/pages/part/CategoryDetail.tsx:212
#: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action"
msgstr "Azione Categorie Figlio"
#: src/pages/part/CategoryDetail.tsx:213
#: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category"
msgstr "Azione per categorie figli in questa categoria"
#: src/pages/part/CategoryDetail.tsx:245
#: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions"
msgstr "Azioni Categoria"
#: src/pages/part/CategoryDetail.tsx:271
#: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details"
msgstr "Dettagli categoria"
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr "Sei sicuro di voler eliminare gli elementi selezionati?"
#: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320
#: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone"
msgstr "Questa azione non può essere annullata"
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr "Mostra modelli abilitati"
#: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112
#: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type"
msgstr "Tipo Modello"
@ -11402,16 +11410,16 @@ msgstr "Imposta la categoria superiore per gli elementi selezionati"
msgid "Add Part Category"
msgstr "Aggiungi Categoria Articolo"
#: src/tables/part/PartCategoryTemplateTable.tsx:49
#: src/tables/part/PartCategoryTemplateTable.tsx:143
#: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter"
msgstr "Aggiungi Parametro Categoria"
#: src/tables/part/PartCategoryTemplateTable.tsx:57
#: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter"
msgstr "Modifica Parametro Categoria"
#: src/tables/part/PartCategoryTemplateTable.tsx:65
#: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter"
msgstr "Elimina Parametro Categoria"
@ -11419,6 +11427,14 @@ msgstr "Elimina Parametro Categoria"
#~ msgid "[{0}]"
#~ msgstr "[{0}]"
#: src/tables/part/PartCategoryTemplateTable.tsx:167
msgid "Part Category Parameters Templates"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:170
msgid "Parts which are created within this category will inherit the default values specified here."
msgstr ""
#: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr "Plugin"
#~ msgid "An error occurred while fetching plugin details"
#~ msgstr "An error occurred while fetching plugin details"
#: src/tables/plugin/PluginListTable.tsx:106
#: src/tables/plugin/PluginListTable.tsx:430
#: src/tables/plugin/PluginListTable.tsx:108
#: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory"
msgstr "Obbligatorio"
@ -11847,7 +11863,7 @@ msgstr "Obbligatorio"
#~ msgid "Plugin with id {id} not found"
#~ msgstr "Plugin with id {id} not found"
#: src/tables/plugin/PluginListTable.tsx:120
#: src/tables/plugin/PluginListTable.tsx:122
msgid "Description not available"
msgstr "Descrizione non disponibile"
@ -11869,11 +11885,11 @@ msgstr "Descrizione non disponibile"
#~ msgid "Reload"
#~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159
#: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation"
msgstr "Conferma attivazione plugin"
#: src/tables/plugin/PluginListTable.tsx:160
#: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation"
msgstr "Conferma disattivazione plugin"
@ -11881,15 +11897,15 @@ msgstr "Conferma disattivazione plugin"
#~ msgid "Package information"
#~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165
#: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated"
msgstr "Il plugin selezionato verrà attivato"
#: src/tables/plugin/PluginListTable.tsx:166
#: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated"
msgstr "Il plugin selezionato verrà disattivato"
#: src/tables/plugin/PluginListTable.tsx:184
#: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate"
msgstr "Disattiva"
@ -11897,44 +11913,44 @@ msgstr "Disattiva"
#~ msgid "Plugin settings"
#~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198
#: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate"
msgstr "Attiva"
#: src/tables/plugin/PluginListTable.tsx:199
#: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin"
msgstr "Attiva plugin selezionato"
#: src/tables/plugin/PluginListTable.tsx:211
#: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin"
msgstr "Aggiorna il plugin selezionato"
#: src/tables/plugin/PluginListTable.tsx:229
#: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall"
msgstr "Disinstalla"
#: src/tables/plugin/PluginListTable.tsx:230
#: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin"
msgstr "Disinstallare il plugin selezionato"
#: src/tables/plugin/PluginListTable.tsx:248
#: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration"
msgstr "Elimina la configurazione del plugin selezionata"
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin"
msgstr "Attiva Plugin"
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271
#: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated"
msgstr "Il plugin è stato attivato"
#: src/tables/plugin/PluginListTable.tsx:272
#: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated"
msgstr "Il plugin è stato disattivato"
@ -11942,20 +11958,20 @@ msgstr "Il plugin è stato disattivato"
#~ msgid "Install plugin"
#~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285
#: src/tables/plugin/PluginListTable.tsx:377
#: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin"
msgstr "Installa Plugin"
#: src/tables/plugin/PluginListTable.tsx:298
#: src/tables/plugin/PluginListTable.tsx:300
msgid "Install"
msgstr "Installa"
#: src/tables/plugin/PluginListTable.tsx:299
#: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully"
msgstr "Plugin installato con successo"
#: src/tables/plugin/PluginListTable.tsx:304
#: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin"
msgstr "Disinstalla plugin"
@ -11963,31 +11979,31 @@ msgstr "Disinstalla plugin"
#~ msgid "This action cannot be undone."
#~ msgstr "This action cannot be undone."
#: src/tables/plugin/PluginListTable.tsx:316
#: src/tables/plugin/PluginListTable.tsx:318
msgid "Confirm plugin uninstall"
msgstr "Conferma disinstallazione plugin"
#: src/tables/plugin/PluginListTable.tsx:319
#: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled."
msgstr "Il plugin selezionato verrà disinstallato."
#: src/tables/plugin/PluginListTable.tsx:324
#: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully"
msgstr "Plugin disinstallato con successo"
#: src/tables/plugin/PluginListTable.tsx:332
#: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin"
msgstr "Elimina Plugin"
#: src/tables/plugin/PluginListTable.tsx:333
#: src/tables/plugin/PluginListTable.tsx:335
msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr "L'eliminazione di questa configurazione del plugin rimuoverà tutte le impostazioni e i dati associati. Sei sicuro di voler eliminare questo plugin?"
#: src/tables/plugin/PluginListTable.tsx:346
#: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded"
msgstr "Plugin ricaricati"
#: src/tables/plugin/PluginListTable.tsx:347
#: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully"
msgstr "I plugin sono stati ricaricati correttamente"
@ -11999,7 +12015,7 @@ msgstr "I plugin sono stati ricaricati correttamente"
#~ msgid "The following plugin will be deactivated"
#~ msgstr "The following plugin will be deactivated"
#: src/tables/plugin/PluginListTable.tsx:370
#: src/tables/plugin/PluginListTable.tsx:372
msgid "Reload Plugins"
msgstr "Ricarica i Plugin"
@ -12015,7 +12031,7 @@ msgstr "Ricarica i Plugin"
#~ msgid "Plugin updated"
#~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393
#: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail"
msgstr "Dettagli Plugin"
@ -12023,11 +12039,11 @@ msgstr "Dettagli Plugin"
#~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435
#: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample"
msgstr "Esempio"
#: src/tables/plugin/PluginListTable.tsx:440
#: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248
msgid "Installed"
msgstr "Installato"
@ -12660,29 +12676,29 @@ msgstr "Modifica Gruppo"
msgid "Add Group"
msgstr "Aggiungi Gruppo"
#: src/tables/settings/ImportSessionTable.tsx:37
#: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session"
msgstr "Elimina Sessione d'Importazione"
#: src/tables/settings/ImportSessionTable.tsx:43
#: src/tables/settings/ImportSessionTable.tsx:130
#: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session"
msgstr "Crea Sessione d'Importazione"
#: src/tables/settings/ImportSessionTable.tsx:73
#: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded"
msgstr "Caricato"
#: src/tables/settings/ImportSessionTable.tsx:84
#: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows"
msgstr "Riga importate"
#: src/tables/settings/ImportSessionTable.tsx:113
#: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type"
msgstr "Filtra per tipo di modello di destinazione"
#: src/tables/settings/ImportSessionTable.tsx:119
#: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status"
msgstr "Filtra per stato della sessione d'importazione"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ja\n"
"Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-06-14 02:16\n"
"PO-Revision-Date: 2026-06-17 22:14\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@ -56,7 +56,7 @@ msgstr "編集"
#: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247
#: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete"
msgstr "削除"
@ -163,10 +163,10 @@ msgstr "パーツ"
#: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137
#: src/pages/part/CategoryDetail.tsx:284
#: src/pages/part/CategoryDetail.tsx:339
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893
msgid "Parts"
msgstr "パーツ"
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr "パラメータ"
#: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87
#: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template"
msgstr "パラメータテンプレート"
#: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates"
msgstr "パラメータテンプレート"
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr "メーカー・パーツ"
#: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496
msgid "Part Category"
msgstr "パーツカテゴリ"
#: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:372
#: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories"
msgstr "パーツカテゴリ"
@ -273,7 +274,7 @@ msgstr "在庫商品"
#: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217
#: src/pages/part/CategoryDetail.tsx:313
#: src/pages/part/CategoryDetail.tsx:314
#: src/pages/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr "所有者"
#: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44
#: src/tables/settings/ImportSessionTable.tsx:78
#: src/tables/settings/ImportSessionTable.tsx:82
#: src/tables/stock/StockTrackingTable.tsx:237
#: src/tables/stock/StockTrackingTable.tsx:285
msgid "User"
@ -640,7 +641,7 @@ msgstr "選択エントリ"
#: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215
#: src/components/importer/ImporterColumnSelector.tsx:278
#: src/components/importer/ImporterColumnSelector.tsx:330
#: src/components/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr "1つ以上のフォームフィールドにエラーがあります"
#: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210
#: src/tables/plugin/PluginListTable.tsx:212
msgid "Update"
msgstr "更新"
@ -1982,7 +1983,7 @@ msgstr "ホスト"
#: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19
#: src/pages/part/CategoryDetail.tsx:93
#: src/pages/part/CategoryDetail.tsx:94
#: src/pages/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr "サーバー"
#: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127
#: src/tables/plugin/PluginListTable.tsx:129
msgid "Version"
msgstr "バージョン"
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr "加工データ"
#: src/components/importer/ImporterColumnSelector.tsx:56
#: src/components/importer/ImporterColumnSelector.tsx:247
#: src/components/importer/ImporterColumnSelector.tsx:299
#: src/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60
#: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr "列を選択するか、このフィールドを無視する場合は空
#~ msgid "Imported Column Name"
#~ msgstr "Imported Column Name"
#: src/components/importer/ImporterColumnSelector.tsx:253
#: src/components/importer/ImporterColumnSelector.tsx:202
msgid "Auto"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:305
msgid "Ignore this field"
msgstr "このフィールドを無視する"
#: src/components/importer/ImporterColumnSelector.tsx:267
#: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields"
msgstr "データ・カラムとデータベース・フィールドのマッピング"
#: src/components/importer/ImporterColumnSelector.tsx:272
#: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping"
msgstr "カラムマッピングの受け入れ"
#: src/components/importer/ImporterColumnSelector.tsx:285
#: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field"
msgstr "データベース・フィールド"
#: src/components/importer/ImporterColumnSelector.tsx:286
#: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description"
msgstr "フィールドの説明"
#: src/components/importer/ImporterColumnSelector.tsx:287
#: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column"
msgstr "インポートされた列"
#: src/components/importer/ImporterColumnSelector.tsx:288
#: src/components/importer/ImporterColumnSelector.tsx:340
msgid "Lookup Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:341
msgid "Default Value"
msgstr "初期値"
@ -3131,7 +3140,7 @@ msgstr "プラグイン情報"
#: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150
#: src/pages/part/CategoryDetail.tsx:113
#: src/pages/part/CategoryDetail.tsx:114
#: src/pages/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr "プラグイン情報"
#: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110
#: src/tables/plugin/PluginListTable.tsx:112
msgid "Description"
msgstr "説明"
@ -3172,7 +3181,7 @@ msgstr "日付"
#: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96
#: src/tables/plugin/PluginListTable.tsx:420
#: src/tables/plugin/PluginListTable.tsx:422
#: src/tables/purchasing/SupplierPartTable.tsx:139
#: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr "有効"
#: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140
#: src/tables/plugin/PluginListTable.tsx:142
msgid "Website"
msgstr "ウェブサイト"
@ -3198,8 +3207,8 @@ msgstr "設置経路"
#: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101
#: src/tables/plugin/PluginListTable.tsx:425
#: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin"
msgstr "組み込み"
@ -3364,7 +3373,7 @@ msgstr "詳細"
#: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78
#: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category"
msgstr "カテゴリ"
@ -4823,7 +4832,7 @@ msgstr "完了数量"
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95
#: src/tables/settings/ImportSessionTable.tsx:118
#: src/tables/settings/ImportSessionTable.tsx:129
#: src/tables/stock/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status"
@ -4995,7 +5004,7 @@ msgstr "この明細行のプロジェクトコードを選択してください
#: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129
#: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr "カスタム単位"
#~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters"
msgstr "カテゴリー・パラメーター"
@ -7698,7 +7706,7 @@ msgstr "お見積をキャンセル"
#~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94
#: src/pages/part/CategoryDetail.tsx:291
#: src/pages/part/CategoryDetail.tsx:292
#: src/pages/purchasing/PurchasingIndex.tsx:103
#: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr "カレンダービュー"
#: src/pages/build/BuildIndex.tsx:106
#: src/pages/part/CategoryDetail.tsx:305
#: src/pages/part/CategoryDetail.tsx:306
#: src/pages/purchasing/PurchasingIndex.tsx:115
#: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr "一般ユーザー"
#~ msgid "Basic user"
#~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105
#: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr "一般ユーザー"
msgid "Path"
msgstr "パス"
#: src/pages/part/CategoryDetail.tsx:121
#: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category"
msgstr "親カテゴリ"
#: src/pages/part/CategoryDetail.tsx:144
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories"
msgstr "サブカテゴリ"
#: src/pages/part/CategoryDetail.tsx:151
#: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural"
msgstr "構造に関するパターン"
#: src/pages/part/CategoryDetail.tsx:157
#: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location"
msgstr "親のデフォルトの場所"
#: src/pages/part/CategoryDetail.tsx:164
#: src/pages/part/CategoryDetail.tsx:165
msgid "Default location"
msgstr "デフォルトの場所"
@ -8018,48 +8026,48 @@ msgstr "デフォルトの場所"
#~ msgid "Top level part category"
#~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181
#: src/pages/part/CategoryDetail.tsx:249
#: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category"
msgstr "部品カテゴリーの編集"
#: src/pages/part/CategoryDetail.tsx:190
#: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category"
msgstr "項目を親カテゴリに移動"
#: src/pages/part/CategoryDetail.tsx:194
#: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items"
msgstr "アイテムの削除"
#: src/pages/part/CategoryDetail.tsx:202
#: src/pages/part/CategoryDetail.tsx:254
#: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category"
msgstr "部品カテゴリの削除"
#: src/pages/part/CategoryDetail.tsx:205
#: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action"
msgstr "パーツアクション"
#: src/pages/part/CategoryDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category"
msgstr "このカテゴリの部品のアクション"
#: src/pages/part/CategoryDetail.tsx:212
#: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action"
msgstr "チャイルド・カテゴリー・アクション"
#: src/pages/part/CategoryDetail.tsx:213
#: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category"
msgstr "このカテゴリーに含まれる子どもの行動"
#: src/pages/part/CategoryDetail.tsx:245
#: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions"
msgstr "カテゴリー・アクション"
#: src/pages/part/CategoryDetail.tsx:271
#: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details"
msgstr "カテゴリー詳細"
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr "選択したアイテムを削除しますか?"
#: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320
#: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone"
msgstr "この操作は元に戻せません。"
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr "有効なテンプレートを表示します"
#: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112
#: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type"
msgstr "モデルタイプ"
@ -11402,16 +11410,16 @@ msgstr "選択されたアイテムの親カテゴリーを設定"
msgid "Add Part Category"
msgstr "部品カテゴリの追加"
#: src/tables/part/PartCategoryTemplateTable.tsx:49
#: src/tables/part/PartCategoryTemplateTable.tsx:143
#: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter"
msgstr "カテゴリーパラメーターの追加"
#: src/tables/part/PartCategoryTemplateTable.tsx:57
#: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter"
msgstr "カテゴリー・パラメーターの編集"
#: src/tables/part/PartCategoryTemplateTable.tsx:65
#: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter"
msgstr "カテゴリー・パラメーターの削除"
@ -11419,6 +11427,14 @@ msgstr "カテゴリー・パラメーターの削除"
#~ msgid "[{0}]"
#~ msgstr "[{0}]"
#: src/tables/part/PartCategoryTemplateTable.tsx:167
msgid "Part Category Parameters Templates"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:170
msgid "Parts which are created within this category will inherit the default values specified here."
msgstr ""
#: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr "プラグイン"
#~ msgid "An error occurred while fetching plugin details"
#~ msgstr "An error occurred while fetching plugin details"
#: src/tables/plugin/PluginListTable.tsx:106
#: src/tables/plugin/PluginListTable.tsx:430
#: src/tables/plugin/PluginListTable.tsx:108
#: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory"
msgstr "必須"
@ -11847,7 +11863,7 @@ msgstr "必須"
#~ msgid "Plugin with id {id} not found"
#~ msgstr "Plugin with id {id} not found"
#: src/tables/plugin/PluginListTable.tsx:120
#: src/tables/plugin/PluginListTable.tsx:122
msgid "Description not available"
msgstr "詳細不明"
@ -11869,11 +11885,11 @@ msgstr "詳細不明"
#~ msgid "Reload"
#~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159
#: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation"
msgstr "プラグイン有効化の確認"
#: src/tables/plugin/PluginListTable.tsx:160
#: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation"
msgstr "プラグイン無効化の確認"
@ -11881,15 +11897,15 @@ msgstr "プラグイン無効化の確認"
#~ msgid "Package information"
#~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165
#: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated"
msgstr "選択したプラグインが有効になります。"
#: src/tables/plugin/PluginListTable.tsx:166
#: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated"
msgstr "選択したプラグインは無効化されます。"
#: src/tables/plugin/PluginListTable.tsx:184
#: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate"
msgstr "無効化する"
@ -11897,44 +11913,44 @@ msgstr "無効化する"
#~ msgid "Plugin settings"
#~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198
#: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate"
msgstr "有効化"
#: src/tables/plugin/PluginListTable.tsx:199
#: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin"
msgstr "選択したプラグインを有効化"
#: src/tables/plugin/PluginListTable.tsx:211
#: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin"
msgstr "選択したプラグインを更新"
#: src/tables/plugin/PluginListTable.tsx:229
#: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall"
msgstr "アンインストール"
#: src/tables/plugin/PluginListTable.tsx:230
#: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin"
msgstr "選択したプラグインをアンインストール"
#: src/tables/plugin/PluginListTable.tsx:248
#: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration"
msgstr "選択したプラグイン設定を削除"
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin"
msgstr "プラグインを有効化"
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271
#: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated"
msgstr "プラグインが有効化されました"
#: src/tables/plugin/PluginListTable.tsx:272
#: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated"
msgstr "プラグインが無効化されました"
@ -11942,20 +11958,20 @@ msgstr "プラグインが無効化されました"
#~ msgid "Install plugin"
#~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285
#: src/tables/plugin/PluginListTable.tsx:377
#: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin"
msgstr "プラグインをインストール"
#: src/tables/plugin/PluginListTable.tsx:298
#: src/tables/plugin/PluginListTable.tsx:300
msgid "Install"
msgstr "インストール"
#: src/tables/plugin/PluginListTable.tsx:299
#: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully"
msgstr "プラグインは正常にインストールされました"
#: src/tables/plugin/PluginListTable.tsx:304
#: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin"
msgstr "プラグインをアンインストールする"
@ -11963,31 +11979,31 @@ msgstr "プラグインをアンインストールする"
#~ msgid "This action cannot be undone."
#~ msgstr "This action cannot be undone."
#: src/tables/plugin/PluginListTable.tsx:316
#: src/tables/plugin/PluginListTable.tsx:318
msgid "Confirm plugin uninstall"
msgstr "プラグインのアンインストールを確認"
#: src/tables/plugin/PluginListTable.tsx:319
#: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled."
msgstr "選択したプラグインがアンインストールされます。"
#: src/tables/plugin/PluginListTable.tsx:324
#: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully"
msgstr "プラグインが正常にアンインストールされました"
#: src/tables/plugin/PluginListTable.tsx:332
#: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin"
msgstr "プラグインの削除"
#: src/tables/plugin/PluginListTable.tsx:333
#: src/tables/plugin/PluginListTable.tsx:335
msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr "このプラグイン設定を削除すると、関連するすべての設定とデータが削除されます。本当にこのプラグインを削除しますか?"
#: src/tables/plugin/PluginListTable.tsx:346
#: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded"
msgstr "プラグインのリロード"
#: src/tables/plugin/PluginListTable.tsx:347
#: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully"
msgstr "プラグインは正常にリロードされました"
@ -11999,7 +12015,7 @@ msgstr "プラグインは正常にリロードされました"
#~ msgid "The following plugin will be deactivated"
#~ msgstr "The following plugin will be deactivated"
#: src/tables/plugin/PluginListTable.tsx:370
#: src/tables/plugin/PluginListTable.tsx:372
msgid "Reload Plugins"
msgstr "プラグインの再読み込み"
@ -12015,7 +12031,7 @@ msgstr "プラグインの再読み込み"
#~ msgid "Plugin updated"
#~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393
#: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail"
msgstr "プラグイン詳細"
@ -12023,11 +12039,11 @@ msgstr "プラグイン詳細"
#~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435
#: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample"
msgstr "サンプル"
#: src/tables/plugin/PluginListTable.tsx:440
#: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248
msgid "Installed"
msgstr "インストール済み"
@ -12660,29 +12676,29 @@ msgstr "グループを編集"
msgid "Add Group"
msgstr "グループを追加"
#: src/tables/settings/ImportSessionTable.tsx:37
#: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session"
msgstr "インポートセッションの削除"
#: src/tables/settings/ImportSessionTable.tsx:43
#: src/tables/settings/ImportSessionTable.tsx:130
#: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session"
msgstr "インポートセッションの作成"
#: src/tables/settings/ImportSessionTable.tsx:73
#: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded"
msgstr "アップロード"
#: src/tables/settings/ImportSessionTable.tsx:84
#: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows"
msgstr "インポートされた行"
#: src/tables/settings/ImportSessionTable.tsx:113
#: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type"
msgstr "対象機種による絞り込み"
#: src/tables/settings/ImportSessionTable.tsx:119
#: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status"
msgstr "インポートセッションのステータスによるフィルタリング"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ko\n"
"Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-06-14 02:16\n"
"PO-Revision-Date: 2026-06-17 22:14\n"
"Last-Translator: \n"
"Language-Team: Korean\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@ -56,7 +56,7 @@ msgstr "편집"
#: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247
#: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete"
msgstr "삭제"
@ -163,10 +163,10 @@ msgstr "부품"
#: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137
#: src/pages/part/CategoryDetail.tsx:284
#: src/pages/part/CategoryDetail.tsx:339
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893
msgid "Parts"
msgstr "부품"
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr "매개변수"
#: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87
#: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template"
msgstr "매개변수 템플릿"
#: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates"
msgstr "매개변수 템플릿"
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr "제조업체 부품"
#: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496
msgid "Part Category"
msgstr "부품 카테고리"
#: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:372
#: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories"
msgstr "부품 카테고리 목록"
@ -273,7 +274,7 @@ msgstr "재고 항목"
#: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217
#: src/pages/part/CategoryDetail.tsx:313
#: src/pages/part/CategoryDetail.tsx:314
#: src/pages/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr "소유자 목록"
#: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44
#: src/tables/settings/ImportSessionTable.tsx:78
#: src/tables/settings/ImportSessionTable.tsx:82
#: src/tables/stock/StockTrackingTable.tsx:237
#: src/tables/stock/StockTrackingTable.tsx:285
msgid "User"
@ -640,7 +641,7 @@ msgstr "선택 항목"
#: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215
#: src/components/importer/ImporterColumnSelector.tsx:278
#: src/components/importer/ImporterColumnSelector.tsx:330
#: src/components/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr "하나 이상의 입력 필드에 오류가 있습니다"
#: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210
#: src/tables/plugin/PluginListTable.tsx:212
msgid "Update"
msgstr "업데이트"
@ -1982,7 +1983,7 @@ msgstr "주인"
#: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19
#: src/pages/part/CategoryDetail.tsx:93
#: src/pages/part/CategoryDetail.tsx:94
#: src/pages/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr "섬기는 사람"
#: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127
#: src/tables/plugin/PluginListTable.tsx:129
msgid "Version"
msgstr "버전"
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr "데이터 처리"
#: src/components/importer/ImporterColumnSelector.tsx:56
#: src/components/importer/ImporterColumnSelector.tsx:247
#: src/components/importer/ImporterColumnSelector.tsx:299
#: src/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60
#: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr "열을 선택하거나 이 필드를 무시하려면 비워 두세요"
#~ msgid "Imported Column Name"
#~ msgstr "Imported Column Name"
#: src/components/importer/ImporterColumnSelector.tsx:253
#: src/components/importer/ImporterColumnSelector.tsx:202
msgid "Auto"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:305
msgid "Ignore this field"
msgstr "이 필드를 무시하세요"
#: src/components/importer/ImporterColumnSelector.tsx:267
#: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields"
msgstr "데이터 열을 데이터베이스 필드에 매핑"
#: src/components/importer/ImporterColumnSelector.tsx:272
#: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping"
msgstr "열 매핑 적용"
#: src/components/importer/ImporterColumnSelector.tsx:285
#: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field"
msgstr "데이터베이스 필드"
#: src/components/importer/ImporterColumnSelector.tsx:286
#: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description"
msgstr "필드 설명"
#: src/components/importer/ImporterColumnSelector.tsx:287
#: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column"
msgstr "가져온 열"
#: src/components/importer/ImporterColumnSelector.tsx:288
#: src/components/importer/ImporterColumnSelector.tsx:340
msgid "Lookup Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:341
msgid "Default Value"
msgstr "기본값"
@ -3131,7 +3140,7 @@ msgstr "플러그인 정보"
#: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150
#: src/pages/part/CategoryDetail.tsx:113
#: src/pages/part/CategoryDetail.tsx:114
#: src/pages/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr "플러그인 정보"
#: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110
#: src/tables/plugin/PluginListTable.tsx:112
msgid "Description"
msgstr "설명"
@ -3172,7 +3181,7 @@ msgstr "날짜"
#: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96
#: src/tables/plugin/PluginListTable.tsx:420
#: src/tables/plugin/PluginListTable.tsx:422
#: src/tables/purchasing/SupplierPartTable.tsx:139
#: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr "활동적인"
#: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140
#: src/tables/plugin/PluginListTable.tsx:142
msgid "Website"
msgstr "웹사이트"
@ -3198,8 +3207,8 @@ msgstr "설치 경로"
#: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101
#: src/tables/plugin/PluginListTable.tsx:425
#: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin"
msgstr "내장"
@ -3364,7 +3373,7 @@ msgstr "상세 정보"
#: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78
#: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category"
msgstr "카테고리"
@ -4823,7 +4832,7 @@ msgstr "완료할 수량"
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95
#: src/tables/settings/ImportSessionTable.tsx:118
#: src/tables/settings/ImportSessionTable.tsx:129
#: src/tables/stock/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status"
@ -4995,7 +5004,7 @@ msgstr "이 품목의 프로젝트 코드를 선택하세요."
#: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129
#: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr "사용자 지정 단위"
#~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters"
msgstr "카테고리 파라미터"
@ -7698,7 +7706,7 @@ msgstr "주문 취소"
#~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94
#: src/pages/part/CategoryDetail.tsx:291
#: src/pages/part/CategoryDetail.tsx:292
#: src/pages/purchasing/PurchasingIndex.tsx:103
#: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr "캘린더 보기"
#: src/pages/build/BuildIndex.tsx:106
#: src/pages/part/CategoryDetail.tsx:305
#: src/pages/part/CategoryDetail.tsx:306
#: src/pages/purchasing/PurchasingIndex.tsx:115
#: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr "일반 사용자"
#~ msgid "Basic user"
#~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105
#: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr "일반 사용자"
msgid "Path"
msgstr "길"
#: src/pages/part/CategoryDetail.tsx:121
#: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category"
msgstr "상위 카테고리"
#: src/pages/part/CategoryDetail.tsx:144
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories"
msgstr "하위 카테고리"
#: src/pages/part/CategoryDetail.tsx:151
#: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural"
msgstr "구조용"
#: src/pages/part/CategoryDetail.tsx:157
#: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location"
msgstr "상위 기본 위치"
#: src/pages/part/CategoryDetail.tsx:164
#: src/pages/part/CategoryDetail.tsx:165
msgid "Default location"
msgstr "기본 위치"
@ -8018,48 +8026,48 @@ msgstr "기본 위치"
#~ msgid "Top level part category"
#~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181
#: src/pages/part/CategoryDetail.tsx:249
#: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category"
msgstr "부품 카테고리 편집"
#: src/pages/part/CategoryDetail.tsx:190
#: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category"
msgstr "항목을 상위 카테고리로 이동"
#: src/pages/part/CategoryDetail.tsx:194
#: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items"
msgstr "항목 삭제"
#: src/pages/part/CategoryDetail.tsx:202
#: src/pages/part/CategoryDetail.tsx:254
#: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category"
msgstr "부품 카테고리 삭제"
#: src/pages/part/CategoryDetail.tsx:205
#: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action"
msgstr "부품 작업"
#: src/pages/part/CategoryDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category"
msgstr "이 카테고리의 부품에 대한 작업"
#: src/pages/part/CategoryDetail.tsx:212
#: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action"
msgstr "어린이 카테고리 액션"
#: src/pages/part/CategoryDetail.tsx:213
#: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category"
msgstr "이 카테고리의 하위 카테고리에 대한 조치"
#: src/pages/part/CategoryDetail.tsx:245
#: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions"
msgstr "카테고리 조치"
#: src/pages/part/CategoryDetail.tsx:271
#: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details"
msgstr "카테고리 상세 정보"
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr "선택한 항목을 삭제하시겠습니까?"
#: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320
#: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone"
msgstr "이 작업은 취소할 수 없습니다."
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr "활성화된 템플릿 표시"
#: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112
#: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type"
msgstr "모델 유형"
@ -11402,16 +11410,16 @@ msgstr "선택한 항목의 상위 카테고리 설정"
msgid "Add Part Category"
msgstr "부품 카테고리 추가"
#: src/tables/part/PartCategoryTemplateTable.tsx:49
#: src/tables/part/PartCategoryTemplateTable.tsx:143
#: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter"
msgstr "카테고리 매개변수 추가"
#: src/tables/part/PartCategoryTemplateTable.tsx:57
#: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter"
msgstr "카테고리 매개변수 편집"
#: src/tables/part/PartCategoryTemplateTable.tsx:65
#: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter"
msgstr "카테고리 매개변수 삭제"
@ -11419,6 +11427,14 @@ msgstr "카테고리 매개변수 삭제"
#~ msgid "[{0}]"
#~ msgstr "[{0}]"
#: src/tables/part/PartCategoryTemplateTable.tsx:167
msgid "Part Category Parameters Templates"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:170
msgid "Parts which are created within this category will inherit the default values specified here."
msgstr ""
#: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr "플러그인"
#~ msgid "An error occurred while fetching plugin details"
#~ msgstr "An error occurred while fetching plugin details"
#: src/tables/plugin/PluginListTable.tsx:106
#: src/tables/plugin/PluginListTable.tsx:430
#: src/tables/plugin/PluginListTable.tsx:108
#: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory"
msgstr "필수적인"
@ -11847,7 +11863,7 @@ msgstr "필수적인"
#~ msgid "Plugin with id {id} not found"
#~ msgstr "Plugin with id {id} not found"
#: src/tables/plugin/PluginListTable.tsx:120
#: src/tables/plugin/PluginListTable.tsx:122
msgid "Description not available"
msgstr "설명을 사용할 수 없습니다"
@ -11869,11 +11885,11 @@ msgstr "설명을 사용할 수 없습니다"
#~ msgid "Reload"
#~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159
#: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation"
msgstr "플러그인 활성화 확인"
#: src/tables/plugin/PluginListTable.tsx:160
#: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation"
msgstr "플러그인 비활성화 확인"
@ -11881,15 +11897,15 @@ msgstr "플러그인 비활성화 확인"
#~ msgid "Package information"
#~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165
#: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated"
msgstr "선택한 플러그인이 활성화됩니다"
#: src/tables/plugin/PluginListTable.tsx:166
#: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated"
msgstr "선택한 플러그인이 비활성화됩니다"
#: src/tables/plugin/PluginListTable.tsx:184
#: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate"
msgstr "비활성화"
@ -11897,44 +11913,44 @@ msgstr "비활성화"
#~ msgid "Plugin settings"
#~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198
#: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate"
msgstr "활성화"
#: src/tables/plugin/PluginListTable.tsx:199
#: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin"
msgstr "선택한 플러그인 활성화"
#: src/tables/plugin/PluginListTable.tsx:211
#: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin"
msgstr "선택한 플러그인 업데이트"
#: src/tables/plugin/PluginListTable.tsx:229
#: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall"
msgstr "제거"
#: src/tables/plugin/PluginListTable.tsx:230
#: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin"
msgstr "선택한 플러그인 제거"
#: src/tables/plugin/PluginListTable.tsx:248
#: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration"
msgstr "선택한 플러그인 설정 삭제"
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin"
msgstr "플러그인 활성화"
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271
#: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated"
msgstr "플러그인이 활성화되었습니다"
#: src/tables/plugin/PluginListTable.tsx:272
#: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated"
msgstr "플러그인이 비활성화되었습니다"
@ -11942,20 +11958,20 @@ msgstr "플러그인이 비활성화되었습니다"
#~ msgid "Install plugin"
#~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285
#: src/tables/plugin/PluginListTable.tsx:377
#: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin"
msgstr "플러그인 설치"
#: src/tables/plugin/PluginListTable.tsx:298
#: src/tables/plugin/PluginListTable.tsx:300
msgid "Install"
msgstr "설치하다"
#: src/tables/plugin/PluginListTable.tsx:299
#: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully"
msgstr "플러그인이 성공적으로 설치되었습니다"
#: src/tables/plugin/PluginListTable.tsx:304
#: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin"
msgstr "플러그인 제거"
@ -11963,31 +11979,31 @@ msgstr "플러그인 제거"
#~ msgid "This action cannot be undone."
#~ msgstr "This action cannot be undone."
#: src/tables/plugin/PluginListTable.tsx:316
#: src/tables/plugin/PluginListTable.tsx:318
msgid "Confirm plugin uninstall"
msgstr "플러그인 제거 확인"
#: src/tables/plugin/PluginListTable.tsx:319
#: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled."
msgstr "선택한 플러그인이 제거됩니다."
#: src/tables/plugin/PluginListTable.tsx:324
#: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully"
msgstr "플러그인이 성공적으로 제거되었습니다"
#: src/tables/plugin/PluginListTable.tsx:332
#: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin"
msgstr "플러그인 삭제"
#: src/tables/plugin/PluginListTable.tsx:333
#: src/tables/plugin/PluginListTable.tsx:335
msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr "이 플러그인 설정을 삭제하면 관련된 모든 설정과 데이터가 제거됩니다. 이 플러그인을 삭제하시겠습니까?"
#: src/tables/plugin/PluginListTable.tsx:346
#: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded"
msgstr "플러그인을 다시 불러왔습니다"
#: src/tables/plugin/PluginListTable.tsx:347
#: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully"
msgstr "플러그인이 성공적으로 다시 불러와졌습니다"
@ -11999,7 +12015,7 @@ msgstr "플러그인이 성공적으로 다시 불러와졌습니다"
#~ msgid "The following plugin will be deactivated"
#~ msgstr "The following plugin will be deactivated"
#: src/tables/plugin/PluginListTable.tsx:370
#: src/tables/plugin/PluginListTable.tsx:372
msgid "Reload Plugins"
msgstr "플러그인 다시 불러오기"
@ -12015,7 +12031,7 @@ msgstr "플러그인 다시 불러오기"
#~ msgid "Plugin updated"
#~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393
#: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail"
msgstr "플러그인 상세 정보"
@ -12023,11 +12039,11 @@ msgstr "플러그인 상세 정보"
#~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435
#: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample"
msgstr "견본"
#: src/tables/plugin/PluginListTable.tsx:440
#: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248
msgid "Installed"
msgstr "설치됨"
@ -12660,29 +12676,29 @@ msgstr "그룹 편집"
msgid "Add Group"
msgstr "그룹 추가"
#: src/tables/settings/ImportSessionTable.tsx:37
#: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session"
msgstr "가져오기 세션 삭제"
#: src/tables/settings/ImportSessionTable.tsx:43
#: src/tables/settings/ImportSessionTable.tsx:130
#: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session"
msgstr "가져오기 세션 생성"
#: src/tables/settings/ImportSessionTable.tsx:73
#: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded"
msgstr "업로드됨"
#: src/tables/settings/ImportSessionTable.tsx:84
#: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows"
msgstr "가져온 행"
#: src/tables/settings/ImportSessionTable.tsx:113
#: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type"
msgstr "대상 모델 유형으로 필터링"
#: src/tables/settings/ImportSessionTable.tsx:119
#: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status"
msgstr "가져오기 세션 상태로 필터링"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: lt\n"
"Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-06-14 02:16\n"
"PO-Revision-Date: 2026-06-17 22:14\n"
"Last-Translator: \n"
"Language-Team: Lithuanian\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && (n%100>19 || n%100<11) ? 0 : (n%10>=2 && n%10<=9) && (n%100>19 || n%100<11) ? 1 : n%1!=0 ? 2: 3);\n"
@ -56,7 +56,7 @@ msgstr ""
#: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247
#: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete"
msgstr ""
@ -163,10 +163,10 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137
#: src/pages/part/CategoryDetail.tsx:284
#: src/pages/part/CategoryDetail.tsx:339
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893
msgid "Parts"
msgstr ""
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr ""
#: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87
#: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template"
msgstr ""
#: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates"
msgstr ""
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr ""
#: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496
msgid "Part Category"
msgstr ""
#: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:372
#: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories"
msgstr ""
@ -273,7 +274,7 @@ msgstr ""
#: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217
#: src/pages/part/CategoryDetail.tsx:313
#: src/pages/part/CategoryDetail.tsx:314
#: src/pages/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr ""
#: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44
#: src/tables/settings/ImportSessionTable.tsx:78
#: src/tables/settings/ImportSessionTable.tsx:82
#: src/tables/stock/StockTrackingTable.tsx:237
#: src/tables/stock/StockTrackingTable.tsx:285
msgid "User"
@ -640,7 +641,7 @@ msgstr ""
#: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215
#: src/components/importer/ImporterColumnSelector.tsx:278
#: src/components/importer/ImporterColumnSelector.tsx:330
#: src/components/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr ""
#: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210
#: src/tables/plugin/PluginListTable.tsx:212
msgid "Update"
msgstr ""
@ -1982,7 +1983,7 @@ msgstr ""
#: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19
#: src/pages/part/CategoryDetail.tsx:93
#: src/pages/part/CategoryDetail.tsx:94
#: src/pages/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr ""
#: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127
#: src/tables/plugin/PluginListTable.tsx:129
msgid "Version"
msgstr ""
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:56
#: src/components/importer/ImporterColumnSelector.tsx:247
#: src/components/importer/ImporterColumnSelector.tsx:299
#: src/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60
#: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr ""
#~ msgid "Imported Column Name"
#~ msgstr "Imported Column Name"
#: src/components/importer/ImporterColumnSelector.tsx:253
#: src/components/importer/ImporterColumnSelector.tsx:202
msgid "Auto"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:305
msgid "Ignore this field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:267
#: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:272
#: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:285
#: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:286
#: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:287
#: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:288
#: src/components/importer/ImporterColumnSelector.tsx:340
msgid "Lookup Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:341
msgid "Default Value"
msgstr ""
@ -3131,7 +3140,7 @@ msgstr ""
#: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150
#: src/pages/part/CategoryDetail.tsx:113
#: src/pages/part/CategoryDetail.tsx:114
#: src/pages/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr ""
#: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110
#: src/tables/plugin/PluginListTable.tsx:112
msgid "Description"
msgstr ""
@ -3172,7 +3181,7 @@ msgstr ""
#: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96
#: src/tables/plugin/PluginListTable.tsx:420
#: src/tables/plugin/PluginListTable.tsx:422
#: src/tables/purchasing/SupplierPartTable.tsx:139
#: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140
#: src/tables/plugin/PluginListTable.tsx:142
msgid "Website"
msgstr ""
@ -3198,8 +3207,8 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101
#: src/tables/plugin/PluginListTable.tsx:425
#: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin"
msgstr ""
@ -3364,7 +3373,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78
#: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category"
msgstr ""
@ -4823,7 +4832,7 @@ msgstr ""
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95
#: src/tables/settings/ImportSessionTable.tsx:118
#: src/tables/settings/ImportSessionTable.tsx:129
#: src/tables/stock/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status"
@ -4995,7 +5004,7 @@ msgstr ""
#: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129
#: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr ""
#~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters"
msgstr ""
@ -7698,7 +7706,7 @@ msgstr ""
#~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94
#: src/pages/part/CategoryDetail.tsx:291
#: src/pages/part/CategoryDetail.tsx:292
#: src/pages/purchasing/PurchasingIndex.tsx:103
#: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr ""
#: src/pages/build/BuildIndex.tsx:106
#: src/pages/part/CategoryDetail.tsx:305
#: src/pages/part/CategoryDetail.tsx:306
#: src/pages/purchasing/PurchasingIndex.tsx:115
#: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr ""
#~ msgid "Basic user"
#~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105
#: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr ""
msgid "Path"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:121
#: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:144
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:151
#: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:157
#: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:164
#: src/pages/part/CategoryDetail.tsx:165
msgid "Default location"
msgstr ""
@ -8018,48 +8026,48 @@ msgstr ""
#~ msgid "Top level part category"
#~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181
#: src/pages/part/CategoryDetail.tsx:249
#: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:190
#: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:194
#: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:202
#: src/pages/part/CategoryDetail.tsx:254
#: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:205
#: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:212
#: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:213
#: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:245
#: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:271
#: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details"
msgstr ""
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr ""
#: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320
#: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone"
msgstr ""
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr ""
#: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112
#: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type"
msgstr ""
@ -11402,16 +11410,16 @@ msgstr ""
msgid "Add Part Category"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:49
#: src/tables/part/PartCategoryTemplateTable.tsx:143
#: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:57
#: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:65
#: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter"
msgstr ""
@ -11419,6 +11427,14 @@ msgstr ""
#~ msgid "[{0}]"
#~ msgstr "[{0}]"
#: src/tables/part/PartCategoryTemplateTable.tsx:167
msgid "Part Category Parameters Templates"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:170
msgid "Parts which are created within this category will inherit the default values specified here."
msgstr ""
#: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr ""
#~ msgid "An error occurred while fetching plugin details"
#~ msgstr "An error occurred while fetching plugin details"
#: src/tables/plugin/PluginListTable.tsx:106
#: src/tables/plugin/PluginListTable.tsx:430
#: src/tables/plugin/PluginListTable.tsx:108
#: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory"
msgstr ""
@ -11847,7 +11863,7 @@ msgstr ""
#~ msgid "Plugin with id {id} not found"
#~ msgstr "Plugin with id {id} not found"
#: src/tables/plugin/PluginListTable.tsx:120
#: src/tables/plugin/PluginListTable.tsx:122
msgid "Description not available"
msgstr ""
@ -11869,11 +11885,11 @@ msgstr ""
#~ msgid "Reload"
#~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159
#: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:160
#: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation"
msgstr ""
@ -11881,15 +11897,15 @@ msgstr ""
#~ msgid "Package information"
#~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165
#: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:166
#: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:184
#: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate"
msgstr ""
@ -11897,44 +11913,44 @@ msgstr ""
#~ msgid "Plugin settings"
#~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198
#: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:199
#: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:211
#: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:229
#: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:230
#: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:248
#: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271
#: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:272
#: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated"
msgstr ""
@ -11942,20 +11958,20 @@ msgstr ""
#~ msgid "Install plugin"
#~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285
#: src/tables/plugin/PluginListTable.tsx:377
#: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:298
#: src/tables/plugin/PluginListTable.tsx:300
msgid "Install"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:299
#: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:304
#: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin"
msgstr ""
@ -11963,31 +11979,31 @@ msgstr ""
#~ msgid "This action cannot be undone."
#~ msgstr "This action cannot be undone."
#: src/tables/plugin/PluginListTable.tsx:316
#: src/tables/plugin/PluginListTable.tsx:318
msgid "Confirm plugin uninstall"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:319
#: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled."
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:324
#: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:332
#: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:333
#: src/tables/plugin/PluginListTable.tsx:335
msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:346
#: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:347
#: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully"
msgstr ""
@ -11999,7 +12015,7 @@ msgstr ""
#~ msgid "The following plugin will be deactivated"
#~ msgstr "The following plugin will be deactivated"
#: src/tables/plugin/PluginListTable.tsx:370
#: src/tables/plugin/PluginListTable.tsx:372
msgid "Reload Plugins"
msgstr ""
@ -12015,7 +12031,7 @@ msgstr ""
#~ msgid "Plugin updated"
#~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393
#: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail"
msgstr ""
@ -12023,11 +12039,11 @@ msgstr ""
#~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435
#: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:440
#: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248
msgid "Installed"
msgstr ""
@ -12660,29 +12676,29 @@ msgstr ""
msgid "Add Group"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:37
#: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:43
#: src/tables/settings/ImportSessionTable.tsx:130
#: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:73
#: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:84
#: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:113
#: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:119
#: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: lv\n"
"Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-06-14 02:16\n"
"PO-Revision-Date: 2026-06-17 22:14\n"
"Last-Translator: \n"
"Language-Team: Latvian\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n"
@ -56,7 +56,7 @@ msgstr ""
#: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247
#: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete"
msgstr ""
@ -163,10 +163,10 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137
#: src/pages/part/CategoryDetail.tsx:284
#: src/pages/part/CategoryDetail.tsx:339
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893
msgid "Parts"
msgstr ""
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr ""
#: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87
#: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template"
msgstr ""
#: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates"
msgstr ""
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr ""
#: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496
msgid "Part Category"
msgstr ""
#: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:372
#: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories"
msgstr ""
@ -273,7 +274,7 @@ msgstr ""
#: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217
#: src/pages/part/CategoryDetail.tsx:313
#: src/pages/part/CategoryDetail.tsx:314
#: src/pages/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr ""
#: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44
#: src/tables/settings/ImportSessionTable.tsx:78
#: src/tables/settings/ImportSessionTable.tsx:82
#: src/tables/stock/StockTrackingTable.tsx:237
#: src/tables/stock/StockTrackingTable.tsx:285
msgid "User"
@ -640,7 +641,7 @@ msgstr ""
#: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215
#: src/components/importer/ImporterColumnSelector.tsx:278
#: src/components/importer/ImporterColumnSelector.tsx:330
#: src/components/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr ""
#: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210
#: src/tables/plugin/PluginListTable.tsx:212
msgid "Update"
msgstr ""
@ -1982,7 +1983,7 @@ msgstr ""
#: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19
#: src/pages/part/CategoryDetail.tsx:93
#: src/pages/part/CategoryDetail.tsx:94
#: src/pages/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr ""
#: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127
#: src/tables/plugin/PluginListTable.tsx:129
msgid "Version"
msgstr ""
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:56
#: src/components/importer/ImporterColumnSelector.tsx:247
#: src/components/importer/ImporterColumnSelector.tsx:299
#: src/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60
#: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr ""
#~ msgid "Imported Column Name"
#~ msgstr "Imported Column Name"
#: src/components/importer/ImporterColumnSelector.tsx:253
#: src/components/importer/ImporterColumnSelector.tsx:202
msgid "Auto"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:305
msgid "Ignore this field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:267
#: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:272
#: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:285
#: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:286
#: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:287
#: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:288
#: src/components/importer/ImporterColumnSelector.tsx:340
msgid "Lookup Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:341
msgid "Default Value"
msgstr ""
@ -3131,7 +3140,7 @@ msgstr ""
#: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150
#: src/pages/part/CategoryDetail.tsx:113
#: src/pages/part/CategoryDetail.tsx:114
#: src/pages/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr ""
#: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110
#: src/tables/plugin/PluginListTable.tsx:112
msgid "Description"
msgstr ""
@ -3172,7 +3181,7 @@ msgstr ""
#: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96
#: src/tables/plugin/PluginListTable.tsx:420
#: src/tables/plugin/PluginListTable.tsx:422
#: src/tables/purchasing/SupplierPartTable.tsx:139
#: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140
#: src/tables/plugin/PluginListTable.tsx:142
msgid "Website"
msgstr ""
@ -3198,8 +3207,8 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101
#: src/tables/plugin/PluginListTable.tsx:425
#: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin"
msgstr ""
@ -3364,7 +3373,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78
#: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category"
msgstr ""
@ -4823,7 +4832,7 @@ msgstr ""
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95
#: src/tables/settings/ImportSessionTable.tsx:118
#: src/tables/settings/ImportSessionTable.tsx:129
#: src/tables/stock/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status"
@ -4995,7 +5004,7 @@ msgstr ""
#: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129
#: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr ""
#~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters"
msgstr ""
@ -7698,7 +7706,7 @@ msgstr ""
#~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94
#: src/pages/part/CategoryDetail.tsx:291
#: src/pages/part/CategoryDetail.tsx:292
#: src/pages/purchasing/PurchasingIndex.tsx:103
#: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr ""
#: src/pages/build/BuildIndex.tsx:106
#: src/pages/part/CategoryDetail.tsx:305
#: src/pages/part/CategoryDetail.tsx:306
#: src/pages/purchasing/PurchasingIndex.tsx:115
#: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr ""
#~ msgid "Basic user"
#~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105
#: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr ""
msgid "Path"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:121
#: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:144
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:151
#: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:157
#: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:164
#: src/pages/part/CategoryDetail.tsx:165
msgid "Default location"
msgstr ""
@ -8018,48 +8026,48 @@ msgstr ""
#~ msgid "Top level part category"
#~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181
#: src/pages/part/CategoryDetail.tsx:249
#: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:190
#: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:194
#: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:202
#: src/pages/part/CategoryDetail.tsx:254
#: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:205
#: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:212
#: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:213
#: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:245
#: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:271
#: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details"
msgstr ""
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr ""
#: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320
#: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone"
msgstr ""
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr ""
#: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112
#: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type"
msgstr ""
@ -11402,16 +11410,16 @@ msgstr ""
msgid "Add Part Category"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:49
#: src/tables/part/PartCategoryTemplateTable.tsx:143
#: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:57
#: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:65
#: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter"
msgstr ""
@ -11419,6 +11427,14 @@ msgstr ""
#~ msgid "[{0}]"
#~ msgstr "[{0}]"
#: src/tables/part/PartCategoryTemplateTable.tsx:167
msgid "Part Category Parameters Templates"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:170
msgid "Parts which are created within this category will inherit the default values specified here."
msgstr ""
#: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr ""
#~ msgid "An error occurred while fetching plugin details"
#~ msgstr "An error occurred while fetching plugin details"
#: src/tables/plugin/PluginListTable.tsx:106
#: src/tables/plugin/PluginListTable.tsx:430
#: src/tables/plugin/PluginListTable.tsx:108
#: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory"
msgstr ""
@ -11847,7 +11863,7 @@ msgstr ""
#~ msgid "Plugin with id {id} not found"
#~ msgstr "Plugin with id {id} not found"
#: src/tables/plugin/PluginListTable.tsx:120
#: src/tables/plugin/PluginListTable.tsx:122
msgid "Description not available"
msgstr ""
@ -11869,11 +11885,11 @@ msgstr ""
#~ msgid "Reload"
#~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159
#: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:160
#: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation"
msgstr ""
@ -11881,15 +11897,15 @@ msgstr ""
#~ msgid "Package information"
#~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165
#: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:166
#: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:184
#: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate"
msgstr ""
@ -11897,44 +11913,44 @@ msgstr ""
#~ msgid "Plugin settings"
#~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198
#: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:199
#: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:211
#: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:229
#: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:230
#: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:248
#: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271
#: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:272
#: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated"
msgstr ""
@ -11942,20 +11958,20 @@ msgstr ""
#~ msgid "Install plugin"
#~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285
#: src/tables/plugin/PluginListTable.tsx:377
#: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:298
#: src/tables/plugin/PluginListTable.tsx:300
msgid "Install"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:299
#: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:304
#: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin"
msgstr ""
@ -11963,31 +11979,31 @@ msgstr ""
#~ msgid "This action cannot be undone."
#~ msgstr "This action cannot be undone."
#: src/tables/plugin/PluginListTable.tsx:316
#: src/tables/plugin/PluginListTable.tsx:318
msgid "Confirm plugin uninstall"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:319
#: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled."
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:324
#: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:332
#: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:333
#: src/tables/plugin/PluginListTable.tsx:335
msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:346
#: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:347
#: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully"
msgstr ""
@ -11999,7 +12015,7 @@ msgstr ""
#~ msgid "The following plugin will be deactivated"
#~ msgstr "The following plugin will be deactivated"
#: src/tables/plugin/PluginListTable.tsx:370
#: src/tables/plugin/PluginListTable.tsx:372
msgid "Reload Plugins"
msgstr ""
@ -12015,7 +12031,7 @@ msgstr ""
#~ msgid "Plugin updated"
#~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393
#: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail"
msgstr ""
@ -12023,11 +12039,11 @@ msgstr ""
#~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435
#: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:440
#: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248
msgid "Installed"
msgstr ""
@ -12660,29 +12676,29 @@ msgstr ""
msgid "Add Group"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:37
#: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:43
#: src/tables/settings/ImportSessionTable.tsx:130
#: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:73
#: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:84
#: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:113
#: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:119
#: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: nl\n"
"Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-06-14 02:16\n"
"PO-Revision-Date: 2026-06-17 22:14\n"
"Last-Translator: \n"
"Language-Team: Dutch\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -56,7 +56,7 @@ msgstr "Bewerken"
#: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247
#: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete"
msgstr "Verwijderen"
@ -163,10 +163,10 @@ msgstr "Onderdeel"
#: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137
#: src/pages/part/CategoryDetail.tsx:284
#: src/pages/part/CategoryDetail.tsx:339
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893
msgid "Parts"
msgstr "Onderdelen"
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr "Parameters"
#: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87
#: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template"
msgstr "Parameter sjabloon"
#: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates"
msgstr "Parameter sjablonen"
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr "Fabrikant onderdelen"
#: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496
msgid "Part Category"
msgstr "Onderdeel categorie"
#: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:372
#: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories"
msgstr "Onderdeel categorieën"
@ -273,7 +274,7 @@ msgstr "Voorraad item"
#: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217
#: src/pages/part/CategoryDetail.tsx:313
#: src/pages/part/CategoryDetail.tsx:314
#: src/pages/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr "Eigenaren"
#: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44
#: src/tables/settings/ImportSessionTable.tsx:78
#: src/tables/settings/ImportSessionTable.tsx:82
#: src/tables/stock/StockTrackingTable.tsx:237
#: src/tables/stock/StockTrackingTable.tsx:285
msgid "User"
@ -640,7 +641,7 @@ msgstr ""
#: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215
#: src/components/importer/ImporterColumnSelector.tsx:278
#: src/components/importer/ImporterColumnSelector.tsx:330
#: src/components/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr "Er staan fouten in één of meer formuliervelden"
#: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210
#: src/tables/plugin/PluginListTable.tsx:212
msgid "Update"
msgstr "Bijwerken"
@ -1982,7 +1983,7 @@ msgstr "Hostnaam"
#: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19
#: src/pages/part/CategoryDetail.tsx:93
#: src/pages/part/CategoryDetail.tsx:94
#: src/pages/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr "Server"
#: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127
#: src/tables/plugin/PluginListTable.tsx:129
msgid "Version"
msgstr "Versie"
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr "Gegevens verwerken"
#: src/components/importer/ImporterColumnSelector.tsx:56
#: src/components/importer/ImporterColumnSelector.tsx:247
#: src/components/importer/ImporterColumnSelector.tsx:299
#: src/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60
#: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr "Selecteer kolom, of laat leeg om dit veld te negeren."
#~ msgid "Imported Column Name"
#~ msgstr "Imported Column Name"
#: src/components/importer/ImporterColumnSelector.tsx:253
#: src/components/importer/ImporterColumnSelector.tsx:202
msgid "Auto"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:305
msgid "Ignore this field"
msgstr "Negeer dit veld"
#: src/components/importer/ImporterColumnSelector.tsx:267
#: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields"
msgstr "Gegevenskolommen toewijzen aan database velden"
#: src/components/importer/ImporterColumnSelector.tsx:272
#: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping"
msgstr "Accepteer kolomtoewijzing"
#: src/components/importer/ImporterColumnSelector.tsx:285
#: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field"
msgstr "Database veld"
#: src/components/importer/ImporterColumnSelector.tsx:286
#: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description"
msgstr "Veld beschrijving"
#: src/components/importer/ImporterColumnSelector.tsx:287
#: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column"
msgstr "Geïmporteerde kolom"
#: src/components/importer/ImporterColumnSelector.tsx:288
#: src/components/importer/ImporterColumnSelector.tsx:340
msgid "Lookup Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:341
msgid "Default Value"
msgstr "Standaard waarde"
@ -3131,7 +3140,7 @@ msgstr "Plug-in informatie"
#: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150
#: src/pages/part/CategoryDetail.tsx:113
#: src/pages/part/CategoryDetail.tsx:114
#: src/pages/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr "Plug-in informatie"
#: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110
#: src/tables/plugin/PluginListTable.tsx:112
msgid "Description"
msgstr "Omschrijving"
@ -3172,7 +3181,7 @@ msgstr "Datum"
#: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96
#: src/tables/plugin/PluginListTable.tsx:420
#: src/tables/plugin/PluginListTable.tsx:422
#: src/tables/purchasing/SupplierPartTable.tsx:139
#: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr "Actief"
#: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140
#: src/tables/plugin/PluginListTable.tsx:142
msgid "Website"
msgstr "Website"
@ -3198,8 +3207,8 @@ msgstr "Installatie pad"
#: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101
#: src/tables/plugin/PluginListTable.tsx:425
#: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin"
msgstr "Ingebouwd"
@ -3364,7 +3373,7 @@ msgstr "Beschrijving"
#: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78
#: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category"
msgstr "Categorie"
@ -4823,7 +4832,7 @@ msgstr "Te voltooien hoeveelheid"
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95
#: src/tables/settings/ImportSessionTable.tsx:118
#: src/tables/settings/ImportSessionTable.tsx:129
#: src/tables/stock/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status"
@ -4995,7 +5004,7 @@ msgstr "Selecteer projectcode voor deze bestelling"
#: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129
#: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr "Aangepaste eenheden"
#~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters"
msgstr "Categorie parameters"
@ -7698,7 +7706,7 @@ msgstr "Bestelling annuleren"
#~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94
#: src/pages/part/CategoryDetail.tsx:291
#: src/pages/part/CategoryDetail.tsx:292
#: src/pages/purchasing/PurchasingIndex.tsx:103
#: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr "Kalenderoverzicht"
#: src/pages/build/BuildIndex.tsx:106
#: src/pages/part/CategoryDetail.tsx:305
#: src/pages/part/CategoryDetail.tsx:306
#: src/pages/purchasing/PurchasingIndex.tsx:115
#: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr ""
#~ msgid "Basic user"
#~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105
#: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr ""
msgid "Path"
msgstr "Locatie"
#: src/pages/part/CategoryDetail.tsx:121
#: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category"
msgstr "Bovenliggende categorie"
#: src/pages/part/CategoryDetail.tsx:144
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories"
msgstr "Subcategorieën"
#: src/pages/part/CategoryDetail.tsx:151
#: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural"
msgstr "Structureel"
#: src/pages/part/CategoryDetail.tsx:157
#: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location"
msgstr "Op standaardlocatie opslaan"
#: src/pages/part/CategoryDetail.tsx:164
#: src/pages/part/CategoryDetail.tsx:165
msgid "Default location"
msgstr "Standaard locatie"
@ -8018,48 +8026,48 @@ msgstr "Standaard locatie"
#~ msgid "Top level part category"
#~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181
#: src/pages/part/CategoryDetail.tsx:249
#: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category"
msgstr "Categorie bewerken"
#: src/pages/part/CategoryDetail.tsx:190
#: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category"
msgstr "Verplaats items naar bovenliggende categorie"
#: src/pages/part/CategoryDetail.tsx:194
#: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items"
msgstr "Items verwijderen"
#: src/pages/part/CategoryDetail.tsx:202
#: src/pages/part/CategoryDetail.tsx:254
#: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category"
msgstr "Verwijder categorie onderdelen"
#: src/pages/part/CategoryDetail.tsx:205
#: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action"
msgstr "Actie voor onderdelen"
#: src/pages/part/CategoryDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category"
msgstr "Actie voor onderdelen in deze categorie"
#: src/pages/part/CategoryDetail.tsx:212
#: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action"
msgstr "Onderliggende categorie actie"
#: src/pages/part/CategoryDetail.tsx:213
#: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category"
msgstr "Actie voor subcategorieën in deze categorie"
#: src/pages/part/CategoryDetail.tsx:245
#: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions"
msgstr "Categorie acties"
#: src/pages/part/CategoryDetail.tsx:271
#: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details"
msgstr "Categorie details"
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr "Weet u zeker dat u de geselecteerde items wilt verwijderen?"
#: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320
#: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone"
msgstr "Deze actie kan niet ongedaan worden gemaakt"
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr "Ingeschakelde sjablonen weergeven"
#: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112
#: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type"
msgstr "Model type"
@ -11402,16 +11410,16 @@ msgstr "Stel de bovenliggende categorie in voor de geselecteerde items"
msgid "Add Part Category"
msgstr "Voeg categorie voor onderdelen toe"
#: src/tables/part/PartCategoryTemplateTable.tsx:49
#: src/tables/part/PartCategoryTemplateTable.tsx:143
#: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter"
msgstr "Categorie parameter toevoegen"
#: src/tables/part/PartCategoryTemplateTable.tsx:57
#: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter"
msgstr "Categorie parameter bewerken"
#: src/tables/part/PartCategoryTemplateTable.tsx:65
#: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter"
msgstr "Verwijder categorie parameter"
@ -11419,6 +11427,14 @@ msgstr "Verwijder categorie parameter"
#~ msgid "[{0}]"
#~ msgstr "[{0}]"
#: src/tables/part/PartCategoryTemplateTable.tsx:167
msgid "Part Category Parameters Templates"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:170
msgid "Parts which are created within this category will inherit the default values specified here."
msgstr ""
#: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr "Plug-in"
#~ msgid "An error occurred while fetching plugin details"
#~ msgstr "An error occurred while fetching plugin details"
#: src/tables/plugin/PluginListTable.tsx:106
#: src/tables/plugin/PluginListTable.tsx:430
#: src/tables/plugin/PluginListTable.tsx:108
#: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory"
msgstr "Verplicht"
@ -11847,7 +11863,7 @@ msgstr "Verplicht"
#~ msgid "Plugin with id {id} not found"
#~ msgstr "Plugin with id {id} not found"
#: src/tables/plugin/PluginListTable.tsx:120
#: src/tables/plugin/PluginListTable.tsx:122
msgid "Description not available"
msgstr "Beschrijving niet beschikbaar"
@ -11869,11 +11885,11 @@ msgstr "Beschrijving niet beschikbaar"
#~ msgid "Reload"
#~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159
#: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation"
msgstr "Plug-in activeren bevestigen"
#: src/tables/plugin/PluginListTable.tsx:160
#: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation"
msgstr "Plug-in deactiveren bevestigen"
@ -11881,15 +11897,15 @@ msgstr "Plug-in deactiveren bevestigen"
#~ msgid "Package information"
#~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165
#: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated"
msgstr "De geselecteerde plug-in zal worden geactiveerd"
#: src/tables/plugin/PluginListTable.tsx:166
#: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated"
msgstr "De geselecteerde plug-in zal worden gedeactiveerd"
#: src/tables/plugin/PluginListTable.tsx:184
#: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate"
msgstr "Uitzetten"
@ -11897,44 +11913,44 @@ msgstr "Uitzetten"
#~ msgid "Plugin settings"
#~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198
#: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate"
msgstr "Inschakelen"
#: src/tables/plugin/PluginListTable.tsx:199
#: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin"
msgstr "Activeer geselecteerde plug-in"
#: src/tables/plugin/PluginListTable.tsx:211
#: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin"
msgstr "Geselecteerde plug-in bijwerken"
#: src/tables/plugin/PluginListTable.tsx:229
#: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall"
msgstr "Verwijderen"
#: src/tables/plugin/PluginListTable.tsx:230
#: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin"
msgstr "Geselecteerde plug-in verwijderen"
#: src/tables/plugin/PluginListTable.tsx:248
#: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration"
msgstr "Geselecteerde plug-in configuratie verwijderen"
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin"
msgstr "Activeer Plug-in"
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271
#: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated"
msgstr "De plug-in is geactiveerd"
#: src/tables/plugin/PluginListTable.tsx:272
#: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated"
msgstr "De plug-in is uitgeschakeld"
@ -11942,20 +11958,20 @@ msgstr "De plug-in is uitgeschakeld"
#~ msgid "Install plugin"
#~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285
#: src/tables/plugin/PluginListTable.tsx:377
#: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin"
msgstr "Plug-in installeren"
#: src/tables/plugin/PluginListTable.tsx:298
#: src/tables/plugin/PluginListTable.tsx:300
msgid "Install"
msgstr "installeren"
#: src/tables/plugin/PluginListTable.tsx:299
#: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully"
msgstr "Plug-in succesvol geïnstalleerd"
#: src/tables/plugin/PluginListTable.tsx:304
#: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin"
msgstr "Plug-in verwijderen"
@ -11963,31 +11979,31 @@ msgstr "Plug-in verwijderen"
#~ msgid "This action cannot be undone."
#~ msgstr "This action cannot be undone."
#: src/tables/plugin/PluginListTable.tsx:316
#: src/tables/plugin/PluginListTable.tsx:318
msgid "Confirm plugin uninstall"
msgstr "Plug-in verwijderen bevestigen"
#: src/tables/plugin/PluginListTable.tsx:319
#: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled."
msgstr "De geselecteerde plug-in zal worden verwijderd."
#: src/tables/plugin/PluginListTable.tsx:324
#: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully"
msgstr "Plug-in succesvol verwijderd"
#: src/tables/plugin/PluginListTable.tsx:332
#: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin"
msgstr "Plug-in verwijderen"
#: src/tables/plugin/PluginListTable.tsx:333
#: src/tables/plugin/PluginListTable.tsx:335
msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr "Het verwijderen van deze plug-in configuratie zal alle bijbehorende instellingen en gegevens verwijderen. Weet u zeker dat u deze plug-in wilt verwijderen?"
#: src/tables/plugin/PluginListTable.tsx:346
#: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded"
msgstr "Plug-ins herladen"
#: src/tables/plugin/PluginListTable.tsx:347
#: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully"
msgstr "Plug-ins werden succesvol herladen"
@ -11999,7 +12015,7 @@ msgstr "Plug-ins werden succesvol herladen"
#~ msgid "The following plugin will be deactivated"
#~ msgstr "The following plugin will be deactivated"
#: src/tables/plugin/PluginListTable.tsx:370
#: src/tables/plugin/PluginListTable.tsx:372
msgid "Reload Plugins"
msgstr "Plug-ins herladen"
@ -12015,7 +12031,7 @@ msgstr "Plug-ins herladen"
#~ msgid "Plugin updated"
#~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393
#: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail"
msgstr "Plug-in details"
@ -12023,11 +12039,11 @@ msgstr "Plug-in details"
#~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435
#: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample"
msgstr "Voorbeeld"
#: src/tables/plugin/PluginListTable.tsx:440
#: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248
msgid "Installed"
msgstr "Geïnstalleerd"
@ -12660,29 +12676,29 @@ msgstr "Groep bewerken"
msgid "Add Group"
msgstr "Groep toevoegen"
#: src/tables/settings/ImportSessionTable.tsx:37
#: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session"
msgstr "Importsessie verwijderen"
#: src/tables/settings/ImportSessionTable.tsx:43
#: src/tables/settings/ImportSessionTable.tsx:130
#: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session"
msgstr "Importsessie aanmaken"
#: src/tables/settings/ImportSessionTable.tsx:73
#: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded"
msgstr "Geüpload"
#: src/tables/settings/ImportSessionTable.tsx:84
#: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows"
msgstr "Geïmporteerde regels"
#: src/tables/settings/ImportSessionTable.tsx:113
#: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type"
msgstr "Filter op doeltype"
#: src/tables/settings/ImportSessionTable.tsx:119
#: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status"
msgstr "Filter op status van import sessie"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: no\n"
"Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-06-14 02:16\n"
"PO-Revision-Date: 2026-06-17 22:14\n"
"Last-Translator: \n"
"Language-Team: Norwegian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -56,7 +56,7 @@ msgstr "Rediger"
#: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247
#: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete"
msgstr "Slett"
@ -163,10 +163,10 @@ msgstr "Del"
#: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137
#: src/pages/part/CategoryDetail.tsx:284
#: src/pages/part/CategoryDetail.tsx:339
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893
msgid "Parts"
msgstr "Deler"
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr "Parametere"
#: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87
#: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template"
msgstr ""
#: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates"
msgstr ""
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr "Produsentdeler"
#: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496
msgid "Part Category"
msgstr "Delkategori"
#: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:372
#: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories"
msgstr "Delkategorier"
@ -273,7 +274,7 @@ msgstr "Lagervare"
#: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217
#: src/pages/part/CategoryDetail.tsx:313
#: src/pages/part/CategoryDetail.tsx:314
#: src/pages/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr "Eiere"
#: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44
#: src/tables/settings/ImportSessionTable.tsx:78
#: src/tables/settings/ImportSessionTable.tsx:82
#: src/tables/stock/StockTrackingTable.tsx:237
#: src/tables/stock/StockTrackingTable.tsx:285
msgid "User"
@ -640,7 +641,7 @@ msgstr ""
#: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215
#: src/components/importer/ImporterColumnSelector.tsx:278
#: src/components/importer/ImporterColumnSelector.tsx:330
#: src/components/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr ""
#: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210
#: src/tables/plugin/PluginListTable.tsx:212
msgid "Update"
msgstr "Oppdater"
@ -1982,7 +1983,7 @@ msgstr "Vert"
#: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19
#: src/pages/part/CategoryDetail.tsx:93
#: src/pages/part/CategoryDetail.tsx:94
#: src/pages/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr "Server"
#: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127
#: src/tables/plugin/PluginListTable.tsx:129
msgid "Version"
msgstr "Versjon"
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:56
#: src/components/importer/ImporterColumnSelector.tsx:247
#: src/components/importer/ImporterColumnSelector.tsx:299
#: src/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60
#: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr ""
#~ msgid "Imported Column Name"
#~ msgstr "Imported Column Name"
#: src/components/importer/ImporterColumnSelector.tsx:253
#: src/components/importer/ImporterColumnSelector.tsx:202
msgid "Auto"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:305
msgid "Ignore this field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:267
#: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:272
#: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:285
#: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:286
#: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:287
#: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:288
#: src/components/importer/ImporterColumnSelector.tsx:340
msgid "Lookup Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:341
msgid "Default Value"
msgstr ""
@ -3131,7 +3140,7 @@ msgstr ""
#: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150
#: src/pages/part/CategoryDetail.tsx:113
#: src/pages/part/CategoryDetail.tsx:114
#: src/pages/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr ""
#: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110
#: src/tables/plugin/PluginListTable.tsx:112
msgid "Description"
msgstr "Beskrivelse"
@ -3172,7 +3181,7 @@ msgstr "Dato"
#: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96
#: src/tables/plugin/PluginListTable.tsx:420
#: src/tables/plugin/PluginListTable.tsx:422
#: src/tables/purchasing/SupplierPartTable.tsx:139
#: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr "Aktiv"
#: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140
#: src/tables/plugin/PluginListTable.tsx:142
msgid "Website"
msgstr "Nettside"
@ -3198,8 +3207,8 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101
#: src/tables/plugin/PluginListTable.tsx:425
#: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin"
msgstr "Innebygd"
@ -3364,7 +3373,7 @@ msgstr "Detaljer"
#: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78
#: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category"
msgstr "Kategori"
@ -4823,7 +4832,7 @@ msgstr ""
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95
#: src/tables/settings/ImportSessionTable.tsx:118
#: src/tables/settings/ImportSessionTable.tsx:129
#: src/tables/stock/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status"
@ -4995,7 +5004,7 @@ msgstr ""
#: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129
#: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr "Egendefinerte enheter"
#~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters"
msgstr ""
@ -7698,7 +7706,7 @@ msgstr ""
#~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94
#: src/pages/part/CategoryDetail.tsx:291
#: src/pages/part/CategoryDetail.tsx:292
#: src/pages/purchasing/PurchasingIndex.tsx:103
#: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr ""
#: src/pages/build/BuildIndex.tsx:106
#: src/pages/part/CategoryDetail.tsx:305
#: src/pages/part/CategoryDetail.tsx:306
#: src/pages/purchasing/PurchasingIndex.tsx:115
#: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr ""
#~ msgid "Basic user"
#~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105
#: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr ""
msgid "Path"
msgstr "Sti"
#: src/pages/part/CategoryDetail.tsx:121
#: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:144
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:151
#: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural"
msgstr "Strukturell"
#: src/pages/part/CategoryDetail.tsx:157
#: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:164
#: src/pages/part/CategoryDetail.tsx:165
msgid "Default location"
msgstr ""
@ -8018,48 +8026,48 @@ msgstr ""
#~ msgid "Top level part category"
#~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181
#: src/pages/part/CategoryDetail.tsx:249
#: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:190
#: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:194
#: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:202
#: src/pages/part/CategoryDetail.tsx:254
#: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:205
#: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:212
#: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:213
#: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:245
#: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:271
#: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details"
msgstr ""
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr ""
#: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320
#: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone"
msgstr ""
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr ""
#: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112
#: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type"
msgstr ""
@ -11402,16 +11410,16 @@ msgstr ""
msgid "Add Part Category"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:49
#: src/tables/part/PartCategoryTemplateTable.tsx:143
#: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:57
#: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:65
#: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter"
msgstr ""
@ -11419,6 +11427,14 @@ msgstr ""
#~ msgid "[{0}]"
#~ msgstr "[{0}]"
#: src/tables/part/PartCategoryTemplateTable.tsx:167
msgid "Part Category Parameters Templates"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:170
msgid "Parts which are created within this category will inherit the default values specified here."
msgstr ""
#: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr "Utvidelse"
#~ msgid "An error occurred while fetching plugin details"
#~ msgstr "An error occurred while fetching plugin details"
#: src/tables/plugin/PluginListTable.tsx:106
#: src/tables/plugin/PluginListTable.tsx:430
#: src/tables/plugin/PluginListTable.tsx:108
#: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory"
msgstr ""
@ -11847,7 +11863,7 @@ msgstr ""
#~ msgid "Plugin with id {id} not found"
#~ msgstr "Plugin with id {id} not found"
#: src/tables/plugin/PluginListTable.tsx:120
#: src/tables/plugin/PluginListTable.tsx:122
msgid "Description not available"
msgstr "Beskrivelse ikke tilgjengelig"
@ -11869,11 +11885,11 @@ msgstr "Beskrivelse ikke tilgjengelig"
#~ msgid "Reload"
#~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159
#: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation"
msgstr "Bekreft aktivering av utvidelse"
#: src/tables/plugin/PluginListTable.tsx:160
#: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation"
msgstr "Bekreft deaktivering av utvidelse"
@ -11881,15 +11897,15 @@ msgstr "Bekreft deaktivering av utvidelse"
#~ msgid "Package information"
#~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165
#: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:166
#: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:184
#: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate"
msgstr "Deaktiver"
@ -11897,44 +11913,44 @@ msgstr "Deaktiver"
#~ msgid "Plugin settings"
#~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198
#: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate"
msgstr "Aktivér"
#: src/tables/plugin/PluginListTable.tsx:199
#: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:211
#: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:229
#: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:230
#: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:248
#: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin"
msgstr "Aktivér utvidelse"
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271
#: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:272
#: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated"
msgstr ""
@ -11942,20 +11958,20 @@ msgstr ""
#~ msgid "Install plugin"
#~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285
#: src/tables/plugin/PluginListTable.tsx:377
#: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin"
msgstr "Installer Utvidelse"
#: src/tables/plugin/PluginListTable.tsx:298
#: src/tables/plugin/PluginListTable.tsx:300
msgid "Install"
msgstr "Installer"
#: src/tables/plugin/PluginListTable.tsx:299
#: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully"
msgstr "Utvidelse installert"
#: src/tables/plugin/PluginListTable.tsx:304
#: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin"
msgstr ""
@ -11963,31 +11979,31 @@ msgstr ""
#~ msgid "This action cannot be undone."
#~ msgstr "This action cannot be undone."
#: src/tables/plugin/PluginListTable.tsx:316
#: src/tables/plugin/PluginListTable.tsx:318
msgid "Confirm plugin uninstall"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:319
#: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled."
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:324
#: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:332
#: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:333
#: src/tables/plugin/PluginListTable.tsx:335
msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:346
#: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded"
msgstr "Utvidelser lastet inn på nytt"
#: src/tables/plugin/PluginListTable.tsx:347
#: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully"
msgstr "Utvidelser ble lastet inn på nytt"
@ -11999,7 +12015,7 @@ msgstr "Utvidelser ble lastet inn på nytt"
#~ msgid "The following plugin will be deactivated"
#~ msgstr "The following plugin will be deactivated"
#: src/tables/plugin/PluginListTable.tsx:370
#: src/tables/plugin/PluginListTable.tsx:372
msgid "Reload Plugins"
msgstr "Last utvidelser på nytt"
@ -12015,7 +12031,7 @@ msgstr "Last utvidelser på nytt"
#~ msgid "Plugin updated"
#~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393
#: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail"
msgstr ""
@ -12023,11 +12039,11 @@ msgstr ""
#~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435
#: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample"
msgstr "Eksempel"
#: src/tables/plugin/PluginListTable.tsx:440
#: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248
msgid "Installed"
msgstr "Installert"
@ -12660,29 +12676,29 @@ msgstr ""
msgid "Add Group"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:37
#: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:43
#: src/tables/settings/ImportSessionTable.tsx:130
#: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:73
#: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded"
msgstr "Lastet opp"
#: src/tables/settings/ImportSessionTable.tsx:84
#: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:113
#: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:119
#: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: pl\n"
"Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-06-14 02:16\n"
"PO-Revision-Date: 2026-06-17 22:14\n"
"Last-Translator: \n"
"Language-Team: Polish\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
@ -56,7 +56,7 @@ msgstr "Edytuj"
#: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247
#: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete"
msgstr "Usuń"
@ -163,10 +163,10 @@ msgstr "Komponent"
#: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137
#: src/pages/part/CategoryDetail.tsx:284
#: src/pages/part/CategoryDetail.tsx:339
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893
msgid "Parts"
msgstr "Komponenty"
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr ""
#: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87
#: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template"
msgstr "Szablon parametru"
#: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates"
msgstr "Szablony parametrów"
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr "Części producenta"
#: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381
#: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496
msgid "Part Category"
msgstr "Kategoria części"
#: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:372
#: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories"
msgstr "Kategorie części"
@ -273,7 +274,7 @@ msgstr "Element magazynowy"
#: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217
#: src/pages/part/CategoryDetail.tsx:313
#: src/pages/part/CategoryDetail.tsx:314
#: src/pages/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr "Właściciele"
#: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44
#: src/tables/settings/ImportSessionTable.tsx:78
#: src/tables/settings/ImportSessionTable.tsx:82
#: src/tables/stock/StockTrackingTable.tsx:237
#: src/tables/stock/StockTrackingTable.tsx:285
msgid "User"
@ -640,7 +641,7 @@ msgstr ""
#: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215
#: src/components/importer/ImporterColumnSelector.tsx:278
#: src/components/importer/ImporterColumnSelector.tsx:330
#: src/components/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr "Istnieją błędy dla jednego lub więcej pól formularzy"
#: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210
#: src/tables/plugin/PluginListTable.tsx:212
msgid "Update"
msgstr "Aktualizuj"
@ -1982,7 +1983,7 @@ msgstr "Host"
#: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19
#: src/pages/part/CategoryDetail.tsx:93
#: src/pages/part/CategoryDetail.tsx:94
#: src/pages/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr "Serwer"
#: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127
#: src/tables/plugin/PluginListTable.tsx:129
msgid "Version"
msgstr "Wersja"
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr "Przetwarzanie danych"
#: src/components/importer/ImporterColumnSelector.tsx:56
#: src/components/importer/ImporterColumnSelector.tsx:247
#: src/components/importer/ImporterColumnSelector.tsx:299
#: src/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60
#: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr "Wybierz kolumnę lub pozostaw puste, aby zignorować to pole."
#~ msgid "Imported Column Name"
#~ msgstr "Imported Column Name"
#: src/components/importer/ImporterColumnSelector.tsx:253
#: src/components/importer/ImporterColumnSelector.tsx:202
msgid "Auto"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:305
msgid "Ignore this field"
msgstr "Ignoruj to pole"
#: src/components/importer/ImporterColumnSelector.tsx:267
#: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields"
msgstr "Odwzorowanie kolumn danych do pól bazy"
#: src/components/importer/ImporterColumnSelector.tsx:272
#: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping"
msgstr "Akceptuj mapowanie kolumn"
#: src/components/importer/ImporterColumnSelector.tsx:285
#: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field"
msgstr "Pole bazy danych"
#: src/components/importer/ImporterColumnSelector.tsx:286
#: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description"
msgstr "Opis pola"
#: src/components/importer/ImporterColumnSelector.tsx:287
#: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column"
msgstr "Zaimportowana kolumna"
#: src/components/importer/ImporterColumnSelector.tsx:288
#: src/components/importer/ImporterColumnSelector.tsx:340
msgid "Lookup Field"
msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:341
msgid "Default Value"
msgstr "Wartość domyślna"
@ -3131,7 +3140,7 @@ msgstr ""
#: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150
#: src/pages/part/CategoryDetail.tsx:113
#: src/pages/part/CategoryDetail.tsx:114
#: src/pages/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr ""
#: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110
#: src/tables/plugin/PluginListTable.tsx:112
msgid "Description"
msgstr ""
@ -3172,7 +3181,7 @@ msgstr ""
#: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96
#: src/tables/plugin/PluginListTable.tsx:420
#: src/tables/plugin/PluginListTable.tsx:422
#: src/tables/purchasing/SupplierPartTable.tsx:139
#: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140
#: src/tables/plugin/PluginListTable.tsx:142
msgid "Website"
msgstr "Strona internetowa"
@ -3198,8 +3207,8 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101
#: src/tables/plugin/PluginListTable.tsx:425
#: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin"
msgstr ""
@ -3364,7 +3373,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78
#: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category"
msgstr ""
@ -4823,7 +4832,7 @@ msgstr ""
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95
#: src/tables/settings/ImportSessionTable.tsx:118
#: src/tables/settings/ImportSessionTable.tsx:129
#: src/tables/stock/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status"
@ -4995,7 +5004,7 @@ msgstr ""
#: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129
#: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr "Jednostki niestandardowe"
#~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters"
msgstr "Parametry kategorii"
@ -7698,7 +7706,7 @@ msgstr ""
#~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94
#: src/pages/part/CategoryDetail.tsx:291
#: src/pages/part/CategoryDetail.tsx:292
#: src/pages/purchasing/PurchasingIndex.tsx:103
#: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr ""
#: src/pages/build/BuildIndex.tsx:106
#: src/pages/part/CategoryDetail.tsx:305
#: src/pages/part/CategoryDetail.tsx:306
#: src/pages/purchasing/PurchasingIndex.tsx:115
#: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr ""
#~ msgid "Basic user"
#~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105
#: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr ""
msgid "Path"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:121
#: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:144
#: src/pages/part/CategoryDetail.tsx:278
#: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:151
#: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:157
#: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:164
#: src/pages/part/CategoryDetail.tsx:165
msgid "Default location"
msgstr ""
@ -8018,48 +8026,48 @@ msgstr ""
#~ msgid "Top level part category"
#~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181
#: src/pages/part/CategoryDetail.tsx:249
#: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:190
#: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:194
#: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:202
#: src/pages/part/CategoryDetail.tsx:254
#: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:205
#: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:212
#: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:213
#: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:245
#: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions"
msgstr ""
#: src/pages/part/CategoryDetail.tsx:271
#: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details"
msgstr ""
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr ""
#: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320
#: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone"
msgstr ""
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr ""
#: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112
#: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type"
msgstr ""
@ -11402,16 +11410,16 @@ msgstr ""
msgid "Add Part Category"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:49
#: src/tables/part/PartCategoryTemplateTable.tsx:143
#: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:57
#: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:65
#: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter"
msgstr ""
@ -11419,6 +11427,14 @@ msgstr ""
#~ msgid "[{0}]"
#~ msgstr "[{0}]"
#: src/tables/part/PartCategoryTemplateTable.tsx:167
msgid "Part Category Parameters Templates"
msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:170
msgid "Parts which are created within this category will inherit the default values specified here."
msgstr ""
#: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr ""
#~ msgid "An error occurred while fetching plugin details"
#~ msgstr "An error occurred while fetching plugin details"
#: src/tables/plugin/PluginListTable.tsx:106
#: src/tables/plugin/PluginListTable.tsx:430
#: src/tables/plugin/PluginListTable.tsx:108
#: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory"
msgstr ""
@ -11847,7 +11863,7 @@ msgstr ""
#~ msgid "Plugin with id {id} not found"
#~ msgstr "Plugin with id {id} not found"
#: src/tables/plugin/PluginListTable.tsx:120
#: src/tables/plugin/PluginListTable.tsx:122
msgid "Description not available"
msgstr ""
@ -11869,11 +11885,11 @@ msgstr ""
#~ msgid "Reload"
#~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159
#: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:160
#: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation"
msgstr ""
@ -11881,15 +11897,15 @@ msgstr ""
#~ msgid "Package information"
#~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165
#: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:166
#: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:184
#: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate"
msgstr ""
@ -11897,44 +11913,44 @@ msgstr ""
#~ msgid "Plugin settings"
#~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198
#: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:199
#: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:211
#: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:229
#: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:230
#: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:248
#: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:264
#: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271
#: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:272
#: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated"
msgstr ""
@ -11942,20 +11958,20 @@ msgstr ""
#~ msgid "Install plugin"
#~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285
#: src/tables/plugin/PluginListTable.tsx:377
#: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:298
#: src/tables/plugin/PluginListTable.tsx:300
msgid "Install"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:299
#: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:304
#: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin"
msgstr ""
@ -11963,31 +11979,31 @@ msgstr ""
#~ msgid "This action cannot be undone."
#~ msgstr "This action cannot be undone."
#: src/tables/plugin/PluginListTable.tsx:316
#: src/tables/plugin/PluginListTable.tsx:318
msgid "Confirm plugin uninstall"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:319
#: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled."
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:324
#: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:332
#: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:333
#: src/tables/plugin/PluginListTable.tsx:335
msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:346
#: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:347
#: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully"
msgstr ""
@ -11999,7 +12015,7 @@ msgstr ""
#~ msgid "The following plugin will be deactivated"
#~ msgstr "The following plugin will be deactivated"
#: src/tables/plugin/PluginListTable.tsx:370
#: src/tables/plugin/PluginListTable.tsx:372
msgid "Reload Plugins"
msgstr ""
@ -12015,7 +12031,7 @@ msgstr ""
#~ msgid "Plugin updated"
#~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393
#: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail"
msgstr ""
@ -12023,11 +12039,11 @@ msgstr ""
#~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435
#: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample"
msgstr ""
#: src/tables/plugin/PluginListTable.tsx:440
#: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248
msgid "Installed"
msgstr ""
@ -12660,29 +12676,29 @@ msgstr ""
msgid "Add Group"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:37
#: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:43
#: src/tables/settings/ImportSessionTable.tsx:130
#: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:73
#: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:84
#: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:113
#: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type"
msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:119
#: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status"
msgstr ""

Some files were not shown because too many files have changed in this diff Show More