Merge commit '6285a11a6538d9a4ff86e68b8d4f0af614f607bf' into block-notes

This commit is contained in:
Oliver Walters 2026-06-19 03:53:37 +00:00
commit dfdba9a212
102 changed files with 35510 additions and 32548 deletions

View File

@ -38,6 +38,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ### 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. - [#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. - [#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. - [#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.

View File

@ -6,10 +6,15 @@ INVENTREE_API_VERSION = 510
INVENTREE_API_TEXT = """ INVENTREE_API_TEXT = """
<<<<<<< HEAD
v510 -> 2026-06-18 : https://github.com/inventree/InvenTree/pull/11971 v510 -> 2026-06-18 : https://github.com/inventree/InvenTree/pull/11971
- Removes direct "notes" field from any models which previously supported markdown notes - Removes direct "notes" field from any models which previously supported markdown notes
- Adds a generic "Note" model which can be attached to any model type via a generic foreign key relationship - Adds a generic "Note" model which can be attached to any model type via a generic foreign key relationship
- Allow multiple notes to be attached to a single object, and for notes to be created / edited / deleted via the API - Allow multiple notes to be attached to a single object, and for notes to be created / edited / deleted via the API
=======
v510 -> 2026-06-18 : https://github.com/inventree/InvenTree/pull/12197
- Require "staff" access permissions for the machine restart API endpoint
>>>>>>> 6285a11a6538d9a4ff86e68b8d4f0af614f607bf
v509 -> 2026-06-17 : https://github.com/inventree/InvenTree/pull/12184 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. - 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.

View File

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

View File

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

View File

@ -438,21 +438,30 @@ def scheduled_task(
@tracer.start_as_current_span('heartbeat') @tracer.start_as_current_span('heartbeat')
@scheduled_task(ScheduledTask.MINUTES, 5) @scheduled_task(ScheduledTask.MINUTES, 1)
def heartbeat(): def heartbeat():
"""Simple task which runs at 5 minute intervals, so we can determine that the background worker is actually running. """Simple task which runs at 1 minute intervals, so we can determine that the background worker is actually running."""
(There is probably a less "hacky" way of achieving this)?
"""
try: try:
from django_q.models import OrmQ, Success from django_q.models import OrmQ, Success
except AppRegistryNotReady: # pragma: no cover except AppRegistryNotReady: # pragma: no cover
logger.info('Could not perform heartbeat task - App registry not ready') logger.info('Could not perform heartbeat task - App registry not ready')
return 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 # otherwise they just create extra noise
heartbeats = Success.objects.filter( heartbeats = Success.objects.filter(
func='InvenTree.tasks.heartbeat', started__lte=threshold 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 = self.get_serializer(data=self.clean_data(request.data))
serializer.is_valid(raise_exception=True) serializer.is_valid(raise_exception=True)
build = serializer.save() serializer.save(issued_by=request.user)
build.issued_by = request.user
build.save()
headers = self.get_success_headers(serializer.data) headers = self.get_success_headers(serializer.data)
return Response( return Response(

View File

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

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

View File

@ -287,14 +287,23 @@ class MachineAPITest(TestMachineRegistryMixin, InvenTreeAPITestCase):
active=True, 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 # verify machine status before restart
response = self.get(reverse('api-machine-detail', kwargs={'pk': machine.pk})) response = self.get(reverse('api-machine-detail', kwargs={'pk': machine.pk}))
self.assertEqual(response.data['status_text'], '') self.assertEqual(response.data['status_text'], '')
# restart the machine # restart the machine
response = self.post( self.post(restart_url, expected_code=200)
reverse('api-machine-restart', kwargs={'pk': machine.pk}), expected_code=200
)
# verify machine status after restart # verify machine status after restart
response = self.get(reverse('api-machine-detail', kwargs={'pk': machine.pk})) 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 = self.get_serializer(data=self.clean_data(request.data))
serializer.is_valid(raise_exception=True) serializer.is_valid(raise_exception=True)
item = serializer.save() serializer.save(created_by=request.user)
item.created_by = request.user
item.save()
headers = self.get_success_headers(serializer.data) headers = self.get_success_headers(serializer.data)
return Response( return Response(

View File

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

View File

@ -25,6 +25,7 @@ from pypdf import PdfWriter
import InvenTree.exceptions import InvenTree.exceptions
import InvenTree.helpers import InvenTree.helpers
import InvenTree.models import InvenTree.models
import InvenTree.ready
import report.helpers import report.helpers
import report.validators import report.validators
from common.models import DataOutput, RenderChoices, UpdatedUserMixin from common.models import DataOutput, RenderChoices, UpdatedUserMixin
@ -578,10 +579,10 @@ class ReportTemplate(TemplateUploadMixin, ReportTemplateBase):
raise ValidationError(msg) raise ValidationError(msg)
except TemplateSyntaxError as e: except TemplateSyntaxError as e:
msg = _('Template syntax error') msg = _('Template syntax error')
output.mark_failure(msg) output.mark_failure(str(e) or msg)
raise ValidationError(f'{msg}: {e!s}') raise ValidationError(f'{msg}: {e!s}')
except ValidationError as e: except ValidationError as e:
output.mark_failure(str(e)) output.mark_failure(','.join(e.messages))
raise e raise e
except Exception as e: except Exception as e:
msg = _('Error rendering report') msg = _('Error rendering report')
@ -617,10 +618,10 @@ class ReportTemplate(TemplateUploadMixin, ReportTemplateBase):
raise ValidationError(msg) raise ValidationError(msg)
except TemplateSyntaxError as e: except TemplateSyntaxError as e:
msg = _('Template syntax error') 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}') raise ValidationError(f'{msg}: {e!s}')
except ValidationError as e: except ValidationError as e:
output.mark_failure(str(e)) output.mark_failure(', '.join(e.messages))
raise e raise e
except Exception as e: except Exception as e:
msg = _('Error rendering report') msg = _('Error rendering report')
@ -643,6 +644,13 @@ class ReportTemplate(TemplateUploadMixin, ReportTemplateBase):
# Something went wrong during the report generation process # Something went wrong during the report generation process
log_report_error('ReportTemplate.print') 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({ raise ValidationError({
'error': _('Error generating report'), 'error': _('Error generating report'),
'detail': str(exc), 'detail': str(exc),
@ -677,6 +685,12 @@ class ReportTemplate(TemplateUploadMixin, ReportTemplateBase):
log_report_error('ReportTemplate.print') log_report_error('ReportTemplate.print')
msg = _('Error merging report outputs') msg = _('Error merging report outputs')
output.mark_failure(error=msg) 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) raise ValidationError(msg)
# Save the generated report to the database # Save the generated report to the database

View File

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

View File

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

View File

@ -1512,10 +1512,7 @@ class StockItemTestResultList(
Also, check if an attachment was uploaded alongside the test result, Also, check if an attachment was uploaded alongside the test result,
and save it to the database if it were. and save it to the database if it were.
""" """
# Capture the user information serializer.save(user=self.request.user)
test_result = serializer.save()
test_result.user = self.request.user
test_result.save()
class StockTrackingDetail(RetrieveAPI): class StockTrackingDetail(RetrieveAPI):
@ -1664,32 +1661,6 @@ class StockTrackingList(
return Response(data) 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 filter_backends = SEARCH_ORDER_FILTER
ordering = '-date' ordering = '-date'

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: pt\n" "Language: pt\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \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" "Last-Translator: \n"
"Language-Team: Portuguese\n" "Language-Team: Portuguese\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -56,7 +56,7 @@ msgstr "Editar"
#: src/components/items/RoleTable.tsx:155 #: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174 #: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109 #: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247 #: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete" msgid "Delete"
msgstr "Eliminar" msgstr "Eliminar"
@ -163,10 +163,10 @@ msgstr "Peça"
#: src/components/nav/NavigationDrawer.tsx:70 #: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39 #: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218 #: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137 #: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:284 #: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:339 #: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:381 #: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893 #: src/pages/part/PartDetail.tsx:893
msgid "Parts" msgid "Parts"
msgstr "Peças" msgstr "Peças"
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr "Parâmetros" msgstr "Parâmetros"
#: lib/enums/ModelInformation.tsx:46 #: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87 #: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template" msgid "Parameter Template"
msgstr "Modelo do Parâmetro" msgstr "Modelo do Parâmetro"
#: lib/enums/ModelInformation.tsx:47 #: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates" msgid "Parameter Templates"
msgstr "" msgstr ""
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr "Peças do fabricante" msgstr "Peças do fabricante"
#: lib/enums/ModelInformation.tsx:80 #: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381 #: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496 #: src/tables/Filter.tsx:496
msgid "Part Category" msgid "Part Category"
msgstr "Categoria da peça" msgstr "Categoria da peça"
#: lib/enums/ModelInformation.tsx:81 #: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39 #: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:372 #: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154 #: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories" msgid "Part Categories"
msgstr "Categorias da Peça" msgstr "Categorias da Peça"
@ -273,7 +274,7 @@ msgstr "Item de Estoque"
#: lib/enums/ModelInformation.tsx:90 #: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49 #: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217 #: 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/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156 #: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235 #: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr "Proprietários"
#: src/tables/settings/ApiTokenTable.tsx:127 #: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79 #: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44 #: 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:237
#: src/tables/stock/StockTrackingTable.tsx:285 #: src/tables/stock/StockTrackingTable.tsx:285
msgid "User" msgid "User"
@ -640,7 +641,7 @@ msgstr ""
#: src/components/forms/fields/ApiFormField.tsx:259 #: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45 #: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215 #: 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/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85 #: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211 #: src/components/nav/NavigationTree.tsx:211
@ -1795,7 +1796,7 @@ msgstr ""
#: src/components/forms/ApiForm.tsx:751 #: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143 #: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210 #: src/tables/plugin/PluginListTable.tsx:212
msgid "Update" msgid "Update"
msgstr "Atualizar" msgstr "Atualizar"
@ -1983,7 +1984,7 @@ msgstr "Servidor"
#: src/components/forms/InstanceOptions.tsx:125 #: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68 #: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 #: 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/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117 #: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67 #: src/tables/machine/MachineTypeTable.tsx:67
@ -2060,7 +2061,7 @@ msgstr "Servidor"
#: src/components/forms/InstanceOptions.tsx:131 #: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88 #: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127 #: src/tables/plugin/PluginListTable.tsx:129
msgid "Version" msgid "Version"
msgstr "Versão" msgstr "Versão"
@ -2244,7 +2245,7 @@ msgid "Processing Data"
msgstr "" msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:56 #: 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/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60 #: src/functions/api.tsx:60
#: src/functions/auth.tsx:401 #: src/functions/auth.tsx:401
@ -2267,31 +2268,39 @@ msgstr ""
#~ msgid "Imported Column Name" #~ msgid "Imported Column Name"
#~ msgstr "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" msgid "Ignore this field"
msgstr "" msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:267 #: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields" msgid "Mapping data columns to database fields"
msgstr "" msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:272 #: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping" msgid "Accept Column Mapping"
msgstr "" msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:285 #: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field" msgid "Database Field"
msgstr "" msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:286 #: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description" msgid "Field Description"
msgstr "" msgstr ""
#: src/components/importer/ImporterColumnSelector.tsx:287 #: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column" msgid "Imported Column"
msgstr "" 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" msgid "Default Value"
msgstr "" msgstr ""
@ -3132,7 +3141,7 @@ msgstr ""
#: src/pages/company/ManufacturerPartDetail.tsx:94 #: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121 #: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150 #: 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/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166 #: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132 #: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3143,7 +3152,7 @@ msgstr ""
#: src/tables/build/BuildAllocatedStockTable.tsx:91 #: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159 #: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110 #: src/tables/plugin/PluginListTable.tsx:112
msgid "Description" msgid "Description"
msgstr "Descrição" msgstr "Descrição"
@ -3173,7 +3182,7 @@ msgstr "Data"
#: src/tables/part/PartTableFilters.tsx:13 #: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15 #: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96 #: 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:139
#: src/tables/purchasing/SupplierPartTable.tsx:254 #: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63 #: src/tables/settings/ApiTokenTable.tsx:63
@ -3184,7 +3193,7 @@ msgstr "Ativo"
#: src/components/plugins/PluginDrawer.tsx:99 #: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103 #: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140 #: src/tables/plugin/PluginListTable.tsx:142
msgid "Website" msgid "Website"
msgstr "Site" msgstr "Site"
@ -3199,8 +3208,8 @@ msgstr "Caminho de Instalação"
#: src/components/plugins/PluginDrawer.tsx:124 #: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182 #: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:425 #: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin" msgid "Builtin"
msgstr "Embutido" msgstr "Embutido"
@ -3365,7 +3374,7 @@ msgstr "Detalhes"
#: src/tables/ColumnRenderers.tsx:414 #: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423 #: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32 #: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78 #: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category" msgid "Category"
msgstr "Categoria" msgstr "Categoria"
@ -4824,7 +4833,7 @@ msgstr ""
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175 #: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79 #: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95 #: 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/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83 #: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status" msgid "Status"
@ -4996,7 +5005,7 @@ msgstr ""
#: src/forms/PartForms.tsx:110 #: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244 #: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129 #: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536 #: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92 #: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143 #: src/tables/part/PartTableFilters.tsx:143
@ -7000,7 +7009,6 @@ msgstr "Unidades Personalizadas"
#~ msgstr "Part Parameters" #~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 #: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters" msgid "Category Parameters"
msgstr "Parâmetros de Categoria" msgstr "Parâmetros de Categoria"
@ -7699,7 +7707,7 @@ msgstr "Cancelar pedido"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94 #: 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:103
#: src/pages/purchasing/PurchasingIndex.tsx:130 #: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159 #: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7722,7 +7730,7 @@ msgid "Calendar View"
msgstr "" msgstr ""
#: src/pages/build/BuildIndex.tsx:106 #: 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:115
#: src/pages/purchasing/PurchasingIndex.tsx:142 #: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165 #: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7983,7 +7991,7 @@ msgstr ""
#~ msgid "Basic user" #~ msgid "Basic user"
#~ msgstr "Basic user" #~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105 #: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129 #: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336 #: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:63
@ -7991,27 +7999,27 @@ msgstr ""
msgid "Path" msgid "Path"
msgstr "Caminho" msgstr "Caminho"
#: src/pages/part/CategoryDetail.tsx:121 #: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category" msgid "Parent Category"
msgstr "Categoria Parente" msgstr "Categoria Parente"
#: src/pages/part/CategoryDetail.tsx:144 #: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:278 #: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories" msgid "Subcategories"
msgstr "Sub-categorias" msgstr "Sub-categorias"
#: src/pages/part/CategoryDetail.tsx:151 #: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169 #: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87 #: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43 #: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural" msgid "Structural"
msgstr "Estrutural" msgstr "Estrutural"
#: src/pages/part/CategoryDetail.tsx:157 #: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location" msgid "Parent default location"
msgstr "Armazenar na localização Parente" msgstr "Armazenar na localização Parente"
#: src/pages/part/CategoryDetail.tsx:164 #: src/pages/part/CategoryDetail.tsx:165
msgid "Default location" msgid "Default location"
msgstr "Localização predefinida" msgstr "Localização predefinida"
@ -8019,48 +8027,48 @@ msgstr "Localização predefinida"
#~ msgid "Top level part category" #~ msgid "Top level part category"
#~ msgstr "Top level part category" #~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181 #: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:249 #: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121 #: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category" msgid "Edit Part Category"
msgstr "Editar Categoria da Peça" msgstr "Editar Categoria da Peça"
#: src/pages/part/CategoryDetail.tsx:190 #: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category" msgid "Move items to parent category"
msgstr "" msgstr ""
#: src/pages/part/CategoryDetail.tsx:194 #: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316 #: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items" msgid "Delete items"
msgstr "Eliminar itens" msgstr "Eliminar itens"
#: src/pages/part/CategoryDetail.tsx:202 #: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:254 #: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category" msgid "Delete Part Category"
msgstr "Definir Categoria da Peça" msgstr "Definir Categoria da Peça"
#: src/pages/part/CategoryDetail.tsx:205 #: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action" msgid "Parts Action"
msgstr "Ações da peça" msgstr "Ações da peça"
#: src/pages/part/CategoryDetail.tsx:206 #: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category" msgid "Action for parts in this category"
msgstr "Ações para peças nesta categoria" msgstr "Ações para peças nesta categoria"
#: src/pages/part/CategoryDetail.tsx:212 #: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action" msgid "Child Categories Action"
msgstr "Ações para Categorias Filhas" msgstr "Ações para Categorias Filhas"
#: src/pages/part/CategoryDetail.tsx:213 #: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category" msgid "Action for child categories in this category"
msgstr "Ações para Caregorias Filhas nesta Categoria" msgstr "Ações para Caregorias Filhas nesta Categoria"
#: src/pages/part/CategoryDetail.tsx:245 #: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142 #: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions" msgid "Category Actions"
msgstr "Ações da Categoria" msgstr "Ações da Categoria"
#: src/pages/part/CategoryDetail.tsx:271 #: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details" msgid "Category Details"
msgstr "Detalhes da Categoria" msgstr "Detalhes da Categoria"
@ -10031,7 +10039,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr "" msgstr ""
#: src/tables/InvenTreeTableHeader.tsx:113 #: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320 #: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone" msgid "This action cannot be undone"
msgstr "" msgstr ""
@ -11066,7 +11074,7 @@ msgid "Show enabled templates"
msgstr "" msgstr ""
#: src/tables/general/ParameterTemplateTable.tsx:148 #: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414 #: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type" msgid "Model Type"
msgstr "Tipo de Modelo" msgstr "Tipo de Modelo"
@ -11403,16 +11411,16 @@ msgstr ""
msgid "Add Part Category" msgid "Add Part Category"
msgstr "Adicionar Categoria de Peça" msgstr "Adicionar Categoria de Peça"
#: src/tables/part/PartCategoryTemplateTable.tsx:49 #: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:143 #: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter" msgid "Add Category Parameter"
msgstr "Adicionar Parâmetro da Categoria" msgstr "Adicionar Parâmetro da Categoria"
#: src/tables/part/PartCategoryTemplateTable.tsx:57 #: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter" msgid "Edit Category Parameter"
msgstr "Editar Parâmetro da Categoria" msgstr "Editar Parâmetro da Categoria"
#: src/tables/part/PartCategoryTemplateTable.tsx:65 #: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter" msgid "Delete Category Parameter"
msgstr "Excluir Parâmetro da Categoria" msgstr "Excluir Parâmetro da Categoria"
@ -11420,6 +11428,14 @@ msgstr "Excluir Parâmetro da Categoria"
#~ msgid "[{0}]" #~ msgid "[{0}]"
#~ msgstr "[{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 #: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter" #~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter" #~ msgstr "New Part Parameter"
@ -11839,8 +11855,8 @@ msgstr "Extensão"
#~ msgid "An error occurred while fetching plugin details" #~ msgid "An error occurred while fetching plugin details"
#~ msgstr "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:108
#: src/tables/plugin/PluginListTable.tsx:430 #: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory" msgid "Mandatory"
msgstr "" msgstr ""
@ -11848,7 +11864,7 @@ msgstr ""
#~ msgid "Plugin with id {id} not found" #~ msgid "Plugin with id {id} not found"
#~ msgstr "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" msgid "Description not available"
msgstr "Descrição não está disponível" msgstr "Descrição não está disponível"
@ -11870,11 +11886,11 @@ msgstr "Descrição não está disponível"
#~ msgid "Reload" #~ msgid "Reload"
#~ msgstr "Reload" #~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159 #: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation" msgid "Confirm plugin activation"
msgstr "Confirmar a ativação da extensão" msgstr "Confirmar a ativação da extensão"
#: src/tables/plugin/PluginListTable.tsx:160 #: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation" msgid "Confirm plugin deactivation"
msgstr "Confirmar desativação da extensão" msgstr "Confirmar desativação da extensão"
@ -11882,15 +11898,15 @@ msgstr "Confirmar desativação da extensão"
#~ msgid "Package information" #~ msgid "Package information"
#~ msgstr "Package information" #~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165 #: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated" msgid "The selected plugin will be activated"
msgstr "A extensão selecionada será ativada" msgstr "A extensão selecionada será ativada"
#: src/tables/plugin/PluginListTable.tsx:166 #: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated" msgid "The selected plugin will be deactivated"
msgstr "A extensão selecionada será desativada" msgstr "A extensão selecionada será desativada"
#: src/tables/plugin/PluginListTable.tsx:184 #: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate" msgid "Deactivate"
msgstr "Desativar" msgstr "Desativar"
@ -11898,44 +11914,44 @@ msgstr "Desativar"
#~ msgid "Plugin settings" #~ msgid "Plugin settings"
#~ msgstr "Plugin settings" #~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198 #: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate" msgid "Activate"
msgstr "Ativar" msgstr "Ativar"
#: src/tables/plugin/PluginListTable.tsx:199 #: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin" msgid "Activate selected plugin"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:211 #: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin" msgid "Update selected plugin"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:229 #: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98 #: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall" msgid "Uninstall"
msgstr "Desinstalar" msgstr "Desinstalar"
#: src/tables/plugin/PluginListTable.tsx:230 #: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin" msgid "Uninstall selected plugin"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:248 #: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration" msgid "Delete selected plugin configuration"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:264 #: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin" msgid "Activate Plugin"
msgstr "Ativar Extensão" msgstr "Ativar Extensão"
#: src/tables/plugin/PluginListTable.tsx:264 #: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin" msgid "Deactivate Plugin"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271 #: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated" msgid "The plugin was activated"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:272 #: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated" msgid "The plugin was deactivated"
msgstr "" msgstr ""
@ -11943,20 +11959,20 @@ msgstr ""
#~ msgid "Install plugin" #~ msgid "Install plugin"
#~ msgstr "Install plugin" #~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285 #: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:377 #: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin" msgid "Install Plugin"
msgstr "Instalar Extensão" msgstr "Instalar Extensão"
#: src/tables/plugin/PluginListTable.tsx:298 #: src/tables/plugin/PluginListTable.tsx:300
msgid "Install" msgid "Install"
msgstr "Instalar" msgstr "Instalar"
#: src/tables/plugin/PluginListTable.tsx:299 #: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully" msgid "Plugin installed successfully"
msgstr "A extensão foi instalada com sucesso." msgstr "A extensão foi instalada com sucesso."
#: src/tables/plugin/PluginListTable.tsx:304 #: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin" msgid "Uninstall Plugin"
msgstr "Desintalar extensão" msgstr "Desintalar extensão"
@ -11964,31 +11980,31 @@ msgstr "Desintalar extensão"
#~ msgid "This action cannot be undone." #~ msgid "This action cannot be undone."
#~ msgstr "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" msgid "Confirm plugin uninstall"
msgstr "Confirmar instalação da extensão" msgstr "Confirmar instalação da extensão"
#: src/tables/plugin/PluginListTable.tsx:319 #: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled." msgid "The selected plugin will be uninstalled."
msgstr "A extensão selecionada será desinstalada." msgstr "A extensão selecionada será desinstalada."
#: src/tables/plugin/PluginListTable.tsx:324 #: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully" msgid "Plugin uninstalled successfully"
msgstr "A extensão foi desinstalada com sucesso" msgstr "A extensão foi desinstalada com sucesso"
#: src/tables/plugin/PluginListTable.tsx:332 #: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin" msgid "Delete Plugin"
msgstr "Excluir Extensão" msgstr "Excluir Extensão"
#: 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?" msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr "Ao excluir esta extensão, todas as configurações e informações da extensão serão removidas. Tem a certeza que deseja excluir está extensão?" msgstr "Ao excluir esta extensão, todas as configurações e informações da extensão serão removidas. Tem a certeza que deseja excluir está extensão?"
#: src/tables/plugin/PluginListTable.tsx:346 #: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded" msgid "Plugins reloaded"
msgstr "Extensões recarregadas" msgstr "Extensões recarregadas"
#: src/tables/plugin/PluginListTable.tsx:347 #: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully" msgid "Plugins were reloaded successfully"
msgstr "As Extensões foram recarregadas com sucesso" msgstr "As Extensões foram recarregadas com sucesso"
@ -12000,7 +12016,7 @@ msgstr "As Extensões foram recarregadas com sucesso"
#~ msgid "The following plugin will be deactivated" #~ msgid "The following plugin will be deactivated"
#~ msgstr "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" msgid "Reload Plugins"
msgstr "Recarregar extensões" msgstr "Recarregar extensões"
@ -12016,7 +12032,7 @@ msgstr "Recarregar extensões"
#~ msgid "Plugin updated" #~ msgid "Plugin updated"
#~ msgstr "Plugin updated" #~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393 #: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail" msgid "Plugin Detail"
msgstr "Detalhe da Extensão" msgstr "Detalhe da Extensão"
@ -12024,11 +12040,11 @@ msgstr "Detalhe da Extensão"
#~ msgid "Error updating plugin" #~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin" #~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435 #: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample" msgid "Sample"
msgstr "Amostra" msgstr "Amostra"
#: src/tables/plugin/PluginListTable.tsx:440 #: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248 #: src/tables/stock/StockItemTable.tsx:248
msgid "Installed" msgid "Installed"
msgstr "Instalado" msgstr "Instalado"
@ -12661,29 +12677,29 @@ msgstr ""
msgid "Add Group" msgid "Add Group"
msgstr "" msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:37 #: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session" msgid "Delete Import Session"
msgstr "" msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:43 #: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:130 #: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session" msgid "Create Import Session"
msgstr "" msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:73 #: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded" msgid "Uploaded"
msgstr "" msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:84 #: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows" msgid "Imported Rows"
msgstr "" msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:113 #: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415 #: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type" msgid "Filter by target model type"
msgstr "Filtrar pelo destino do tipo de modelo" msgstr "Filtrar pelo destino do tipo de modelo"
#: src/tables/settings/ImportSessionTable.tsx:119 #: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status" msgid "Filter by import session status"
msgstr "" msgstr ""

File diff suppressed because it is too large Load Diff

View File

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

View File

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

View File

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

View File

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

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: sr\n" "Language: sr\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \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" "Last-Translator: \n"
"Language-Team: Serbian (Latin)\n" "Language-Team: Serbian (Latin)\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
@ -56,7 +56,7 @@ msgstr "Izmeni"
#: src/components/items/RoleTable.tsx:155 #: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174 #: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109 #: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247 #: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete" msgid "Delete"
msgstr "Obriši" msgstr "Obriši"
@ -163,10 +163,10 @@ msgstr "Deo"
#: src/components/nav/NavigationDrawer.tsx:70 #: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39 #: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218 #: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137 #: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:284 #: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:339 #: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:381 #: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893 #: src/pages/part/PartDetail.tsx:893
msgid "Parts" msgid "Parts"
msgstr "Delovi" msgstr "Delovi"
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr "Parametri" msgstr "Parametri"
#: lib/enums/ModelInformation.tsx:46 #: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87 #: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template" msgid "Parameter Template"
msgstr "Šablon parametara" msgstr "Šablon parametara"
#: lib/enums/ModelInformation.tsx:47 #: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates" msgid "Parameter Templates"
msgstr "" msgstr ""
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr "Delovi proizvođača" msgstr "Delovi proizvođača"
#: lib/enums/ModelInformation.tsx:80 #: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381 #: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496 #: src/tables/Filter.tsx:496
msgid "Part Category" msgid "Part Category"
msgstr "Kategorija delova" msgstr "Kategorija delova"
#: lib/enums/ModelInformation.tsx:81 #: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39 #: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:372 #: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154 #: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories" msgid "Part Categories"
msgstr "Kategorije delova" msgstr "Kategorije delova"
@ -273,7 +274,7 @@ msgstr "Stavka zalihe"
#: lib/enums/ModelInformation.tsx:90 #: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49 #: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217 #: 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/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156 #: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235 #: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr "Vlasnici"
#: src/tables/settings/ApiTokenTable.tsx:127 #: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79 #: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44 #: 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:237
#: src/tables/stock/StockTrackingTable.tsx:285 #: src/tables/stock/StockTrackingTable.tsx:285
msgid "User" msgid "User"
@ -640,7 +641,7 @@ msgstr ""
#: src/components/forms/fields/ApiFormField.tsx:259 #: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45 #: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215 #: 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/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85 #: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211 #: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr "Postoje greške na jednom ili više polja na obrascu"
#: src/components/forms/ApiForm.tsx:751 #: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143 #: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210 #: src/tables/plugin/PluginListTable.tsx:212
msgid "Update" msgid "Update"
msgstr "Obnovi" msgstr "Obnovi"
@ -1982,7 +1983,7 @@ msgstr "Host"
#: src/components/forms/InstanceOptions.tsx:125 #: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68 #: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 #: 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/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117 #: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67 #: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr "Server"
#: src/components/forms/InstanceOptions.tsx:131 #: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88 #: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127 #: src/tables/plugin/PluginListTable.tsx:129
msgid "Version" msgid "Version"
msgstr "Verzija" msgstr "Verzija"
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr "Obrađivanje podataka" msgstr "Obrađivanje podataka"
#: src/components/importer/ImporterColumnSelector.tsx:56 #: 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/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60 #: src/functions/api.tsx:60
#: src/functions/auth.tsx:401 #: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr "Izaberi kolonu, ili ostavi prazno da se polje ne koristi"
#~ msgid "Imported Column Name" #~ msgid "Imported Column Name"
#~ msgstr "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" msgid "Ignore this field"
msgstr "Ignoriši ovo polje" msgstr "Ignoriši ovo polje"
#: src/components/importer/ImporterColumnSelector.tsx:267 #: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields" msgid "Mapping data columns to database fields"
msgstr "Mapiranje kolona podataka u polja baze podataka" msgstr "Mapiranje kolona podataka u polja baze podataka"
#: src/components/importer/ImporterColumnSelector.tsx:272 #: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping" msgid "Accept Column Mapping"
msgstr "Prihvati mapiranje kolona" msgstr "Prihvati mapiranje kolona"
#: src/components/importer/ImporterColumnSelector.tsx:285 #: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field" msgid "Database Field"
msgstr "Polje baze podataka" msgstr "Polje baze podataka"
#: src/components/importer/ImporterColumnSelector.tsx:286 #: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description" msgid "Field Description"
msgstr "Opis polja" msgstr "Opis polja"
#: src/components/importer/ImporterColumnSelector.tsx:287 #: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column" msgid "Imported Column"
msgstr "Uvežena kolona" msgstr "Uvežena kolona"
#: 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" msgid "Default Value"
msgstr "Podrazmevana vrednost" msgstr "Podrazmevana vrednost"
@ -3131,7 +3140,7 @@ msgstr "Informacije o ekstenziji"
#: src/pages/company/ManufacturerPartDetail.tsx:94 #: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121 #: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150 #: 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/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166 #: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132 #: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr "Informacije o ekstenziji"
#: src/tables/build/BuildAllocatedStockTable.tsx:91 #: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159 #: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110 #: src/tables/plugin/PluginListTable.tsx:112
msgid "Description" msgid "Description"
msgstr "Opis" msgstr "Opis"
@ -3172,7 +3181,7 @@ msgstr "Datum"
#: src/tables/part/PartTableFilters.tsx:13 #: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15 #: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96 #: 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:139
#: src/tables/purchasing/SupplierPartTable.tsx:254 #: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63 #: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr "Aktivno"
#: src/components/plugins/PluginDrawer.tsx:99 #: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103 #: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140 #: src/tables/plugin/PluginListTable.tsx:142
msgid "Website" msgid "Website"
msgstr "Web sajt" msgstr "Web sajt"
@ -3198,8 +3207,8 @@ msgstr "Putanja instalacije"
#: src/components/plugins/PluginDrawer.tsx:124 #: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182 #: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:425 #: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin" msgid "Builtin"
msgstr "Već ugrađeno" msgstr "Već ugrađeno"
@ -3364,7 +3373,7 @@ msgstr "Detalji"
#: src/tables/ColumnRenderers.tsx:414 #: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423 #: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32 #: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78 #: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category" msgid "Category"
msgstr "Kategorija" msgstr "Kategorija"
@ -4823,7 +4832,7 @@ msgstr ""
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175 #: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79 #: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95 #: 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/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83 #: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status" msgid "Status"
@ -4995,7 +5004,7 @@ msgstr ""
#: src/forms/PartForms.tsx:110 #: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244 #: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129 #: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536 #: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92 #: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143 #: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr "Posebne jedinice"
#~ msgstr "Part Parameters" #~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 #: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters" msgid "Category Parameters"
msgstr "Kategorije parametara" msgstr "Kategorije parametara"
@ -7698,7 +7706,7 @@ msgstr "Otkaži nalog"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94 #: 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:103
#: src/pages/purchasing/PurchasingIndex.tsx:130 #: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159 #: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr "" msgstr ""
#: src/pages/build/BuildIndex.tsx:106 #: 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:115
#: src/pages/purchasing/PurchasingIndex.tsx:142 #: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165 #: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr ""
#~ msgid "Basic user" #~ msgid "Basic user"
#~ msgstr "Basic user" #~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105 #: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129 #: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336 #: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr ""
msgid "Path" msgid "Path"
msgstr "Putanja" msgstr "Putanja"
#: src/pages/part/CategoryDetail.tsx:121 #: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category" msgid "Parent Category"
msgstr "Nadređena kategorija" msgstr "Nadređena kategorija"
#: src/pages/part/CategoryDetail.tsx:144 #: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:278 #: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories" msgid "Subcategories"
msgstr "Podkategorije" msgstr "Podkategorije"
#: src/pages/part/CategoryDetail.tsx:151 #: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169 #: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87 #: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43 #: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural" msgid "Structural"
msgstr "Strukturalno" msgstr "Strukturalno"
#: src/pages/part/CategoryDetail.tsx:157 #: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location" msgid "Parent default location"
msgstr "Podrazumevana lokacija nadređene kategorije" msgstr "Podrazumevana lokacija nadređene kategorije"
#: src/pages/part/CategoryDetail.tsx:164 #: src/pages/part/CategoryDetail.tsx:165
msgid "Default location" msgid "Default location"
msgstr "Podrazumevana lokacija" msgstr "Podrazumevana lokacija"
@ -8018,48 +8026,48 @@ msgstr "Podrazumevana lokacija"
#~ msgid "Top level part category" #~ msgid "Top level part category"
#~ msgstr "Top level part category" #~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181 #: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:249 #: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121 #: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category" msgid "Edit Part Category"
msgstr "Izmeni kategoriju dela" msgstr "Izmeni kategoriju dela"
#: src/pages/part/CategoryDetail.tsx:190 #: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category" msgid "Move items to parent category"
msgstr "Premesti stavke u nadređenu kategoriju" msgstr "Premesti stavke u nadređenu kategoriju"
#: src/pages/part/CategoryDetail.tsx:194 #: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316 #: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items" msgid "Delete items"
msgstr "Obriši stavke" msgstr "Obriši stavke"
#: src/pages/part/CategoryDetail.tsx:202 #: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:254 #: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category" msgid "Delete Part Category"
msgstr "Obriši kategoriju dela" msgstr "Obriši kategoriju dela"
#: src/pages/part/CategoryDetail.tsx:205 #: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action" msgid "Parts Action"
msgstr "Akcije delova" msgstr "Akcije delova"
#: src/pages/part/CategoryDetail.tsx:206 #: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category" msgid "Action for parts in this category"
msgstr "Akcije za delove unutar ove kategorije" msgstr "Akcije za delove unutar ove kategorije"
#: src/pages/part/CategoryDetail.tsx:212 #: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action" msgid "Child Categories Action"
msgstr "Akcije podkategorije" msgstr "Akcije podkategorije"
#: src/pages/part/CategoryDetail.tsx:213 #: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category" msgid "Action for child categories in this category"
msgstr "Akcije za podkategorije ove kategorije" msgstr "Akcije za podkategorije ove kategorije"
#: src/pages/part/CategoryDetail.tsx:245 #: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142 #: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions" msgid "Category Actions"
msgstr "Akcije kategorije" msgstr "Akcije kategorije"
#: src/pages/part/CategoryDetail.tsx:271 #: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details" msgid "Category Details"
msgstr "Detalji kategorije" msgstr "Detalji kategorije"
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr "Da li ste sigurni da želite da obrišete ove izabrane stavke?" msgstr "Da li ste sigurni da želite da obrišete ove izabrane stavke?"
#: src/tables/InvenTreeTableHeader.tsx:113 #: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320 #: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone" msgid "This action cannot be undone"
msgstr "Ova akcija se ne može poništiti" msgstr "Ova akcija se ne može poništiti"
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr "" msgstr ""
#: src/tables/general/ParameterTemplateTable.tsx:148 #: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414 #: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type" msgid "Model Type"
msgstr "Tip modela" msgstr "Tip modela"
@ -11402,16 +11410,16 @@ msgstr ""
msgid "Add Part Category" msgid "Add Part Category"
msgstr "Dodaj kategoriju dela" msgstr "Dodaj kategoriju dela"
#: src/tables/part/PartCategoryTemplateTable.tsx:49 #: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:143 #: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter" msgid "Add Category Parameter"
msgstr "Dodaj parametar kategorije" msgstr "Dodaj parametar kategorije"
#: src/tables/part/PartCategoryTemplateTable.tsx:57 #: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter" msgid "Edit Category Parameter"
msgstr "Izmeni parametar kategorije" msgstr "Izmeni parametar kategorije"
#: src/tables/part/PartCategoryTemplateTable.tsx:65 #: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter" msgid "Delete Category Parameter"
msgstr "Obriši parametar kategorije" msgstr "Obriši parametar kategorije"
@ -11419,6 +11427,14 @@ msgstr "Obriši parametar kategorije"
#~ msgid "[{0}]" #~ msgid "[{0}]"
#~ msgstr "[{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 #: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter" #~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter" #~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr "Dodatak"
#~ msgid "An error occurred while fetching plugin details" #~ msgid "An error occurred while fetching plugin details"
#~ msgstr "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:108
#: src/tables/plugin/PluginListTable.tsx:430 #: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory" msgid "Mandatory"
msgstr "" msgstr ""
@ -11847,7 +11863,7 @@ msgstr ""
#~ msgid "Plugin with id {id} not found" #~ msgid "Plugin with id {id} not found"
#~ msgstr "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" msgid "Description not available"
msgstr "Opis nije dostupan" msgstr "Opis nije dostupan"
@ -11869,11 +11885,11 @@ msgstr "Opis nije dostupan"
#~ msgid "Reload" #~ msgid "Reload"
#~ msgstr "Reload" #~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159 #: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation" msgid "Confirm plugin activation"
msgstr "Potvrdi aktivaciju dodatka" msgstr "Potvrdi aktivaciju dodatka"
#: src/tables/plugin/PluginListTable.tsx:160 #: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation" msgid "Confirm plugin deactivation"
msgstr "Potvrdi deaktivaciju dodatka" msgstr "Potvrdi deaktivaciju dodatka"
@ -11881,15 +11897,15 @@ msgstr "Potvrdi deaktivaciju dodatka"
#~ msgid "Package information" #~ msgid "Package information"
#~ msgstr "Package information" #~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165 #: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated" msgid "The selected plugin will be activated"
msgstr "Izabrani dodatak će biti aktiviran" msgstr "Izabrani dodatak će biti aktiviran"
#: src/tables/plugin/PluginListTable.tsx:166 #: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated" msgid "The selected plugin will be deactivated"
msgstr "Izabrani dodatak će biti deaktiviran" msgstr "Izabrani dodatak će biti deaktiviran"
#: src/tables/plugin/PluginListTable.tsx:184 #: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate" msgid "Deactivate"
msgstr "Deaktiviraj" msgstr "Deaktiviraj"
@ -11897,44 +11913,44 @@ msgstr "Deaktiviraj"
#~ msgid "Plugin settings" #~ msgid "Plugin settings"
#~ msgstr "Plugin settings" #~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198 #: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate" msgid "Activate"
msgstr "Aktiviraj" msgstr "Aktiviraj"
#: src/tables/plugin/PluginListTable.tsx:199 #: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin" msgid "Activate selected plugin"
msgstr "Aktiviraj izabrani dodatak" msgstr "Aktiviraj izabrani dodatak"
#: src/tables/plugin/PluginListTable.tsx:211 #: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin" msgid "Update selected plugin"
msgstr "Ažuriraj izabrane dodatke" msgstr "Ažuriraj izabrane dodatke"
#: src/tables/plugin/PluginListTable.tsx:229 #: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98 #: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall" msgid "Uninstall"
msgstr "Obriši" msgstr "Obriši"
#: src/tables/plugin/PluginListTable.tsx:230 #: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin" msgid "Uninstall selected plugin"
msgstr "Obriši izabrani dodatak" msgstr "Obriši izabrani dodatak"
#: src/tables/plugin/PluginListTable.tsx:248 #: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration" msgid "Delete selected plugin configuration"
msgstr "Obriši izabranu konfiguraciju dodatka" msgstr "Obriši izabranu konfiguraciju dodatka"
#: src/tables/plugin/PluginListTable.tsx:264 #: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin" msgid "Activate Plugin"
msgstr "Aktiviraj dodatak" msgstr "Aktiviraj dodatak"
#: src/tables/plugin/PluginListTable.tsx:264 #: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin" msgid "Deactivate Plugin"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271 #: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated" msgid "The plugin was activated"
msgstr "Dodatak je aktiviran" msgstr "Dodatak je aktiviran"
#: src/tables/plugin/PluginListTable.tsx:272 #: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated" msgid "The plugin was deactivated"
msgstr "Dodatak je deaktiviran" msgstr "Dodatak je deaktiviran"
@ -11942,20 +11958,20 @@ msgstr "Dodatak je deaktiviran"
#~ msgid "Install plugin" #~ msgid "Install plugin"
#~ msgstr "Install plugin" #~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285 #: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:377 #: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin" msgid "Install Plugin"
msgstr "Instaliraj dodatak" msgstr "Instaliraj dodatak"
#: src/tables/plugin/PluginListTable.tsx:298 #: src/tables/plugin/PluginListTable.tsx:300
msgid "Install" msgid "Install"
msgstr "Instaliraj" msgstr "Instaliraj"
#: src/tables/plugin/PluginListTable.tsx:299 #: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully" msgid "Plugin installed successfully"
msgstr "Dodatak uspešno instaliran" msgstr "Dodatak uspešno instaliran"
#: src/tables/plugin/PluginListTable.tsx:304 #: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin" msgid "Uninstall Plugin"
msgstr "Obriši dodatak" msgstr "Obriši dodatak"
@ -11963,31 +11979,31 @@ msgstr "Obriši dodatak"
#~ msgid "This action cannot be undone." #~ msgid "This action cannot be undone."
#~ msgstr "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" msgid "Confirm plugin uninstall"
msgstr "Potvrdi brisanje dodatka" msgstr "Potvrdi brisanje dodatka"
#: src/tables/plugin/PluginListTable.tsx:319 #: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled." msgid "The selected plugin will be uninstalled."
msgstr "Izabrani dodatak će biti obrisan" msgstr "Izabrani dodatak će biti obrisan"
#: src/tables/plugin/PluginListTable.tsx:324 #: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully" msgid "Plugin uninstalled successfully"
msgstr "Dodatak uspešno obrisan" msgstr "Dodatak uspešno obrisan"
#: src/tables/plugin/PluginListTable.tsx:332 #: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin" msgid "Delete Plugin"
msgstr "Obriši dodatak" msgstr "Obriši dodatak"
#: 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?" msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr "Brisanjem ove konfiguracije dodatka ukloniće se sva povezana podešavanja i podaci. Da li ste sigurni da želite da obrišete ovaj dodatak?" msgstr "Brisanjem ove konfiguracije dodatka ukloniće se sva povezana podešavanja i podaci. Da li ste sigurni da želite da obrišete ovaj dodatak?"
#: src/tables/plugin/PluginListTable.tsx:346 #: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded" msgid "Plugins reloaded"
msgstr "Dodaci ponovo učitani" msgstr "Dodaci ponovo učitani"
#: src/tables/plugin/PluginListTable.tsx:347 #: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully" msgid "Plugins were reloaded successfully"
msgstr "Dodaci uspešno ponovo učitani" msgstr "Dodaci uspešno ponovo učitani"
@ -11999,7 +12015,7 @@ msgstr "Dodaci uspešno ponovo učitani"
#~ msgid "The following plugin will be deactivated" #~ msgid "The following plugin will be deactivated"
#~ msgstr "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" msgid "Reload Plugins"
msgstr "Ponovo učitaj dodatke" msgstr "Ponovo učitaj dodatke"
@ -12015,7 +12031,7 @@ msgstr "Ponovo učitaj dodatke"
#~ msgid "Plugin updated" #~ msgid "Plugin updated"
#~ msgstr "Plugin updated" #~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393 #: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail" msgid "Plugin Detail"
msgstr "Detalji dodatka" msgstr "Detalji dodatka"
@ -12023,11 +12039,11 @@ msgstr "Detalji dodatka"
#~ msgid "Error updating plugin" #~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin" #~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435 #: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample" msgid "Sample"
msgstr "Uzorak" msgstr "Uzorak"
#: src/tables/plugin/PluginListTable.tsx:440 #: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248 #: src/tables/stock/StockItemTable.tsx:248
msgid "Installed" msgid "Installed"
msgstr "Instalirano" msgstr "Instalirano"
@ -12660,29 +12676,29 @@ msgstr ""
msgid "Add Group" msgid "Add Group"
msgstr "" msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:37 #: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session" msgid "Delete Import Session"
msgstr "Obriši sesiju uvoza" msgstr "Obriši sesiju uvoza"
#: src/tables/settings/ImportSessionTable.tsx:43 #: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:130 #: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session" msgid "Create Import Session"
msgstr "Kreiraj sesiju uvoza" msgstr "Kreiraj sesiju uvoza"
#: src/tables/settings/ImportSessionTable.tsx:73 #: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded" msgid "Uploaded"
msgstr "Uploadovano" msgstr "Uploadovano"
#: src/tables/settings/ImportSessionTable.tsx:84 #: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows" msgid "Imported Rows"
msgstr "Učitani redovi" msgstr "Učitani redovi"
#: src/tables/settings/ImportSessionTable.tsx:113 #: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415 #: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type" msgid "Filter by target model type"
msgstr "Filtriraj po tipu ciljnog modela" msgstr "Filtriraj po tipu ciljnog modela"
#: src/tables/settings/ImportSessionTable.tsx:119 #: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status" msgid "Filter by import session status"
msgstr "Filtriraj po statusu sesije uvoza" msgstr "Filtriraj po statusu sesije uvoza"

View File

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

View File

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

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: tr\n" "Language: tr\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \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" "Last-Translator: \n"
"Language-Team: Turkish\n" "Language-Team: Turkish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -56,7 +56,7 @@ msgstr "Düzenle"
#: src/components/items/RoleTable.tsx:155 #: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174 #: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109 #: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247 #: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete" msgid "Delete"
msgstr "Sil" msgstr "Sil"
@ -163,10 +163,10 @@ msgstr "Parça"
#: src/components/nav/NavigationDrawer.tsx:70 #: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39 #: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218 #: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137 #: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:284 #: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:339 #: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:381 #: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893 #: src/pages/part/PartDetail.tsx:893
msgid "Parts" msgid "Parts"
msgstr "Parçalar" msgstr "Parçalar"
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr "Parametreler" msgstr "Parametreler"
#: lib/enums/ModelInformation.tsx:46 #: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87 #: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template" msgid "Parameter Template"
msgstr "Parametre Şablonu" msgstr "Parametre Şablonu"
#: lib/enums/ModelInformation.tsx:47 #: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates" msgid "Parameter Templates"
msgstr "Parametre Şablonları" msgstr "Parametre Şablonları"
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr "Üretici Parçaları" msgstr "Üretici Parçaları"
#: lib/enums/ModelInformation.tsx:80 #: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381 #: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496 #: src/tables/Filter.tsx:496
msgid "Part Category" msgid "Part Category"
msgstr "Parça Kategorisi" msgstr "Parça Kategorisi"
#: lib/enums/ModelInformation.tsx:81 #: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39 #: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:372 #: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154 #: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories" msgid "Part Categories"
msgstr "Parça Kategorileri" msgstr "Parça Kategorileri"
@ -273,7 +274,7 @@ msgstr "Stok Kalemi"
#: lib/enums/ModelInformation.tsx:90 #: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49 #: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217 #: 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/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156 #: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235 #: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr "Sahipler"
#: src/tables/settings/ApiTokenTable.tsx:127 #: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79 #: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44 #: 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:237
#: src/tables/stock/StockTrackingTable.tsx:285 #: src/tables/stock/StockTrackingTable.tsx:285
msgid "User" msgid "User"
@ -640,7 +641,7 @@ msgstr "Seçim Kayıtları"
#: src/components/forms/fields/ApiFormField.tsx:259 #: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45 #: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215 #: 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/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85 #: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211 #: src/components/nav/NavigationTree.tsx:211
@ -1420,15 +1421,15 @@ msgstr "Stok Sayımı Raporu Oluştur"
#: src/components/dashboard/widgets/StocktakeDashboardWidget.tsx:37 #: src/components/dashboard/widgets/StocktakeDashboardWidget.tsx:37
#: src/pages/part/PartStockHistoryDetail.tsx:108 #: src/pages/part/PartStockHistoryDetail.tsx:108
msgid "Generate" msgid "Generate"
msgstr "" msgstr "Oluştur"
#: src/components/dashboard/widgets/StocktakeDashboardWidget.tsx:64 #: src/components/dashboard/widgets/StocktakeDashboardWidget.tsx:64
msgid "Stocktake" msgid "Stocktake"
msgstr "" msgstr "Stok Sayımı"
#: src/components/dashboard/widgets/StocktakeDashboardWidget.tsx:65 #: src/components/dashboard/widgets/StocktakeDashboardWidget.tsx:65
msgid "Generate a new stocktake report" msgid "Generate a new stocktake report"
msgstr "" msgstr "Yeni bir stok sayımı raporu oluştur"
#: src/components/details/Details.tsx:117 #: src/components/details/Details.tsx:117
#~ msgid "Email:" #~ msgid "Email:"
@ -1449,7 +1450,7 @@ msgstr "Süper Kullanıcı"
#: src/tables/settings/UserTable.tsx:285 #: src/tables/settings/UserTable.tsx:285
#: src/tables/settings/UserTable.tsx:406 #: src/tables/settings/UserTable.tsx:406
msgid "Administrator" msgid "Administrator"
msgstr "" msgstr "Yönetici"
#: src/components/details/Details.tsx:130 #: src/components/details/Details.tsx:130
#: src/pages/core/UserDetail.tsx:87 #: src/pages/core/UserDetail.tsx:87
@ -1494,11 +1495,11 @@ msgstr "Kaldır"
#: src/components/details/DetailsImage.tsx:87 #: src/components/details/DetailsImage.tsx:87
msgid "Image removed" msgid "Image removed"
msgstr "" msgstr "Görsel silindi"
#: src/components/details/DetailsImage.tsx:88 #: src/components/details/DetailsImage.tsx:88
msgid "The image has been removed successfully" msgid "The image has been removed successfully"
msgstr "" msgstr "Görsel başarıyla silindi"
#: src/components/details/DetailsImage.tsx:115 #: src/components/details/DetailsImage.tsx:115
#~ msgid "Drag and drop to upload" #~ msgid "Drag and drop to upload"
@ -1506,7 +1507,7 @@ msgstr ""
#: src/components/details/DetailsImage.tsx:156 #: src/components/details/DetailsImage.tsx:156
msgid "Drag and drop to upload, or paste an image from the clipboard" msgid "Drag and drop to upload, or paste an image from the clipboard"
msgstr "" msgstr "Yüklemek için sürükle ve bırak, veya panodan bir görsel yapıştır"
#: src/components/details/DetailsImage.tsx:161 #: src/components/details/DetailsImage.tsx:161
msgid "Click to select file(s)" msgid "Click to select file(s)"
@ -1794,7 +1795,7 @@ msgstr "Bir veya daha fazla form alanında hatalar var"
#: src/components/forms/ApiForm.tsx:751 #: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143 #: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210 #: src/tables/plugin/PluginListTable.tsx:212
msgid "Update" msgid "Update"
msgstr "Güncelle" msgstr "Güncelle"
@ -1970,7 +1971,7 @@ msgstr "Bu, eksik posta ayarlarıyla ilgili olabilir veya kasıtlı bir karar ol
#: src/components/forms/DateTimeField.tsx:64 #: src/components/forms/DateTimeField.tsx:64
msgid "Select date and time" msgid "Select date and time"
msgstr "" msgstr "Tarih ve saati seç"
#: src/components/forms/HostOptionsForm.tsx:36 #: src/components/forms/HostOptionsForm.tsx:36
#: src/components/forms/HostOptionsForm.tsx:67 #: src/components/forms/HostOptionsForm.tsx:67
@ -1982,7 +1983,7 @@ msgstr "Sunucu"
#: src/components/forms/InstanceOptions.tsx:125 #: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68 #: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 #: 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/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117 #: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67 #: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr "Sunucu"
#: src/components/forms/InstanceOptions.tsx:131 #: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88 #: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127 #: src/tables/plugin/PluginListTable.tsx:129
msgid "Version" msgid "Version"
msgstr "Sürüm" msgstr "Sürüm"
@ -2162,7 +2163,7 @@ msgstr "Öge"
#: src/components/forms/fields/RelatedModelField.tsx:591 #: src/components/forms/fields/RelatedModelField.tsx:591
msgid "Create New {model}" msgid "Create New {model}"
msgstr "" msgstr "Yeni {model} Oluştur"
#: src/components/forms/fields/TableField.tsx:46 #: src/components/forms/fields/TableField.tsx:46
msgid "modelRenderer entry required for tables" msgid "modelRenderer entry required for tables"
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr "Veri İşleniyor" msgstr "Veri İşleniyor"
#: src/components/importer/ImporterColumnSelector.tsx:56 #: 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/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60 #: src/functions/api.tsx:60
#: src/functions/auth.tsx:401 #: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr "Sütun seçin veya bu alanı yok saymak için boş bırakın."
#~ msgid "Imported Column Name" #~ msgid "Imported Column Name"
#~ msgstr "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" msgid "Ignore this field"
msgstr "Bu alanı yok say" msgstr "Bu alanı yok say"
#: src/components/importer/ImporterColumnSelector.tsx:267 #: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields" msgid "Mapping data columns to database fields"
msgstr "Veri sütunları veritabanı alanları ile eşleştiriliyor" msgstr "Veri sütunları veritabanı alanları ile eşleştiriliyor"
#: src/components/importer/ImporterColumnSelector.tsx:272 #: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping" msgid "Accept Column Mapping"
msgstr "Sütun Eşleştirmesini Kabul Et" msgstr "Sütun Eşleştirmesini Kabul Et"
#: src/components/importer/ImporterColumnSelector.tsx:285 #: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field" msgid "Database Field"
msgstr "Veritabanı Alanı" msgstr "Veritabanı Alanı"
#: src/components/importer/ImporterColumnSelector.tsx:286 #: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description" msgid "Field Description"
msgstr "Alan Açıklaması" msgstr "Alan Açıklaması"
#: src/components/importer/ImporterColumnSelector.tsx:287 #: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column" msgid "Imported Column"
msgstr "İçe Aktarılmış Sütun" msgstr "İçe Aktarılmış Sütun"
#: 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" msgid "Default Value"
msgstr "Varsayılan Değer" msgstr "Varsayılan Değer"
@ -2304,7 +2313,7 @@ msgstr "Sütunları Eşleştir"
#: src/components/importer/ImporterDrawer.tsx:46 #: src/components/importer/ImporterDrawer.tsx:46
msgid "Import Rows" msgid "Import Rows"
msgstr "" msgstr "Satırları İçe Aktar"
#: src/components/importer/ImporterDrawer.tsx:47 #: src/components/importer/ImporterDrawer.tsx:47
msgid "Process Data" msgid "Process Data"
@ -2448,7 +2457,7 @@ msgstr "InvenTree Logo"
#: src/components/items/LanguageSelect.tsx:44 #: src/components/items/LanguageSelect.tsx:44
msgid "Default Language" msgid "Default Language"
msgstr "" msgstr "Varsayılan Dil"
#: src/components/items/LanguageSelect.tsx:52 #: src/components/items/LanguageSelect.tsx:52
#: src/components/items/LanguageToggle.tsx:21 #: src/components/items/LanguageToggle.tsx:21
@ -2462,7 +2471,7 @@ msgstr "Dil Seç"
#: src/components/items/OnlyStaff.tsx:11 #: src/components/items/OnlyStaff.tsx:11
msgid "This information is only available for administrative users" msgid "This information is only available for administrative users"
msgstr "" msgstr "Bu bilgi yalnızca yönetici kullanıcılar için mevcuttur"
#: src/components/items/Placeholder.tsx:14 #: src/components/items/Placeholder.tsx:14
#~ msgid "This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing." #~ msgid "This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing."
@ -2719,7 +2728,7 @@ msgstr "Sağlıklı"
#: src/components/modals/ServerInfoModal.tsx:93 #: src/components/modals/ServerInfoModal.tsx:93
msgid "Issues detected" msgid "Issues detected"
msgstr "Sorunlar saptandı" msgstr "Tespit edilen sorunlar"
#: src/components/modals/ServerInfoModal.tsx:102 #: src/components/modals/ServerInfoModal.tsx:102
#: src/components/nav/Alerts.tsx:127 #: src/components/nav/Alerts.tsx:127
@ -2754,7 +2763,7 @@ msgstr "Uyarılar"
#: src/components/nav/Alerts.tsx:97 #: src/components/nav/Alerts.tsx:97
msgid "No issues detected" msgid "No issues detected"
msgstr "" msgstr "Herhangi bir sorun tespit edilmedi"
#: src/components/nav/Alerts.tsx:122 #: src/components/nav/Alerts.tsx:122
msgid "The server is running in debug mode." msgid "The server is running in debug mode."
@ -2791,7 +2800,7 @@ msgstr "Hakkında daha fazlasını öğren {code}"
#: src/components/nav/Header.tsx:63 #: src/components/nav/Header.tsx:63
#: src/components/nav/Header.tsx:70 #: src/components/nav/Header.tsx:70
msgid "Open search" msgid "Open search"
msgstr "" msgstr "Aramayı"
#: src/components/nav/Header.tsx:210 #: src/components/nav/Header.tsx:210
#: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NavigationDrawer.tsx:134
@ -2809,15 +2818,15 @@ msgstr "Bildirimler"
#: src/components/nav/Header.tsx:232 #: src/components/nav/Header.tsx:232
msgid "Superuser Mode" msgid "Superuser Mode"
msgstr "" msgstr "Süper Kullanıcı Modu"
#: src/components/nav/Header.tsx:232 #: src/components/nav/Header.tsx:232
msgid "Admin Mode" msgid "Admin Mode"
msgstr "" msgstr "Yönetici Modu"
#: src/components/nav/Header.tsx:238 #: src/components/nav/Header.tsx:238
msgid "The current user has elevated privileges and should not be used for regular usage." msgid "The current user has elevated privileges and should not be used for regular usage."
msgstr "" msgstr "Mevcut kullanıcı, yüksek düzeyde ayrıcalıklara sahiptir ve normal kullanım amacıyla kullanılmamalıdır."
#: src/components/nav/Layout.tsx:146 #: src/components/nav/Layout.tsx:146
msgid "Nothing found..." msgid "Nothing found..."
@ -2989,7 +2998,7 @@ msgstr "Bildirimleri yükleme hatası."
#: src/components/nav/PageDetail.tsx:263 #: src/components/nav/PageDetail.tsx:263
msgid "Primary Action" msgid "Primary Action"
msgstr "" msgstr "Birincil Eylem"
#: src/components/nav/SearchDrawer.tsx:111 #: src/components/nav/SearchDrawer.tsx:111
msgid "No Overview Available" msgid "No Overview Available"
@ -3089,12 +3098,12 @@ msgstr "Eklenti Sağlandı"
#: src/components/panels/PanelGroup.tsx:299 #: src/components/panels/PanelGroup.tsx:299
msgid "You have unsaved changes, are you sure you want to navigate away from this panel?" msgid "You have unsaved changes, are you sure you want to navigate away from this panel?"
msgstr "" msgstr "Kaydedilmemiş değişiklikleriniz var; bu panelden çıkmak istediğinizden emin misiniz?"
#. placeholder {0}: panel.name #. placeholder {0}: panel.name
#: src/components/panels/PanelGroup.tsx:349 #: src/components/panels/PanelGroup.tsx:349
msgid "Navigate to panel {0}" msgid "Navigate to panel {0}"
msgstr "" msgstr "{0} paneline git"
#: src/components/panels/PanelGroup.tsx:409 #: src/components/panels/PanelGroup.tsx:409
msgid "Collapse panels" msgid "Collapse panels"
@ -3107,11 +3116,11 @@ msgstr "Panelleri genişlet"
#: src/components/plugins/LocateItemButton.tsx:68 #: src/components/plugins/LocateItemButton.tsx:68
#: src/components/plugins/LocateItemButton.tsx:88 #: src/components/plugins/LocateItemButton.tsx:88
msgid "Locate Item" msgid "Locate Item"
msgstr "" msgstr "Ögeyi Bul"
#: src/components/plugins/LocateItemButton.tsx:70 #: src/components/plugins/LocateItemButton.tsx:70
msgid "Item location requested" msgid "Item location requested"
msgstr "" msgstr "Öge konumu istendi"
#: src/components/plugins/PluginDrawer.tsx:47 #: src/components/plugins/PluginDrawer.tsx:47
msgid "Plugin Inactive" msgid "Plugin Inactive"
@ -3131,7 +3140,7 @@ msgstr "Eklenti Bilgileri"
#: src/pages/company/ManufacturerPartDetail.tsx:94 #: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121 #: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150 #: 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/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166 #: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132 #: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr "Eklenti Bilgileri"
#: src/tables/build/BuildAllocatedStockTable.tsx:91 #: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159 #: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110 #: src/tables/plugin/PluginListTable.tsx:112
msgid "Description" msgid "Description"
msgstr "Açıklama" msgstr "Açıklama"
@ -3172,7 +3181,7 @@ msgstr "Tarih"
#: src/tables/part/PartTableFilters.tsx:13 #: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15 #: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96 #: 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:139
#: src/tables/purchasing/SupplierPartTable.tsx:254 #: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63 #: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr "Aktif"
#: src/components/plugins/PluginDrawer.tsx:99 #: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103 #: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140 #: src/tables/plugin/PluginListTable.tsx:142
msgid "Website" msgid "Website"
msgstr "Web Sitesi" msgstr "Web Sitesi"
@ -3198,8 +3207,8 @@ msgstr "Kurulum Yolu"
#: src/components/plugins/PluginDrawer.tsx:124 #: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182 #: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:425 #: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin" msgid "Builtin"
msgstr "Dahili" msgstr "Dahili"
@ -3241,23 +3250,23 @@ msgstr "Eklenti Ayarları"
#: src/components/plugins/PluginUIFeature.tsx:104 #: src/components/plugins/PluginUIFeature.tsx:104
msgid "Error occurred while rendering the template editor." msgid "Error occurred while rendering the template editor."
msgstr "" msgstr "Şablon düzenleyicisi yüklenirken hata oluştu."
#: src/components/plugins/PluginUIFeature.tsx:121 #: src/components/plugins/PluginUIFeature.tsx:121
msgid "Error Loading Plugin Editor" msgid "Error Loading Plugin Editor"
msgstr "" msgstr "Eklenti Düzenleyici Yükleme Hatası"
#: src/components/plugins/PluginUIFeature.tsx:159 #: src/components/plugins/PluginUIFeature.tsx:159
msgid "Error occurred while rendering the template preview." msgid "Error occurred while rendering the template preview."
msgstr "" msgstr "Şablon önizlemesi oluşturulurken hata oluştu."
#: src/components/plugins/PluginUIFeature.tsx:170 #: src/components/plugins/PluginUIFeature.tsx:170
msgid "Error Loading Plugin Preview" msgid "Error Loading Plugin Preview"
msgstr "" msgstr "Eklenti Önizleme Yükleme Hatası"
#: src/components/plugins/RemoteComponent.tsx:50 #: src/components/plugins/RemoteComponent.tsx:50
msgid "Error Loading Plugin Content" msgid "Error Loading Plugin Content"
msgstr "" msgstr "Eklenti İçeriği Yükleme Hatası"
#: src/components/plugins/RemoteComponent.tsx:111 #: src/components/plugins/RemoteComponent.tsx:111
#~ msgid "Invalid source or function name" #~ msgid "Invalid source or function name"
@ -3273,12 +3282,12 @@ msgstr ""
#: src/components/render/Instance.tsx:209 #: src/components/render/Instance.tsx:209
msgid "ID" msgid "ID"
msgstr "" msgstr "ID"
#: src/components/render/Instance.tsx:225 #: src/components/render/Instance.tsx:225
#: src/tables/InvenTreeTable.tsx:787 #: src/tables/InvenTreeTable.tsx:787
msgid "View details" msgid "View details"
msgstr "" msgstr "Ayrıntıları görüntüle"
#: src/components/render/Instance.tsx:238 #: src/components/render/Instance.tsx:238
#~ msgid "Unknown model: {model}" #~ msgid "Unknown model: {model}"
@ -3364,7 +3373,7 @@ msgstr "Ayrıntılar"
#: src/tables/ColumnRenderers.tsx:414 #: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423 #: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32 #: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78 #: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category" msgid "Category"
msgstr "Kategori" msgstr "Kategori"
@ -3486,7 +3495,7 @@ msgstr "Bir Sorun Bildir"
#: src/components/settings/QuickAction.tsx:86 #: src/components/settings/QuickAction.tsx:86
msgid "Report a bug or request a feature on GitHub" msgid "Report a bug or request a feature on GitHub"
msgstr "" msgstr "GitHub üzerinden bir hata bildirin veya bir özellik talebinde bulunun"
#: src/components/settings/QuickAction.tsx:88 #: src/components/settings/QuickAction.tsx:88
msgid "Open Issue" msgid "Open Issue"
@ -3498,7 +3507,7 @@ msgstr "Yeni Grup Ekle"
#: src/components/settings/QuickAction.tsx:98 #: src/components/settings/QuickAction.tsx:98
msgid "Create a new group to manage your users" msgid "Create a new group to manage your users"
msgstr "" msgstr "Kullanıcılarınızı yönetmek için yeni bir grup oluşturun"
#: src/components/settings/QuickAction.tsx:100 #: src/components/settings/QuickAction.tsx:100
msgid "New Group" msgid "New Group"
@ -3530,11 +3539,11 @@ msgstr "Özel Durum Ekle"
#: src/components/settings/QuickAction.tsx:122 #: src/components/settings/QuickAction.tsx:122
msgid "Create a new custom state for your workflow" msgid "Create a new custom state for your workflow"
msgstr "" msgstr "İş akışınız için yeni bir özel durum oluşturun"
#: src/components/settings/SettingItem.tsx:33 #: src/components/settings/SettingItem.tsx:33
msgid "Do you want to proceed to change this setting?" msgid "Do you want to proceed to change this setting?"
msgstr "" msgstr "Bu ayarı değiştirmeye devam etmek istiyor musunuz?"
#: src/components/settings/SettingItem.tsx:47 #: src/components/settings/SettingItem.tsx:47
#: src/components/settings/SettingItem.tsx:100 #: src/components/settings/SettingItem.tsx:100
@ -3543,7 +3552,7 @@ msgstr ""
#: src/components/settings/SettingItem.tsx:221 #: src/components/settings/SettingItem.tsx:221
msgid "This setting requires confirmation" msgid "This setting requires confirmation"
msgstr "" msgstr "Bu ayar doğrulama gerektirir"
#: src/components/settings/SettingList.tsx:74 #: src/components/settings/SettingList.tsx:74
msgid "Edit Setting" msgid "Edit Setting"
@ -3576,7 +3585,7 @@ msgstr "Ayar Yok"
#: src/components/settings/SettingList.tsx:158 #: src/components/settings/SettingList.tsx:158
msgid "There are no configurable settings available" msgid "There are no configurable settings available"
msgstr "" msgstr "Yapılandırılabilir ayar bulunmamaktadır"
#: src/components/settings/SettingList.tsx:197 #: src/components/settings/SettingList.tsx:197
msgid "No settings specified" msgid "No settings specified"
@ -3944,7 +3953,7 @@ msgstr "Tam eşleşme."
#: src/components/wizards/ImportPartWizard.tsx:112 #: src/components/wizards/ImportPartWizard.tsx:112
msgid "Current part" msgid "Current part"
msgstr "" msgstr "Şimdiki parça"
#: src/components/wizards/ImportPartWizard.tsx:118 #: src/components/wizards/ImportPartWizard.tsx:118
msgid "Already Imported" msgid "Already Imported"
@ -3973,7 +3982,7 @@ msgstr "Yükleniyor..."
#: src/components/wizards/ImportPartWizard.tsx:223 #: src/components/wizards/ImportPartWizard.tsx:223
msgid "Error fetching suppliers" msgid "Error fetching suppliers"
msgstr "" msgstr "Tedarikçiler alınırken hata oluştu"
#: src/components/wizards/ImportPartWizard.tsx:224 #: src/components/wizards/ImportPartWizard.tsx:224
msgid "Select supplier" msgid "Select supplier"
@ -3990,7 +3999,7 @@ msgstr "Bu bölümü içe aktar"
#: src/components/wizards/ImportPartWizard.tsx:313 #: src/components/wizards/ImportPartWizard.tsx:313
msgid "Are you sure you want to import this part into the selected category now?" msgid "Are you sure you want to import this part into the selected category now?"
msgstr "" msgstr "Bu parçayı şimdi seçilen kategoriye aktarmak istediğinizden emin misiniz?"
#: src/components/wizards/ImportPartWizard.tsx:326 #: src/components/wizards/ImportPartWizard.tsx:326
msgid "Import Now" msgid "Import Now"
@ -3998,11 +4007,11 @@ msgstr "Şimdi İçe Aktar"
#: src/components/wizards/ImportPartWizard.tsx:372 #: src/components/wizards/ImportPartWizard.tsx:372
msgid "Select and edit the parameters you want to add to this part." msgid "Select and edit the parameters you want to add to this part."
msgstr "" msgstr "Bu parçaya eklemek istediğiniz parametreleri seçin ve düzenleyin."
#: src/components/wizards/ImportPartWizard.tsx:379 #: src/components/wizards/ImportPartWizard.tsx:379
msgid "Default category parameters" msgid "Default category parameters"
msgstr "" msgstr "Varsayılan kategori parametreleri"
#: src/components/wizards/ImportPartWizard.tsx:391 #: src/components/wizards/ImportPartWizard.tsx:391
msgid "Other parameters" msgid "Other parameters"
@ -4010,7 +4019,7 @@ msgstr "Diğer parametreler"
#: src/components/wizards/ImportPartWizard.tsx:446 #: src/components/wizards/ImportPartWizard.tsx:446
msgid "Add a new parameter" msgid "Add a new parameter"
msgstr "" msgstr "Yen bir parametre ekle"
#: src/components/wizards/ImportPartWizard.tsx:468 #: src/components/wizards/ImportPartWizard.tsx:468
msgid "Skip" msgid "Skip"
@ -4018,11 +4027,11 @@ msgstr "Atla"
#: src/components/wizards/ImportPartWizard.tsx:476 #: src/components/wizards/ImportPartWizard.tsx:476
msgid "Create Parameters" msgid "Create Parameters"
msgstr "" msgstr "Parametreler Oluştur"
#: src/components/wizards/ImportPartWizard.tsx:493 #: src/components/wizards/ImportPartWizard.tsx:493
msgid "Create initial stock for the imported part." msgid "Create initial stock for the imported part."
msgstr "" msgstr "İçe aktarılan parça için başlangıç stoku oluştur."
#: src/components/wizards/ImportPartWizard.tsx:511 #: src/components/wizards/ImportPartWizard.tsx:511
msgid "Next" msgid "Next"
@ -4036,11 +4045,11 @@ msgstr "Parçayı Düzenle"
#: src/components/wizards/ImportPartWizard.tsx:567 #: src/components/wizards/ImportPartWizard.tsx:567
msgid "Part imported successfully!" msgid "Part imported successfully!"
msgstr "" msgstr "Parça başarıyla içe aktarıldı!"
#: src/components/wizards/ImportPartWizard.tsx:576 #: src/components/wizards/ImportPartWizard.tsx:576
msgid "Failed to import part: " msgid "Failed to import part: "
msgstr "" msgstr "Parçayı içe aktarma başarısız oldu: "
#: src/components/wizards/ImportPartWizard.tsx:641 #: src/components/wizards/ImportPartWizard.tsx:641
msgid "Are you sure, you want to import the supplier and manufacturer part into this part?" msgid "Are you sure, you want to import the supplier and manufacturer part into this part?"
@ -4823,7 +4832,7 @@ msgstr ""
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175 #: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79 #: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95 #: 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/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83 #: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status" msgid "Status"
@ -4995,7 +5004,7 @@ msgstr ""
#: src/forms/PartForms.tsx:110 #: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244 #: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129 #: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536 #: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92 #: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143 #: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr "Özel Birimler"
#~ msgstr "Part Parameters" #~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 #: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters" msgid "Category Parameters"
msgstr "Kategori Parametreleri" msgstr "Kategori Parametreleri"
@ -7698,7 +7706,7 @@ msgstr "Siparişi iptal et"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94 #: 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:103
#: src/pages/purchasing/PurchasingIndex.tsx:130 #: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159 #: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr "" msgstr ""
#: src/pages/build/BuildIndex.tsx:106 #: 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:115
#: src/pages/purchasing/PurchasingIndex.tsx:142 #: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165 #: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr ""
#~ msgid "Basic user" #~ msgid "Basic user"
#~ msgstr "Basic user" #~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105 #: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129 #: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336 #: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr ""
msgid "Path" msgid "Path"
msgstr "Yol" msgstr "Yol"
#: src/pages/part/CategoryDetail.tsx:121 #: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category" msgid "Parent Category"
msgstr "Üst Kategori" msgstr "Üst Kategori"
#: src/pages/part/CategoryDetail.tsx:144 #: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:278 #: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories" msgid "Subcategories"
msgstr "Alt kategoriler" msgstr "Alt kategoriler"
#: src/pages/part/CategoryDetail.tsx:151 #: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169 #: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87 #: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43 #: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural" msgid "Structural"
msgstr "Yapısal" msgstr "Yapısal"
#: src/pages/part/CategoryDetail.tsx:157 #: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location" msgid "Parent default location"
msgstr "Varsayılan üst konum" msgstr "Varsayılan üst konum"
#: src/pages/part/CategoryDetail.tsx:164 #: src/pages/part/CategoryDetail.tsx:165
msgid "Default location" msgid "Default location"
msgstr "Varsayılan konum" msgstr "Varsayılan konum"
@ -8018,48 +8026,48 @@ msgstr "Varsayılan konum"
#~ msgid "Top level part category" #~ msgid "Top level part category"
#~ msgstr "Top level part category" #~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181 #: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:249 #: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121 #: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category" msgid "Edit Part Category"
msgstr "Parça Kategorisini Düzenle" msgstr "Parça Kategorisini Düzenle"
#: src/pages/part/CategoryDetail.tsx:190 #: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category" msgid "Move items to parent category"
msgstr "" msgstr ""
#: src/pages/part/CategoryDetail.tsx:194 #: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316 #: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items" msgid "Delete items"
msgstr "Ögeleri sil" msgstr "Ögeleri sil"
#: src/pages/part/CategoryDetail.tsx:202 #: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:254 #: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category" msgid "Delete Part Category"
msgstr "Parça Kategorisini Sil" msgstr "Parça Kategorisini Sil"
#: src/pages/part/CategoryDetail.tsx:205 #: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action" msgid "Parts Action"
msgstr "Parçalar Eylemi" msgstr "Parçalar Eylemi"
#: src/pages/part/CategoryDetail.tsx:206 #: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category" msgid "Action for parts in this category"
msgstr "Bu kategorideki parçalar için eylem" msgstr "Bu kategorideki parçalar için eylem"
#: src/pages/part/CategoryDetail.tsx:212 #: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action" msgid "Child Categories Action"
msgstr "Alt Kategoriler Eylemi" msgstr "Alt Kategoriler Eylemi"
#: src/pages/part/CategoryDetail.tsx:213 #: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category" msgid "Action for child categories in this category"
msgstr "Bu kategorinin alt kategorileri için eylem" msgstr "Bu kategorinin alt kategorileri için eylem"
#: src/pages/part/CategoryDetail.tsx:245 #: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142 #: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions" msgid "Category Actions"
msgstr "Kategori Eylemleri" msgstr "Kategori Eylemleri"
#: src/pages/part/CategoryDetail.tsx:271 #: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details" msgid "Category Details"
msgstr "Kategori Ayrıntıları" msgstr "Kategori Ayrıntıları"
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr "Seçilen ögeleri silmek istediğinize emin misiniz?" msgstr "Seçilen ögeleri silmek istediğinize emin misiniz?"
#: src/tables/InvenTreeTableHeader.tsx:113 #: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320 #: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone" msgid "This action cannot be undone"
msgstr "Bu işlem geri alınamaz" msgstr "Bu işlem geri alınamaz"
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr "" msgstr ""
#: src/tables/general/ParameterTemplateTable.tsx:148 #: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414 #: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type" msgid "Model Type"
msgstr "Model Türü" msgstr "Model Türü"
@ -11402,16 +11410,16 @@ msgstr ""
msgid "Add Part Category" msgid "Add Part Category"
msgstr "Parça Kategorisi Ekle" msgstr "Parça Kategorisi Ekle"
#: src/tables/part/PartCategoryTemplateTable.tsx:49 #: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:143 #: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter" msgid "Add Category Parameter"
msgstr "Kategori Parametresi Ekle" msgstr "Kategori Parametresi Ekle"
#: src/tables/part/PartCategoryTemplateTable.tsx:57 #: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter" msgid "Edit Category Parameter"
msgstr "Kategori Parametresini Düzenle" msgstr "Kategori Parametresini Düzenle"
#: src/tables/part/PartCategoryTemplateTable.tsx:65 #: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter" msgid "Delete Category Parameter"
msgstr "Kategori Parametresini Sil" msgstr "Kategori Parametresini Sil"
@ -11419,6 +11427,14 @@ msgstr "Kategori Parametresini Sil"
#~ msgid "[{0}]" #~ msgid "[{0}]"
#~ msgstr "[{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 #: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter" #~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter" #~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr "Eklenti"
#~ msgid "An error occurred while fetching plugin details" #~ msgid "An error occurred while fetching plugin details"
#~ msgstr "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:108
#: src/tables/plugin/PluginListTable.tsx:430 #: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory" msgid "Mandatory"
msgstr "" msgstr ""
@ -11847,7 +11863,7 @@ msgstr ""
#~ msgid "Plugin with id {id} not found" #~ msgid "Plugin with id {id} not found"
#~ msgstr "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" msgid "Description not available"
msgstr "Kullanılabilir açıklama yok" msgstr "Kullanılabilir açıklama yok"
@ -11869,11 +11885,11 @@ msgstr "Kullanılabilir açıklama yok"
#~ msgid "Reload" #~ msgid "Reload"
#~ msgstr "Reload" #~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159 #: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation" msgid "Confirm plugin activation"
msgstr "Eklenti etkinleştirmesini onaylayın" msgstr "Eklenti etkinleştirmesini onaylayın"
#: src/tables/plugin/PluginListTable.tsx:160 #: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation" msgid "Confirm plugin deactivation"
msgstr "Eklentinin etkisizleştirilmesini onaylayın" msgstr "Eklentinin etkisizleştirilmesini onaylayın"
@ -11881,15 +11897,15 @@ msgstr "Eklentinin etkisizleştirilmesini onaylayın"
#~ msgid "Package information" #~ msgid "Package information"
#~ msgstr "Package information" #~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165 #: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated" msgid "The selected plugin will be activated"
msgstr "Seçilen eklenti etkinleştirilecek" msgstr "Seçilen eklenti etkinleştirilecek"
#: src/tables/plugin/PluginListTable.tsx:166 #: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated" msgid "The selected plugin will be deactivated"
msgstr "Seçilen eklenti etkisizleştirilecek" msgstr "Seçilen eklenti etkisizleştirilecek"
#: src/tables/plugin/PluginListTable.tsx:184 #: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate" msgid "Deactivate"
msgstr "Etkisizleştir" msgstr "Etkisizleştir"
@ -11897,44 +11913,44 @@ msgstr "Etkisizleştir"
#~ msgid "Plugin settings" #~ msgid "Plugin settings"
#~ msgstr "Plugin settings" #~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198 #: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate" msgid "Activate"
msgstr "Etkinleştir" msgstr "Etkinleştir"
#: src/tables/plugin/PluginListTable.tsx:199 #: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin" msgid "Activate selected plugin"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:211 #: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin" msgid "Update selected plugin"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:229 #: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98 #: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall" msgid "Uninstall"
msgstr "Kaldır" msgstr "Kaldır"
#: src/tables/plugin/PluginListTable.tsx:230 #: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin" msgid "Uninstall selected plugin"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:248 #: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration" msgid "Delete selected plugin configuration"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:264 #: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin" msgid "Activate Plugin"
msgstr "Eklentiyi Etkinleştir" msgstr "Eklentiyi Etkinleştir"
#: src/tables/plugin/PluginListTable.tsx:264 #: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin" msgid "Deactivate Plugin"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271 #: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated" msgid "The plugin was activated"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:272 #: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated" msgid "The plugin was deactivated"
msgstr "" msgstr ""
@ -11942,20 +11958,20 @@ msgstr ""
#~ msgid "Install plugin" #~ msgid "Install plugin"
#~ msgstr "Install plugin" #~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285 #: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:377 #: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin" msgid "Install Plugin"
msgstr "Eklenti Kur" msgstr "Eklenti Kur"
#: src/tables/plugin/PluginListTable.tsx:298 #: src/tables/plugin/PluginListTable.tsx:300
msgid "Install" msgid "Install"
msgstr "Kur" msgstr "Kur"
#: src/tables/plugin/PluginListTable.tsx:299 #: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully" msgid "Plugin installed successfully"
msgstr "Eklenti başarıyla yüklendi" msgstr "Eklenti başarıyla yüklendi"
#: src/tables/plugin/PluginListTable.tsx:304 #: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin" msgid "Uninstall Plugin"
msgstr "Eklentiyi Kaldır" msgstr "Eklentiyi Kaldır"
@ -11963,31 +11979,31 @@ msgstr "Eklentiyi Kaldır"
#~ msgid "This action cannot be undone." #~ msgid "This action cannot be undone."
#~ msgstr "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" msgid "Confirm plugin uninstall"
msgstr "Eklentiyi kaldırmayı onaylayın" msgstr "Eklentiyi kaldırmayı onaylayın"
#: src/tables/plugin/PluginListTable.tsx:319 #: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled." msgid "The selected plugin will be uninstalled."
msgstr "Seçilen eklenti kaldırılacak." msgstr "Seçilen eklenti kaldırılacak."
#: src/tables/plugin/PluginListTable.tsx:324 #: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully" msgid "Plugin uninstalled successfully"
msgstr "Eklenti başarıyla yüklendi" msgstr "Eklenti başarıyla yüklendi"
#: src/tables/plugin/PluginListTable.tsx:332 #: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin" msgid "Delete Plugin"
msgstr "Eklentiyi Sil" msgstr "Eklentiyi Sil"
#: 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?" msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr "Bu eklenti yapılandırmasını silmek ilgili tüm ayar ve veriyi de kaldıracaktır. Bu eklentiyi silmek istediğinize emin misiniz?" msgstr "Bu eklenti yapılandırmasını silmek ilgili tüm ayar ve veriyi de kaldıracaktır. Bu eklentiyi silmek istediğinize emin misiniz?"
#: src/tables/plugin/PluginListTable.tsx:346 #: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded" msgid "Plugins reloaded"
msgstr "Eklentiler yeniden yüklendi" msgstr "Eklentiler yeniden yüklendi"
#: src/tables/plugin/PluginListTable.tsx:347 #: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully" msgid "Plugins were reloaded successfully"
msgstr "Eklentiler başarıyla yeniden yüklendi" msgstr "Eklentiler başarıyla yeniden yüklendi"
@ -11999,7 +12015,7 @@ msgstr "Eklentiler başarıyla yeniden yüklendi"
#~ msgid "The following plugin will be deactivated" #~ msgid "The following plugin will be deactivated"
#~ msgstr "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" msgid "Reload Plugins"
msgstr "Eklentileri Yeniden Yükle" msgstr "Eklentileri Yeniden Yükle"
@ -12015,7 +12031,7 @@ msgstr "Eklentileri Yeniden Yükle"
#~ msgid "Plugin updated" #~ msgid "Plugin updated"
#~ msgstr "Plugin updated" #~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393 #: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail" msgid "Plugin Detail"
msgstr "Eklenti Ayrıntısı" msgstr "Eklenti Ayrıntısı"
@ -12023,11 +12039,11 @@ msgstr "Eklenti Ayrıntısı"
#~ msgid "Error updating plugin" #~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin" #~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435 #: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample" msgid "Sample"
msgstr "Numune" msgstr "Numune"
#: src/tables/plugin/PluginListTable.tsx:440 #: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248 #: src/tables/stock/StockItemTable.tsx:248
msgid "Installed" msgid "Installed"
msgstr "Kuruldu" msgstr "Kuruldu"
@ -12660,29 +12676,29 @@ msgstr "Grubu Düzenle"
msgid "Add Group" msgid "Add Group"
msgstr "Grup Ekle" msgstr "Grup Ekle"
#: src/tables/settings/ImportSessionTable.tsx:37 #: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session" msgid "Delete Import Session"
msgstr "İçe Aktarma Oturununu Sil" msgstr "İçe Aktarma Oturununu Sil"
#: src/tables/settings/ImportSessionTable.tsx:43 #: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:130 #: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session" msgid "Create Import Session"
msgstr "İçe Aktarma Oturumu Oluştur" msgstr "İçe Aktarma Oturumu Oluştur"
#: src/tables/settings/ImportSessionTable.tsx:73 #: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded" msgid "Uploaded"
msgstr "Karşıya Yüklendi" msgstr "Karşıya Yüklendi"
#: src/tables/settings/ImportSessionTable.tsx:84 #: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows" msgid "Imported Rows"
msgstr "İçe Aktarılan Satırlar" msgstr "İçe Aktarılan Satırlar"
#: src/tables/settings/ImportSessionTable.tsx:113 #: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415 #: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type" msgid "Filter by target model type"
msgstr "Hedef modelin türüne göre süz" msgstr "Hedef modelin türüne göre süz"
#: src/tables/settings/ImportSessionTable.tsx:119 #: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status" msgid "Filter by import session status"
msgstr "İçe aktarma oturumu durumuna göre süz" msgstr "İçe aktarma oturumu durumuna göre süz"
@ -13365,7 +13381,7 @@ msgstr ""
#: src/views/MobileAppView.tsx:25 #: src/views/MobileAppView.tsx:25
msgid "Mobile viewport detected" msgid "Mobile viewport detected"
msgstr "Mobil görüntü alanı saptandı" msgstr "Mobil görüntü alanı algılandı"
#: src/views/MobileAppView.tsx:25 #: src/views/MobileAppView.tsx:25
#~ msgid "Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience." #~ msgid "Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience."

View File

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

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: vi\n" "Language: vi\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \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" "Last-Translator: \n"
"Language-Team: Vietnamese\n" "Language-Team: Vietnamese\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
@ -56,7 +56,7 @@ msgstr "Sửa"
#: src/components/items/RoleTable.tsx:155 #: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174 #: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109 #: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247 #: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete" msgid "Delete"
msgstr "Xóa" msgstr "Xóa"
@ -163,10 +163,10 @@ msgstr "Phụ kiện"
#: src/components/nav/NavigationDrawer.tsx:70 #: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39 #: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218 #: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137 #: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:284 #: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:339 #: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:381 #: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893 #: src/pages/part/PartDetail.tsx:893
msgid "Parts" msgid "Parts"
msgstr "Phụ tùng" msgstr "Phụ tùng"
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr "Thông số" msgstr "Thông số"
#: lib/enums/ModelInformation.tsx:46 #: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87 #: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template" msgid "Parameter Template"
msgstr "" msgstr ""
#: lib/enums/ModelInformation.tsx:47 #: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates" msgid "Parameter Templates"
msgstr "" msgstr ""
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr "Nhà sản xuất phụ kiện" msgstr "Nhà sản xuất phụ kiện"
#: lib/enums/ModelInformation.tsx:80 #: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381 #: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496 #: src/tables/Filter.tsx:496
msgid "Part Category" msgid "Part Category"
msgstr "Danh mục phụ kiện" msgstr "Danh mục phụ kiện"
#: lib/enums/ModelInformation.tsx:81 #: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39 #: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:372 #: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154 #: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories" msgid "Part Categories"
msgstr "Danh mục phụ kiện" msgstr "Danh mục phụ kiện"
@ -273,7 +274,7 @@ msgstr "Hàng trong kho"
#: lib/enums/ModelInformation.tsx:90 #: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49 #: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217 #: 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/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156 #: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235 #: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr "Chủ sở hữu"
#: src/tables/settings/ApiTokenTable.tsx:127 #: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79 #: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44 #: 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:237
#: src/tables/stock/StockTrackingTable.tsx:285 #: src/tables/stock/StockTrackingTable.tsx:285
msgid "User" msgid "User"
@ -640,7 +641,7 @@ msgstr ""
#: src/components/forms/fields/ApiFormField.tsx:259 #: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45 #: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215 #: 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/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85 #: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211 #: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr "Lỗi nhập liệu"
#: src/components/forms/ApiForm.tsx:751 #: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143 #: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210 #: src/tables/plugin/PluginListTable.tsx:212
msgid "Update" msgid "Update"
msgstr "Cập nhật" msgstr "Cập nhật"
@ -1982,7 +1983,7 @@ msgstr "Host"
#: src/components/forms/InstanceOptions.tsx:125 #: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68 #: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 #: 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/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117 #: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67 #: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr "Máy chủ"
#: src/components/forms/InstanceOptions.tsx:131 #: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88 #: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127 #: src/tables/plugin/PluginListTable.tsx:129
msgid "Version" msgid "Version"
msgstr "Phiên bản" msgstr "Phiên bản"
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr "Đang xử lý dữ liệu" msgstr "Đang xử lý dữ liệu"
#: src/components/importer/ImporterColumnSelector.tsx:56 #: 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/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60 #: src/functions/api.tsx:60
#: src/functions/auth.tsx:401 #: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr "Chọn cột hoặc để trống để bỏ qua trường này."
#~ msgid "Imported Column Name" #~ msgid "Imported Column Name"
#~ msgstr "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" msgid "Ignore this field"
msgstr "Bỏ qua trường này" msgstr "Bỏ qua trường này"
#: src/components/importer/ImporterColumnSelector.tsx:267 #: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields" msgid "Mapping data columns to database fields"
msgstr "Đang ánh xạ các cột vào các trường cơ sở dữ liệu" msgstr "Đang ánh xạ các cột vào các trường cơ sở dữ liệu"
#: src/components/importer/ImporterColumnSelector.tsx:272 #: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping" msgid "Accept Column Mapping"
msgstr "Chấp nhận ánh xạ cột" msgstr "Chấp nhận ánh xạ cột"
#: src/components/importer/ImporterColumnSelector.tsx:285 #: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field" msgid "Database Field"
msgstr "Trường cơ sở dữ liệu" msgstr "Trường cơ sở dữ liệu"
#: src/components/importer/ImporterColumnSelector.tsx:286 #: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description" msgid "Field Description"
msgstr "Mô tả trường" msgstr "Mô tả trường"
#: src/components/importer/ImporterColumnSelector.tsx:287 #: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column" msgid "Imported Column"
msgstr "Cột nhập khẩu" msgstr "Cột nhập khẩu"
#: 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" msgid "Default Value"
msgstr "Giá trị mặc định" msgstr "Giá trị mặc định"
@ -3131,7 +3140,7 @@ msgstr ""
#: src/pages/company/ManufacturerPartDetail.tsx:94 #: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121 #: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150 #: 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/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166 #: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132 #: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr ""
#: src/tables/build/BuildAllocatedStockTable.tsx:91 #: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159 #: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110 #: src/tables/plugin/PluginListTable.tsx:112
msgid "Description" msgid "Description"
msgstr "Mô tả" msgstr "Mô tả"
@ -3172,7 +3181,7 @@ msgstr "Ngày"
#: src/tables/part/PartTableFilters.tsx:13 #: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15 #: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96 #: 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:139
#: src/tables/purchasing/SupplierPartTable.tsx:254 #: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63 #: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr "Hoạt động"
#: src/components/plugins/PluginDrawer.tsx:99 #: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103 #: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140 #: src/tables/plugin/PluginListTable.tsx:142
msgid "Website" msgid "Website"
msgstr "Trang web" msgstr "Trang web"
@ -3198,8 +3207,8 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:124 #: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182 #: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:425 #: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin" msgid "Builtin"
msgstr "Gắn liền" msgstr "Gắn liền"
@ -3364,7 +3373,7 @@ msgstr "Chi tiết"
#: src/tables/ColumnRenderers.tsx:414 #: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423 #: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32 #: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78 #: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category" msgid "Category"
msgstr "Danh mục" msgstr "Danh mục"
@ -4823,7 +4832,7 @@ msgstr ""
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175 #: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79 #: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95 #: 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/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83 #: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status" msgid "Status"
@ -4995,7 +5004,7 @@ msgstr ""
#: src/forms/PartForms.tsx:110 #: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244 #: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129 #: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536 #: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92 #: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143 #: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr "Tuỳ chọn đơn vị"
#~ msgstr "Part Parameters" #~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 #: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters" msgid "Category Parameters"
msgstr "Thông số danh mục" msgstr "Thông số danh mục"
@ -7698,7 +7706,7 @@ msgstr "Hủy đơn hàng"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94 #: 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:103
#: src/pages/purchasing/PurchasingIndex.tsx:130 #: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159 #: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr "" msgstr ""
#: src/pages/build/BuildIndex.tsx:106 #: 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:115
#: src/pages/purchasing/PurchasingIndex.tsx:142 #: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165 #: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr ""
#~ msgid "Basic user" #~ msgid "Basic user"
#~ msgstr "Basic user" #~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105 #: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129 #: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336 #: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr ""
msgid "Path" msgid "Path"
msgstr "Đường dẫn" msgstr "Đường dẫn"
#: src/pages/part/CategoryDetail.tsx:121 #: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category" msgid "Parent Category"
msgstr "Danh mục cha" msgstr "Danh mục cha"
#: src/pages/part/CategoryDetail.tsx:144 #: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:278 #: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories" msgid "Subcategories"
msgstr "Phụ mục" msgstr "Phụ mục"
#: src/pages/part/CategoryDetail.tsx:151 #: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169 #: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87 #: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43 #: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural" msgid "Structural"
msgstr "Cấu trúc" msgstr "Cấu trúc"
#: src/pages/part/CategoryDetail.tsx:157 #: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location" msgid "Parent default location"
msgstr "Vị trí mặc định" msgstr "Vị trí mặc định"
#: src/pages/part/CategoryDetail.tsx:164 #: src/pages/part/CategoryDetail.tsx:165
msgid "Default location" msgid "Default location"
msgstr "Vị trí mặc định" msgstr "Vị trí mặc định"
@ -8018,48 +8026,48 @@ msgstr "Vị trí mặc định"
#~ msgid "Top level part category" #~ msgid "Top level part category"
#~ msgstr "Top level part category" #~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181 #: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:249 #: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121 #: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category" msgid "Edit Part Category"
msgstr "Sửa" msgstr "Sửa"
#: src/pages/part/CategoryDetail.tsx:190 #: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category" msgid "Move items to parent category"
msgstr "" msgstr ""
#: src/pages/part/CategoryDetail.tsx:194 #: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316 #: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items" msgid "Delete items"
msgstr "Xoá" msgstr "Xoá"
#: src/pages/part/CategoryDetail.tsx:202 #: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:254 #: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category" msgid "Delete Part Category"
msgstr "Xoá" msgstr "Xoá"
#: src/pages/part/CategoryDetail.tsx:205 #: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action" msgid "Parts Action"
msgstr "Thao tác" msgstr "Thao tác"
#: src/pages/part/CategoryDetail.tsx:206 #: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category" msgid "Action for parts in this category"
msgstr "Thao tác trong danh mục" msgstr "Thao tác trong danh mục"
#: src/pages/part/CategoryDetail.tsx:212 #: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action" msgid "Child Categories Action"
msgstr "Thao tác" msgstr "Thao tác"
#: src/pages/part/CategoryDetail.tsx:213 #: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category" msgid "Action for child categories in this category"
msgstr "Thao tác" msgstr "Thao tác"
#: src/pages/part/CategoryDetail.tsx:245 #: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142 #: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions" msgid "Category Actions"
msgstr "Thao tác" msgstr "Thao tác"
#: src/pages/part/CategoryDetail.tsx:271 #: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details" msgid "Category Details"
msgstr "Chi tiết" msgstr "Chi tiết"
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr "Bạn muốn xóa các mục đã chọn?" msgstr "Bạn muốn xóa các mục đã chọn?"
#: src/tables/InvenTreeTableHeader.tsx:113 #: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320 #: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone" msgid "This action cannot be undone"
msgstr "" msgstr ""
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr "" msgstr ""
#: src/tables/general/ParameterTemplateTable.tsx:148 #: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414 #: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type" msgid "Model Type"
msgstr "" msgstr ""
@ -11402,16 +11410,16 @@ msgstr ""
msgid "Add Part Category" msgid "Add Part Category"
msgstr "" msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:49 #: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:143 #: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter" msgid "Add Category Parameter"
msgstr "" msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:57 #: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter" msgid "Edit Category Parameter"
msgstr "" msgstr ""
#: src/tables/part/PartCategoryTemplateTable.tsx:65 #: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter" msgid "Delete Category Parameter"
msgstr "" msgstr ""
@ -11419,6 +11427,14 @@ msgstr ""
#~ msgid "[{0}]" #~ msgid "[{0}]"
#~ msgstr "[{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 #: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter" #~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter" #~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr "Phần bổ sung"
#~ msgid "An error occurred while fetching plugin details" #~ msgid "An error occurred while fetching plugin details"
#~ msgstr "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:108
#: src/tables/plugin/PluginListTable.tsx:430 #: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory" msgid "Mandatory"
msgstr "" msgstr ""
@ -11847,7 +11863,7 @@ msgstr ""
#~ msgid "Plugin with id {id} not found" #~ msgid "Plugin with id {id} not found"
#~ msgstr "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" msgid "Description not available"
msgstr "Mô tả không có sẵn" msgstr "Mô tả không có sẵn"
@ -11869,11 +11885,11 @@ msgstr "Mô tả không có sẵn"
#~ msgid "Reload" #~ msgid "Reload"
#~ msgstr "Reload" #~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159 #: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation" msgid "Confirm plugin activation"
msgstr "Xác nhận kích hoạt phần bổ sung" msgstr "Xác nhận kích hoạt phần bổ sung"
#: src/tables/plugin/PluginListTable.tsx:160 #: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation" msgid "Confirm plugin deactivation"
msgstr "Xác nhận tắt phần bổ sung" msgstr "Xác nhận tắt phần bổ sung"
@ -11881,15 +11897,15 @@ msgstr "Xác nhận tắt phần bổ sung"
#~ msgid "Package information" #~ msgid "Package information"
#~ msgstr "Package information" #~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165 #: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated" msgid "The selected plugin will be activated"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:166 #: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated" msgid "The selected plugin will be deactivated"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:184 #: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate" msgid "Deactivate"
msgstr "Hủy kích hoạt" msgstr "Hủy kích hoạt"
@ -11897,44 +11913,44 @@ msgstr "Hủy kích hoạt"
#~ msgid "Plugin settings" #~ msgid "Plugin settings"
#~ msgstr "Plugin settings" #~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198 #: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate" msgid "Activate"
msgstr "Kích hoạt" msgstr "Kích hoạt"
#: src/tables/plugin/PluginListTable.tsx:199 #: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin" msgid "Activate selected plugin"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:211 #: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin" msgid "Update selected plugin"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:229 #: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98 #: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall" msgid "Uninstall"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:230 #: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin" msgid "Uninstall selected plugin"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:248 #: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration" msgid "Delete selected plugin configuration"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:264 #: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin" msgid "Activate Plugin"
msgstr "Kích hoạt phần bổ sung" msgstr "Kích hoạt phần bổ sung"
#: src/tables/plugin/PluginListTable.tsx:264 #: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin" msgid "Deactivate Plugin"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271 #: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated" msgid "The plugin was activated"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:272 #: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated" msgid "The plugin was deactivated"
msgstr "" msgstr ""
@ -11942,20 +11958,20 @@ msgstr ""
#~ msgid "Install plugin" #~ msgid "Install plugin"
#~ msgstr "Install plugin" #~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285 #: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:377 #: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin" msgid "Install Plugin"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:298 #: src/tables/plugin/PluginListTable.tsx:300
msgid "Install" msgid "Install"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:299 #: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully" msgid "Plugin installed successfully"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:304 #: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin" msgid "Uninstall Plugin"
msgstr "" msgstr ""
@ -11963,31 +11979,31 @@ msgstr ""
#~ msgid "This action cannot be undone." #~ msgid "This action cannot be undone."
#~ msgstr "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" msgid "Confirm plugin uninstall"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:319 #: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled." msgid "The selected plugin will be uninstalled."
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:324 #: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully" msgid "Plugin uninstalled successfully"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:332 #: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin" msgid "Delete Plugin"
msgstr "" 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?" msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:346 #: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded" msgid "Plugins reloaded"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:347 #: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully" msgid "Plugins were reloaded successfully"
msgstr "" msgstr ""
@ -11999,7 +12015,7 @@ msgstr ""
#~ msgid "The following plugin will be deactivated" #~ msgid "The following plugin will be deactivated"
#~ msgstr "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" msgid "Reload Plugins"
msgstr "" msgstr ""
@ -12015,7 +12031,7 @@ msgstr ""
#~ msgid "Plugin updated" #~ msgid "Plugin updated"
#~ msgstr "Plugin updated" #~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393 #: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail" msgid "Plugin Detail"
msgstr "" msgstr ""
@ -12023,11 +12039,11 @@ msgstr ""
#~ msgid "Error updating plugin" #~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin" #~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435 #: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample" msgid "Sample"
msgstr "Mẫu" msgstr "Mẫu"
#: src/tables/plugin/PluginListTable.tsx:440 #: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248 #: src/tables/stock/StockItemTable.tsx:248
msgid "Installed" msgid "Installed"
msgstr "Đã cài đặt" msgstr "Đã cài đặt"
@ -12660,29 +12676,29 @@ msgstr ""
msgid "Add Group" msgid "Add Group"
msgstr "" msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:37 #: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session" msgid "Delete Import Session"
msgstr "" msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:43 #: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:130 #: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session" msgid "Create Import Session"
msgstr "" msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:73 #: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded" msgid "Uploaded"
msgstr "" msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:84 #: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows" msgid "Imported Rows"
msgstr "" msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:113 #: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415 #: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type" msgid "Filter by target model type"
msgstr "" msgstr ""
#: src/tables/settings/ImportSessionTable.tsx:119 #: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status" msgid "Filter by import session status"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: zh\n" "Language: zh\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \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" "Last-Translator: \n"
"Language-Team: Chinese Simplified\n" "Language-Team: Chinese Simplified\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
@ -56,7 +56,7 @@ msgstr "编辑"
#: src/components/items/RoleTable.tsx:155 #: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174 #: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109 #: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247 #: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete" msgid "Delete"
msgstr "删除" msgstr "删除"
@ -163,10 +163,10 @@ msgstr "零件"
#: src/components/nav/NavigationDrawer.tsx:70 #: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39 #: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218 #: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137 #: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:284 #: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:339 #: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:381 #: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893 #: src/pages/part/PartDetail.tsx:893
msgid "Parts" msgid "Parts"
msgstr "零件" msgstr "零件"
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr "参数" msgstr "参数"
#: lib/enums/ModelInformation.tsx:46 #: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87 #: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template" msgid "Parameter Template"
msgstr "参数模板" msgstr "参数模板"
#: lib/enums/ModelInformation.tsx:47 #: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates" msgid "Parameter Templates"
msgstr "参数模板" msgstr "参数模板"
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr "制造商零件" msgstr "制造商零件"
#: lib/enums/ModelInformation.tsx:80 #: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381 #: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496 #: src/tables/Filter.tsx:496
msgid "Part Category" msgid "Part Category"
msgstr "零件类别" msgstr "零件类别"
#: lib/enums/ModelInformation.tsx:81 #: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39 #: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:372 #: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154 #: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories" msgid "Part Categories"
msgstr "零件类别" msgstr "零件类别"
@ -273,7 +274,7 @@ msgstr "库存项"
#: lib/enums/ModelInformation.tsx:90 #: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49 #: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217 #: 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/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156 #: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235 #: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr "所有者"
#: src/tables/settings/ApiTokenTable.tsx:127 #: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79 #: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44 #: 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:237
#: src/tables/stock/StockTrackingTable.tsx:285 #: src/tables/stock/StockTrackingTable.tsx:285
msgid "User" msgid "User"
@ -640,7 +641,7 @@ msgstr "入选"
#: src/components/forms/fields/ApiFormField.tsx:259 #: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45 #: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215 #: 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/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85 #: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211 #: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr "一个或多个表单字段存在错误"
#: src/components/forms/ApiForm.tsx:751 #: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143 #: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210 #: src/tables/plugin/PluginListTable.tsx:212
msgid "Update" msgid "Update"
msgstr "更新" msgstr "更新"
@ -1982,7 +1983,7 @@ msgstr "主机"
#: src/components/forms/InstanceOptions.tsx:125 #: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68 #: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 #: 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/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117 #: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67 #: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr "服务器"
#: src/components/forms/InstanceOptions.tsx:131 #: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88 #: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127 #: src/tables/plugin/PluginListTable.tsx:129
msgid "Version" msgid "Version"
msgstr "版本" msgstr "版本"
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr "处理数据中" msgstr "处理数据中"
#: src/components/importer/ImporterColumnSelector.tsx:56 #: 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/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60 #: src/functions/api.tsx:60
#: src/functions/auth.tsx:401 #: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr "选择列,或留空忽略此字段。"
#~ msgid "Imported Column Name" #~ msgid "Imported Column Name"
#~ msgstr "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" msgid "Ignore this field"
msgstr "忽略该字段" msgstr "忽略该字段"
#: src/components/importer/ImporterColumnSelector.tsx:267 #: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields" msgid "Mapping data columns to database fields"
msgstr "将数据列映射到数据库字段" msgstr "将数据列映射到数据库字段"
#: src/components/importer/ImporterColumnSelector.tsx:272 #: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping" msgid "Accept Column Mapping"
msgstr "接受列映射" msgstr "接受列映射"
#: src/components/importer/ImporterColumnSelector.tsx:285 #: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field" msgid "Database Field"
msgstr "数据库字段" msgstr "数据库字段"
#: src/components/importer/ImporterColumnSelector.tsx:286 #: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description" msgid "Field Description"
msgstr "字段描述" msgstr "字段描述"
#: src/components/importer/ImporterColumnSelector.tsx:287 #: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column" msgid "Imported Column"
msgstr "导入列" 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" msgid "Default Value"
msgstr "默认值" msgstr "默认值"
@ -3131,7 +3140,7 @@ msgstr "插件信息"
#: src/pages/company/ManufacturerPartDetail.tsx:94 #: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121 #: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150 #: 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/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166 #: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132 #: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr "插件信息"
#: src/tables/build/BuildAllocatedStockTable.tsx:91 #: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159 #: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110 #: src/tables/plugin/PluginListTable.tsx:112
msgid "Description" msgid "Description"
msgstr "描述" msgstr "描述"
@ -3172,7 +3181,7 @@ msgstr "日期"
#: src/tables/part/PartTableFilters.tsx:13 #: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15 #: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96 #: 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:139
#: src/tables/purchasing/SupplierPartTable.tsx:254 #: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63 #: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr "激活"
#: src/components/plugins/PluginDrawer.tsx:99 #: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103 #: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140 #: src/tables/plugin/PluginListTable.tsx:142
msgid "Website" msgid "Website"
msgstr "网站" msgstr "网站"
@ -3198,8 +3207,8 @@ msgstr "安装路径"
#: src/components/plugins/PluginDrawer.tsx:124 #: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182 #: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:425 #: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin" msgid "Builtin"
msgstr "内置" msgstr "内置"
@ -3364,7 +3373,7 @@ msgstr "详情"
#: src/tables/ColumnRenderers.tsx:414 #: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423 #: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32 #: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78 #: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category" msgid "Category"
msgstr "类别" msgstr "类别"
@ -4823,7 +4832,7 @@ msgstr "待完成数量"
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175 #: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79 #: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95 #: 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/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83 #: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status" msgid "Status"
@ -4995,7 +5004,7 @@ msgstr "请为此行项目选择项目编码"
#: src/forms/PartForms.tsx:110 #: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244 #: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129 #: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536 #: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92 #: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143 #: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr "自定义单位"
#~ msgstr "Part Parameters" #~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 #: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters" msgid "Category Parameters"
msgstr "类别参数" msgstr "类别参数"
@ -7698,7 +7706,7 @@ msgstr "取消订单"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94 #: 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:103
#: src/pages/purchasing/PurchasingIndex.tsx:130 #: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159 #: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr "日历视图" msgstr "日历视图"
#: src/pages/build/BuildIndex.tsx:106 #: 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:115
#: src/pages/purchasing/PurchasingIndex.tsx:142 #: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165 #: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr "普通用户"
#~ msgid "Basic user" #~ msgid "Basic user"
#~ msgstr "Basic user" #~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105 #: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129 #: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336 #: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr "普通用户"
msgid "Path" msgid "Path"
msgstr "路径" msgstr "路径"
#: src/pages/part/CategoryDetail.tsx:121 #: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category" msgid "Parent Category"
msgstr "上级类别" msgstr "上级类别"
#: src/pages/part/CategoryDetail.tsx:144 #: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:278 #: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories" msgid "Subcategories"
msgstr "子类别" msgstr "子类别"
#: src/pages/part/CategoryDetail.tsx:151 #: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169 #: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87 #: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43 #: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural" msgid "Structural"
msgstr "结构性" msgstr "结构性"
#: src/pages/part/CategoryDetail.tsx:157 #: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location" msgid "Parent default location"
msgstr "上级默认位置" msgstr "上级默认位置"
#: src/pages/part/CategoryDetail.tsx:164 #: src/pages/part/CategoryDetail.tsx:165
msgid "Default location" msgid "Default location"
msgstr "默认位置" msgstr "默认位置"
@ -8018,48 +8026,48 @@ msgstr "默认位置"
#~ msgid "Top level part category" #~ msgid "Top level part category"
#~ msgstr "Top level part category" #~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181 #: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:249 #: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121 #: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category" msgid "Edit Part Category"
msgstr "编辑零件类别" msgstr "编辑零件类别"
#: src/pages/part/CategoryDetail.tsx:190 #: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category" msgid "Move items to parent category"
msgstr "移动项目到父类别" msgstr "移动项目到父类别"
#: src/pages/part/CategoryDetail.tsx:194 #: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316 #: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items" msgid "Delete items"
msgstr "删除项" msgstr "删除项"
#: src/pages/part/CategoryDetail.tsx:202 #: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:254 #: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category" msgid "Delete Part Category"
msgstr "删除零件类别" msgstr "删除零件类别"
#: src/pages/part/CategoryDetail.tsx:205 #: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action" msgid "Parts Action"
msgstr "零件操作" msgstr "零件操作"
#: src/pages/part/CategoryDetail.tsx:206 #: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category" msgid "Action for parts in this category"
msgstr "对此类别中零件的操作" msgstr "对此类别中零件的操作"
#: src/pages/part/CategoryDetail.tsx:212 #: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action" msgid "Child Categories Action"
msgstr "子类别操作" msgstr "子类别操作"
#: src/pages/part/CategoryDetail.tsx:213 #: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category" msgid "Action for child categories in this category"
msgstr "对此类别中零件的操作" msgstr "对此类别中零件的操作"
#: src/pages/part/CategoryDetail.tsx:245 #: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142 #: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions" msgid "Category Actions"
msgstr "类别操作" msgstr "类别操作"
#: src/pages/part/CategoryDetail.tsx:271 #: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details" msgid "Category Details"
msgstr "类别详情" msgstr "类别详情"
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr "确定要删除所选的项目吗?" msgstr "确定要删除所选的项目吗?"
#: src/tables/InvenTreeTableHeader.tsx:113 #: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320 #: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone" msgid "This action cannot be undone"
msgstr "该操作无法撤销" msgstr "该操作无法撤销"
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr "显示已启用的模板" msgstr "显示已启用的模板"
#: src/tables/general/ParameterTemplateTable.tsx:148 #: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414 #: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type" msgid "Model Type"
msgstr "型号类型" msgstr "型号类型"
@ -11402,16 +11410,16 @@ msgstr "为所选项目设置父类别"
msgid "Add Part Category" msgid "Add Part Category"
msgstr "增加零件类别" msgstr "增加零件类别"
#: src/tables/part/PartCategoryTemplateTable.tsx:49 #: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:143 #: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter" msgid "Add Category Parameter"
msgstr "添加类别参数" msgstr "添加类别参数"
#: src/tables/part/PartCategoryTemplateTable.tsx:57 #: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter" msgid "Edit Category Parameter"
msgstr "编辑类别参数" msgstr "编辑类别参数"
#: src/tables/part/PartCategoryTemplateTable.tsx:65 #: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter" msgid "Delete Category Parameter"
msgstr "删除类别参数" msgstr "删除类别参数"
@ -11419,6 +11427,14 @@ msgstr "删除类别参数"
#~ msgid "[{0}]" #~ msgid "[{0}]"
#~ msgstr "[{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 #: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter" #~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter" #~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr "插件"
#~ msgid "An error occurred while fetching plugin details" #~ msgid "An error occurred while fetching plugin details"
#~ msgstr "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:108
#: src/tables/plugin/PluginListTable.tsx:430 #: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory" msgid "Mandatory"
msgstr "必填" msgstr "必填"
@ -11847,7 +11863,7 @@ msgstr "必填"
#~ msgid "Plugin with id {id} not found" #~ msgid "Plugin with id {id} not found"
#~ msgstr "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" msgid "Description not available"
msgstr "描述不可用." msgstr "描述不可用."
@ -11869,11 +11885,11 @@ msgstr "描述不可用."
#~ msgid "Reload" #~ msgid "Reload"
#~ msgstr "Reload" #~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159 #: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation" msgid "Confirm plugin activation"
msgstr "确认插件激活" msgstr "确认插件激活"
#: src/tables/plugin/PluginListTable.tsx:160 #: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation" msgid "Confirm plugin deactivation"
msgstr "确认插件停用" msgstr "确认插件停用"
@ -11881,15 +11897,15 @@ msgstr "确认插件停用"
#~ msgid "Package information" #~ msgid "Package information"
#~ msgstr "Package information" #~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165 #: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated" msgid "The selected plugin will be activated"
msgstr "所选插件将被激活" msgstr "所选插件将被激活"
#: src/tables/plugin/PluginListTable.tsx:166 #: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated" msgid "The selected plugin will be deactivated"
msgstr "所选插件将被停用" msgstr "所选插件将被停用"
#: src/tables/plugin/PluginListTable.tsx:184 #: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate" msgid "Deactivate"
msgstr "停用" msgstr "停用"
@ -11897,44 +11913,44 @@ msgstr "停用"
#~ msgid "Plugin settings" #~ msgid "Plugin settings"
#~ msgstr "Plugin settings" #~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198 #: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate" msgid "Activate"
msgstr "激活" msgstr "激活"
#: src/tables/plugin/PluginListTable.tsx:199 #: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin" msgid "Activate selected plugin"
msgstr "激活所选插件" msgstr "激活所选插件"
#: src/tables/plugin/PluginListTable.tsx:211 #: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin" msgid "Update selected plugin"
msgstr "更新所选插件" msgstr "更新所选插件"
#: src/tables/plugin/PluginListTable.tsx:229 #: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98 #: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall" msgid "Uninstall"
msgstr "卸载" msgstr "卸载"
#: src/tables/plugin/PluginListTable.tsx:230 #: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin" msgid "Uninstall selected plugin"
msgstr "卸载所选插件" msgstr "卸载所选插件"
#: src/tables/plugin/PluginListTable.tsx:248 #: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration" msgid "Delete selected plugin configuration"
msgstr "删除选中的插件配置" msgstr "删除选中的插件配置"
#: src/tables/plugin/PluginListTable.tsx:264 #: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin" msgid "Activate Plugin"
msgstr "激活插件" msgstr "激活插件"
#: src/tables/plugin/PluginListTable.tsx:264 #: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin" msgid "Deactivate Plugin"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271 #: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated" msgid "The plugin was activated"
msgstr "插件已激活" msgstr "插件已激活"
#: src/tables/plugin/PluginListTable.tsx:272 #: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated" msgid "The plugin was deactivated"
msgstr "插件已停用" msgstr "插件已停用"
@ -11942,20 +11958,20 @@ msgstr "插件已停用"
#~ msgid "Install plugin" #~ msgid "Install plugin"
#~ msgstr "Install plugin" #~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285 #: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:377 #: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin" msgid "Install Plugin"
msgstr "安装插件" msgstr "安装插件"
#: src/tables/plugin/PluginListTable.tsx:298 #: src/tables/plugin/PluginListTable.tsx:300
msgid "Install" msgid "Install"
msgstr "安装" msgstr "安装"
#: src/tables/plugin/PluginListTable.tsx:299 #: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully" msgid "Plugin installed successfully"
msgstr "插件安装成功" msgstr "插件安装成功"
#: src/tables/plugin/PluginListTable.tsx:304 #: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin" msgid "Uninstall Plugin"
msgstr "卸载插件" msgstr "卸载插件"
@ -11963,31 +11979,31 @@ msgstr "卸载插件"
#~ msgid "This action cannot be undone." #~ msgid "This action cannot be undone."
#~ msgstr "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" msgid "Confirm plugin uninstall"
msgstr "确认插件卸载" msgstr "确认插件卸载"
#: src/tables/plugin/PluginListTable.tsx:319 #: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled." msgid "The selected plugin will be uninstalled."
msgstr "所选插件将被卸载。" msgstr "所选插件将被卸载。"
#: src/tables/plugin/PluginListTable.tsx:324 #: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully" msgid "Plugin uninstalled successfully"
msgstr "插件卸载成功" msgstr "插件卸载成功"
#: src/tables/plugin/PluginListTable.tsx:332 #: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin" msgid "Delete Plugin"
msgstr "刪除插件" 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?" msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr "删除此插件配置将删除所有相关的设置和数据。您确定要删除此插件吗?" msgstr "删除此插件配置将删除所有相关的设置和数据。您确定要删除此插件吗?"
#: src/tables/plugin/PluginListTable.tsx:346 #: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded" msgid "Plugins reloaded"
msgstr "插件已重载" msgstr "插件已重载"
#: src/tables/plugin/PluginListTable.tsx:347 #: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully" msgid "Plugins were reloaded successfully"
msgstr "插件重载成功" msgstr "插件重载成功"
@ -11999,7 +12015,7 @@ msgstr "插件重载成功"
#~ msgid "The following plugin will be deactivated" #~ msgid "The following plugin will be deactivated"
#~ msgstr "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" msgid "Reload Plugins"
msgstr "重载插件" msgstr "重载插件"
@ -12015,7 +12031,7 @@ msgstr "重载插件"
#~ msgid "Plugin updated" #~ msgid "Plugin updated"
#~ msgstr "Plugin updated" #~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393 #: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail" msgid "Plugin Detail"
msgstr "插件详情" msgstr "插件详情"
@ -12023,11 +12039,11 @@ msgstr "插件详情"
#~ msgid "Error updating plugin" #~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin" #~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435 #: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample" msgid "Sample"
msgstr "样本" msgstr "样本"
#: src/tables/plugin/PluginListTable.tsx:440 #: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248 #: src/tables/stock/StockItemTable.tsx:248
msgid "Installed" msgid "Installed"
msgstr "已安装" msgstr "已安装"
@ -12660,29 +12676,29 @@ msgstr "编辑组"
msgid "Add Group" msgid "Add Group"
msgstr "添加组" msgstr "添加组"
#: src/tables/settings/ImportSessionTable.tsx:37 #: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session" msgid "Delete Import Session"
msgstr "删除导入的会话" msgstr "删除导入的会话"
#: src/tables/settings/ImportSessionTable.tsx:43 #: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:130 #: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session" msgid "Create Import Session"
msgstr "创建导入会话" msgstr "创建导入会话"
#: src/tables/settings/ImportSessionTable.tsx:73 #: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded" msgid "Uploaded"
msgstr "已上传" msgstr "已上传"
#: src/tables/settings/ImportSessionTable.tsx:84 #: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows" msgid "Imported Rows"
msgstr "导入的行" msgstr "导入的行"
#: src/tables/settings/ImportSessionTable.tsx:113 #: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415 #: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type" msgid "Filter by target model type"
msgstr "按目标型号筛选" msgstr "按目标型号筛选"
#: src/tables/settings/ImportSessionTable.tsx:119 #: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status" msgid "Filter by import session status"
msgstr "按导入会话状态筛选" msgstr "按导入会话状态筛选"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: zh\n" "Language: zh\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \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" "Last-Translator: \n"
"Language-Team: Chinese Traditional\n" "Language-Team: Chinese Traditional\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
@ -56,7 +56,7 @@ msgstr "編輯"
#: src/components/items/RoleTable.tsx:155 #: src/components/items/RoleTable.tsx:155
#: src/hooks/UseForm.tsx:174 #: src/hooks/UseForm.tsx:174
#: src/pages/Notifications.tsx:109 #: src/pages/Notifications.tsx:109
#: src/tables/plugin/PluginListTable.tsx:247 #: src/tables/plugin/PluginListTable.tsx:249
msgid "Delete" msgid "Delete"
msgstr "刪除" msgstr "刪除"
@ -163,10 +163,10 @@ msgstr "零件"
#: src/components/nav/NavigationDrawer.tsx:70 #: src/components/nav/NavigationDrawer.tsx:70
#: src/defaults/links.tsx:39 #: src/defaults/links.tsx:39
#: src/pages/Index/Settings/SystemSettings.tsx:218 #: src/pages/Index/Settings/SystemSettings.tsx:218
#: src/pages/part/CategoryDetail.tsx:137 #: src/pages/part/CategoryDetail.tsx:138
#: src/pages/part/CategoryDetail.tsx:284 #: src/pages/part/CategoryDetail.tsx:285
#: src/pages/part/CategoryDetail.tsx:339 #: src/pages/part/CategoryDetail.tsx:345
#: src/pages/part/CategoryDetail.tsx:381 #: src/pages/part/CategoryDetail.tsx:387
#: src/pages/part/PartDetail.tsx:893 #: src/pages/part/PartDetail.tsx:893
msgid "Parts" msgid "Parts"
msgstr "零件" msgstr "零件"
@ -194,11 +194,12 @@ msgid "Parameters"
msgstr "參數" msgstr "參數"
#: lib/enums/ModelInformation.tsx:46 #: lib/enums/ModelInformation.tsx:46
#: src/tables/part/PartCategoryTemplateTable.tsx:87 #: src/tables/part/PartCategoryTemplateTable.tsx:96
msgid "Parameter Template" msgid "Parameter Template"
msgstr "參數模板" msgstr "參數模板"
#: lib/enums/ModelInformation.tsx:47 #: lib/enums/ModelInformation.tsx:47
#: src/pages/part/CategoryDetail.tsx:334
msgid "Parameter Templates" msgid "Parameter Templates"
msgstr "參數模板" msgstr "參數模板"
@ -241,15 +242,15 @@ msgid "Manufacturer Parts"
msgstr "製造商零件" msgstr "製造商零件"
#: lib/enums/ModelInformation.tsx:80 #: lib/enums/ModelInformation.tsx:80
#: src/pages/part/CategoryDetail.tsx:381 #: src/pages/part/CategoryDetail.tsx:387
#: src/tables/Filter.tsx:496 #: src/tables/Filter.tsx:496
msgid "Part Category" msgid "Part Category"
msgstr "零件類別" msgstr "零件類別"
#: lib/enums/ModelInformation.tsx:81 #: lib/enums/ModelInformation.tsx:81
#: lib/enums/Roles.tsx:39 #: lib/enums/Roles.tsx:39
#: src/pages/part/CategoryDetail.tsx:278 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/CategoryDetail.tsx:372 #: src/pages/part/CategoryDetail.tsx:378
#: src/pages/part/PartDetail.tsx:1154 #: src/pages/part/PartDetail.tsx:1154
msgid "Part Categories" msgid "Part Categories"
msgstr "零件類別" msgstr "零件類別"
@ -273,7 +274,7 @@ msgstr "庫存項"
#: lib/enums/ModelInformation.tsx:90 #: lib/enums/ModelInformation.tsx:90
#: lib/enums/Roles.tsx:49 #: lib/enums/Roles.tsx:49
#: src/pages/company/CompanyDetail.tsx:217 #: 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/part/PartStockHistoryDetail.tsx:117
#: src/pages/stock/LocationDetail.tsx:156 #: src/pages/stock/LocationDetail.tsx:156
#: src/pages/stock/LocationDetail.tsx:235 #: src/pages/stock/LocationDetail.tsx:235
@ -538,7 +539,7 @@ msgstr "所有者"
#: src/tables/settings/ApiTokenTable.tsx:127 #: src/tables/settings/ApiTokenTable.tsx:127
#: src/tables/settings/BarcodeScanHistoryTable.tsx:79 #: src/tables/settings/BarcodeScanHistoryTable.tsx:79
#: src/tables/settings/ExportSessionTable.tsx:44 #: 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:237
#: src/tables/stock/StockTrackingTable.tsx:285 #: src/tables/stock/StockTrackingTable.tsx:285
msgid "User" msgid "User"
@ -640,7 +641,7 @@ msgstr "選取項目 (多筆)"
#: src/components/forms/fields/ApiFormField.tsx:259 #: src/components/forms/fields/ApiFormField.tsx:259
#: src/components/forms/fields/TableField.tsx:45 #: src/components/forms/fields/TableField.tsx:45
#: src/components/importer/ImportDataSelector.tsx:215 #: 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/importer/ImporterDrawer.tsx:91
#: src/components/modals/LicenseModal.tsx:85 #: src/components/modals/LicenseModal.tsx:85
#: src/components/nav/NavigationTree.tsx:211 #: src/components/nav/NavigationTree.tsx:211
@ -1794,7 +1795,7 @@ msgstr "一個或多個表單字段存在錯誤"
#: src/components/forms/ApiForm.tsx:751 #: src/components/forms/ApiForm.tsx:751
#: src/hooks/UseForm.tsx:143 #: src/hooks/UseForm.tsx:143
#: src/tables/plugin/PluginListTable.tsx:210 #: src/tables/plugin/PluginListTable.tsx:212
msgid "Update" msgid "Update"
msgstr "更新" msgstr "更新"
@ -1982,7 +1983,7 @@ msgstr "主機"
#: src/components/forms/InstanceOptions.tsx:125 #: src/components/forms/InstanceOptions.tsx:125
#: src/components/plugins/PluginDrawer.tsx:68 #: src/components/plugins/PluginDrawer.tsx:68
#: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 #: 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/part/PartDetail.tsx:305
#: src/pages/stock/LocationDetail.tsx:117 #: src/pages/stock/LocationDetail.tsx:117
#: src/tables/machine/MachineTypeTable.tsx:67 #: src/tables/machine/MachineTypeTable.tsx:67
@ -2059,7 +2060,7 @@ msgstr "服務器"
#: src/components/forms/InstanceOptions.tsx:131 #: src/components/forms/InstanceOptions.tsx:131
#: src/components/plugins/PluginDrawer.tsx:88 #: src/components/plugins/PluginDrawer.tsx:88
#: src/tables/plugin/PluginListTable.tsx:127 #: src/tables/plugin/PluginListTable.tsx:129
msgid "Version" msgid "Version"
msgstr "版本" msgstr "版本"
@ -2243,7 +2244,7 @@ msgid "Processing Data"
msgstr "處理數據中" msgstr "處理數據中"
#: src/components/importer/ImporterColumnSelector.tsx:56 #: 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/components/items/ErrorItem.tsx:12
#: src/functions/api.tsx:60 #: src/functions/api.tsx:60
#: src/functions/auth.tsx:401 #: src/functions/auth.tsx:401
@ -2266,31 +2267,39 @@ msgstr "選擇列,或留空忽略此字段。"
#~ msgid "Imported Column Name" #~ msgid "Imported Column Name"
#~ msgstr "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" msgid "Ignore this field"
msgstr "忽略該字段" msgstr "忽略該字段"
#: src/components/importer/ImporterColumnSelector.tsx:267 #: src/components/importer/ImporterColumnSelector.tsx:319
msgid "Mapping data columns to database fields" msgid "Mapping data columns to database fields"
msgstr "將數據列映射到數據庫字段" msgstr "將數據列映射到數據庫字段"
#: src/components/importer/ImporterColumnSelector.tsx:272 #: src/components/importer/ImporterColumnSelector.tsx:324
msgid "Accept Column Mapping" msgid "Accept Column Mapping"
msgstr "接受列映射" msgstr "接受列映射"
#: src/components/importer/ImporterColumnSelector.tsx:285 #: src/components/importer/ImporterColumnSelector.tsx:337
msgid "Database Field" msgid "Database Field"
msgstr "數據庫字段" msgstr "數據庫字段"
#: src/components/importer/ImporterColumnSelector.tsx:286 #: src/components/importer/ImporterColumnSelector.tsx:338
msgid "Field Description" msgid "Field Description"
msgstr "字段描述" msgstr "字段描述"
#: src/components/importer/ImporterColumnSelector.tsx:287 #: src/components/importer/ImporterColumnSelector.tsx:339
msgid "Imported Column" msgid "Imported Column"
msgstr "導入列" 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" msgid "Default Value"
msgstr "默認值" msgstr "默認值"
@ -3131,7 +3140,7 @@ msgstr "外掛程式資訊"
#: src/pages/company/ManufacturerPartDetail.tsx:94 #: src/pages/company/ManufacturerPartDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:121 #: src/pages/company/ManufacturerPartDetail.tsx:121
#: src/pages/company/SupplierPartDetail.tsx:150 #: 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/part/PartDetail.tsx:319
#: src/pages/purchasing/PurchaseOrderDetail.tsx:166 #: src/pages/purchasing/PurchaseOrderDetail.tsx:166
#: src/pages/sales/ReturnOrderDetail.tsx:132 #: src/pages/sales/ReturnOrderDetail.tsx:132
@ -3142,7 +3151,7 @@ msgstr "外掛程式資訊"
#: src/tables/build/BuildAllocatedStockTable.tsx:91 #: src/tables/build/BuildAllocatedStockTable.tsx:91
#: src/tables/machine/MachineTypeTable.tsx:159 #: src/tables/machine/MachineTypeTable.tsx:159
#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/machine/MachineTypeTable.tsx:255
#: src/tables/plugin/PluginListTable.tsx:110 #: src/tables/plugin/PluginListTable.tsx:112
msgid "Description" msgid "Description"
msgstr "描述" msgstr "描述"
@ -3172,7 +3181,7 @@ msgstr "日期"
#: src/tables/part/PartTableFilters.tsx:13 #: src/tables/part/PartTableFilters.tsx:13
#: src/tables/part/PartVariantTable.tsx:15 #: src/tables/part/PartVariantTable.tsx:15
#: src/tables/plugin/PluginListTable.tsx:96 #: 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:139
#: src/tables/purchasing/SupplierPartTable.tsx:254 #: src/tables/purchasing/SupplierPartTable.tsx:254
#: src/tables/settings/ApiTokenTable.tsx:63 #: src/tables/settings/ApiTokenTable.tsx:63
@ -3183,7 +3192,7 @@ msgstr "激活"
#: src/components/plugins/PluginDrawer.tsx:99 #: src/components/plugins/PluginDrawer.tsx:99
#: src/pages/company/CompanyDetail.tsx:103 #: src/pages/company/CompanyDetail.tsx:103
#: src/tables/plugin/PluginListTable.tsx:140 #: src/tables/plugin/PluginListTable.tsx:142
msgid "Website" msgid "Website"
msgstr "網站" msgstr "網站"
@ -3198,8 +3207,8 @@ msgstr "安裝路徑"
#: src/components/plugins/PluginDrawer.tsx:124 #: src/components/plugins/PluginDrawer.tsx:124
#: src/tables/machine/MachineTypeTable.tsx:182 #: src/tables/machine/MachineTypeTable.tsx:182
#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/machine/MachineTypeTable.tsx:291
#: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:102
#: src/tables/plugin/PluginListTable.tsx:425 #: src/tables/plugin/PluginListTable.tsx:427
msgid "Builtin" msgid "Builtin"
msgstr "內置" msgstr "內置"
@ -3364,7 +3373,7 @@ msgstr "詳情"
#: src/tables/ColumnRenderers.tsx:414 #: src/tables/ColumnRenderers.tsx:414
#: src/tables/ColumnRenderers.tsx:423 #: src/tables/ColumnRenderers.tsx:423
#: src/tables/notifications/NotificationTable.tsx:32 #: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:78 #: src/tables/part/PartCategoryTemplateTable.tsx:87
msgid "Category" msgid "Category"
msgstr "類別" msgstr "類別"
@ -4823,7 +4832,7 @@ msgstr "要完成的數量"
#: src/tables/sales/ReturnOrderLineItemTable.tsx:175 #: src/tables/sales/ReturnOrderLineItemTable.tsx:175
#: src/tables/settings/CustomStateTable.tsx:79 #: src/tables/settings/CustomStateTable.tsx:79
#: src/tables/settings/EmailTable.tsx:95 #: 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/StockItemTable.tsx:203
#: src/tables/stock/StockTrackingTable.tsx:83 #: src/tables/stock/StockTrackingTable.tsx:83
msgid "Status" msgid "Status"
@ -4995,7 +5004,7 @@ msgstr "選擇此明細項目的專案代碼"
#: src/forms/PartForms.tsx:110 #: src/forms/PartForms.tsx:110
#: src/forms/PartForms.tsx:244 #: src/forms/PartForms.tsx:244
#: src/pages/part/CategoryDetail.tsx:129 #: src/pages/part/CategoryDetail.tsx:130
#: src/pages/part/PartDetail.tsx:536 #: src/pages/part/PartDetail.tsx:536
#: src/tables/part/PartCategoryTable.tsx:92 #: src/tables/part/PartCategoryTable.tsx:92
#: src/tables/part/PartTableFilters.tsx:143 #: src/tables/part/PartTableFilters.tsx:143
@ -6999,7 +7008,6 @@ msgstr "自定義單位"
#~ msgstr "Part Parameters" #~ msgstr "Part Parameters"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 #: src/pages/Index/Settings/AdminCenter/Index.tsx:207
#: src/pages/part/CategoryDetail.tsx:328
msgid "Category Parameters" msgid "Category Parameters"
msgstr "類別參數" msgstr "類別參數"
@ -7698,7 +7706,7 @@ msgstr "取消訂單"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/build/BuildIndex.tsx:94 #: 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:103
#: src/pages/purchasing/PurchasingIndex.tsx:130 #: src/pages/purchasing/PurchasingIndex.tsx:130
#: src/pages/purchasing/PurchasingIndex.tsx:159 #: src/pages/purchasing/PurchasingIndex.tsx:159
@ -7721,7 +7729,7 @@ msgid "Calendar View"
msgstr "行事曆檢視" msgstr "行事曆檢視"
#: src/pages/build/BuildIndex.tsx:106 #: 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:115
#: src/pages/purchasing/PurchasingIndex.tsx:142 #: src/pages/purchasing/PurchasingIndex.tsx:142
#: src/pages/purchasing/PurchasingIndex.tsx:165 #: src/pages/purchasing/PurchasingIndex.tsx:165
@ -7982,7 +7990,7 @@ msgstr "一般使用者"
#~ msgid "Basic user" #~ msgid "Basic user"
#~ msgstr "Basic user" #~ msgstr "Basic user"
#: src/pages/part/CategoryDetail.tsx:105 #: src/pages/part/CategoryDetail.tsx:106
#: src/pages/stock/LocationDetail.tsx:129 #: src/pages/stock/LocationDetail.tsx:129
#: src/tables/ColumnRenderers.tsx:336 #: src/tables/ColumnRenderers.tsx:336
#: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:63
@ -7990,27 +7998,27 @@ msgstr "一般使用者"
msgid "Path" msgid "Path"
msgstr "路徑" msgstr "路徑"
#: src/pages/part/CategoryDetail.tsx:121 #: src/pages/part/CategoryDetail.tsx:122
msgid "Parent Category" msgid "Parent Category"
msgstr "上級類別" msgstr "上級類別"
#: src/pages/part/CategoryDetail.tsx:144 #: src/pages/part/CategoryDetail.tsx:145
#: src/pages/part/CategoryDetail.tsx:278 #: src/pages/part/CategoryDetail.tsx:279
msgid "Subcategories" msgid "Subcategories"
msgstr "子類別" msgstr "子類別"
#: src/pages/part/CategoryDetail.tsx:151 #: src/pages/part/CategoryDetail.tsx:152
#: src/pages/stock/LocationDetail.tsx:169 #: src/pages/stock/LocationDetail.tsx:169
#: src/tables/part/PartCategoryTable.tsx:87 #: src/tables/part/PartCategoryTable.tsx:87
#: src/tables/stock/StockLocationTable.tsx:43 #: src/tables/stock/StockLocationTable.tsx:43
msgid "Structural" msgid "Structural"
msgstr "結構性" msgstr "結構性"
#: src/pages/part/CategoryDetail.tsx:157 #: src/pages/part/CategoryDetail.tsx:158
msgid "Parent default location" msgid "Parent default location"
msgstr "上級默認位置" msgstr "上級默認位置"
#: src/pages/part/CategoryDetail.tsx:164 #: src/pages/part/CategoryDetail.tsx:165
msgid "Default location" msgid "Default location"
msgstr "默認位置" msgstr "默認位置"
@ -8018,48 +8026,48 @@ msgstr "默認位置"
#~ msgid "Top level part category" #~ msgid "Top level part category"
#~ msgstr "Top level part category" #~ msgstr "Top level part category"
#: src/pages/part/CategoryDetail.tsx:181 #: src/pages/part/CategoryDetail.tsx:182
#: src/pages/part/CategoryDetail.tsx:249 #: src/pages/part/CategoryDetail.tsx:250
#: src/tables/part/PartCategoryTable.tsx:121 #: src/tables/part/PartCategoryTable.tsx:121
msgid "Edit Part Category" msgid "Edit Part Category"
msgstr "編輯零件類別" msgstr "編輯零件類別"
#: src/pages/part/CategoryDetail.tsx:190 #: src/pages/part/CategoryDetail.tsx:191
msgid "Move items to parent category" msgid "Move items to parent category"
msgstr "將項目移至父類別" msgstr "將項目移至父類別"
#: src/pages/part/CategoryDetail.tsx:194 #: src/pages/part/CategoryDetail.tsx:195
#: src/pages/stock/LocationDetail.tsx:316 #: src/pages/stock/LocationDetail.tsx:316
msgid "Delete items" msgid "Delete items"
msgstr "刪除項" msgstr "刪除項"
#: src/pages/part/CategoryDetail.tsx:202 #: src/pages/part/CategoryDetail.tsx:203
#: src/pages/part/CategoryDetail.tsx:254 #: src/pages/part/CategoryDetail.tsx:255
msgid "Delete Part Category" msgid "Delete Part Category"
msgstr "刪除零件類別" msgstr "刪除零件類別"
#: src/pages/part/CategoryDetail.tsx:205 #: src/pages/part/CategoryDetail.tsx:206
msgid "Parts Action" msgid "Parts Action"
msgstr "零件操作" msgstr "零件操作"
#: src/pages/part/CategoryDetail.tsx:206 #: src/pages/part/CategoryDetail.tsx:207
msgid "Action for parts in this category" msgid "Action for parts in this category"
msgstr "對此類別中零件的操作" msgstr "對此類別中零件的操作"
#: src/pages/part/CategoryDetail.tsx:212 #: src/pages/part/CategoryDetail.tsx:213
msgid "Child Categories Action" msgid "Child Categories Action"
msgstr "子類別操作" msgstr "子類別操作"
#: src/pages/part/CategoryDetail.tsx:213 #: src/pages/part/CategoryDetail.tsx:214
msgid "Action for child categories in this category" msgid "Action for child categories in this category"
msgstr "對此類別中零件的操作" msgstr "對此類別中零件的操作"
#: src/pages/part/CategoryDetail.tsx:245 #: src/pages/part/CategoryDetail.tsx:246
#: src/tables/part/PartCategoryTable.tsx:142 #: src/tables/part/PartCategoryTable.tsx:142
msgid "Category Actions" msgid "Category Actions"
msgstr "類別操作" msgstr "類別操作"
#: src/pages/part/CategoryDetail.tsx:271 #: src/pages/part/CategoryDetail.tsx:272
msgid "Category Details" msgid "Category Details"
msgstr "類別詳情" msgstr "類別詳情"
@ -10030,7 +10038,7 @@ msgid "Are you sure you want to delete the selected items?"
msgstr "確定要刪除所選的項目嗎?" msgstr "確定要刪除所選的項目嗎?"
#: src/tables/InvenTreeTableHeader.tsx:113 #: src/tables/InvenTreeTableHeader.tsx:113
#: src/tables/plugin/PluginListTable.tsx:320 #: src/tables/plugin/PluginListTable.tsx:322
msgid "This action cannot be undone" msgid "This action cannot be undone"
msgstr "此操作無法還原" msgstr "此操作無法還原"
@ -11065,7 +11073,7 @@ msgid "Show enabled templates"
msgstr "顯示已啟用的範本" msgstr "顯示已啟用的範本"
#: src/tables/general/ParameterTemplateTable.tsx:148 #: src/tables/general/ParameterTemplateTable.tsx:148
#: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/ImportSessionTable.tsx:123
#: src/tables/settings/TemplateTable.tsx:414 #: src/tables/settings/TemplateTable.tsx:414
msgid "Model Type" msgid "Model Type"
msgstr "型號類型" msgstr "型號類型"
@ -11402,16 +11410,16 @@ msgstr "設定選定項目的父類別"
msgid "Add Part Category" msgid "Add Part Category"
msgstr "增加零件類別" msgstr "增加零件類別"
#: src/tables/part/PartCategoryTemplateTable.tsx:49 #: src/tables/part/PartCategoryTemplateTable.tsx:56
#: src/tables/part/PartCategoryTemplateTable.tsx:143 #: src/tables/part/PartCategoryTemplateTable.tsx:152
msgid "Add Category Parameter" msgid "Add Category Parameter"
msgstr "添加類別參數" msgstr "添加類別參數"
#: src/tables/part/PartCategoryTemplateTable.tsx:57 #: src/tables/part/PartCategoryTemplateTable.tsx:65
msgid "Edit Category Parameter" msgid "Edit Category Parameter"
msgstr "編輯類別參數" msgstr "編輯類別參數"
#: src/tables/part/PartCategoryTemplateTable.tsx:65 #: src/tables/part/PartCategoryTemplateTable.tsx:74
msgid "Delete Category Parameter" msgid "Delete Category Parameter"
msgstr "刪除類別參數" msgstr "刪除類別參數"
@ -11419,6 +11427,14 @@ msgstr "刪除類別參數"
#~ msgid "[{0}]" #~ msgid "[{0}]"
#~ msgstr "[{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 #: src/tables/part/PartParameterTable.tsx:148
#~ msgid "New Part Parameter" #~ msgid "New Part Parameter"
#~ msgstr "New Part Parameter" #~ msgstr "New Part Parameter"
@ -11838,8 +11854,8 @@ msgstr "插件"
#~ msgid "An error occurred while fetching plugin details" #~ msgid "An error occurred while fetching plugin details"
#~ msgstr "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:108
#: src/tables/plugin/PluginListTable.tsx:430 #: src/tables/plugin/PluginListTable.tsx:432
msgid "Mandatory" msgid "Mandatory"
msgstr "必填" msgstr "必填"
@ -11847,7 +11863,7 @@ msgstr "必填"
#~ msgid "Plugin with id {id} not found" #~ msgid "Plugin with id {id} not found"
#~ msgstr "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" msgid "Description not available"
msgstr "描述不可用." msgstr "描述不可用."
@ -11869,11 +11885,11 @@ msgstr "描述不可用."
#~ msgid "Reload" #~ msgid "Reload"
#~ msgstr "Reload" #~ msgstr "Reload"
#: src/tables/plugin/PluginListTable.tsx:159 #: src/tables/plugin/PluginListTable.tsx:161
msgid "Confirm plugin activation" msgid "Confirm plugin activation"
msgstr "確認插件激活" msgstr "確認插件激活"
#: src/tables/plugin/PluginListTable.tsx:160 #: src/tables/plugin/PluginListTable.tsx:162
msgid "Confirm plugin deactivation" msgid "Confirm plugin deactivation"
msgstr "確認插件停用" msgstr "確認插件停用"
@ -11881,15 +11897,15 @@ msgstr "確認插件停用"
#~ msgid "Package information" #~ msgid "Package information"
#~ msgstr "Package information" #~ msgstr "Package information"
#: src/tables/plugin/PluginListTable.tsx:165 #: src/tables/plugin/PluginListTable.tsx:167
msgid "The selected plugin will be activated" msgid "The selected plugin will be activated"
msgstr "所選插件將被激活" msgstr "所選插件將被激活"
#: src/tables/plugin/PluginListTable.tsx:166 #: src/tables/plugin/PluginListTable.tsx:168
msgid "The selected plugin will be deactivated" msgid "The selected plugin will be deactivated"
msgstr "所選插件將被停用" msgstr "所選插件將被停用"
#: src/tables/plugin/PluginListTable.tsx:184 #: src/tables/plugin/PluginListTable.tsx:186
msgid "Deactivate" msgid "Deactivate"
msgstr "停用" msgstr "停用"
@ -11897,44 +11913,44 @@ msgstr "停用"
#~ msgid "Plugin settings" #~ msgid "Plugin settings"
#~ msgstr "Plugin settings" #~ msgstr "Plugin settings"
#: src/tables/plugin/PluginListTable.tsx:198 #: src/tables/plugin/PluginListTable.tsx:200
msgid "Activate" msgid "Activate"
msgstr "激活" msgstr "激活"
#: src/tables/plugin/PluginListTable.tsx:199 #: src/tables/plugin/PluginListTable.tsx:201
msgid "Activate selected plugin" msgid "Activate selected plugin"
msgstr "激活所選插件" msgstr "激活所選插件"
#: src/tables/plugin/PluginListTable.tsx:211 #: src/tables/plugin/PluginListTable.tsx:213
msgid "Update selected plugin" msgid "Update selected plugin"
msgstr "更新所選插件" msgstr "更新所選插件"
#: src/tables/plugin/PluginListTable.tsx:229 #: src/tables/plugin/PluginListTable.tsx:231
#: src/tables/stock/InstalledItemsTable.tsx:98 #: src/tables/stock/InstalledItemsTable.tsx:98
msgid "Uninstall" msgid "Uninstall"
msgstr "卸載" msgstr "卸載"
#: src/tables/plugin/PluginListTable.tsx:230 #: src/tables/plugin/PluginListTable.tsx:232
msgid "Uninstall selected plugin" msgid "Uninstall selected plugin"
msgstr "卸載所選插件" msgstr "卸載所選插件"
#: src/tables/plugin/PluginListTable.tsx:248 #: src/tables/plugin/PluginListTable.tsx:250
msgid "Delete selected plugin configuration" msgid "Delete selected plugin configuration"
msgstr "刪除選中的插件配置" msgstr "刪除選中的插件配置"
#: src/tables/plugin/PluginListTable.tsx:264 #: src/tables/plugin/PluginListTable.tsx:266
msgid "Activate Plugin" msgid "Activate Plugin"
msgstr "激活插件" msgstr "激活插件"
#: src/tables/plugin/PluginListTable.tsx:264 #: src/tables/plugin/PluginListTable.tsx:266
msgid "Deactivate Plugin" msgid "Deactivate Plugin"
msgstr "" msgstr ""
#: src/tables/plugin/PluginListTable.tsx:271 #: src/tables/plugin/PluginListTable.tsx:273
msgid "The plugin was activated" msgid "The plugin was activated"
msgstr "外掛程式已啟用" msgstr "外掛程式已啟用"
#: src/tables/plugin/PluginListTable.tsx:272 #: src/tables/plugin/PluginListTable.tsx:274
msgid "The plugin was deactivated" msgid "The plugin was deactivated"
msgstr "外掛程式已停用" msgstr "外掛程式已停用"
@ -11942,20 +11958,20 @@ msgstr "外掛程式已停用"
#~ msgid "Install plugin" #~ msgid "Install plugin"
#~ msgstr "Install plugin" #~ msgstr "Install plugin"
#: src/tables/plugin/PluginListTable.tsx:285 #: src/tables/plugin/PluginListTable.tsx:287
#: src/tables/plugin/PluginListTable.tsx:377 #: src/tables/plugin/PluginListTable.tsx:379
msgid "Install Plugin" msgid "Install Plugin"
msgstr "安裝插件" msgstr "安裝插件"
#: src/tables/plugin/PluginListTable.tsx:298 #: src/tables/plugin/PluginListTable.tsx:300
msgid "Install" msgid "Install"
msgstr "安裝" msgstr "安裝"
#: src/tables/plugin/PluginListTable.tsx:299 #: src/tables/plugin/PluginListTable.tsx:301
msgid "Plugin installed successfully" msgid "Plugin installed successfully"
msgstr "插件安裝成功" msgstr "插件安裝成功"
#: src/tables/plugin/PluginListTable.tsx:304 #: src/tables/plugin/PluginListTable.tsx:306
msgid "Uninstall Plugin" msgid "Uninstall Plugin"
msgstr "卸載插件" msgstr "卸載插件"
@ -11963,31 +11979,31 @@ msgstr "卸載插件"
#~ msgid "This action cannot be undone." #~ msgid "This action cannot be undone."
#~ msgstr "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" msgid "Confirm plugin uninstall"
msgstr "確認插件卸載" msgstr "確認插件卸載"
#: src/tables/plugin/PluginListTable.tsx:319 #: src/tables/plugin/PluginListTable.tsx:321
msgid "The selected plugin will be uninstalled." msgid "The selected plugin will be uninstalled."
msgstr "所選插件將被卸載。" msgstr "所選插件將被卸載。"
#: src/tables/plugin/PluginListTable.tsx:324 #: src/tables/plugin/PluginListTable.tsx:326
msgid "Plugin uninstalled successfully" msgid "Plugin uninstalled successfully"
msgstr "插件卸載成功" msgstr "插件卸載成功"
#: src/tables/plugin/PluginListTable.tsx:332 #: src/tables/plugin/PluginListTable.tsx:334
msgid "Delete Plugin" msgid "Delete Plugin"
msgstr "刪除插件" 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?" msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?"
msgstr "刪除此插件配置將刪除所有相關的設置和數據。您確定要刪除此插件嗎?" msgstr "刪除此插件配置將刪除所有相關的設置和數據。您確定要刪除此插件嗎?"
#: src/tables/plugin/PluginListTable.tsx:346 #: src/tables/plugin/PluginListTable.tsx:348
msgid "Plugins reloaded" msgid "Plugins reloaded"
msgstr "插件已重載" msgstr "插件已重載"
#: src/tables/plugin/PluginListTable.tsx:347 #: src/tables/plugin/PluginListTable.tsx:349
msgid "Plugins were reloaded successfully" msgid "Plugins were reloaded successfully"
msgstr "插件重載成功" msgstr "插件重載成功"
@ -11999,7 +12015,7 @@ msgstr "插件重載成功"
#~ msgid "The following plugin will be deactivated" #~ msgid "The following plugin will be deactivated"
#~ msgstr "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" msgid "Reload Plugins"
msgstr "重載插件" msgstr "重載插件"
@ -12015,7 +12031,7 @@ msgstr "重載插件"
#~ msgid "Plugin updated" #~ msgid "Plugin updated"
#~ msgstr "Plugin updated" #~ msgstr "Plugin updated"
#: src/tables/plugin/PluginListTable.tsx:393 #: src/tables/plugin/PluginListTable.tsx:395
msgid "Plugin Detail" msgid "Plugin Detail"
msgstr "插件詳情" msgstr "插件詳情"
@ -12023,11 +12039,11 @@ msgstr "插件詳情"
#~ msgid "Error updating plugin" #~ msgid "Error updating plugin"
#~ msgstr "Error updating plugin" #~ msgstr "Error updating plugin"
#: src/tables/plugin/PluginListTable.tsx:435 #: src/tables/plugin/PluginListTable.tsx:437
msgid "Sample" msgid "Sample"
msgstr "樣本" msgstr "樣本"
#: src/tables/plugin/PluginListTable.tsx:440 #: src/tables/plugin/PluginListTable.tsx:442
#: src/tables/stock/StockItemTable.tsx:248 #: src/tables/stock/StockItemTable.tsx:248
msgid "Installed" msgid "Installed"
msgstr "已安裝" msgstr "已安裝"
@ -12660,29 +12676,29 @@ msgstr "編輯群組"
msgid "Add Group" msgid "Add Group"
msgstr "新增群組" msgstr "新增群組"
#: src/tables/settings/ImportSessionTable.tsx:37 #: src/tables/settings/ImportSessionTable.tsx:41
msgid "Delete Import Session" msgid "Delete Import Session"
msgstr "刪除導入的會話" msgstr "刪除導入的會話"
#: src/tables/settings/ImportSessionTable.tsx:43 #: src/tables/settings/ImportSessionTable.tsx:47
#: src/tables/settings/ImportSessionTable.tsx:130 #: src/tables/settings/ImportSessionTable.tsx:141
msgid "Create Import Session" msgid "Create Import Session"
msgstr "創建導入會話" msgstr "創建導入會話"
#: src/tables/settings/ImportSessionTable.tsx:73 #: src/tables/settings/ImportSessionTable.tsx:77
msgid "Uploaded" msgid "Uploaded"
msgstr "已上傳" msgstr "已上傳"
#: src/tables/settings/ImportSessionTable.tsx:84 #: src/tables/settings/ImportSessionTable.tsx:88
msgid "Imported Rows" msgid "Imported Rows"
msgstr "導入的行" msgstr "導入的行"
#: src/tables/settings/ImportSessionTable.tsx:113 #: src/tables/settings/ImportSessionTable.tsx:124
#: src/tables/settings/TemplateTable.tsx:415 #: src/tables/settings/TemplateTable.tsx:415
msgid "Filter by target model type" msgid "Filter by target model type"
msgstr "按目標型號篩選" msgstr "按目標型號篩選"
#: src/tables/settings/ImportSessionTable.tsx:119 #: src/tables/settings/ImportSessionTable.tsx:130
msgid "Filter by import session status" msgid "Filter by import session status"
msgstr "按導入會話狀態篩選" msgstr "按導入會話狀態篩選"

View File

@ -1,7 +1,7 @@
import type { Locator } from '@playwright/test'; import type { Locator } from '@playwright/test';
import { expect, test } from './baseFixtures.js'; import { expect, test } from './baseFixtures.js';
import { adminuser } from './defaults.js'; import { adminuser } from './defaults.js';
import { activateTableView, loadTab } from './helpers.js'; import { activateTableView, loadTab, navigate } from './helpers.js';
import { doCachedLogin } from './login.js'; import { doCachedLogin } from './login.js';
import { setPluginState } from './settings.js'; import { setPluginState } from './settings.js';
@ -207,3 +207,54 @@ test('Printing - Report Editing', async ({ browser }) => {
state: false state: false
}); });
}); });
// Test report printing with an intentionally broken template, to verify that errors are handled gracefully
test('Printing - Broken Template', async ({ browser }) => {
const page = await doCachedLogin(browser, {
user: adminuser,
url: 'sales/sales-order/14/detail'
});
// Print report from the "sales order" detail page
await page
.getByRole('button', { name: 'action-menu-printing-actions' })
.click();
await page
.getByRole('menuitem', {
name: 'action-menu-printing-actions-print-reports'
})
.click();
await page
.getByRole('combobox', { name: 'related-field-template' })
.fill('broken');
await page.getByText('Broken Sales Order Report').click();
await page.getByRole('button', { name: 'Print', exact: true }).click();
// Expected error message
await page
.getByText('parameter tag requires a valid Model instance')
.waitFor();
// Next, check error message from the template editor preview
await navigate(page, 'settings/admin/reports');
await page
.getByRole('textbox', { name: 'table-search-input' })
.fill('broken');
await page.getByRole('cell', { name: 'Broken Sales Order Report' }).click();
await page.getByLabel('split-button-preview-options-action').click();
await page
.getByLabel('split-button-preview-options-item-preview-save', {
exact: true
})
.click();
await page.getByRole('button', { name: 'Save & Reload' }).click();
// Expected error messages
await page.getByText('Error rendering template').waitFor();
await page
.getByText('parameter tag requires a valid Model instance')
.waitFor();
});

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